/** Shopify CDN: Minification failed

Line 197:53 Unexpected "{"

**/
.search-bar {
  position: fixed;
  top: var(--header-height);
  width: 100%;
  z-index: 9999;
  background-color: #000000ca;
  height: 100%;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transition: 0.2s all ease;
}

.search-bar.active {
  transition: 0.6s all ease;
  opacity: 1;
  clip-path: inset(0 0 0% 0);
}

.search-bar-wrapper {
  background-color: var(--body-color);
  padding: 30px 0;
  max-height: 760px;
  overflow: hidden;
}

.search-bar-wrapper div#predictive-search {
  max-height: 640px;
  overflow: hidden;
  overflow-y: auto;
}

.search-bar-wrapper .search-input-bar {
  display: flex;
  align-items: stretch;
  gap: 24px;
  border-bottom: 1px solid #1A1A1A;
  padding-bottom: 10px;
}

.search-bar-wrapper .search-input-bar input {
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
}

.search-bar-wrapper .search-input-bar svg {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
}

.no-search-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  padding-top: 10px;
  margin-top: 40px;
}

.no-search-result h3 {
  font-style: italic;
}

.no-search-result p {
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #6A6A6A;
}

.no-search-result p.no-res-txt {
  font-size: 18px;
  color: var(--black);
}

ul.predictive-search-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 36px;
  list-style: none;
}

div#predictive-search-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  gap: 20px;
}

div#predictive-search-results h2 {
  font-family: var(--pp);
  font-size: 28px;
  line-height: 130%;
  letter-spacing: 0em;
}

.pre-search{
  display: flex;
  align-items: flex-start;
  margin-top: 30px;
  justify-content: space-between;
  max-height: 500px;
  overflow: hidden;
  overflow-y: auto;
  pointer-events:auto;
  height:100%;
}

.pre-keys .pre-search-keys{
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  gap: 24px;
}

.pre-keys .pre-search-keys li{
  font-size: 14px;
  color: #747373;
  text-transform: capitalize;
}

.pre-keys .ts-title {
  font-family: var(--pp);
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0em;
}

.pre-search .bestseller .b-title{
  font-family: var(--pp);
  font-size: 32px;
  line-height: 130%;
  letter-spacing: 0em;
}

.pre-search-products{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  list-style: none;
  margin-top: 24px;
}

.pre-search .pre-keys{
  width: 20%;
}

.pre-search .bestseller{
  width: 78%;
}

.pre-search.hidden{
  display: none;
}

.main-search-bar-wrapper .icon-close svg {
  cursor: pointer;
}
.no-search-logo {
  display: flex;
  width: 6%;
}

.no-search-logo svg {
  width: 100%;
  height: auto;
  max-height: 100%;
}


@media screen and (min-width:768px){
  .search-bar-wrapper{
    height:80vh;
    max-height:none;
  }
  .search-bar-main, .search-bar-wrapper .container-fluid{
    height:calc(100% - 30px);
  }
  .search-bar-main predictive-search,
  .search-bar-main predictive-search .is-full-height,
  .search-bar-wrapper div#predictive-search{
    height:100%;
  }
  .search-bar-main predictive-search .is-full-height,{
    display:block;
  }
}

@media screen and (max-width:1200px){
  .search-bar {
    top: var(--visible-header);
  }
  .pre-search-products {
    overflow: hidden;
    overflow-x: auto;
    padding-bottom: 25px;
  }
  .pre-search-products .swiper-horizontal {
    touch-action: auto;
  }
}
@media screen and (max-width: 991px) {
  .search-grid-wrapper {
    gap: 12px;
  }
  .search-grid-wrapper .item {
    flex: 0 0 calc(50% - 6px);
    max-width: calc(50% - 6px);
  }
  .search-bar-wrapper .search-input-bar svg {
    width: 30px;
    height: 30px;
  }
}

@media screen and (max-width:767px){
    .pre-search {
        flex-direction: column;
        margin-top: 40px;
        gap: 40px;
        /* max-height: calc(100dvh - var(--visible-header)); */
        max-height: 100%;
        /* overflow-y:auto; */
    }
    .pre-search .pre-keys,
    .pre-search .bestseller {
        width: 100%;
    }
    .search-bar-wrapper {
        max-height: calc(100dvh - var(--visible-header));
        height: 100%;
        overflow: hidden;
        overflow-y: auto;
    }
    .search-bar-wrapper div#predictive-search {
        max-height: 700px;
        height: 90vh;
    }
    ul.predictive-search-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
     .no-search-logo {
        width: 15%;
    }
}