/** Shopify CDN: Minification failed

Line 492:8 Expected identifier but found whitespace
Line 492:9 Unexpected "12px"
Line 508:0 Unexpected "}"

**/
.search-overlay {
  position: fixed;
  inset: 0;

  z-index: 999999;

  background: rgba(255,255,255,.72);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity .22s ease,
    visibility .22s ease;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay-inner {
  width: min(920px, calc(100vw - 32px));

  margin:
    clamp(18px, 6vh, 80px)
    auto
    0;

  background: #ffffff;

  border: 1px solid #ececec;

  border-radius: 28px;

  box-shadow:
    0 20px 60px rgba(0,0,0,.08);

  overflow: hidden;

  display: flex;
  flex-direction: column;

  max-height: calc(100dvh - 40px);
}

.search-overlay-top {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 18px;

  border-bottom: 1px solid #efefef;
}

.search-overlay-searchbox {
  position: relative;
  flex: 1;
}

.search-overlay-input {
  width: 100%;
  height: 62px;

  border: 1px solid #ebebeb;
  outline: none;

  border-radius: 18px;

  padding: 0 58px;

  font-size: 16px;

  background: #f7f7f7;

  color: #111111;

  transition:
    border-color .2s ease,
    background .2s ease;
}

.search-overlay-input:focus {
  border-color: #d8d8d8;
  background: #ffffff;
}

.search-overlay-icon {
  position: absolute;

  left: 20px;
  top: 50%;

  transform: translateY(-50%);

  width: 20px;
  height: 20px;

  color: #6f6f6f;
}

.search-overlay-close {
  width: 52px;
  height: 52px;

  border-radius: 16px;

  border: 1px solid #ececec;

  background: #f7f7f7;

  color: #111111;

  cursor: pointer;

  transition:
    background .2s ease,
    border-color .2s ease;
}

.search-overlay-close:hover {
  background: #efefef;
}

.search-overlay-body {
  overflow-y: auto;

  padding:
    24px
    18px
    28px;
}

.search-overlay-section {
  margin-bottom: 34px;
}

.search-overlay-heading {
  font-size: 12px;

  letter-spacing: .12em;
  text-transform: uppercase;

  color: #6f6f6f;

  margin-bottom: 14px;
}

.search-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 40px;

  padding: 10px 16px;

  border-radius: 999px;

  background: #f5f5f5;

  border: 1px solid #ececec;

  color: #111111;

  text-decoration: none;

  transition:
    background .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

.search-pill:hover {
  background: #efefef;
}

.search-pill:active {
  transform: scale(.97);
}

.predictive-search-results {
  display: grid;
  gap: 12px;
}

.predictive-product {
  display: flex;
  gap: 14px;
  align-items: center;

  padding: 14px;

  border-radius: 20px;

  border: 1px solid #ececec;

  background: #ffffff;

  text-decoration: none;

  color: #111111;

  transition:
    border-color .2s ease,
    transform .2s ease,
    box-shadow .2s ease;
}

.predictive-product:hover {
  transform: translateY(-1px);

  border-color: #dddddd;

  box-shadow:
    0 8px 24px rgba(0,0,0,.04);
}

.predictive-product-image {
  width: 72px;
  height: 72px;

  border-radius: 14px;

  overflow: hidden;

  background: #f5f5f5;

  flex-shrink: 0;
}

.predictive-product-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.predictive-product-title {
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;

  margin-bottom: 4px;

  color: #111111;
}

.predictive-product-price {
  font-size: 14px;
  color: #6f6f6f;
}

.predictive-empty {
  color: #6f6f6f;
  padding: 10px 0;
}

body.search-overlay-open {
  overflow: hidden;
}

@media screen and (max-width: 768px) {

  .search-overlay-inner {
    width: 100%;
    height: 100dvh;

    max-height: 100dvh;

    margin-top: 0;

    border-radius: 0;

    border: 0;
  }

  .search-overlay-top {
    padding: 14px;
  }

  .search-overlay-input {
    height: 56px;

    font-size: 15px;

    border-radius: 16px;

    padding: 0 52px;
  }

  .search-overlay-close {
    width: 48px;
    height: 48px;

    border-radius: 14px;
  }

  .search-overlay-body {
    padding:
      20px
      14px
      28px;
  }

  .search-pills {
    flex-wrap: nowrap;

    overflow-x: auto;

    scrollbar-width: none;

    -ms-overflow-style: none;

    padding-bottom: 2px;
  }

  .search-pills::-webkit-scrollbar {
    display: none;
  }

  .search-pill {
    flex-shrink: 0;
  }

  .predictive-product {
    padding: 12px;

    border-radius: 18px;
  }

  .predictive-product-image {
    width: 64px;
    height: 64px;
  }

}
.search-featured-products {
  margin-bottom: 34px;
}

.search-featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}

.search-featured-card {
  display: flex;
  flex-direction: column;

  border: 1px solid #ececec;
  border-radius: 20px;

  overflow: hidden;

  background: #ffffff;

  text-decoration: none;

  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

.search-featured-card:hover {
  transform: translateY(-2px);

  border-color: #dddddd;

  box-shadow:
    0 10px 24px rgba(0,0,0,.05);
}

.search-featured-image {
  display: flex;
align-items: center;
justify-content: center;
  aspect-ratio: 1 / 1;

  background: #f5f5f5;
}

.search-featured-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.search-featured-content {
  padding: 14px;
}

.search-featured-brand {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;

  color: #888888;

  margin-bottom: 8px;
}

.search-featured-title {
  font-size: 14px;
  line-height: 1.4;

  color: #111111;

  font-weight: 600;
}

@media screen and (max-width: 990px) {

  .search-featured-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

}

@media screen and (max-width: 768px) {

  .search-featured-grid {
    display: grid;

    grid-template-columns:
      repeat(2, minmax(0,1fr));

    gap: 10px;
  }

  .search-featured-card {
    min-width: 0;

    border-radius: 16px;
  }

  .search-featured-image {
    aspect-ratio: 1 / 1;

    padding: 10px;
  }

  .search-featured-image img {
    object-fit: contain;
  }

  .search-featured-content {
    padding: 10px;
  }

  .search-featured-brand {
    font-size: 10px;

    margin-bottom: 4px;
  }

  .search-featured-title {
    font-size: 12px;

    line-height: 1.3;

    display: -webkit-box;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
  }

}

    gap: 12px;

    scrollbar-width: none;

    -ms-overflow-style: none;
  }

  .search-featured-grid::-webkit-scrollbar {
    display: none;
  }

  .search-featured-card {
    min-width: 180px;
    flex-shrink: 0;
  }

}