/** Shopify CDN: Minification failed

Line 2547:0 All "@import" rules must come first
Line 3106:11 Expected identifier but found whitespace
Line 3106:13 Unexpected "{"
Line 3106:22 Expected ":"
Line 3106:71 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:announcement-bar (INDEX:3) */
@font-face {
    font-family: 'NeueHaasDisplayRoman';
    src: url('NeueHaasDisplayRoman.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'NeueHaasDisplayMedium';
    src: url('NeueHaasDisplayMedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }

  .announcement-bar {
    background-color: #000;
    color: #fff;
    padding: 10px 0;
    font-size: 11px;
    letter-spacing: -0.05em;
    line-height: 1.4;
    position: relative;
    z-index: 1200;
  }

  .announcement-bar__inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 40px;
  }

  .announcement-bar__messages {
    position: relative;
    height: 15px;
    overflow: hidden;
    flex: 1;
    text-align: center;
  }

  .announcement-bar__message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    font-family: 'NeueHaasDisplayMedium', sans-serif;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
    text-transform: uppercase;
  }

  .announcement-bar__message.is-active {
    opacity: 1;
  }

  .announcement-bar__right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    position: absolute;
    right: 40px;
  }

  .announcement-bar__sep {
    opacity: 0.4;
    font-size: 11px;
  }

  .announcement-bar__link {
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-family: 'NeueHaasDisplayRoman', sans-serif;
    font-weight: 400;
    letter-spacing: 0.08em;
    transition: opacity 0.2s ease;
    text-transform: none;
  }

  .announcement-bar__link:hover {
    opacity: 0.7;
  }

  /* Country selector toggle */
  .country-selector {
    position: relative;
  }

  .country-selector__toggle {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 2px 0;
    font-family: 'NeueHaasDisplayRoman', sans-serif;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: none;
  }

  .country-selector__toggle:hover {
    opacity: 0.7;
  }

  .country-selector__flag-img {
    width: 16px;
    height: 12px;
    object-fit: cover;
    border-radius: 1px;
  }

  .country-selector__label {
    white-space: nowrap;
  }

  .country-selector__arrow {
    width: 8px;
    height: 5px;
    transition: transform 0.2s ease;
  }

  .country-selector.is-open .country-selector__arrow {
    transform: rotate(180deg);
  }

  /* Dropdown — fixed position so it can't be clipped */
  .country-selector__dropdown {
    position: fixed;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    width: 280px;
    max-height: 270px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    z-index: 9999;
    text-transform: none;
    letter-spacing: 0;
  }

  .country-selector__dropdown[hidden] {
    display: none;
  }

  .country-selector__search-wrap {
    padding: 10px 12px;
    border-bottom: 1px solid #e5e5e5;
  }

  .country-selector__search {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 7px 10px;
    font-size: 13px;
    font-family: 'NeueHaasDisplayRoman', sans-serif;
    outline: none;
    color: #333;
  }

  .country-selector__search::placeholder {
    color: #aaa;
  }

  .country-selector__search:focus {
    border-color: #999;
  }

  .country-selector__list {
    overflow-y: auto;
    flex: 1;
    overscroll-behavior: contain;
  }

  .country-selector__option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 9px 12px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 13px;
    font-family: 'NeueHaasDisplayRoman', sans-serif;
    color: #333;
    text-align: left;
    transition: background 0.15s ease;
  }

  .country-selector__option:hover {
    background: #f5f5f5;
  }

  .country-selector__option.is-active {
    font-weight: 500;
    font-family: 'NeueHaasDisplayMedium', sans-serif;
  }

  .country-selector__option-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
  }

  .country-selector__option[hidden] {
    display: none;
  }

  .announcement-bar__mobile-util {
    display: none;
  }

  @media (max-width: 767px) {
    .announcement-bar__mobile-util {
      display: block;
      background: #f5f5f5;
      padding: 7px 15px;
      z-index: 1201;
      position: relative;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
      width: 100vw;
    }

    .announcement-bar__mobile-util-inner {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 12px;
    }

    .announcement-bar__mobile-util-link {
      color: #555;
      text-decoration: none;
      font-size: 11px;
      font-family: 'NeueHaasDisplayRoman', sans-serif;
      letter-spacing: 0.04em;
    }

    .country-selector__toggle--mobile {
      background: none;
      border: none;
      color: #555;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 0;
      font-family: 'NeueHaasDisplayRoman', sans-serif;
      font-size: 11px;
      letter-spacing: 0.04em;
    }

    .announcement-bar__right {
      display: none;
    }

    .announcement-bar {
      padding: 8px 10px;
    }

    .announcement-bar__messages {
      height: auto;
      min-height: 13px;
    }

    .announcement-bar__message {
      font-size: clamp(7px, 2.45vw, 11px);
      letter-spacing: -0.06em;
    }
  }
/* END_SECTION:announcement-bar */

/* START_SECTION:best-sellers (INDEX:5) */
.best-sellers {
  padding: 48px 0;
}

.best-sellers__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0;
  margin-bottom: 20px;
  gap: 16px;
}

.best-sellers__header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.best-sellers__title {
  font-size: 28px;
  font-weight: 500;
  font-family: var(--font-heading--family), sans-serif;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
  color: #111;
}

.best-sellers__toggle {
  display: flex;
  gap: 24px;
}

.best-sellers__tab {
  padding: 0 0 4px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-heading--family), sans-serif;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  color: #bbb;
  line-height: 1;
}

.best-sellers__tab.active {
  color: #111;
  border-bottom-color: #111;
}

.best-sellers__tab:hover:not(.active) {
  color: #666;
}

.best-sellers__header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.best-sellers__view-all {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: #111;
}

.best-sellers__view-all:hover {
  color: #666;
}

.best-sellers__nav {
  display: flex;
  gap: 6px;
}

.best-sellers__arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #999;
}

.best-sellers__arrow:hover {
  border-color: #111;
}

.best-sellers__carousel {
  display: none;
}

.best-sellers__carousel.active {
  display: block;
}

.best-sellers__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  width: calc(100% + 40px);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.best-sellers__track::-webkit-scrollbar {
  display: none;
}

.bs-product-card {
  flex: 0 0 auto;
  width: calc((100vw - 80px - 64px) / 5);
  min-width: 200px;
  scroll-snap-align: start;
}

.bs-product-card__image-wrapper {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: #f0f0f0;
  margin-bottom: 10px;
  border-radius: 12px;
}

.bs-product-card__image-wrapper a {
  display: block;
  width: 100%;
  height: 100%;
}

.bs-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bs-product-card__image--hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bs-product-card__image-wrapper:hover .bs-product-card__image--hover {
  opacity: 1;
}

.bs-product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
}

.bs-product-card__placeholder svg {
  width: 60%;
  height: 60%;
  opacity: 0.3;
}

.bs-product-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  opacity: 1;
  transition: transform 0.15s ease;
}

.bs-product-card__wishlist:hover {
  transform: scale(1.15);
  background: #fff;
}

.bs-product-card__badge {
  position: absolute;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 2;
  font-family: 'NeueHaasDisplayMedium', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.bs-product-card__badge--sale {
  top: 8px;
  left: 8px;
  background: #111;
  color: #fff;
}

.bs-product-card__badge--best {
  bottom: 10px;
  left: 10px;
  background: #fff;
  color: #111;
}


.bs-product-card__info {
  padding: 0 2px;
  font-family: var(--font-primary--family), sans-serif;
  line-height: 1.3;
}

.bs-product-card__info > * {
  margin: 0;
  padding: 0;
}

.bs-product-card__swatches {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.bs-product-card__swatches::-webkit-scrollbar {
  display: none;
}

.bs-product-card__swatch {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
  overflow: hidden;
  padding: 0;
  background: #F7F7F7;
}

.bs-product-card__swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bs-product-card__swatch--active {
}

.bs-product-card__swatch-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 600;
  color: #555;
  background: #ffffff;
  text-decoration: none;
  flex-shrink: 0;
}

.bs-product-card__name {
  display: block;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-heading--family), sans-serif;
  text-transform: none;
  color: #111;
  text-decoration: none;
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: 4px;
}

.bs-product-card__name:hover {
  color: #111;
}

.bs-product-card__type {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-primary--family), sans-serif;
  color: #111;
  margin: 0 0 4px;
  line-height: 1.4;
  letter-spacing: 0;
}

.bs-product-card__color {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-primary--family), sans-serif;
  color: #111;
  margin: 0 0 4px;
  line-height: 1.4;
  letter-spacing: 0;
}

.bs-product-card__price {
  font-size: 15px;
  font-weight: 400;
  color: #111;
  display: flex;
  gap: 8px;
  align-items: center;
  letter-spacing: 0;
  line-height: 1.3;
  margin-top: 4px !important;
}

.bs-product-card__price--compare {
  color: #d32f2f;
  text-decoration: line-through;
  font-weight: 400;
}

.bs-product-card__price--sale {
  color: #111;
  font-weight: 400;
}

.bs-product-card__price--sold-out {
  color: #999;
  font-weight: 600;
}

.bs-product-card__quick-add {
  position: absolute;
  bottom: 8px;
  left: 8px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.bs-product-card__image-wrapper:hover .bs-product-card__quick-add {
  opacity: 1;
  pointer-events: auto;
}

.bs-product-card__quick-add-trigger {
  background: rgba(255,255,255,0.95);
  padding: 6px 12px;
  font-size: 9px;
  font-weight: 600;
  font-family: var(--font-heading--family), sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #111;
  cursor: pointer;
  text-align: center;
  border-radius: 3px 3px 0 0;
}

.bs-product-card__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0;
  background: rgba(255,255,255,0.95);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.15s ease, padding 0.15s ease;
}

.bs-product-card__quick-add:hover .bs-product-card__sizes {
  max-height: 150px;
  padding: 6px;
}

.bs-product-card__size-btn {
  width: 26px;
  height: 26px;
  min-width: 0;
  padding: 0;
  border: 1px solid #d0d0d0;
  border-radius: 3px;
  background: #fff;
  font-size: 9px;
  font-weight: 400;
  color: #111;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: var(--font-primary--family), sans-serif;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bs-product-card__size-btn:hover {
  border-color: #111;
}

.bs-product-card__size-btn--disabled {
  color: #ccc;
  border-color: #eee;
  cursor: not-allowed;
  text-decoration: line-through;
}

@media (max-width: 999px) {
  .bs-product-card {
    width: calc((100% - 24px) / 4);
    min-width: 160px;
  }
  .best-sellers__track {
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .best-sellers {
    padding: 24px 0;
    padding-left: 8px;
  }
  .best-sellers__header {
    margin-left: 0;
  }
  .best-sellers__header-left {
    gap: 8px;
  }
  .best-sellers__title {
    font-size: 24px;
  }
  .best-sellers__track {
    margin-left: 0;
    width: calc(100vw - 8px);
    gap: 8px;
  }
  .bs-product-card {
    width: 55vw;
    min-width: 0;
    flex: 0 0 auto;
  }
  .best-sellers__track::after {
    content: '';
    flex: 0 0 16px;
    min-width: 16px;
  }
  .bs-product-card__name {
    font-size: 15px;
    margin-bottom: 2px;
  }
  .bs-product-card__type,
  .bs-product-card__color {
    font-size: 12px;
    margin: 0 0 2px;
  }
  .bs-product-card__price {
    font-size: 13px;
    margin-top: 2px !important;
  }
  .best-sellers__nav {
    display: none;
  }
  .best-sellers__view-all {
    display: none;
  }
  .bs-product-card__wishlist {
    opacity: 1;
    transform: none;
  }
  .bs-product-card__quick-add {
    display: none !important;
  }
  .bs-product-card__image--hover {
    display: none !important;
  }
}
/* END_SECTION:best-sellers */

/* START_SECTION:collection (INDEX:8) */
.dr-collection { font-family: var(--font-primary--family, sans-serif); }

/* ===== HERO ===== */
.dr-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 520px;
  overflow: hidden;
  background: #333;
}
.dr-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dr-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 45%, transparent 65%);
  padding: 50px 60px;
}
.dr-hero__content { max-width: 460px; }
.dr-hero__title {
  font-size: 30px;
  font-weight: 500;
  font-family: var(--font-heading--family), sans-serif;
  text-transform: none;
  letter-spacing: 0;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.25;
}
.dr-hero__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.65;
  font-weight: 400;
}

/* ===== CATEGORIES (mobile only) ===== */
.dr-categories { display: none; }
.dr-categories__title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #111;
  margin: 0 0 16px;
  padding: 0;
}
.dr-categories__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.dr-categories__track::-webkit-scrollbar { display: none; }
.dr-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.dr-cat__circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.dr-cat--active .dr-cat__circle { border-color: #111; }
.dr-cat:hover .dr-cat__circle { border-color: #111; }
.dr-cat__circle img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dr-cat__label {
  font-size: 12.5px;
  font-weight: 500;
  color: #666;
  white-space: nowrap;
}
.dr-cat--active .dr-cat__label { color: #111; font-weight: 700; }

/* ===== MOBILE BAR (hidden on desktop) ===== */
.dr-mobile-bar { display: none; }
.dr-mobile-bar__filter,
.dr-mobile-bar__sort-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 12px;
  border: none;
  background: transparent;
  color: #111;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  font-family: var(--font-heading--family), sans-serif;
  position: relative;
}
.dr-mobile-bar__filter { border-bottom: 2px solid #ddd; }
.dr-mobile-bar__sort-btn { border-bottom: 2px solid #ddd; }
.dr-mobile-bar__sort-btn.is-open { border-bottom-color: #111; }
.dr-mobile-bar__sort-chev {
  transition: transform 0.25s ease;
  opacity: 0.5;
}
.dr-mobile-bar__sort-btn.is-open .dr-mobile-bar__sort-chev {
  transform: rotate(180deg);
}

/* ===== BODY LAYOUT ===== */
.dr-body {
  max-width: 100%;
  margin: 0 auto;
  padding: 30px 24px 60px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
}

/* ===== BACKDROP (mobile) ===== */
.dr-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 1300;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
}
.dr-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ===== SIDEBAR ===== */
.dr-sidebar__head { display: none; }
.dr-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dr-sidebar__nav-link {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 400;
  color: #222;
  text-decoration: none;
  transition: color 0.15s ease;
}
.dr-sidebar__nav-link:hover { color: #000; }
.dr-sidebar__nav-link--active {
  color: #111;
  font-weight: 600;
}
.dr-filter {
  border-top: 1px solid #e0e0e0;
}
.dr-filter:last-child {
  border-bottom: 1px solid #e0e0e0;
}
.dr-filter__toggle {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #111;
  text-align: left;
  font-family: inherit;
}
.dr-filter__chevron {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.dr-filter__toggle[aria-expanded="false"] .dr-filter__chevron { transform: rotate(-90deg); }
.dr-filter__body {
  padding: 0 0 16px;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}
.dr-filter__toggle[aria-expanded="false"] + .dr-filter__body {
  max-height: 0 !important;
  padding: 0;
}

.dr-filter__item {
  display: flex;
  align-items: center;
  padding: 8px 0;
  cursor: pointer;
  font-size: 14px;
  color: #222;
  transition: color 0.15s ease;
}
.dr-filter__item:hover { color: #000; }
.dr-filter__item-label { flex: 1; }
.dr-filter__item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.dr-filter__box {
  width: 16px;
  height: 16px;
  border: 1.5px solid #bbb;
  border-radius: 2px;
  flex-shrink: 0;
  position: relative;
  margin-left: 12px;
  transition: all 0.15s ease;
}
.dr-filter__item:hover .dr-filter__box { border-color: #888; }
.dr-filter__item input:checked + .dr-filter__box {
  background: #111;
  border-color: #111;
}
.dr-filter__item input:checked + .dr-filter__box::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.dr-filter__item input:disabled ~ .dr-filter__item-label { opacity: 0.35; }

/* Color swatches */
.dr-filter__colors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 8px;
  padding: 4px 0;
}
.dr-filter__color-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.dr-filter__color-item input { position: absolute; opacity: 0; width: 0; height: 0; }
.dr-filter__color-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  flex-shrink: 0;
}
.dr-filter__color-item:hover .dr-filter__color-circle { border-color: #999; }
.dr-filter__color-item input:checked + .dr-filter__color-circle {
  border-color: #111;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px #111;
}
.dr-filter__color-name {
  font-size: 9px;
  color: #666;
  text-align: center;
  line-height: 1.2;
  word-break: break-word;
  max-width: 100%;
}

/* Price slider */
.dr-filter__price-slider {
  position: relative;
  height: 40px;
  padding-top: 16px;
}
.dr-filter__price-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: #e0e0e0;
  border-radius: 2px;
  transform: translateY(-50%);
}
.dr-filter__price-fill {
  position: absolute;
  height: 100%;
  background: #111;
  border-radius: 2px;
}
.dr-filter__range {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  pointer-events: none;
  margin: 0;
  height: 20px;
}
.dr-filter__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #111;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  cursor: pointer;
  pointer-events: auto;
}
.dr-filter__range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #111;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  cursor: pointer;
  pointer-events: auto;
}
.dr-filter__price-values {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #444;
  margin-top: 8px;
}

/* ===== TOOLBAR (desktop) ===== */
.dr-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.dr-toolbar__count { font-size: 13px; color: #888; margin: 0; }

/* ===== CUSTOM SORT ===== */
.dr-sort { position: relative; }
.dr-sort__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid #d0d0d0;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: #111;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.dr-sort__btn svg { transition: transform 0.2s ease; }
.dr-sort__btn.is-open svg { transform: rotate(180deg); }
.dr-sort__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.dr-sort__dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dr-sort__option {
  display: block;
  width: 100%;
  padding: 12px 18px;
  border: none;
  background: #fff;
  font-size: 13px;
  color: #444;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.1s ease, color 0.1s ease;
}
.dr-sort__option:hover { background: #f5f5f5; color: #111; }
.dr-sort__option--active { color: #111; font-weight: 600; }

/* Mobile sort dropdown */
.dr-mobile-bar__sort-wrap { flex: 1; position: relative; display: flex; }
.dr-sort__dropdown--mobile {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  min-width: 0;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* ===== ACTIVE FILTERS ===== */
.dr-active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.dr-active-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: #555; background: #f0f0f0;
  border-radius: 20px; padding: 6px 12px; text-decoration: none;
}
.dr-active-tag:hover { background: #e0e0e0; }
.dr-active-tag--clear { background: transparent; border: 1px solid #d0d0d0; color: #111; }

/* ===== PRODUCT GRID ===== */
.dr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.dr-card { position: relative; }
.dr-card__link { display: block; text-decoration: none; }
.dr-card__img-wrap {
  position: relative; overflow: hidden; background: #f5f5f5;
  aspect-ratio: 2/3; border-radius: 12px; margin-bottom: 10px;
}
.dr-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dr-card__img--hover { position: absolute; top: 0; left: 0; opacity: 0; transition: opacity 0.3s ease; }
.dr-card__link:hover .dr-card__img--hover { opacity: 1; }
.dr-card__placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: #f0f0f0; }
.dr-card__placeholder svg { width: 60%; height: auto; fill: #ddd; }

.dr-card__badge {
  position: absolute; top: 8px; left: 8px;
  font-size: 9px; font-weight: 600; letter-spacing: 0.04em;
  padding: 3px 6px; text-transform: uppercase; z-index: 1;
  border-radius: 4px;
  font-family: 'NeueHaasDisplayMedium', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.dr-card__badge--new { background: #111; color: #fff; }
.dr-card__badge--sale { background: #111; color: #fff; }
.dr-card__badge--soldout { background: #999; color: #fff; }

.dr-card__quick-add {
  position: absolute; bottom: 8px; left: 8px; z-index: 3;
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none; transition: opacity 0.15s ease;
}
.dr-card__img-wrap:hover .dr-card__quick-add { opacity: 1; pointer-events: auto; }
.dr-card__quick-trigger {
  background: rgba(255,255,255,0.95); padding: 6px 12px;
  font-size: 9px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: #111; cursor: pointer;
  text-align: center; border-radius: 3px 3px 0 0;
  font-family: var(--font-heading--family), sans-serif;
}
.dr-card__sizes {
  display: flex; flex-wrap: wrap; gap: 4px; padding: 0;
  background: rgba(255,255,255,0.95); max-height: 0; overflow: hidden;
  transition: max-height 0.15s ease, padding 0.15s ease;
}
.dr-card__quick-add:hover .dr-card__sizes { max-height: 150px; padding: 6px; }
.dr-card__size {
  width: 26px; height: 26px; min-width: 0; padding: 0;
  border: 1px solid #d0d0d0; border-radius: 3px; background: #fff;
  font-size: 9px; font-weight: 400; color: #111; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-primary--family), sans-serif;
}
.dr-card__size:hover { border-color: #111; }
.dr-card__size--out { color: #ccc; border-color: #eee; cursor: not-allowed; text-decoration: line-through; }

.dr-card__swatches {
  display: flex; gap: 6px; margin-bottom: 6px; align-items: center;
  flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none;
}
.dr-card__swatches::-webkit-scrollbar { display: none; }
.dr-card__swatch {
  display: block; width: 26px; height: 26px; border-radius: 50%;
  border: none; flex-shrink: 0; cursor: pointer; overflow: hidden;
  padding: 0; background: #f7f7f7;
}
.dr-card__swatch img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dr-card__swatch-more {
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%; font-size: 10px;
  font-weight: 600; color: #555; background: #fff; text-decoration: none; flex-shrink: 0;
}

.dr-card__info { display: block; text-decoration: none; color: inherit; padding: 0 2px; }
.dr-card__title {
  font-size: 16px; font-weight: 600;
  font-family: var(--font-heading--family), sans-serif;
  color: #111; margin: 0 0 4px; line-height: 1.3;
}
.dr-card__type { font-size: 13px; color: #111; margin: 0 0 2px; }
.dr-card__color { font-size: 13px; color: #111; margin: 0 0 2px; }
.dr-card__price { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.dr-card__price-now { font-size: 14px; color: #111; font-weight: 400; }
.dr-card__price-now--sale { color: #111; }
.dr-card__price-was { font-size: 13px; color: #d32f2f; text-decoration: line-through; font-weight: 400; }

/* ===== PAGINATION ===== */
.dr-pagination { margin-top: 40px; display: flex; justify-content: center; }
.dr-pagination__list { display: flex; align-items: center; gap: 4px; list-style: none; padding: 0; margin: 0; }
.dr-pagination__link {
  display: flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 8px;
  border: 1px solid transparent; text-decoration: none;
  font-size: 14px; color: #555; transition: all 0.15s ease;
}
.dr-pagination__link:hover { border-color: #111; color: #111; }
.dr-pagination__link--active { background: #111; color: #fff; border-color: #111; }

/* ===== TABLET ===== */
@media screen and (max-width: 1024px) {
  .dr-hero { height: 400px; }
  .dr-hero__overlay { padding: 40px 40px; }
  .dr-hero__title { font-size: 26px; }
  .dr-body { padding: 24px 24px 50px; gap: 24px; grid-template-columns: 190px 1fr; }
  .dr-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== MOBILE ===== */
@media screen and (max-width: 768px) {
  .dr-hero { height: 45vh; min-height: 260px; max-height: 400px; }
  .dr-hero__overlay {
    padding: 24px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.15) 50%, transparent 80%);
  }
  .dr-hero__title { font-size: 22px; }
  .dr-hero__desc { font-size: 13px; }
  .dr-hero__content { max-width: 100%; }

  .dr-categories {
    display: block;
    padding: 20px 0 20px 10px;
  }
  .dr-categories__track {
    width: calc(100vw - 10px);
  }
  .dr-categories__track::after {
    content: '';
    flex: 0 0 10px;
    min-width: 10px;
  }

  .dr-mobile-bar {
    display: flex;
    gap: 0;
    padding: 0 10px 16px;
  }
  .dr-mobile-bar__filter,
  .dr-mobile-bar__sort-btn {
    padding: 14px 0;
  }

  .dr-body {
    display: block;
    padding: 0 10px 40px;
  }

  .dr-filter--nav { display: none; }
  .dr-toolbar { display: none; }

  /* Sidebar = drawer from left */
  .dr-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 75%;
    max-width: 320px;
    height: 100%;
    background: #fff;
    z-index: 1301;
    overflow-y: auto;
    padding: 0 24px 40px;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 24px rgba(0,0,0,0.08);
    -webkit-overflow-scrolling: touch;
  }
  .dr-sidebar.is-open {
    transform: translateX(0);
  }
  .dr-sidebar__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 0;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
  }
  .dr-sidebar__head-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #111;
  }
  .dr-sidebar__close {
    background: none;
    border: none;
    cursor: pointer;
    color: #111;
    padding: 4px;
    display: flex;
  }

  .dr-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .dr-card__img--hover { display: none !important; }
  .dr-card__quick-add { display: none !important; }
  .dr-card__swatches { flex-wrap: wrap; overflow-x: visible; }
  .dr-card__swatch { width: 22px; height: 22px; }
  .dr-card__swatch-more { width: 22px; height: 22px; font-size: 9px; }
  .dr-card__title { font-size: 14px; margin: 0 0 2px; }
  .dr-card__type, .dr-card__color { font-size: 12px; margin: 0 0 2px; }
  .dr-card__price { margin-top: 2px; }
  .dr-card__price-now { font-size: 13px; }
  .dr-card__price-was { font-size: 12px; }
}
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:9) */
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
/* END_SECTION:collections */

/* START_SECTION:custom-section (INDEX:10) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:faq-page (INDEX:11) */
.faq {
  font-family: var(--font-primary--family, sans-serif);
  color: #111;
  background: #fff;
}

/* ── Hero ── */
.faq__hero {
  text-align: center;
  padding: 64px 24px 0;
}

.faq__title {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  color: #111;
}

.faq__subtitle {
  font-size: 14px;
  color: #888;
  margin: 0 auto;
  max-width: 420px;
  line-height: 1.6;
}

/* ── Body ── */
.faq__body {
  max-width: 680px;
  margin: 0 auto;
  padding: 36px 24px 80px;
}

/* ── Tabs ── */
.faq__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
}

.faq__tabs::-webkit-scrollbar {
  display: none;
}

.faq__tab {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  border: 1.5px solid #e0e0e0;
  border-radius: 100px;
  background: #fff;
  color: #555 !important;
  -webkit-text-fill-color: #555;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.faq__tab:hover {
  border-color: #111;
  color: #111 !important;
  -webkit-text-fill-color: #111;
}

.faq__tab--active,
.faq__tab--active:hover,
.faq__tab--active:focus,
.faq__tab--active:active {
  background: #111;
  border-color: #111;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

/* ── Panels (grid-stack keeps height stable across tabs) ── */
.faq__panels {
  display: grid;
}

.faq__section {
  grid-area: 1 / 1;
  visibility: hidden;
  opacity: 0;
}

.faq__section--active {
  visibility: visible;
  opacity: 1;
}

/* ── Items ── */
.faq__item {
  border-bottom: 1px solid #eee;
}

.faq__item:first-child {
  border-top: 1px solid #eee;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  cursor: pointer;
  list-style: none;
  user-select: none;
  line-height: 1.4;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-left: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.25s ease;
}

.faq__item[open] .faq__question::after {
  transform: rotate(180deg);
}

.faq__answer {
  padding: 0 0 20px;
}

.faq__answer p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.faq__answer a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq__answer a:hover {
  color: #555;
}

/* ── Contact ── */
.faq__contact {
  text-align: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.faq__contact-text {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 0 0 16px;
}

.faq__contact-sub {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.faq__contact-sub a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq__contact-sub a:hover {
  color: #555;
}

.faq__contact-btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: #111;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s ease;
}

.faq__contact-btn:hover {
  background: #333;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .faq__hero {
    padding: 44px 20px 0;
  }

  .faq__title {
    font-size: 24px;
  }

  .faq__body {
    padding: 28px 20px 60px;
  }

  .faq__tabs {
    gap: 6px;
    margin-bottom: 24px;
  }

  .faq__tab {
    padding: 8px 16px;
    font-size: 12px;
  }

  .faq__question {
    font-size: 14px;
    padding: 16px 0;
  }

  .faq__answer p {
    font-size: 13px;
  }

  .faq__contact {
    margin-top: 40px;
    padding-top: 32px;
  }

  .faq__contact-text {
    font-size: 16px;
  }
}
/* END_SECTION:faq-page */

/* START_SECTION:faq (INDEX:12) */
.faq {
  font-family: var(--font-primary--family, sans-serif);
  color: #111;
  background: #fff;
}

/* ── Hero ── */
.faq__hero {
  text-align: center;
  padding: 64px 24px 0;
}

.faq__title {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  color: #111;
}

.faq__subtitle {
  font-size: 14px;
  color: #888;
  margin: 0 auto;
  max-width: 420px;
  line-height: 1.6;
}

/* ── Body ── */
.faq__body {
  max-width: 680px;
  margin: 0 auto;
  padding: 36px 24px 80px;
}

/* ── Tabs ── */
.faq__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
}

.faq__tabs::-webkit-scrollbar {
  display: none;
}

.faq__tab {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  border: 1.5px solid #e0e0e0;
  border-radius: 100px;
  background: #fff;
  color: #555 !important;
  -webkit-text-fill-color: #555;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.faq__tab:hover {
  border-color: #111;
  color: #111 !important;
  -webkit-text-fill-color: #111;
}

.faq__tab--active,
.faq__tab--active:hover,
.faq__tab--active:focus,
.faq__tab--active:active {
  background: #111;
  border-color: #111;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

/* ── Panels (grid-stack keeps height stable across tabs) ── */
.faq__panels {
  display: grid;
}

.faq__section {
  grid-area: 1 / 1;
  visibility: hidden;
  opacity: 0;
}

.faq__section--active {
  visibility: visible;
  opacity: 1;
}

/* ── Items ── */
.faq__item {
  border-bottom: 1px solid #eee;
}

.faq__item:first-child {
  border-top: 1px solid #eee;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  cursor: pointer;
  list-style: none;
  user-select: none;
  line-height: 1.4;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-left: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.25s ease;
}

.faq__item[open] .faq__question::after {
  transform: rotate(180deg);
}

.faq__answer {
  padding: 0 0 20px;
}

.faq__answer p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.faq__answer a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq__answer a:hover {
  color: #555;
}

/* ── Contact ── */
.faq__contact {
  text-align: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.faq__contact-text {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 0 0 16px;
}

.faq__contact-sub {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.faq__contact-sub a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq__contact-sub a:hover {
  color: #555;
}

.faq__contact-btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: #111;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s ease;
}

.faq__contact-btn:hover {
  background: #333;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .faq__hero {
    padding: 44px 20px 0;
  }

  .faq__title {
    font-size: 24px;
  }

  .faq__body {
    padding: 28px 20px 60px;
  }

  .faq__tabs {
    gap: 6px;
    margin-bottom: 24px;
  }

  .faq__tab {
    padding: 8px 16px;
    font-size: 12px;
  }

  .faq__question {
    font-size: 14px;
    padding: 16px 0;
  }

  .faq__answer p {
    font-size: 13px;
  }

  .faq__contact {
    margin-top: 40px;
    padding-top: 32px;
  }

  .faq__contact-text {
    font-size: 16px;
  }
}
/* END_SECTION:faq */

/* START_SECTION:featured-collection (INDEX:13) */
.featured-collection {
  padding: 48px 0;
}

.featured-collection__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0;
  margin-bottom: 20px;
  gap: 16px;
}

.featured-collection__header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.featured-collection__title {
  font-size: 36px;
  font-weight: 500;
  font-family: var(--font-heading--family), sans-serif;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
  color: #111;
}

.featured-collection__tabs {
  display: flex;
  gap: 8px;
}

.featured-collection__tab {
  padding: 11px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-heading--family), sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1.5px solid #111;
  background: #fff;
  color: #111;
  line-height: 1;
}

.featured-collection__tab.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.featured-collection__tab:hover:not(.active) {
  background: #f5f5f5;
}

.featured-collection__header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.featured-collection__view-all {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: #111;
}

.featured-collection__view-all:hover {
  color: #666;
}

.featured-collection__nav {
  display: flex;
  gap: 6px;
}

.featured-collection__arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #999;
}

.featured-collection__arrow:hover {
  border-color: #111;
}

.featured-collection__carousel {
  display: none;
}

.featured-collection__carousel.active {
  display: block;
}

.featured-collection__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  width: calc(100% + 40px);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.featured-collection__track::-webkit-scrollbar {
  display: none;
}

/* Product Card Styles */
.product-card {
  flex: 0 0 auto;
  width: calc((100vw - 80px - 64px) / 5);
  min-width: 200px;
  scroll-snap-align: start;
}

.product-card__image-wrapper {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: #f0f0f0;
  margin-bottom: 10px;
  border-radius: 12px;
}

.product-card__image-wrapper a {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__image--hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card__image-wrapper:hover .product-card__image--hover {
  opacity: 1;
}

.product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
}

.product-card__placeholder svg {
  width: 60%;
  height: 60%;
  opacity: 0.3;
}

.product-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  opacity: 1;
  transition: transform 0.15s ease;
}

.product-card__wishlist:hover {
  transform: scale(1.15);
}

.product-card__wishlist:hover {
  background: #fff;
}

.product-card__badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.product-card__badge--new {
  background: #fff;
  color: #111;
}

.product-card__badge--sale {
  background: #d32f2f;
  color: #fff;
  left: auto;
  right: 10px;
  bottom: auto;
  top: 10px;
}



.product-card__info {
  padding: 0 2px;
  font-family: var(--font-primary--family), sans-serif;
  line-height: 1.3;
}

.product-card__info > * {
  margin: 0;
  padding: 0;
}

.product-card__swatches {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.product-card__swatches::-webkit-scrollbar {
  display: none;
}

.product-card__swatch {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
  overflow: hidden;
  padding: 0;
  background: #F7F7F7;
}

.product-card__swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card__swatch--active {
}

.product-card__swatch-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 600;
  color: #555;
  background: #ffffff;
  text-decoration: none;
  flex-shrink: 0;
}

.product-card__name {
  display: block;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-heading--family), sans-serif;
  text-transform: none;
  color: #111;
  text-decoration: none;
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: 4px;
}

.product-card__name:hover {
  color: #111;
}

p.product-card__type {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-primary--family), sans-serif;
  color: #111;
  margin: 0 0 4px;
  padding: 0;
  line-height: 1.4;
  letter-spacing: 0;
}

p.product-card__color {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-primary--family), sans-serif;
  color: #111;
  margin: 0 0 4px;
  padding: 0;
  line-height: 1.4;
  letter-spacing: 0;
}

.product-card__price {
  font-size: 15px;
  font-weight: 400;
  color: #111;
  display: flex;
  gap: 8px;
  align-items: center;
  letter-spacing: 0;
  line-height: 1.3;
  margin-top: 4px !important;
}

.product-card__price--compare {
  color: #d32f2f;
  text-decoration: line-through;
  font-weight: 400;
}

.product-card__price--sale {
  color: #111;
  font-weight: 400;
}

.product-card__price--sold-out {
  color: #999;
  font-weight: 600;
}

.product-card__quick-add {
  position: absolute;
  bottom: 8px;
  left: 8px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.product-card__image-wrapper:hover .product-card__quick-add {
  opacity: 1;
  pointer-events: auto;
}

.product-card__quick-add-trigger {
  background: rgba(255,255,255,0.95);
  padding: 6px 12px;
  font-size: 9px;
  font-weight: 600;
  font-family: var(--font-heading--family), sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #111;
  cursor: pointer;
  text-align: center;
  border-radius: 3px 3px 0 0;
}

.product-card__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0;
  background: rgba(255,255,255,0.95);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.15s ease, padding 0.15s ease;
}

.product-card__quick-add:hover .product-card__sizes {
  max-height: 150px;
  padding: 6px;
}

.product-card__size-btn {
  width: 26px;
  height: 26px;
  min-width: 0;
  padding: 0;
  border: 1px solid #d0d0d0;
  border-radius: 3px;
  background: #fff;
  font-size: 9px;
  font-weight: 400;
  color: #111;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: var(--font-primary--family), sans-serif;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__size-btn:hover {
  border-color: #111;
}

.product-card__size-btn--disabled {
  color: #ccc;
  border-color: #eee;
  cursor: not-allowed;
  text-decoration: line-through;
}

@media (max-width: 999px) {
  .product-card {
    min-width: 160px;
    flex: 0 0 auto;
    width: calc((100% - 24px) / 4);
  }
  .featured-collection__track {
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .featured-collection {
    padding: 24px 0;
    padding-left: 8px;
  }
  .featured-collection__header {
    margin-left: 0;
  }
  .featured-collection__header-left {
    gap: 8px;
  }
  .featured-collection__title {
    font-size: 24px;
  }
  .featured-collection__track {
    margin-left: 0;
    width: calc(100vw - 8px);
    gap: 8px;
  }
  .product-card {
    width: 55vw;
    min-width: 0;
    flex: 0 0 auto;
  }
  .product-card__name {
    font-size: 15px;
    margin-bottom: 2px;
  }
  p.product-card__type,
  p.product-card__color {
    font-size: 12px;
    margin: 0 0 2px;
  }
  .product-card__price {
    font-size: 13px;
    margin-top: 2px !important;
  }
  .featured-collection__nav {
    display: none;
  }
  .featured-collection__view-all {
    display: none;
  }
  .product-card__wishlist {
    opacity: 1;
    transform: none;
  }
  .product-card__quick-add {
    display: none !important;
  }
  .product-card__image--hover {
    display: none !important;
  }
}
/* END_SECTION:featured-collection */

/* START_SECTION:footer (INDEX:14) */
/* ── Pre-footer ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital@1&display=swap');

.pre-footer {
  background: #efefef;
  position: relative;
}

.pre-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.pre-footer__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 24px;
  text-decoration: none;
  color: #111;
  border-right: none;
}

.pre-footer__icon {
  flex-shrink: 0;
  color: #333;
  width: 32px;
  height: 32px;
}

.pre-footer__label {
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-primary--family, sans-serif);
  color: #111;
}

.pre-footer__brand-script {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.06em;
  color: #111;
  margin-right: -4px;
}

.pre-footer__logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -58%) rotate(4deg);
  z-index: 10;
  width: 65px;
  height: 65px;
}

.pre-footer__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(0.14);
}

/* ── Footer ── */
.site-footer {
  background: #EFEFEF;
  color: #111;
  font-family: var(--font-primary--family, sans-serif);
  width: 100%;
  position: relative;
}

.site-footer .footer__container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.footer__top {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  padding: 48px 0 44px;
  border-bottom: none;
  position: relative;
  z-index: 0;
}

.footer__top::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #F7F7F7;
  z-index: -1;
}

.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  position: relative;
  z-index: 0;
}

.footer__bar::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #E9E9E9;
  z-index: -1;
}

/* ── Newsletter ── */
.footer__newsletter-heading {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #373737;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.footer__newsletter-text {
  font-size: 13px;
  color: #222222;
  margin: 0 0 20px;
  line-height: 1.6;
}

.footer__input-row {
  display: flex;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.footer__input-row:focus-within {
  border-color: rgba(0,0,0,0.35);
}

.footer__email-input {
  background: none;
  border: none;
  outline: none;
  color: #111;
  font-size: 13px;
  font-family: inherit;
  padding: 11px 14px;
  flex: 1;
  min-width: 0;
}

.footer__email-input::placeholder {
  color: rgba(0,0,0,0.5);
}

.footer__submit-btn {
  background: #111;
  border: none;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.1em;
  padding: 11px 20px;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.footer__submit-btn:hover {
  background: #333;
}


/* Social */
.footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.footer__social a {
  color: rgba(0,0,0,0.6);
  display: flex;
  transition: color 0.2s ease;
}

.footer__social a:hover {
  color: #111;
}

/* ── Columns ── */
.footer__columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.footer__columns::before {
  content: '';
  position: absolute;
  top: -48px;
  bottom: -44px;
  left: -40px;
  right: -9999px;
  background: #EFEFEF;
  z-index: -1;
}

.footer__col-toggle {
  display: block;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 0;
  margin: 0 0 16px;
  cursor: default;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #222222;
  font-family: inherit;
}

.footer__plus { display: none; }
.footer__col-body { display: block; }

.footer__links { list-style: none; padding: 0; margin: 0; }
.footer__links li { margin-bottom: 8px; }

.footer__links a {
  font-size: 13px;
  color: #393939;
  text-decoration: none;
  transition: color 0.15s ease;
  line-height: 1.6;
}

.footer__links a:hover { color: #111; }


.footer__copy {
  font-size: 11px;
  color: rgba(0,0,0,0.3);
}

.footer__payment {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer__payment svg {
  height: 20px;
  width: auto;
  opacity: 0.4;
}

/* ── Mobile ── */
@media screen and (max-width: 768px) {
  .pre-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .pre-footer__cell {
    padding: 18px 14px;
    gap: 10px;
    border-bottom: 1px solid #fff;
  }

  .pre-footer__cell:nth-child(n+3) {
    border-bottom: none;
  }

  .pre-footer__icon {
    width: 26px;
    height: 26px;
  }

  .pre-footer__label {
    font-size: 14px;
    letter-spacing: 0.06em;
  }

  .pre-footer__brand-script {
    font-size: 20px;
    margin-right: -2px;
  }

  .pre-footer__logo {
    width: 60px;
    height: 60px;
    transform: translate(-50%, -56%) rotate(4deg);
  }

  .site-footer .footer__container { padding: 0; }

  .footer__top {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-bottom: none;
    background: #F7F7F7;
  }

  .footer__top::before {
    display: none;
  }

  .footer__newsletter {
    padding: 32px 20px;
    border-bottom: none;
  }

  .footer__newsletter-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
  }

  .footer__newsletter-text {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .footer__email-input {
    font-size: 13px;
  }

  .footer__submit-btn {
    padding: 11px 14px;
    font-size: 0;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer__submit-btn::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E") no-repeat center;
  }

  .footer__social {
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
    gap: 18px;
  }

  .footer__columns {
    grid-template-columns: 1fr;
    gap: 0;
    background: #EFEFEF;
  }

  .footer__columns::before {
    display: none;
  }

  .footer__col {
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .footer__col:last-child { border-bottom: none; }

  .footer__col-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    margin: 0;
    cursor: pointer;
    font-size: 12px;
    color: #3A3A3A;
  }

  .footer__plus {
    display: block;
    flex-shrink: 0;
    transition: transform 0.25s ease;
    color: rgba(0,0,0,0.25);
  }

  .footer__col-toggle[aria-expanded="true"] .footer__plus {
    transform: rotate(45deg);
  }

  .footer__col-body {
    display: none;
    padding: 0 20px 16px;
  }

  .footer__col-toggle[aria-expanded="true"] + .footer__col-body {
    display: block;
  }

  .footer__social {
    justify-content: flex-start;
    padding-left: 6px;
  }

  .footer__bar {
    flex-direction: column;
    gap: 14px;
    padding: 20px 20px 16px;
    text-align: center;
    background: #E9E9E9;
  }

  .footer__bar::before {
    display: none;
  }

  .footer__payment {
    flex-wrap: wrap;
    justify-content: center;
  }
}
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:15) */
/* NeueHaasDisplay fonts */
  @font-face {
    font-family: 'NeueHaasDisplayRoman';
    src: url('NeueHaasDisplayRoman.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'NeueHaasDisplayMedium';
    src: url('NeueHaasDisplayMedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }

  /* ============================================
     HEADER — Main bar
     ============================================ */
  .site-header {
    background: #fff;
    position: relative;
    border-bottom: 1px solid #e5e5e5;
  }

  .site-header__inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 40px;
    position: relative;
  }

  .site-header__left-pill {
    display: none;
  }

  .site-header__logo--mobile {
    display: none;
  }

  .site-header__logo--desktop {
    display: flex;
  }

  .site-header__icon-btn--wishlist {
    display: none;
  }

  /* Hamburger (hidden on desktop) */
  .site-header__hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #111;
    margin-right: 12px;
    width: 36px;
    height: 36px;
    touch-action: manipulation;
    position: relative;
    flex-shrink: 0;
  }

  .hamburger-bar {
    display: block;
    position: absolute;
    left: 7px;
    width: 22px;
    height: 1.5px;
    background: #111;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  }

  .hamburger-bar--1 { top: 10px; width: 22px; }
  .hamburger-bar--2 { top: 17px; width: 15px; }
  .hamburger-bar--3 { top: 24px; width: 22px; }

  .site-header__hamburger.is-active .hamburger-bar--1 {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header__hamburger.is-active .hamburger-bar--2 {
    opacity: 0;
    transform: scaleX(0);
  }

  .site-header__hamburger.is-active .hamburger-bar--3 {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Logo — centered */
  .site-header__logo {
    font-family: 'NeueHaasDisplayMedium', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: #111;
    flex-shrink: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .site-header__logo-img {
    height: {{ section.settings.logo_size | default: 22 | minus: 5 }}px;
    width: auto;
    max-height: 40px;
    filter: brightness(0);
    display: block;
  }

  /* Desktop nav */
  .site-header__nav {
    flex: 1;
  }

  .site-header__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 24px;
  }

  .site-header__nav-item {
    position: relative;
  }

  .site-header__nav-link {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 11.5px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #000;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'NeueHaasDisplayRoman', sans-serif;
    line-height: 1;
    text-decoration: none;
  }

  .site-header__nav-link:hover {
    color: #555;
  }

  .site-header__nav-arrow {
    width: 7px;
    height: auto;
    transition: transform 0.2s ease;
    opacity: 0.6;
  }

  .site-header__nav-item.is-active .site-header__nav-arrow {
    transform: rotate(180deg);
  }

  /* Right utilities */
  .site-header__utilities {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
  }

  .site-header__country {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #333;
    white-space: nowrap;
    font-family: 'NeueHaasDisplayRoman', sans-serif;
  }

  .site-header__icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
  }
  .site-header__icon-btn svg {
    width: 22px;
    height: 22px;
  }

  .site-header__icon-btn:hover {
    color: #555;
  }

  .site-header__icon-btn svg {
    width: 22px;
    height: 22px;
  }

  .site-header__cart-btn { position: relative; }
  .site-header__cart-count {
    position: absolute;
    top: 0px;
    right: -2px;
    background: #111;
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    min-width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    pointer-events: none;
  }
  .site-header__cart-count:empty,
  .site-header__cart-count[data-count="0"] { display: none; }
  .cart-fill { display: none; }
  .cart-has-items .cart-fill { display: block; }
  .site-header__cart-btn svg { width: 26px; height: 24px; position: relative; top: 3px; }


  /* ============================================
     MEGA MENU
     ============================================ */
  .mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 999;
    overflow: hidden;
    max-height: 0;
  }

  .mega-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 700px;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, max-height 0.35s ease;
  }

  .mega-menu__inner {
    width: 100%;
    padding: 24px 48px 0;
    display: flex;
    flex-direction: column;
  }

  .mega-menu__columns {
    display: flex;
    gap: 0;
    align-items: stretch;
    width: 100%;
  }

  .mega-menu__col {
    flex: 0 0 145px;
    min-width: 0;
  }

  .mega-menu__col--featured {
    flex: 0 0 145px;
  }

  .mega-menu__featured-list {
    list-style: none;
    padding: 0;
    margin: -5px 0 0;
  }

  .mega-menu__featured-list li {
    margin-bottom: 9px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .mega-menu.is-open .mega-menu__featured-list li {
    opacity: 1;
    transform: translateY(0);
  }

  .mega-menu__featured-list a {
    text-decoration: none;
    color: #111;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1;
    font-family: 'NeueHaasDisplayMedium', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    transition: color 0.15s ease;
  }

  .mega-menu__featured-list a:hover {
    color: #555;
  }

  .mega-menu__heading {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #111;
    margin: 0 0 14px 0;
    line-height: 1;
    font-family: 'NeueHaasDisplayMedium', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .mega-menu.is-open .mega-menu__heading {
    opacity: 1;
    transform: translateY(0);
  }

  .mega-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mega-menu__list li {
    margin-bottom: 9px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .mega-menu.is-open .mega-menu__list li {
    opacity: 1;
    transform: translateY(0);
  }

  .mega-menu__list a {
    text-decoration: none;
    color: #111;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: color 0.15s ease;
    line-height: 1;
    font-family: 'NeueHaasDisplayMedium', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }

  .mega-menu__list a:hover {
    color: #555;
  }

  .mega-menu__link--highlight {
    color: #e8600a !important;
    font-weight: 500 !important;
  }

  .mega-menu__link--highlight:hover {
    color: #c75008 !important;
  }

  .mega-menu__color-list a {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mega-menu__color-swatch {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    display: inline-block;
    flex-shrink: 0;
    border: 1px solid rgba(0,0,0,0.08);
  }

  /* Mega menu images — side column next to text columns */
  .mega-menu__images {
    display: flex;
    gap: 10px;
    margin-left: 20px;
    flex: 1 1 auto;
    align-self: stretch;
  }

  .mega-menu__image-card {
    position: relative;
    flex: 1;
    height: 280px;
    overflow: hidden;
    border-radius: 8px;
    background: #f0f0f0;
    text-decoration: none;
    display: block;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .mega-menu.is-open .mega-menu__image-card {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.12s;
  }

  .mega-menu__image-card img,
  .mega-menu__image-card .mega-menu__image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .mega-menu__image-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
  }

  .mega-menu__image-card:hover img,
  .mega-menu__image-card:hover .mega-menu__image-img {
    transform: scale(1.05);
  }

  .mega-menu__image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
  }

  .mega-menu__image-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    font-family: var(--font-heading--family), sans-serif;
    z-index: 1;
  }

  .mega-menu__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
  }

  .mega-menu__backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Mega menu utility bar — Thrivin style with icons */
  .mega-menu__utility-bar {
    display: flex;
    gap: 28px;
    padding: 10px 0 12px;
    margin-top: 0;
    border-top: 1px solid #eee;
    width: 100%;
    flex-shrink: 0;
  }

  .mega-menu__utility-bar a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: #888;
    text-decoration: none;
    font-family: 'NeueHaasDisplayRoman', sans-serif;
    letter-spacing: 0.02em;
    transition: color 0.15s ease;
  }

  .mega-menu__utility-bar a svg {
    flex-shrink: 0;
    color: #999;
    transition: color 0.15s ease;
  }

  .mega-menu__utility-bar a:hover {
    color: #111;
  }

  .mega-menu__utility-bar a:hover svg {
    color: #111;
  }

  /* ============================================
     SEARCH OVERLAY
     ============================================ */
  /* ============================================
     SEARCH PANEL — below header
     ============================================ */
  .search-panel {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 999;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .search-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .search-panel__bar {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
  }

  .search-panel__bar-inner {
    width: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    height: 56px;
    gap: 14px;
  }

  .search-panel__icon {
    color: #888;
    flex-shrink: 0;
  }

  .search-panel__form {
    flex: 1;
    display: flex;
  }

  .search-panel__input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: #111;
    background: transparent;
    padding: 0;
    font-family: var(--font-primary--family), sans-serif;
  }

  .search-panel__input::placeholder {
    color: #bbb;
  }

  .search-panel__input::-webkit-search-cancel-button,
  .search-panel__input::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
  }

  .search-panel__clear {
    background: #f0f0f0;
    border: none;
    cursor: pointer;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #111;
    border-radius: 4px;
    flex-shrink: 0;
    font-family: var(--font-primary--family), sans-serif;
    transition: background 0.15s ease;
    display: none;
  }

  .search-panel__clear.is-visible {
    display: block;
  }

  .search-panel__clear:hover {
    background: #e0e0e0;
  }

  .search-panel__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color 0.15s ease;
    margin-left: 4px;
  }

  .search-panel__close:hover {
    color: #555;
  }

  .search-panel__results {
    background: #fff;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
  }

  .search-panel__results:empty {
    display: none;
  }

  .search-panel__results-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 28px 40px 36px;
  }

  .search-panel__section-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    margin: 0 0 20px;
  }

  .search-panel__products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .search-panel__card {
    position: relative;
  }

  .search-panel__card-images {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #f0f0f0;
    margin-bottom: 10px;
    border-radius: 12px;
  }

  .search-panel__card-images a {
    display: block;
    width: 100%;
    height: 100%;
  }

  .search-panel__card-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .search-panel__card-img--hover {
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .search-panel__card-images:hover .search-panel__card-img--hover {
    opacity: 1;
  }

  .search-panel__card-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    z-index: 2;
    background: #111;
    color: #fff;
    font-family: 'NeueHaasDisplayMedium', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }

  .search-panel__card-quick-add {
    position: absolute;
    bottom: 8px;
    left: 8px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
  }

  .search-panel__card-images:hover .search-panel__card-quick-add {
    opacity: 1;
    pointer-events: auto;
  }

  .search-panel__card-qa-trigger {
    background: rgba(255,255,255,0.95);
    padding: 6px 12px;
    font-size: 9px;
    font-weight: 600;
    font-family: var(--font-heading--family), sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #111;
    cursor: pointer;
    text-align: center;
    border-radius: 3px 3px 0 0;
    border: none;
  }

  .search-panel__card-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 0;
    background: rgba(255,255,255,0.95);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.15s ease, padding 0.15s ease;
  }

  .search-panel__card-quick-add:hover .search-panel__card-sizes {
    max-height: 150px;
    padding: 6px;
  }

  .search-panel__card-size-btn {
    width: 26px;
    height: 26px;
    min-width: 0;
    padding: 0;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    background: #fff;
    font-size: 9px;
    font-weight: 400;
    color: #111;
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: var(--font-primary--family), sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .search-panel__card-size-btn:hover {
    border-color: #111;
  }

  .search-panel__card-size-btn--disabled {
    color: #ccc;
    border-color: #eee;
    cursor: default;
    text-decoration: line-through;
  }

  .search-panel__card-info {
    color: #111;
    display: block;
    padding: 0 2px;
    font-family: var(--font-primary--family), sans-serif;
  }

  .search-panel__card-link {
    text-decoration: none;
    color: #111;
    display: block;
  }

  .search-panel__card-swatches {
    display: flex;
    gap: 6px;
    margin-bottom: 6px;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .search-panel__card-swatches::-webkit-scrollbar {
    display: none;
  }

  .search-panel__card-swatch {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: none;
    display: block;
    flex-shrink: 0;
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
    padding: 0;
    background: #F7F7F7;
  }

  .search-panel__card-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .search-panel__card-swatch--active {
  }

  .search-panel__card-swatch-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 9px;
    font-weight: 600;
    color: #555;
    background: #ffffff;
    flex-shrink: 0;
  }

  .search-panel__card-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-heading--family), sans-serif;
    text-transform: none;
    color: #111;
    letter-spacing: 0;
    line-height: 1.3;
    margin-bottom: 4px;
  }

  .search-panel__card-type {
    font-size: 14px;
    font-weight: 400;
    color: #111;
    margin: 0 0 4px;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .search-panel__card-color {
    font-size: 14px;
    font-weight: 400;
    color: #111;
    margin: 0 0 4px;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .search-panel__card-price {
    font-size: 15px;
    font-weight: 400;
    color: #111;
    letter-spacing: 0;
    line-height: 1.3;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .search-panel__card-price-was {
    font-size: 13px;
    color: #d32f2f;
    text-decoration: line-through;
    font-weight: 400;
  }
  .search-panel__card-price-sale {
    font-size: 14px;
    color: #111;
    font-weight: 400;
  }

  .search-panel__no-results {
    text-align: center;
    padding: 40px 0;
    color: #888;
    font-size: 14px;
  }

  .search-panel__view-all {
    display: block;
    text-align: center;
    margin-top: 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    padding: 14px 0;
    border-top: 1.5px solid #111;
    border-bottom: 1.5px solid #111;
    transition: background 0.15s ease;
  }

  .search-panel__view-all:hover {
    background: #f5f5f5;
  }

  .search-panel__close-x {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: #111;
    padding: 4px;
    flex-shrink: 0;
  }

  .search-panel__close-x:hover {
    color: #555;
  }

  .search-panel__clear.is-visible ~ .search-panel__close-x {
    display: none;
  }

  @media (max-width: 999px) {
    .search-panel__card-quick-add,
    .search-panel__card-img--hover {
      display: none !important;
    }

    .search-panel__bar-inner {
      padding: 0 16px;
      height: 52px;
    }

    .search-panel__results {
      overflow-x: hidden;
    }

    .search-panel__results-inner {
      padding: 20px 16px 28px;
      box-sizing: border-box;
      max-width: 100%;
    }

    .search-panel__products {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .search-panel__card-swatches {
      flex-wrap: wrap;
      overflow-x: visible;
    }

    .search-panel__card-swatch {
      width: 16px;
      height: 16px;
    }

    .search-panel__card-swatch-more {
      width: 16px;
      height: 16px;
      font-size: 8px;
    }

    .search-panel__card-title {
      font-size: 15px;
    }

    .search-panel__card-type,
    .search-panel__card-color {
      font-size: 12px;
      margin: 0 0 2px;
    }

    .search-panel__card-price {
      font-size: 13px;
    }
  }

  .search-panel__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
  }

  .search-panel__backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* ============================================
     CART DRAWER — Dore & Rose style
     ============================================ */
  .cart-drawer__backdrop {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.18);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.32s ease, visibility 0.32s ease;
  }
  .cart-drawer__backdrop.is-visible {
    opacity: 1;
    visibility: visible;
  }
  .cart-drawer {
    position: fixed;
    top: 0; right: 0;
    width: 520px;
    max-width: 92vw;
    height: 100%;
    background: #fff;
    z-index: 1201;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
    display: flex;
    flex-direction: column;
    will-change: transform;
    box-shadow: -8px 0 30px rgba(0,0,0,0);
  }
  .cart-drawer.is-open {
    transform: translateX(0);
    box-shadow: -8px 0 30px rgba(0,0,0,0.08);
  }

  .cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #F7F7F7;
    border-bottom: 1px solid #E6E6E6;
    flex-shrink: 0;
    min-height: 51px;
    box-sizing: border-box;
  }
  .cart-drawer__title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #222;
    text-transform: uppercase;
    margin: 0;
  }
  .cart-drawer__close {
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease, transform 0.2s ease;
    outline: none;
    -webkit-tap-highlight-color: transparent;
  }
  .cart-drawer__close:hover {
    background: #F0F0F0;
    transform: rotate(90deg);
  }

  .cart-drawer__shipping {
    background: #fff;
    border-bottom: 1px solid #E6E6E6;
    flex-shrink: 0;
  }
  .cart-drawer__shipping:empty { display: none; }
  .cart-drawer__shipping-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    font-size: 12px;
    color: #222;
    line-height: 1.4;
  }
  .cart-drawer__shipping-circle {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    position: relative;
  }
  .cart-drawer__shipping-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
  }
  .cart-drawer__shipping-circle-bg {
    fill: none;
    stroke: #E6E6E6;
    stroke-width: 2;
  }
  .cart-drawer__shipping-circle-fill {
    fill: none;
    stroke: #222;
    stroke-width: 2;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.4s ease;
  }
  .cart-drawer__shipping-circle--success .cart-drawer__shipping-circle-fill {
    stroke: #2e7d32;
  }

  .cart-drawer__body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
  }

  .cart-drawer__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
  }
  .cart-drawer__empty-title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin: 0 0 8px;
  }
  .cart-drawer__empty-sub {
    font-size: 13px;
    color: #646464;
    margin: 0 0 24px;
  }

  .cart-drawer__loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e5e5e5;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
  }
  .cart-drawer__loading.is-active {
    opacity: 1;
  }
  .cart-drawer__loading-bar {
    height: 100%;
    width: 0;
    background: #000;
    border-radius: 2px;
  }
  .cart-drawer__loading.is-active .cart-drawer__loading-bar {
    animation: cartLoadBar 1.2s ease forwards;
  }
  @keyframes cartLoadBar {
    0% { width: 0; }
    30% { width: 50%; }
    60% { width: 80%; }
    100% { width: 95%; }
  }
  .cart-drawer__loading.is-done .cart-drawer__loading-bar {
    width: 100%;
    transition: width 0.15s ease;
  }

  .cart-drawer__items { padding: 0; position: relative; }
  .cart-drawer__item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    padding: 20px;
    border-bottom: 1px solid #E6E6E6;
    transition: opacity 0.25s ease;
  }
  .cart-drawer__item.is-updating {
    opacity: 0.5;
    pointer-events: none;
  }
  .cart-drawer__item-image {
    width: 100px;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 8px;
    background: #F7F7F7;
  }
  .cart-drawer__item-image a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .cart-drawer__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .cart-drawer__item-details {
    display: flex;
    flex-direction: column;
    min-width: 0;
    position: relative;
  }
  .cart-drawer__item-title {
    font-size: 13.5px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    display: block;
    line-height: 1.3;
    margin: 0 0 4px;
    padding-right: 28px;
  }
  .cart-drawer__item-title:hover { text-decoration: underline; }
  .cart-drawer__item-variant {
    font-size: 12.5px;
    color: #646464;
    margin: 0;
    line-height: 1.4;
  }
  .cart-drawer__item-size {
    font-size: 12px;
    color: #444;
    margin: 2px 0 0;
    line-height: 1.3;
  }
  .cart-drawer__item-color {
    font-size: 12px;
    color: #444;
    margin: 0;
    line-height: 1.3;
  }
  .cart-drawer__item-price {
    display: flex;
    gap: 6px;
    align-items: center;
    margin: 6px 0 0;
  }
  .cart-drawer__item-price-compare {
    font-size: 12px;
    font-weight: 400;
    color: #d32f2f;
    text-decoration: line-through;
  }
  .cart-drawer__item-price-current {
    font-size: 13px;
    font-weight: 400;
    color: #111;
  }
  .cart-drawer__item-remove {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    color: #646464;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .cart-drawer__item-remove:hover { color: #222; }
  .cart-drawer__item-remove:active { color: #646464; }
  .cart-drawer__item-remove svg { width: 16px; height: 16px; stroke-width: 1.8; }
  .cart-drawer__item-bottom {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-top: 10px;
  }
  .cart-drawer__qty {
    display: flex;
    align-items: center;
    border: none;
    border-radius: 4px;
    overflow: hidden;
  }
  .cart-drawer__qty-btn {
    width: 36px;
    height: 36px;
    background: #F7F7F7;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    outline: none;
    user-select: none;
  }
  .cart-drawer__qty-btn:active { background: #F7F7F7; color: #222; }
  .cart-drawer__qty-value {
    width: 40px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: #222;
    background: #F7F7F7;
    line-height: 36px;
    height: 36px;
  }

  .cart-drawer button,
  .cart-drawer a {
    -webkit-tap-highlight-color: transparent;
    outline: none;
  }

  .cart-drawer__obsession {
    padding: 0 20px;
    border-top: 0.5px solid #ddd;
  }
  .cart-drawer__obsession-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    text-transform: none;
    letter-spacing: 0;
    -webkit-tap-highlight-color: transparent;
  }
  .cart-drawer__obsession-chevron {
    transition: transform 0.3s ease;
  }
  .cart-drawer__obsession-toggle[aria-expanded="true"] .cart-drawer__obsession-chevron {
    transform: rotate(180deg);
  }
  .cart-drawer__obsession-items {
    max-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding-bottom: 0;
  }
  .cart-drawer__obsession-items.is-open {
    max-height: 600px;
    padding-bottom: 20px;
  }
  .cart-drawer__obsession-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px;
    border: 1px solid #e5e5e5;
    border-radius: 0;
  }
  .cart-drawer__obsession-img {
    width: 86px;
    height: 86px;
    border-radius: 8px;
    overflow: hidden;
    background: #F7F7F7;
    flex-shrink: 0;
  }
  .cart-drawer__obsession-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .cart-drawer__obsession-info {
    flex: 1;
    min-width: 0;
  }
  .cart-drawer__obsession-name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #111;
    margin: 0 0 3px;
    line-height: 1.3;
    text-decoration: none;
  }
  .cart-drawer__obsession-prices {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-bottom: 8px;
  }
  .cart-drawer__obsession-compare {
    font-size: 12px;
    color: #d32f2f;
    text-decoration: line-through;
    font-weight: 400;
  }
  .cart-drawer__obsession-price {
    font-size: 13px;
    color: #111;
    font-weight: 400;
  }
  .cart-drawer__obsession-add {
    display: inline-block;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 8px 20px;
    cursor: pointer;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
  }
  .cart-drawer__obsession-add:hover { background: #000; }
  .cart-drawer__obsession-add:active { background: #000; color: #fff; }

  .cart-drawer__obsession-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 6px;
  }
  .cart-drawer__obsession-size {
    min-width: 28px;
    height: 28px;
    padding: 0 6px;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    background: #fff;
    font-size: 10px;
    font-weight: 400;
    color: #111;
    cursor: pointer;
    text-align: center;
    font-family: var(--font-primary--family), sans-serif;
    transition: border-color 0.15s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
  .cart-drawer__obsession-size:hover {
    border-color: #111;
  }
  .cart-drawer__obsession-size--disabled {
    color: #ccc;
    border-color: #e8e8e8;
    cursor: not-allowed;
    text-decoration: line-through;
  }

  .cart-drawer__footer {
    padding: 20px;
    border-top: 1px solid #E6E6E6;
    flex-shrink: 0;
    background: #fff;
  }
  .cart-drawer__subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
  }
  .cart-drawer__subtotal-label {
    font-size: 14.5px;
    font-weight: 500;
    color: #222;
  }
  .cart-drawer__subtotal-price {
    font-size: 14.5px;
    font-weight: 400;
    color: #222;
    display: flex;
    gap: 6px;
    align-items: center;
  }
  .cart-drawer__subtotal-compare {
    font-size: 13px;
    font-weight: 400;
    color: #d32f2f;
    text-decoration: line-through;
  }
  .cart-drawer__subtotal-sale {
    font-size: 14.5px;
    font-weight: 400;
    color: #111;
  }
  .cart-drawer__checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    background: #000;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 0;
    border: none;
    border-radius: 34px;
    cursor: pointer;
    transition: background 0.15s ease;
    box-sizing: border-box;
    font-family: var(--font-primary--family), sans-serif;
  }
  .cart-drawer__checkout-btn:hover { background: #000; color: #fff; }
  .cart-drawer__checkout-arrows {
    margin-left: 6px;
    display: inline-flex;
    align-items: center;
    position: relative;
    top: 0px;
  }
  .cart-drawer__checkout-arrows svg {
    width: 17px;
    height: 14px;
  }

  .cart-drawer__notice {
    padding: 10px 20px;
    background: #FFF3F3;
    color: #C41017;
    font-size: 12px;
    text-align: center;
    border-bottom: 1px solid #E6E6E6;
    opacity: 0;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
  }
  .cart-drawer__notice.is-visible { opacity: 1; }

  .cart-drawer__trustpilot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #E6E6E6;
  }
  .cart-drawer__tp-text {
    font-size: 14px;
    font-weight: 700;
    color: #111;
  }
  .cart-drawer__tp-stars {
    height: 20px;
    width: auto;
  }
  .cart-drawer__tp-logo {
    height: 16px;
    width: auto;
  }

  @media (max-width: 768px) {
    .cart-drawer {
      width: 100%;
      max-width: 100vw;
    }
  }

  /* ============================================
     MOBILE MENU — GPAX (below header)
     ============================================ */
  .mobile-menu {
    position: fixed;
    top: 52px;
    left: 0;
    width: 100%;
    height: calc(100% - 52px);
    background: #fff;
    z-index: 1099;
    display: flex;
    flex-direction: column;
    clip-path: inset(0 0 100% 0);
    visibility: hidden;
    transition: clip-path 0.28s cubic-bezier(0.4, 0, 0.6, 1), visibility 0.28s ease;
  }

  .mobile-menu.is-open {
    clip-path: inset(0 0 0 0);
    visibility: visible;
    transition: clip-path 0.35s cubic-bezier(0.25, 0, 0.15, 1), visibility 0.35s ease;
  }

  .mobile-menu__tabs,
  .mobile-menu__featured-link,
  .mobile-menu__cat-row,
  .mobile-menu__footer-section {
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .mobile-menu.is-open .mobile-menu__tabs { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
  .mobile-menu.is-open .mobile-menu__featured-link { opacity: 1; transform: translateY(0); }
  .mobile-menu.is-open .mobile-menu__cat-row { opacity: 1; transform: translateY(0); }
  .mobile-menu.is-open .mobile-menu__footer-section { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }

  .mobile-menu.is-open .mobile-menu__featured-link:nth-child(1) { transition-delay: 0.08s; }
  .mobile-menu.is-open .mobile-menu__featured-link:nth-child(2) { transition-delay: 0.11s; }
  .mobile-menu.is-open .mobile-menu__featured-link:nth-child(3) { transition-delay: 0.14s; }
  .mobile-menu.is-open .mobile-menu__featured-link:nth-child(4) { transition-delay: 0.17s; }
  .mobile-menu.is-open .mobile-menu__featured-link:nth-child(5) { transition-delay: 0.20s; }

  .mobile-menu.is-open .mobile-menu__cat-row:nth-child(1) { transition-delay: 0.12s; }
  .mobile-menu.is-open .mobile-menu__cat-row:nth-child(2) { transition-delay: 0.14s; }
  .mobile-menu.is-open .mobile-menu__cat-row:nth-child(3) { transition-delay: 0.16s; }
  .mobile-menu.is-open .mobile-menu__cat-row:nth-child(4) { transition-delay: 0.18s; }
  .mobile-menu.is-open .mobile-menu__cat-row:nth-child(5) { transition-delay: 0.20s; }
  .mobile-menu.is-open .mobile-menu__cat-row:nth-child(6) { transition-delay: 0.22s; }

  /* Tab navigation: WOMEN / MEN */
  .mobile-menu__tabs {
    display: flex;
    flex-shrink: 0;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
  }

  .mobile-menu__tab {
    flex: 1;
    padding: 12px 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #bbb;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    font-family: var(--font-heading--family), sans-serif;
    transition: color 0.2s ease, border-color 0.2s ease;
    margin-bottom: -1px;
  }

  .mobile-menu__tab.is-active {
    color: #111;
    border-bottom-color: #999;
  }

  /* Tab content */
  .mobile-menu__tab-content {
    display: none;
  }

  .mobile-menu__tab-content.is-active {
    display: block;
  }

  .mobile-menu__tab-content.is-entering .mobile-menu__featured-link,
  .mobile-menu__tab-content.is-entering .mobile-menu__cat-row,
  .mobile-menu__tab-content.is-entering .mobile-menu__footer-section {
    opacity: 0;
    transform: translateY(-10px);
  }

  .mobile-menu__tab-content.is-animating .mobile-menu__featured-link,
  .mobile-menu__tab-content.is-animating .mobile-menu__cat-row,
  .mobile-menu__tab-content.is-animating .mobile-menu__footer-section {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu__tab-content.is-animating .mobile-menu__featured-link:nth-child(1) { transition-delay: 0.03s; }
  .mobile-menu__tab-content.is-animating .mobile-menu__featured-link:nth-child(2) { transition-delay: 0.06s; }
  .mobile-menu__tab-content.is-animating .mobile-menu__featured-link:nth-child(3) { transition-delay: 0.09s; }
  .mobile-menu__tab-content.is-animating .mobile-menu__featured-link:nth-child(4) { transition-delay: 0.12s; }
  .mobile-menu__tab-content.is-animating .mobile-menu__featured-link:nth-child(5) { transition-delay: 0.15s; }
  .mobile-menu__tab-content.is-animating .mobile-menu__cat-row:nth-child(1) { transition-delay: 0.08s; }
  .mobile-menu__tab-content.is-animating .mobile-menu__cat-row:nth-child(2) { transition-delay: 0.10s; }
  .mobile-menu__tab-content.is-animating .mobile-menu__cat-row:nth-child(3) { transition-delay: 0.12s; }
  .mobile-menu__tab-content.is-animating .mobile-menu__cat-row:nth-child(4) { transition-delay: 0.14s; }
  .mobile-menu__tab-content.is-animating .mobile-menu__cat-row:nth-child(5) { transition-delay: 0.16s; }
  .mobile-menu__tab-content.is-animating .mobile-menu__cat-row:nth-child(6) { transition-delay: 0.18s; }
  .mobile-menu__tab-content.is-animating .mobile-menu__footer-section { transition-delay: 0.12s; }

  .mobile-menu__body {
    flex: 1;
    overflow-y: auto;
    padding: 0 0 40px;
    -webkit-overflow-scrolling: touch;
    background: #fff;
  }

  /* Mobile menu — Featured links */
  .mobile-menu__featured {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 16px 0 0;
  }

  .mobile-menu__featured-link {
    font-size: 11.5px;
    font-weight: 400;
    color: #111;
    text-decoration: none;
    padding: 12px 16px;
    font-family: 'NeueHaasDisplayRoman', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: block;
    line-height: 1.3;
    border-bottom: 1px solid #f2f2f2;
  }

  .mobile-menu__featured-link:last-child {
    border-bottom: none;
  }

  .mobile-menu__featured-link--highlight {
    color: #e8600a;
  }

  /* Category list — Dore & Rose style (thumbnail + name rows) */
  .mobile-menu__cat-list {
    padding: 6px 0 0;
    border-top: 1px solid #eee;
  }

  .mobile-menu__cat-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 9px 16px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f2f2f2;
  }

  .mobile-menu__cat-row:last-child {
    border-bottom: none;
  }

  .mobile-menu__cat-thumb {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    overflow: hidden;
    background: #f0f0f0;
    flex-shrink: 0;
  }

  .mobile-menu__cat-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mobile-menu__cat-label {
    font-size: 11.5px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #111;
    font-family: 'NeueHaasDisplayRoman', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }

  /* Footer section within each tab */
  .mobile-menu__footer-section {
    padding: 0 24px 32px;
    margin-top: 0;
  }

  .mobile-menu__trustpilot {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    text-decoration: none;
    padding: 14px 0 10px;
    margin-bottom: 4px;
  }

  .mobile-menu__tp-text {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    font-family: 'NeueHaasDisplayMedium', sans-serif;
  }

  .mobile-menu__tp-stars {
    height: 22px;
    width: auto;
  }

  .mobile-menu__tp-logo {
    height: 18px;
    width: auto;
    flex-shrink: 0;
  }

  /* Utility links — Oner Active style */
  .mobile-menu__utility {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 4px;
    margin-bottom: 16px;
    border-top: 1px solid #f2f2f2;
    margin-left: -24px;
    margin-right: -24px;
    padding: 10px 24px 0;
  }

  .mobile-menu__utility-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    margin-left: -4px;
    font-size: 11.5px;
    font-weight: 400;
    color: #444;
    text-decoration: none;
    font-family: 'NeueHaasDisplayRoman', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    letter-spacing: 0.03em;
    line-height: 1;
  }

  .mobile-menu__utility-link svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: #888;
    stroke-width: 1.4;
  }

  /* Country selector — inline */
  .mobile-menu__country-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
  }

  .mobile-menu__country-btn.is-open .mobile-menu__country-chevron {
    transform: rotate(180deg);
  }

  .mobile-menu__country-dropdown {
    background: #f9f9f9;
    border-radius: 8px;
    margin: 4px 0 8px;
    overflow: hidden;
  }

  .mobile-menu__country-search {
    width: 100%;
    padding: 10px 12px;
    border: none;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    background: #fff;
    outline: none;
    font-family: 'NeueHaasDisplayRoman', sans-serif;
  }

  .mobile-menu__country-list {
    max-height: 200px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu__country-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border: none;
    background: none;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    text-align: left;
    font-family: 'NeueHaasDisplayRoman', sans-serif;
  }

  .mobile-menu__country-option.is-active {
    font-weight: 600;
    background: #f0f0f0;
  }

  .mobile-menu__country-option:hover {
    background: #eee;
  }

  /* Social icons — Oner Active style (filled black circles) */
  .mobile-menu__social {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    padding-top: 0;
    margin-left: -7px;
  }

  .mobile-menu__social a {
    color: #fff;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    transition: background 0.2s ease;
  }

  .mobile-menu__social a:hover {
    background: #333;
  }

  .mobile-menu__social a svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    color: #fff;
  }

  /* ============================================
     RESPONSIVE — MOBILE HEADER (Dore & Rose style)
     ============================================ */
  @media (max-width: 999px) {
    .announcement-bar__mobile-util {
      position: relative;
      z-index: 1201;
    }

    .announcement-bar {
      position: relative;
      z-index: 1200;
    }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: transparent;
      border-bottom: none;
      z-index: 1100;
      will-change: transform;
    }

    .site-header.mob-menu-open {
      background: #fff !important;
      pointer-events: auto !important;
    }

    .site-header.mob-menu-open .site-header__left-pill,
    .site-header.mob-menu-open .site-header__icon-btn {
      background: transparent !important;
      -webkit-backdrop-filter: none !important;
      backdrop-filter: none !important;
      box-shadow: none !important;
    }


    /* --- Inner bar --- */
    .site-header__inner {
      padding: 0 12px;
      height: 52px;
    }

    /* --- Left pill: hamburger + logo --- */
    .site-header__left-pill {
      display: flex;
      align-items: center;
      gap: 12px;
      border-radius: 100px;
      padding: 8px 14px 8px 10px;
      background: rgba(200, 200, 200, 0.48);
      -webkit-backdrop-filter: blur(16px);
      backdrop-filter: blur(16px);
      transform: translateZ(0);
    }

    .site-header__hamburger {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 0;
      position: relative;
      width: 20px;
      height: 16px;
      padding: 0;
      flex-shrink: 0;
    }

    .hamburger-bar {
      width: 18px;
      height: 1.5px;
      left: 1px;
    }

    .hamburger-bar--1 { top: 0; width: 18px; }
    .hamburger-bar--2 { top: 7px; width: 12px; }
    .hamburger-bar--3 { top: 14px; width: 18px; }

    .site-header__hamburger.is-active .hamburger-bar--1 {
      transform: translateY(7px) rotate(45deg);
    }
    .site-header__hamburger.is-active .hamburger-bar--2 {
      opacity: 0;
    }
    .site-header__hamburger.is-active .hamburger-bar--3 {
      transform: translateY(-7px) rotate(-45deg);
    }

    .site-header__logo--desktop {
      display: none;
    }

    .site-header__logo--mobile {
      display: flex;
      position: static;
      transform: none;
      margin-right: 0;
    }

    .site-header__logo-img {
      height: 22px;
      max-height: 26px;
    }

    /* --- Right icons --- */
    .site-header__nav {
      display: none;
    }

    .site-header__country {
      display: none;
    }

    .site-header__icon-btn.site-header__icon-btn--account {
      display: none;
    }

    .site-header__icon-btn--wishlist {
      display: flex;
    }

    .site-header__utilities {
      gap: 4px;
    }

    .site-header__icon-btn {
      border-radius: 50%;
      width: 38px;
      height: 38px;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(200, 200, 200, 0.48);
      -webkit-backdrop-filter: blur(16px);
      backdrop-filter: blur(16px);
      transform: translateZ(0);
    }

    .site-header__icon-btn svg {
      width: 20px;
      height: 20px;
    }
    .site-header__cart-btn svg {
      width: 24px;
      height: 22px;
      position: relative;
      top: 2px;
    }

    .site-header__cart-count {
      top: 5px;
      right: 3px;
      min-width: 13px;
      height: 13px;
      font-size: 7.5px;
    }

    /* --- Hide desktop mega menus --- */
    .mega-menu {
      display: none;
    }

    /* --- Search panel mobile --- */
    .search-panel {
      top: 52px;
      transition: none;
    }
    .search-panel__backdrop {
      transition: none;
    }
    .search-panel__results {
      max-height: calc(100vh - 56px);
    }
  }

  @media (min-width: 1000px) {
    .mobile-menu {
      display: none !important;
    }
    .site-header__logo-img {
      height: 29px;
      max-height: 29px;
    }
  }

  @media (max-width: 999px) {
    #main-content > .shopify-section:first-child {
      padding-top: 52px;
    }

    body.template-product #main-content > .shopify-section:first-child,
    body.template-index #main-content > .shopify-section:first-child,
    body.template-collection #main-content > .shopify-section:first-child {
      padding-top: 0;
    }
  }

  body.no-scroll {
    overflow: hidden;
  }

  html.no-scroll {
    overflow: hidden;
  }

  .mobile-menu button,
  .mobile-menu a,
  .site-header__hamburger,
  .site-header__icon-btn {
    touch-action: manipulation;
  }
/* END_SECTION:header */

/* START_SECTION:hello-world (INDEX:16) */
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
/* END_SECTION:hello-world */

/* START_SECTION:help-article (INDEX:17) */
.hart {
  font-family: var(--font-primary--family, sans-serif);
  color: #111;
  padding-bottom: 64px;
}

.hart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  max-width: 1120px;
  margin: 0 auto;
}

.hart__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  flex-wrap: wrap;
}

.hart__crumb-link {
  color: #555;
  text-decoration: none;
  transition: color 0.15s ease;
}

.hart__crumb-link:hover {
  color: #111;
}

.hart__crumb-sep {
  color: #ccc;
}

.hart__crumb-current {
  color: #aaa;
}

.hart__search-wrap {
  position: relative;
  width: 200px;
}

.hart__search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  pointer-events: none;
  z-index: 2;
}

.hart__search-input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  color: #333;
  position: relative;
  z-index: 1;
}

.hart__search-input::placeholder {
  color: #aaa;
}

.hart__search-input:focus {
  border-color: #999;
}

.hart__search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 10;
  max-height: 300px;
  overflow-y: auto;
}

.hart__search-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  text-decoration: none;
  color: #111;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s ease;
  font-size: 13px;
}

.hart__search-result:hover {
  background: #f7f7f7;
}

.hart__search-result-icon {
  flex-shrink: 0;
  color: #aaa;
}

.hart__search-result-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hart__search-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  font-size: 12px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  border-top: 1px solid #f0f0f0;
}

.hart__search-more:hover {
  background: #f7f7f7;
}

.hart__search-no-results {
  padding: 16px;
  font-size: 13px;
  color: #888;
  text-align: center;
}

.hart__container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 40px;
}

.hart__title {
  font-size: 32px;
  font-weight: 700;
  margin: 40px 0 8px;
  color: #111;
  line-height: 1.2;
}

.hart__meta {
  font-size: 13px;
  color: #999;
  margin: 0 0 36px;
}

.hart__content {
  font-size: 15px;
  line-height: 1.75;
  color: #333;
}

.hart__content h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 28px 0 12px;
  color: #111;
}

.hart__content h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 24px 0 8px;
  color: #111;
}

.hart__content p {
  margin: 0 0 16px;
}

.hart__content ul, .hart__content ol {
  margin: 0 0 16px;
  padding-left: 20px;
}

.hart__content li {
  margin-bottom: 6px;
}

.hart__content a {
  color: #111;
  text-decoration: underline;
}

.hart__divider {
  height: 1px;
  background: #e5e5e5;
  margin: 40px 0 24px;
}

.hart__feedback {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hart__feedback-label {
  font-size: 14px;
  color: #888;
}

.hart__feedback-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hart__feedback-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: none;
  background: none;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  cursor: pointer;
  transition: color 0.2s ease;
}

.hart__feedback-btn:hover {
  color: #000;
}

.hart__feedback-btn.active {
  color: #000;
  font-weight: 600;
}

.hart__feedback-thanks {
  font-size: 14px;
  color: #888;
  margin: 16px 0 0;
  text-align: center;
}

@media (max-width: 768px) {
  .hart__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
  }

  .hart__breadcrumbs {
    font-size: 13px;
    gap: 6px;
    line-height: 1.8;
  }

  .hart__search-wrap {
    width: 100%;
  }

  .hart__search-input {
    padding: 12px 14px 12px 38px;
  }

  .hart__container {
    padding: 0 20px;
  }

  .hart__title {
    font-size: 28px;
    margin: 32px 0 6px;
  }

  .hart__meta {
    margin-bottom: 28px;
  }

  .hart__content {
    font-size: 15px;
    line-height: 1.7;
  }

  .hart__divider {
    margin: 32px 0 20px;
  }

  .hart__feedback {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .hart__feedback-label {
    font-size: 13px;
  }

  .hart__feedback-btn {
    font-size: 13px;
  }
}
/* END_SECTION:help-article */

/* START_SECTION:help-category (INDEX:18) */
.hcat {
  font-family: var(--font-primary--family, sans-serif);
  color: #111;
  padding-bottom: 64px;
}

.hcat__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  max-width: 1120px;
  margin: 0 auto;
}

.hcat__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.hcat__crumb-link {
  color: #555;
  text-decoration: none;
  transition: color 0.15s ease;
}

.hcat__crumb-link:hover {
  color: #111;
}

.hcat__crumb-sep {
  color: #ccc;
}

.hcat__crumb-current {
  color: #aaa;
}

.hcat__search-wrap {
  position: relative;
  width: 200px;
}

.hcat__search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  pointer-events: none;
}

.hcat__search-input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  color: #333;
}

.hcat__search-input::placeholder {
  color: #aaa;
}

.hcat__search-input:focus {
  border-color: #999;
}

.hcat__search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 10;
  max-height: 300px;
  overflow-y: auto;
}

.hcat__search-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  text-decoration: none;
  color: #111;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s ease;
  font-size: 13px;
}

.hcat__search-result:hover {
  background: #f7f7f7;
}

.hcat__search-result-icon {
  flex-shrink: 0;
  color: #aaa;
}

.hcat__search-result-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hcat__search-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  font-size: 12px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  border-top: 1px solid #f0f0f0;
}

.hcat__search-more:hover {
  background: #f7f7f7;
}

.hcat__search-no-results {
  padding: 16px;
  font-size: 13px;
  color: #888;
  text-align: center;
}

.hcat__container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

.hcat__title {
  font-size: 28px;
  font-weight: 600;
  margin: 16px 0 40px;
  color: #111;
}

.hcat__articles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hcat__articles .hcat-article {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 28px 28px;
  text-decoration: none;
  color: #111;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  display: block;
}

.hcat__articles .hcat-article:hover {
  border-color: #ccc;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.hcat__articles .hcat-article h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #111;
}

.hcat__articles .hcat-article p {
  font-size: 13px;
  color: #777;
  margin: 0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hcat__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }

  .hcat__search-wrap {
    width: 100%;
  }

  .hcat__container {
    padding: 0 16px;
  }

  .hcat__title {
    font-size: 22px;
    margin: 8px 0 28px;
  }

  .hcat__articles {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hcat__articles .hcat-article {
    padding: 22px 20px;
  }
}
/* END_SECTION:help-category */

/* START_SECTION:help-center (INDEX:19) */
.hc { font-family: var(--font-primary--family, sans-serif); color: #111; background: #fff; }

/* Hero */
.hc__hero {
  background: url('/cdn/shop/files/Zonder_titel_1000_x_1000_px_2.png?v=1733469653') center center / cover no-repeat;
  padding: 100px 40px 110px;
  text-align: center;
  position: relative;
}
.hc__hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.38); }
.hc__hero-inner { max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.hc__hero-title { font-size: 34px; font-weight: 500; color: #fff; margin: 0 0 12px; letter-spacing: -0.01em; }
.hc__hero-sub { font-size: 14px; color: rgba(255,255,255,0.85); margin: 0 0 28px; line-height: 1.65; max-width: 500px; margin-left: auto; margin-right: auto; }
.hc__hero-link { color: #fff; text-decoration: underline; text-underline-offset: 2px; }

/* Search */
.hc__search-wrap { position: relative; max-width: 520px; margin: 0 auto; }
.hc__search-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: #999; pointer-events: none; z-index: 2; }
.hc__search-input { width: 100%; padding: 16px 44px 16px 50px; border: none; border-radius: 8px; font-size: 15px; font-family: inherit; background: #fff; outline: none; color: #333; box-shadow: 0 2px 12px rgba(0,0,0,0.1); box-sizing: border-box; }
.hc__search-input::placeholder { color: #aaa; }
.hc__search-x { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: none; font-size: 22px; color: #999; cursor: pointer; padding: 4px 8px; z-index: 2; line-height: 1; }
.hc__search-x:hover { color: #333; }
.hc__dropdown { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-radius: 0 0 8px 8px; box-shadow: 0 4px 16px rgba(0,0,0,0.12); z-index: 10; max-height: 380px; overflow-y: auto; text-align: left; }
.hc__sr { display: flex; align-items: center; gap: 12px; padding: 13px 18px; text-decoration: none; color: #111; border-bottom: 1px solid #f0f0f0; }
.hc__sr:last-child { border-bottom: none; }
.hc__sr:hover { background: #f7f7f7; }
.hc__sr svg { flex-shrink: 0; }
.hc__sr-info { flex: 1; min-width: 0; }
.hc__sr-t { font-size: 14px; font-weight: 400; color: #111; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hc__sr-t strong { font-weight: 700; }
.hc__sr-c { font-size: 12px; color: #999; display: block; margin-top: 1px; }
.hc__sr-none { padding: 20px; font-size: 14px; color: #888; text-align: center; }
.hc__sr-more { padding: 14px 18px; font-size: 13px; color: #555; text-align: center; border-top: 1px solid #f0f0f0; }

/* Container */
.hc__container { max-width: 1080px; margin: 0 auto; padding: 0 40px; }
.hc__container--narrow { max-width: 820px; }

/* Actions */
.hc__actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 48px 0; }
.hc__act { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 28px 16px; border: 1px solid #e5e5e5; border-radius: 8px; text-decoration: none; color: #333; transition: border-color 0.2s, box-shadow 0.2s; }
.hc__act:hover { border-color: #ccc; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.hc__act-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; }
.hc__act-text { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.hc__act-label { font-size: 14px; font-weight: 600; color: #333; }
.hc__act-desc { font-size: 12px; color: #888; line-height: 1.5; text-align: center; }
.hc__act-arrow { display: none; }

/* Heading */
.hc__heading { font-size: 22px; font-weight: 600; margin: 0 0 28px; color: #111; }

/* Category cards */
.hc__cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 64px; }
.hc__ccard { border: 1px solid #e5e5e5; border-radius: 8px; overflow: hidden; text-decoration: none; color: #111; transition: border-color 0.2s, box-shadow 0.2s; }
.hc__ccard:hover { border-color: #ccc; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.hc__ccard-img { width: 100%; aspect-ratio: 16/10; background: #f5f5f5; display: flex; align-items: center; justify-content: center; }
.hc__ccard-info { padding: 14px 18px; }
.hc__ccard-name { display: block; font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.hc__ccard-count { font-size: 13px; color: #888; }

/* Need help footer */
.hc__need-help { text-align: center; padding: 40px 0 60px; border-top: 1px solid #eee; }
.hc__need-help p { font-size: 15px; color: #555; margin: 0; }
.hc__need-help a { color: #111; font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }

/* Breadcrumb */
.hc__crumb { display: flex; align-items: center; gap: 8px; padding: 28px 0 24px; flex-wrap: wrap; }
.hc__crumb-link { color: #555; text-decoration: none; font-size: 13px; display: flex; align-items: center; }
.hc__crumb-link:hover { color: #111; }
.hc__crumb-link svg { display: block; }
.hc__crumb-sep { display: block; flex-shrink: 0; }
.hc__crumb-cur { font-size: 13px; color: #aaa; }

/* Category view title */
.hc__vtitle { font-size: 26px; font-weight: 700; color: #111; margin: 0 0 4px; }
.hc__hr { border: none; border-top: 1px solid #e5e5e5; margin: 16px 0 32px; }
.hc__hr--spaced { margin: 32px 0; }

/* Article grid (category view) */
.hc__agrid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding-bottom: 60px; }
.hc__acard { border: 1px solid #e8e8e8; border-radius: 8px; padding: 24px; text-decoration: none; color: #111; transition: border-color 0.2s, box-shadow 0.2s; }
.hc__acard:hover { border-color: #ccc; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.hc__acard-t { font-size: 15px; font-weight: 600; margin: 0 0 8px; color: #111; line-height: 1.4; }
.hc__acard-p { font-size: 13px; color: #777; margin: 0; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Article view */
.hc__paper { background: #fafafa; border-radius: 8px; padding: 48px 56px; margin-bottom: 60px; }
.hc__atitle { font-size: 28px; font-weight: 700; color: #111; margin: 0 0 24px; line-height: 1.3; }
.hc__abody p { font-size: 15px; line-height: 1.85; color: #444; margin: 0 0 16px; }
.hc__abody p:last-child { margin-bottom: 0; }
.hc__abody a { color: #111; text-decoration: underline; text-underline-offset: 2px; }
.hc__abody a:hover { color: #555; }

/* Helpful */
.hc__helpful { display: flex; align-items: center; gap: 16px; }
.hc__helpful-q { font-size: 14px; color: #555; }
.hc__hbtn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border: 1px solid #ddd; border-radius: 6px; background: #fff; font-size: 14px; font-family: inherit; color: #333; cursor: pointer; transition: border-color 0.2s; }
.hc__hbtn:hover { border-color: #999; }
.hc__hbtn svg { display: block; }
.hc__helpful-thx { font-size: 14px; color: #888; }

/* Mobile */
@media (max-width: 768px) {
  .hc__hero { padding: 56px 20px 68px; }
  .hc__hero-title { font-size: 24px; margin-bottom: 8px; }
  .hc__hero-sub { font-size: 13px; margin-bottom: 22px; }
  .hc__search-input { padding: 14px 40px 14px 46px; font-size: 14px; }
  .hc__container { padding: 0 16px; }

  .hc__actions { grid-template-columns: 1fr; gap: 0; margin: 28px 0; border: 1px solid #e5e5e5; border-radius: 8px; }
  .hc__act { flex-direction: row; padding: 16px 20px; justify-content: flex-start; gap: 16px; border: none; border-radius: 0; border-bottom: 1px solid #f0f0f0; }
  .hc__act:last-child { border-bottom: none; }
  .hc__act:hover { box-shadow: none; }
  .hc__act-icon { width: 44px; height: 44px; flex-shrink: 0; }
  .hc__act-text { flex: 1; align-items: flex-start; }
  .hc__act-label { font-size: 15px; }
  .hc__act-desc { text-align: left; font-size: 12px; }
  .hc__act-arrow { display: block; flex-shrink: 0; }

  .hc__heading { font-size: 19px; margin-bottom: 20px; }
  .hc__cats { grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 40px; }
  .hc__ccard-info { padding: 12px 14px; }
  .hc__ccard-name { font-size: 13px; }
  .hc__ccard-count { font-size: 11px; }

  .hc__crumb { padding: 20px 0 16px; gap: 6px; }
  .hc__vtitle { font-size: 22px; }
  .hc__agrid { grid-template-columns: 1fr; gap: 12px; padding-bottom: 40px; }
  .hc__acard { padding: 18px; }

  .hc__paper { padding: 28px 20px; margin-bottom: 40px; }
  .hc__atitle { font-size: 22px; margin-bottom: 18px; }
  .hc__abody p { font-size: 14px; }

  .hc__helpful { flex-wrap: wrap; gap: 10px; }
}
/* END_SECTION:help-center */

/* START_SECTION:help-search (INDEX:20) */
.hsearch {
  font-family: var(--font-primary--family, sans-serif);
  color: #111;
  padding-bottom: 64px;
}

.hsearch__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  max-width: 1120px;
  margin: 0 auto;
}

.hsearch__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.hsearch__crumb-link {
  color: #555;
  text-decoration: none;
}

.hsearch__crumb-link:hover {
  color: #111;
}

.hsearch__crumb-sep {
  color: #ccc;
}

.hsearch__crumb-current {
  color: #aaa;
}

.hsearch__search-wrap {
  position: relative;
  width: 200px;
}

.hsearch__search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  pointer-events: none;
}

.hsearch__search-input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  color: #333;
}

.hsearch__search-input::placeholder {
  color: #aaa;
}

.hsearch__search-input:focus {
  border-color: #999;
}

.hsearch__container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

.hsearch__title {
  font-size: 24px;
  font-weight: 600;
  margin: 16px 0 32px;
  color: #111;
}

.hsearch__results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hsearch__card {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 28px;
  text-decoration: none;
  color: #111;
  display: block;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hsearch__card:hover {
  border-color: #ccc;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.hsearch__card-title {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #111;
}

.hsearch__card-excerpt {
  font-size: 13px;
  color: #777;
  margin: 0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hsearch__no-results {
  font-size: 15px;
  color: #888;
  margin: 40px 0;
}

@media (max-width: 768px) {
  .hsearch__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
  }

  .hsearch__search-wrap {
    width: 100%;
  }

  .hsearch__container {
    padding: 0 20px;
  }

  .hsearch__title {
    font-size: 20px;
    margin: 8px 0 24px;
  }

  .hsearch__results {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hsearch__card {
    padding: 22px 20px;
  }
}
/* END_SECTION:help-search */

/* START_SECTION:hero-banner (INDEX:21) */
.hero-banner {
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-color: #222;
  display: flex;
  overflow: hidden;
}

.hero-banner__mobile-bg {
  display: none;
}

.hero-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  pointer-events: none;
}

.hero-banner__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65%;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 35%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-banner__content {
  position: relative;
  z-index: 2;
  padding: 48px;
  max-width: 800px;
}

.hero-banner__heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  text-transform: none;
  line-height: 1.1;
  margin: 0 0 12px;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.hero-banner__subtitle {
  font-family: var(--font-primary--family, sans-serif);
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 24px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  max-width: 400px;
}

.hero-banner__buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.hero-banner__button {
  display: inline-block;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.hero-banner__button--primary {
  background: rgba(255,255,255,0.95);
  color: #111;
  border: 1.5px solid rgba(255,255,255,0.95);
}

.hero-banner__button--primary:hover {
  background: #fff;
  transform: translateY(-1px);
}

.hero-banner__button--secondary {
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}

.hero-banner__button--secondary:hover {
  background: rgba(0,0,0,0.7);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-1px);
}

.hero-banner__sp-wrap .sp-pill {
  color: #fff !important;
}

.hero-banner__sp-wrap .sp-text {
  color: #fff !important;
}

.hero-banner__sp-wrap .sp-name,
.hero-banner__sp-wrap .sp-count,
.hero-banner__sp-wrap .sp-others,
.hero-banner__sp-wrap .sp-and,
.hero-banner__sp-wrap .sp-line2,
.hero-banner__sp-wrap .sp-extra {
  color: #fff !important;
}

.hero-banner__sp-wrap .sp-av {
  box-shadow: 0 0 0 2px rgba(255,255,255,0.8) !important;
}

.hero-banner__sp-wrap .sp-pill {
  font-size: 12px !important;
  padding: 8px 0 !important;
}

.hero-banner__sp-wrap .sp-avatars {
  width: 36px !important;
  height: 22px !important;
}

.hero-banner__sp-wrap .sp-av {
  width: 22px !important;
  height: 22px !important;
}

.hero-banner__sp-wrap .sp-av2 {
  left: 14px !important;
}

.hero-banner__sp-wrap .sp-badge {
  width: 13px !important;
  height: 13px !important;
}

@media (max-width: 768px) {
  .hero-banner__content {
    padding: 20px;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-banner__heading {
    margin-bottom: 8px;
  }

  .hero-banner__subtitle {
    max-width: 100%;
    margin-bottom: 16px;
  }

  .hero-banner__subtitle br {
    display: none;
  }

  .hero-banner__buttons {
    justify-content: flex-start;
    margin-bottom: 10px;
  }

  .hero-banner__button {
    padding: 10px 22px !important;
  }

  .hero-banner__sp-wrap .sp-pill {
    font-size: 11px !important;
    padding: 4px 0 !important;
  }

  .hero-banner__sp-wrap .sp-avatars {
    width: 32px !important;
    height: 20px !important;
  }

  .hero-banner__sp-wrap .sp-av {
    width: 20px !important;
    height: 20px !important;
  }

  .hero-banner__sp-wrap .sp-av2 {
    left: 12px !important;
  }

  .hero-banner__sp-wrap .sp-badge {
    width: 12px !important;
    height: 12px !important;
  }

  .hero-banner__mobile-bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
  }
}
/* END_SECTION:hero-banner */

/* START_SECTION:image-banner (INDEX:22) */
.image-banner {
  position: relative;
  width: 100%;
  margin: 0;
  height: 45vh;
  min-height: 340px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #222;
  display: flex;
  overflow: hidden;
  border-radius: 0;
}

.image-banner__mobile-bg {
  display: none;
}

.image-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  pointer-events: none;
}

.image-banner__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 50px;
  z-index: 2;
}

.image-banner__content-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.image-banner__heading {
  font-size: 32px;
  font-weight: 500;
  font-family: var(--font-heading--family), "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: none;
  line-height: 1.15;
  margin: 0 0 14px;
  color: #ffffff;
  letter-spacing: 0;
}

.image-banner__subtitle {
  font-size: 15px;
  font-family: var(--font-heading--family), "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 24px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  max-width: 450px;
}

.image-banner__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.image-banner__button {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-heading--family), "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  border: none;
}

.image-banner__button:hover {
  background: #fff;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .image-banner {
    width: 100%;
    margin: 0;
    height: 45vh;
    min-height: 300px;
    border-radius: 0;
  }
  .image-banner__content {
    padding: 20px;
  }
  .image-banner__heading {
    font-size: 26px;
    margin-bottom: 8px;
  }
  .image-banner__subtitle {
    font-size: 14px;
    max-width: 100%;
    margin-bottom: 16px;
  }
  .image-banner__subtitle br {
    display: none;
  }
  .image-banner__button {
    padding: 10px 22px;
    font-size: 11px;
    border-radius: 6px;
  }
  .image-banner__mobile-bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
  }
}
/* END_SECTION:image-banner */

/* START_SECTION:instagram-feed (INDEX:23) */
.insta-feed {
  padding: 48px 0 56px;
  background: #fff;
}

.insta-feed__header {
  text-align: center;
  margin-bottom: 28px;
  padding: 0 20px;
}

.insta-feed__heading {
  font-family: var(--font-heading--family), sans-serif;
  font-size: 28px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #111;
  margin: 0 0 8px;
  line-height: 1.2;
}

.insta-feed__subtitle {
  font-size: 14px;
  color: #666;
  margin: 0;
  font-weight: 400;
}

.insta-feed__handle {
  color: #111;
  font-weight: 600;
  text-decoration: none;
}

.insta-feed__handle:hover {
  text-decoration: underline;
}

.insta-feed__carousel {
  position: relative;
  overflow: hidden;
  padding: 0 48px;
}

.insta-feed__track {
  display: flex;
  gap: 4px;
  transition: transform 0.45s ease;
}

.insta-feed__item {
  flex: 0 0 calc((100% - 28px) / 7);
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.insta-feed__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.insta-feed__placeholder {
  width: 100%;
  height: 100%;
  background: #e8e8e8;
}

.insta-feed__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.insta-feed__icon {
  width: 28px;
  height: 28px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insta-feed__item:hover .insta-feed__img {
  transform: scale(1.05);
}

.insta-feed__item:hover .insta-feed__overlay {
  background: rgba(0, 0, 0, 0.25);
}

.insta-feed__item:hover .insta-feed__icon {
  opacity: 1;
}

.insta-feed__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 0;
  transition: opacity 0.2s ease;
}

.insta-feed__arrow:hover {
  background: #fff;
}

.insta-feed__arrow.is-disabled {
  opacity: 0;
  pointer-events: none;
}

.insta-feed__arrow--prev {
  left: 10px;
}

.insta-feed__arrow--next {
  right: 10px;
}

@media (max-width: 999px) {
  .insta-feed__item {
    flex: 0 0 calc((100% - 16px) / 5);
  }
}

@media (max-width: 768px) {
  .insta-feed {
    padding: 32px 0 40px;
  }
  .insta-feed__heading {
    font-size: 20px;
    letter-spacing: 0.04em;
  }
  .insta-feed__subtitle {
    font-size: 13px;
  }
  .insta-feed__carousel {
    padding: 0 8px;
  }
  .insta-feed__item {
    flex: 0 0 calc((100% - 8px) / 2.3);
  }
  .insta-feed__track {
    gap: 3px;
  }
  .insta-feed__arrow {
    width: 30px;
    height: 30px;
  }
  .insta-feed__arrow--prev {
    left: 4px;
  }
  .insta-feed__arrow--next {
    right: 4px;
  }
}
/* END_SECTION:instagram-feed */

/* START_SECTION:latest-products (INDEX:24) */
.latest-products {
  padding: 48px 0;
  overflow: hidden;
}

.latest-products__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 48px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.latest-products__header-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.latest-products__title {
  font-size: 36px;
  font-weight: 500;
  font-family: var(--font-heading--family), sans-serif;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
  color: #111;
}

.latest-products__header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.latest-products__view-all {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #111;
}

.latest-products__view-all:hover {
  color: #666;
}

.latest-products__nav {
  display: flex;
  gap: 6px;
}

.latest-products__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #111;
}

.latest-products__arrow:hover {
  border-color: #111;
}

.latest-products__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 48px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.latest-products__track::-webkit-scrollbar {
  display: none;
}

.lp-product-card {
  flex: 0 0 auto;
  width: calc((100vw - 80px - 64px) / 5);
  min-width: 200px;
  scroll-snap-align: start;
}

.lp-product-card__image-wrapper {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 10px;
  border-radius: 12px;
}

.lp-product-card__image-wrapper a {
  display: block;
  width: 100%;
  height: 100%;
}

.lp-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.lp-product-card__image-wrapper:hover .lp-product-card__image {
  transform: scale(1.03);
}

.lp-product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
}

.lp-product-card__placeholder svg {
  width: 60%;
  height: 60%;
  opacity: 0.3;
}

.lp-product-card__wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.lp-product-card:hover .lp-product-card__wishlist {
  opacity: 1;
  transform: translateY(0);
}

.lp-product-card__wishlist:hover {
  background: #fff;
}

.lp-product-card__badge {
  position: absolute;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.lp-product-card__badge--new {
  bottom: 10px;
  left: 10px;
  background: #fff;
  color: #111;
}

.lp-product-card__badge--sale {
  top: 10px;
  right: 10px;
  background: #d32f2f;
  color: #fff;
}

.lp-product-card__badge--soldout {
  bottom: 10px;
  left: 10px;
  background: #111;
  color: #fff;
}

.lp-product-card__info {
  padding: 0 2px;
}

.lp-product-card__swatches {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
  align-items: center;
}

.lp-product-card__swatch {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  background: #F7F7F7;
  display: block;
}

.lp-product-card__swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-product-card__swatch-more {
  font-size: 11px;
  color: #666;
  font-weight: 600;
}

.lp-product-card__name {
  display: block;
  font-size: 18px;
  font-weight: 600;
  text-transform: none;
  color: #111;
  text-decoration: none;
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: 4px;
}

.lp-product-card__name:hover {
  color: #111;
}

.lp-product-card__type {
  font-size: 14px;
  font-weight: 400;
  color: #111;
  margin: 0 0 4px;
  line-height: 1.4;
}

.lp-product-card__color {
  font-size: 14px;
  font-weight: 400;
  color: #111;
  margin: 0 0 4px;
}

.lp-product-card__price {
  font-size: 15px;
  font-weight: 400;
  color: #111;
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 4px;
}

.lp-product-card__price--compare {
  color: #d32f2f;
  text-decoration: line-through;
  font-weight: 400;
}

.lp-product-card__price--sale {
  color: #111;
  font-weight: 400;
}

.lp-product-card__quick-add {
  position: absolute;
  bottom: 8px;
  left: 8px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.lp-product-card__image-wrapper:hover .lp-product-card__quick-add {
  opacity: 1;
  pointer-events: auto;
}

.lp-product-card__quick-add-trigger {
  background: rgba(255,255,255,0.95);
  padding: 6px 12px;
  font-size: 9px;
  font-weight: 600;
  font-family: var(--font-heading--family), sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #111;
  cursor: pointer;
  text-align: center;
  border-radius: 3px 3px 0 0;
}

.lp-product-card__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0;
  background: rgba(255,255,255,0.95);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.15s ease, padding 0.15s ease;
}

.lp-product-card__quick-add:hover .lp-product-card__sizes {
  max-height: 150px;
  padding: 6px;
}

.lp-product-card__size-btn {
  width: 26px;
  height: 26px;
  min-width: 0;
  padding: 0;
  border: 1px solid #d0d0d0;
  border-radius: 3px;
  background: #fff;
  font-size: 9px;
  font-weight: 400;
  color: #111;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: var(--font-primary--family), sans-serif;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-product-card__size-btn:hover {
  border-color: #111;
}

.lp-product-card__size-btn--disabled {
  color: #ccc;
  border-color: #eee;
  cursor: not-allowed;
  text-decoration: line-through;
}

@media (max-width: 999px) {
  .lp-product-card {
    width: calc((100% - 32px) / 3);
    min-width: 160px;
  }
  .latest-products__header {
    padding: 0 24px;
  }
  .latest-products__track {
    padding: 0 24px;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .lp-product-card__quick-add {
    display: none !important;
  }
  .latest-products {
    padding: 32px 0;
  }
  .latest-products__header {
    padding: 0 16px;
    margin-bottom: 20px;
  }
  .latest-products__title {
    font-size: 24px;
  }
  .latest-products__header {
    padding: 0 8px;
  }
  .latest-products__track {
    padding: 0 8px;
    gap: 8px;
  }
  .lp-product-card {
    width: 55vw;
    min-width: 0;
    flex: 0 0 auto;
  }
  .lp-product-card__name {
    font-size: 15px;
    margin-bottom: 2px;
  }
  .lp-product-card__type,
  .lp-product-card__color {
    font-size: 12px;
    margin: 0 0 2px;
  }
  .lp-product-card__price {
    font-size: 13px;
    margin-top: 2px;
  }
  .latest-products__nav {
    display: none;
  }
  .latest-products__view-all {
    display: none;
  }
  .lp-product-card__wishlist {
    opacity: 1;
    transform: none;
  }
}
/* END_SECTION:latest-products */

/* START_SECTION:policy-page (INDEX:27) */
.policy-page {
  font-family: var(--font-primary--family, sans-serif);
  color: #222;
  background: #fff;
}

.policy-page__title {
  text-align: center;
  padding: 48px 24px 0;
}

.policy-page__title h1 {
  font-size: 30px;
  font-weight: 500;
  color: #222;
  margin: 0;
  letter-spacing: -0.01em;
}

.policy-page__body {
  max-width: 680px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.policy-page__body h1,
.policy-page__body h2,
.policy-page__body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin: 36px 0 12px;
  font-family: var(--font-primary--family, sans-serif);
}

.policy-page__body h1:first-child,
.policy-page__body h2:first-child,
.policy-page__body h3:first-child {
  margin-top: 0;
}

.policy-page__body p {
  font-size: 16px;
  line-height: 1.65;
  color: #222;
  margin: 0 0 12px;
}

.policy-page__body p:last-child {
  margin-bottom: 0;
}

.policy-page__body strong,
.policy-page__body b {
  font-weight: 600;
  color: #222;
}

.policy-page__body em {
  font-size: 14px;
  color: #555;
}

.policy-page__body a {
  color: #222;
  text-decoration: underline;
}

.policy-page__body ul,
.policy-page__body ol {
  font-size: 16px;
  line-height: 1.65;
  color: #222;
  margin: 0 0 12px;
  padding-left: 24px;
}

.policy-page__body li {
  margin-bottom: 4px;
}

.policy-page__body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  margin: 16px 0 24px;
}

.policy-page__body table th {
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #222;
  padding: 10px 16px;
  border-bottom: 2px solid #222;
  white-space: nowrap;
}

.policy-page__body table td {
  padding: 10px 16px;
  color: #222;
  border-bottom: 1px solid #e5e5e5;
  line-height: 1.5;
}

.policy-page__body table tr:last-child td {
  border-bottom: none;
}

@media screen and (max-width: 600px) {
  .policy-page__title {
    padding: 36px 20px 0;
  }

  .policy-page__title h1 {
    font-size: 22px;
  }

  .policy-page__body {
    padding: 24px 20px 60px;
  }

  .policy-page__body h1,
  .policy-page__body h2,
  .policy-page__body h3 {
    margin-top: 28px;
  }

  .policy-page__body p,
  .policy-page__body ul,
  .policy-page__body ol {
    font-size: 15px;
  }

  .policy-page__body table {
    font-size: 14px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .policy-page__body table th,
  .policy-page__body table td {
    padding: 8px 12px;
  }
}
/* END_SECTION:policy-page */

/* START_SECTION:popular-categories (INDEX:28) */
.popular-categories {
  padding: 48px 0;
}

.popular-categories__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 0;
  margin-bottom: 20px;
}

.popular-categories__title {
  font-size: 28px;
  font-weight: 500;
  font-family: var(--font-heading--family), sans-serif;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
  color: #111;
}

.popular-categories__tabs {
  display: flex;
  gap: 8px;
}

.popular-categories__tab {
  padding: 11px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-heading--family), sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1.5px solid #111;
  background: #fff;
  color: #111;
  line-height: 1;
}

.popular-categories__tab.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.popular-categories__tab:hover:not(.active) {
  background: #f0f0f0;
}

.popular-categories__grid {
  display: none;
}

.popular-categories__grid.active {
  display: block;
}

.popular-categories__track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.popular-categories__track::-webkit-scrollbar {
  display: none;
}

.category-card {
  flex: 1 1 0;
  min-width: 140px;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  text-align: center;
}

.category-card__image-wrapper {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #e8e8e8;
  margin-bottom: 10px;
  border-radius: 10px;
}

.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover .category-card__image {
  transform: scale(1.04);
}

.category-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
}

.category-card__placeholder svg {
  width: 50%;
  height: 50%;
  opacity: 0.3;
}

.category-card__name {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 4px;
  color: #111;
}

.category-card__description {
  font-size: 13px;
  color: #999;
  margin: 0;
  font-weight: 400;
  line-height: 1.4;
}

@media (max-width: 999px) {
  .popular-categories {
    padding: 48px 0 48px 40px;
  }
  .category-card {
    width: calc((100vw - 48px - 36px) / 4.5);
    min-width: 120px;
  }
  .popular-categories__header {
    padding: 0;
  }
  .popular-categories__track {
    width: calc(100vw - 40px);
    gap: 12px;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .popular-categories {
    padding: 24px 0 24px 8px;
  }
  .popular-categories__header {
    padding: 0 16px;
    margin-bottom: 16px;
    gap: 10px;
  }
  .popular-categories__title {
    font-size: 24px;
  }
  .popular-categories__grid {
    overflow: visible;
  }
  .popular-categories__track {
    padding: 0;
    margin: 0;
    width: calc(100vw - 8px);
    gap: 10px;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
  }
  .category-card {
    width: 38vw;
    min-width: 0;
    flex: 0 0 38vw;
    scroll-snap-align: start;
  }
  .popular-categories__track::after {
    content: '';
    flex: 0 0 16px;
    min-width: 16px;
  }
  .category-card__image-wrapper {
    border-radius: 8px;
    margin-bottom: 8px;
    aspect-ratio: 3/4;
  }
  .category-card__name {
    font-size: 15px;
  }
  .category-card__description {
    font-size: 12px;
  }
}
/* END_SECTION:popular-categories */

/* START_SECTION:product (INDEX:30) */
/* ========================================
     PRODUCT PAGE — Alphalete Clone
     ======================================== */

  .product-page {
    width: 100%;
    padding: 0 0 60px;
    font-family: var(--font-primary--family, sans-serif);
  }

  .product-page__inner {
    display: grid;
    grid-template-columns: 1fr 32%;
    gap: 0;
    align-items: start;
  }

  /* ---- Gallery ---- */
  .product-gallery {
    position: relative;
    padding-left: 40px;
    padding-top: 40px;
  }

  .product-gallery__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }

  .product-gallery__grid-item {
    background: #f5f5f5;
    overflow: hidden;
    position: relative;
  }

  .product-gallery__grid-item img {
    width: 100%;
    height: auto;
    display: block;
  }

  .product-gallery__model-info {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: #fff;
    color: #444;
    font-size: 11px;
    font-weight: 400;
    padding: 7px 16px;
    border-radius: 100px;
    white-space: nowrap;
    font-family: var(--font-primary--family, sans-serif);
    letter-spacing: 0.01em;
  }

  .product-gallery__mobile {
    display: none;
  }

  .product-gallery__slide {
    display: none;
  }

  .product-gallery__slide--active {
    display: block;
  }

  .product-gallery__slide img {
    width: 100%;
    height: auto;
    display: block;
  }

  .product-gallery__nav--hidden {
    display: none;
  }

  .product-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }

  .product-gallery__nav:hover {
    background: #fff;
  }

  .product-gallery__nav--prev {
    left: 16px;
  }

  .product-gallery__nav--next {
    right: 16px;
  }

  /* ---- Product details column ---- */
  .product-details {
    padding: 40px 48px 32px 40px;
    position: sticky;
    top: 0;
    max-height: 100vh;
    overflow-y: auto;
    scrollbar-width: none;
  }

  .product-details::-webkit-scrollbar {
    display: none;
  }

  /* ---- Trust bar ---- */
  .product-details__trust-bar {
    display: none;
  }

  /* ---- Tags ---- */
  .product-details__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
  }


  .product-details__tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid #bbb;
    border-radius: 100px;
    padding: 6px 14px;
    color: #333;
    text-transform: uppercase;
    background: transparent;
  }

  /* ---- Title + Price (Alphalete: 21px bold, flex row) ---- */
  .product-details__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2px;
    gap: 16px;
  }

  .product-details__title {
    font-family: var(--font-heading--family, sans-serif);
    font-size: 30px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    margin: 0 10px 0 0;
    color: #000;
    line-height: 1.25;
  }

  .product-details__title-collection,
  .product-details__title-type {
    display: inline;
  }

  .product-details__price {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
    margin-bottom: 16px;
  }

  .product-details__price-current {
    font-size: 20px;
    font-weight: 450;
    color: #000;
    white-space: nowrap;
  }

  .product-details__price-current--sale {
    color: #000;
  }

  .product-details__price-compare {
    font-size: 15px;
    font-weight: 400;
    color: #d32f2f;
    text-decoration: line-through;
    white-space: nowrap;
  }

  .product-details__price-off {
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    background: #000;
    padding: 2px 8px 1px;
    border-radius: 4px;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  /* ---- Product type (Alphalete: 14px subtitle) ---- */
  .product-details__type {
    font-size: 14px;
    color: #777;
    margin: 2px 0 14px;
  }

  /* ---- Color swatches (Alphalete: 14px label, 30px circles, min-h 2.5rem) ---- */
  .product-details__color {
    margin-bottom: 10px;
  }

  .product-details__color-header {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 0 0 10px;
  }

  .product-details__color-label {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: #222;
  }

  .product-details__color-sep {
    font-size: 13px;
    color: #ccc;
    font-weight: 300;
  }

  .product-details__color-name {
    font-size: 13px;
    font-weight: 400;
    color: #222;
  }

  .product-details__swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    max-width: 320px;
  }

  .product-details__swatch {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    padding: 0;
    outline: none;
    transition: box-shadow 0.2s ease;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    background: #F7F7F7;
    box-sizing: border-box;
    box-shadow: none;
  }

  .product-details__swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
  }

  .product-details__swatch--active {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px #111;
  }

  .product-details__swatch:hover {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px #ccc;
  }
  .product-details__swatch--active:hover {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px #111;
  }

  .product-details__swatch--oos {
    opacity: 0.45;
  }
  .product-details__swatch--oos::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 2px;
    right: 2px;
    height: 1px;
    background: rgba(0,0,0,0.4);
    transform: rotate(-45deg);
  }

  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }

  /* ---- Size selector (Alphalete: 10px labels, fieldset padding 20px 0 0) ---- */
  .product-details__sizes {
    margin-bottom: 20px;
    padding-top: 10px;
  }

  .product-details__sizes-header {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
  }

  .product-details__sizes-label {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #222;
  }

  .product-details__sizes-sep {
    font-size: 13px;
    color: #ccc;
    font-weight: 300;
  }

  .product-details__sizes-selected {
    font-size: 13px;
    font-weight: 400;
    color: #222;
  }

  .product-details__size-chart {
    font-size: 13px;
    font-weight: 400;
    color: #222;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-left: 4px;
  }

  .product-details__size-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: flex-end;
  }

  .product-details__size-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 0 0 auto;
  }

  .product-details__size-bell {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
  }

  .product-details__size-bell:hover {
    color: #111;
  }

  .product-details__size-btn {
    min-width: 72px;
    height: 42px;
    padding: 0 28px;
    border: 1px solid #d0d0d0;
    background: #fff;
    font-size: 12.5px;
    font-weight: 400;
    color: #555;
    cursor: pointer;
    transition: all 0.15s ease;
    border-radius: 0;
    font-family: var(--font-primary--family, sans-serif);
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .product-details__size-btn:hover {
    border-color: #999;
  }

  .product-details__size-btn--active {
    border-color: #000;
    background: #fff;
    color: #000;
    font-weight: 500;
  }

  .product-details__size-btn--oos {
    color: #ccc;
    border-color: #ddd;
    cursor: default;
    position: relative;
  }

  .product-details__size-btn--oos::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 8px;
    right: 8px;
    height: 1px;
    background: #ccc;
    transform: rotate(-45deg);
  }

  /* ---- Notify modal ---- */
  .notify-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .notify-modal.is-open {
    opacity: 1;
    visibility: visible;
  }

  .notify-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    cursor: pointer;
  }

  .notify-modal__dialog {
    position: relative;
    background: #fff;
    width: 92%;
    max-width: 480px;
    border-radius: 6px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    transform: translateY(12px) scale(0.98);
    transition: transform 0.25s ease;
    overflow: hidden;
  }

  .notify-modal.is-open .notify-modal__dialog {
    transform: translateY(0) scale(1);
  }

  .notify-modal__close {
    position: absolute;
    top: 14px; right: 14px;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color 0.15s ease;
    z-index: 1;
  }

  .notify-modal__close:hover {
    color: #111;
  }

  .notify-modal__inner {
    padding: 28px 24px 24px;
  }

  .notify-modal__title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 20px;
    color: #111;
    font-family: var(--font-heading--family, sans-serif);
  }

  .notify-modal__product {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
  }

  .notify-modal__image {
    width: 100px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
  }

  .notify-modal__image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .notify-modal__details {
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding-top: 2px;
  }

  .notify-modal__name {
    font-size: 12px;
    font-weight: 700;
    margin: 0 0 2px;
    color: #111;
  }

  .notify-modal__type {
    font-size: 12px;
    color: #777;
    margin: 0;
  }

  .notify-modal__meta {
    font-size: 12px;
    color: #777;
    margin: 0;
  }

  .notify-modal__price {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin: 6px 0 0;
  }

  .notify-modal__form {
    border-top: 1px solid #eee;
    padding-top: 20px;
  }

  .notify-modal__label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;
    margin-bottom: 10px;
  }

  .notify-modal__label--email {
    margin-top: 18px;
  }

  .notify-modal__sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .notify-modal__size-pill {
    min-width: 36px;
    height: 30px;
    padding: 0 12px;
    border: 1.5px solid #111;
    background: #fff;
    font-size: 10px;
    font-weight: 600;
    color: #111;
    border-radius: 100px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
  }

  .notify-modal__size-pill--active {
    background: #111;
    color: #fff;
  }

  .notify-modal__input {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #d5d5d5;
    border-radius: 100px;
    font-size: 13px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.15s ease;
  }

  .notify-modal__input:focus {
    border-color: #111;
  }

  .notify-modal__btn {
    width: 100%;
    margin-top: 14px;
    padding: 15px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .notify-modal__btn:hover {
    background: #333;
  }

  .notify-modal__submit:hover {
    background: #333;
  }

  /* ---- Add to cart row ---- */
  .product-details__add-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 8px;
    margin-top: 20px;
  }

  .product-details__add-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .product-details__add-btn {
    width: 100%;
    height: 52px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 34px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-primary--family), sans-serif;
  }
  .product-details__add-bag {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    position: relative;
    top: 0px;
  }

  .product-details__add-dot {
    display: none;
  }

  .product-details__add-btn:hover {
    background: #000;
  }

  .product-details__add-btn:disabled {
    background: #000;
    cursor: pointer;
  }

  .product-details__add-btn--soldout {
    background: #000 !important;
    opacity: 0.5;
    cursor: not-allowed !important;
  }
  .product-details__add-btn.is-loading {
    pointer-events: none;
  }
  .product-details__add-spinner {
    animation: none;
    color: #fff;
  }

  .product-details__wishlist {
    width: 44px;
    height: 44px;
    border: 1px solid #d0d0d0;
    border-radius: 100%;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s ease, color 0.2s ease;
    color: #555;
  }

  .product-details__wishlist:hover {
    border-color: #111;
    color: #111;
  }

  .product-details__wishlist.is-wishlisted svg path {
    fill: #c0392b;
    stroke: #c0392b;
  }

  .product-details__size-error {
    display: none;
    color: #c0392b;
    font-size: 12px;
    font-weight: 400;
    margin: 8px 0 0;
    padding: 0;
    text-align: center;
  }

  .product-details__size-error.is-visible {
    display: block;
  }

  .product-details__size-btn--error {
    border-color: #c0392b !important;
  }

  /* ---- Installments (Alphalete: centered, border-top/bottom, padding 2rem 0) ---- */
  .product-details__installments {
    margin-bottom: 0;
    padding: 16px 0;
    font-size: 12px;
    color: #111;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }

  /* Hide ALL Shopify payment buttons, badges, icons */
  .product-details .shopify-payment-button,
  .product-details [data-shopify="payment-button"],
  .product-page .shopify-cleanslate,
  .product-details .shopify-payment-button__button,
  .product-details [data-shopify-buy-button],
  .product-page shopify-accelerated-checkout,
  .product-page shopify-accelerated-checkout-cart,
  .product-page .shopify-payment-terms__badge,
  .product-page [class*="payment-icon"],
  .product-page img[alt*="payment" i],
  .product-page svg[class*="payment"],
  .product-details form + ul,
  .product-details form ~ ul,
  .product-details .list--payment-icons,
  .product-details .payment-icons,
  .product-details ul[class*="payment"],
  .product-details shopify-buy-now-button,
  .product-details .shopify-payment-button__more-options {
    display: none !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* ---- Fit slider ---- */
  .product-details__fit {
    margin-bottom: 8px;
    padding: 24px 0 20px;
    border-top: 1px solid #e5e5e5;
  }

  .product-details__fit-label {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    display: block;
    margin-bottom: 14px;
  }

  .product-details__fit-track {
    width: 100%;
  }

  .product-details__fit-bar {
    width: 100%;
    height: 8px;
    background: #e5e5e5;
    border-radius: 0;
    position: relative;
    margin-bottom: 8px;
    overflow: hidden;
  }

  .product-details__fit-indicator {
    position: absolute;
    top: 0;
    left: 0 !important;
    width: var(--fit-value, 40%);
    height: 100%;
    background: #1a3a5c;
    border-radius: 0;
    transform: none;
    border: none;
    box-shadow: none;
  }

  .product-details__fit-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #888;
  }

  /* ---- Highlights & Fit Suggestion (flat sections like Alphalete) ---- */
  .product-details__highlights,
  .product-details__fit-suggestion {
    margin-bottom: 0;
    padding: 0 0 20px;
  }

  .product-details__section-heading {
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #111;
    letter-spacing: 0.2px;
  }

  .product-details__highlights-content,
  .product-details__fit-suggestion-content {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
  }

  .product-details__highlights-content ul,
  .product-details__fit-suggestion-content ul {
    padding-left: 22px;
    margin: 0;
    list-style: disc;
  }

  .product-details__highlights-content li,
  .product-details__fit-suggestion-content li {
    margin-bottom: 3px;
  }

  .product-details__highlights-content p,
  .product-details__fit-suggestion-content p {
    margin: 0 0 4px;
  }

  /* ---- Trust badges ---- */
  .product-details__trust-badges {
    display: none;
  }

  /* ---- Social proof ---- */
  .product-details__social-proof {
    display: none;
  }

  /* ---- Accordions (Alphalete style: flat separator lines) ---- */
  .product-details__accordion {
    border: none;
    border-top: 1px solid #e5e5e5;
    background: transparent;
    -webkit-tap-highlight-color: transparent;
  }

  .product-details__accordion:last-of-type {
    border-bottom: 1px solid #e5e5e5;
  }

  .product-details__accordion-toggle,
  .product-details__accordion-toggle:hover,
  .product-details__accordion-toggle:active,
  .product-details__accordion-toggle:focus,
  .product-details__accordion-toggle:focus-visible,
  .product-details__accordion-toggle[aria-expanded="true"],
  .product-details__accordion-toggle[aria-expanded="false"] {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    background: none !important;
    background-color: transparent !important;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    color: #222 !important;
    -webkit-text-fill-color: #222 !important;
    text-align: left;
    font-family: var(--font-heading--family, sans-serif);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    box-shadow: none !important;
  }

  .product-details__accordion-toggle *,
  .product-details__accordion-toggle:active *,
  .product-details__accordion-toggle:focus *,
  .product-details__accordion-toggle[aria-expanded="true"] * {
    color: #222 !important;
    -webkit-text-fill-color: #222 !important;
  }

  .product-details__accordion-icon {
    transition: transform 0.25s ease;
    flex-shrink: 0;
  }

  .product-details__accordion-toggle[aria-expanded="true"] .product-details__accordion-icon {
    transform: rotate(45deg);
  }

  .product-details__accordion-chevron {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: #111;
    stroke: #111;
  }

  .product-details__accordion-toggle[aria-expanded="true"] .product-details__accordion-chevron {
    transform: rotate(180deg);
  }

  .product-details__desc-box {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 24px;
    margin: 16px 0 8px;
  }

  .product-details__desc-heading {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin: 0 0 8px;
    line-height: 1.35;
    font-family: var(--font-heading--family, sans-serif);
  }

  .product-details__desc-body {
    font-size: 13px;
    line-height: 1.6;
    color: #222;
    margin: 0;
  }

  .product-details__accordion-group {
    margin-top: 8px;
  }

  .product-details__accordion-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    line-height: 1;
  }

  .product-details__accordion-ico {
    flex-shrink: 0;
    color: #222;
    display: block;
    width: 16px;
    height: 16px;
  }

  @media (max-width: 768px) {
    .product-details__accordion-ico {
      position: relative;
      top: -2px;
    }
  }


  .product-details__accordion-body {
    overflow: hidden;
    height: 0;
    transition: height 0.32s ease;
  }

  .product-details__detail-line {
    font-size: 13px;
    line-height: 1.6;
    color: #222;
    margin: 0 0 5px;
  }

  @media (min-width: 769px) {
    .product-details__detail-line {
      font-size: 14px;
    }
  }

  .product-details__detail-line:last-child {
    margin-bottom: 14px;
  }

  .product-details__detail-line strong {
    font-weight: 600;
  }

  .product-details__shipping-link {
    color: #111;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .product-details__accordion-content {
    padding: 0 0 20px;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
  }

  .product-details__accordion-content[hidden] {
    display: none;
  }

  .product-details__accordion-content ul {
    padding-left: 20px;
    margin: 0;
    list-style: disc;
  }

  .product-details__accordion-content li {
    margin-bottom: 4px;
  }

  .product-details__accordion-content p {
    margin: 0 0 8px;
  }

  .product-details__accordion-content p:last-child {
    margin-bottom: 0;
  }

  /* ---- Recommendations ---- */
  .product-recommendations {
    width: 100%;
    margin-top: 40px;
    padding: 40px 40px 60px;
    border-top: none;
  }

  .product-recommendations__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
  }

  .product-recommendations__title {
    font-family: var(--font-heading--family, sans-serif);
    font-size: 28px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    margin: 0;
    color: #111;
  }

  .product-recommendations__wrapper {
    position: relative;
  }
  .product-recommendations .best-sellers__track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    width: calc(100% + 40px);
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .product-recommendations .best-sellers__track::-webkit-scrollbar { display: none; }
  .rec-nav {
    display: flex;
    gap: 6px;
  }
  .rec-nav__arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #999;
    padding: 0;
  }
  .rec-nav__arrow:hover { border-color: #111; color: #111; }

  .product-recommendations .bs-product-card {
    flex: 0 0 auto;
    width: calc((100vw - 80px - 64px) / 5);
    min-width: 200px;
    scroll-snap-align: start;
  }
  .product-recommendations .bs-product-card__image-wrapper {
    position: relative;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: #f0f0f0;
    margin-bottom: 10px;
    border-radius: 12px;
  }
  .product-recommendations .bs-product-card__image-wrapper a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .product-recommendations .bs-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .product-recommendations .bs-product-card__image--hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .product-recommendations .bs-product-card__image-wrapper:hover .bs-product-card__image--hover {
    opacity: 1;
  }
  .product-recommendations .bs-product-card__badge {
    position: absolute;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    z-index: 2;
    font-family: 'NeueHaasDisplayMedium', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  }
  .product-recommendations .bs-product-card__badge--sale {
    top: 8px;
    left: 8px;
    background: #111;
    color: #fff;
  }
  .product-recommendations .bs-product-card__quick-add {
    position: absolute;
    bottom: 8px;
    left: 8px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
  }
  .product-recommendations .bs-product-card__image-wrapper:hover .bs-product-card__quick-add {
    opacity: 1;
    pointer-events: auto;
  }
  .product-recommendations .bs-product-card__quick-add-trigger {
    background: rgba(255,255,255,0.95);
    padding: 6px 12px;
    font-size: 9px;
    font-weight: 600;
    font-family: var(--font-heading--family), sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #111;
    cursor: pointer;
    text-align: center;
    border-radius: 3px 3px 0 0;
  }
  .product-recommendations .bs-product-card__sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 0;
    background: rgba(255,255,255,0.95);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.15s ease, padding 0.15s ease;
  }
  .product-recommendations .bs-product-card__quick-add:hover .bs-product-card__sizes {
    max-height: 150px;
    padding: 6px;
  }
  .product-recommendations .bs-product-card__size-btn {
    width: 26px;
    height: 26px;
    min-width: 0;
    padding: 0;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    background: #fff;
    font-size: 9px;
    font-weight: 400;
    color: #111;
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: var(--font-primary--family), sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-recommendations .bs-product-card__size-btn:hover {
    background: #111;
    color: #fff;
    border-color: #111;
  }
  .product-recommendations .bs-product-card__size-btn--disabled {
    color: #ccc;
    border-color: #eee;
    cursor: not-allowed;
    text-decoration: line-through;
  }
  .product-recommendations .bs-product-card__info {
    padding: 0 2px;
    font-family: var(--font-primary--family), sans-serif;
    line-height: 1.3;
  }
  .product-recommendations .bs-product-card__info > * { margin: 0; padding: 0; }
  .product-recommendations .bs-product-card__swatches {
    display: flex;
    gap: 6px;
    margin-bottom: 6px;
    align-items: center;
    flex-wrap: nowrap;
  }
  .product-recommendations .bs-product-card__swatch {
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    text-decoration: none;
    overflow: hidden;
    padding: 0;
    background: #F7F7F7;
  }
  .product-recommendations .bs-product-card__swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .product-recommendations .bs-product-card__swatch--active {
  }
  .product-recommendations .bs-product-card__swatch-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 600;
    color: #555;
    background: #ffffff;
    text-decoration: none;
    flex-shrink: 0;
  }
  .product-recommendations .bs-product-card__name {
    display: block;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-heading--family), sans-serif;
    text-transform: none;
    color: #111;
    text-decoration: none;
    line-height: 1.3;
    margin-bottom: 4px;
  }
  .product-recommendations .bs-product-card__name:hover { color: #111; }
  .product-recommendations .bs-product-card__type {
    font-size: 14px;
    font-weight: 400;
    color: #111;
    margin: 0 0 4px;
    line-height: 1.4;
  }
  .product-recommendations .bs-product-card__color {
    font-size: 14px;
    font-weight: 400;
    color: #111;
    margin: 0 0 4px;
    line-height: 1.4;
  }
  .product-recommendations .bs-product-card__price {
    font-size: 15px;
    font-weight: 400;
    color: #111;
    display: flex;
    gap: 8px;
    align-items: center;
    line-height: 1.3;
    margin-top: 4px;
  }
  .product-recommendations .bs-product-card__price--compare {
    color: #d32f2f;
    text-decoration: line-through;
    font-weight: 400;
  }
  .product-recommendations .bs-product-card__price--sale { color: #111; font-weight: 400; }

  /* ---- Gallery dots (mobile only) ---- */
  .product-gallery__dots {
    display: none;
    justify-content: center;
    gap: 6px;
    padding: 12px 0;
  }

  .product-gallery__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .product-gallery__dot--active {
    background: #111;
  }

  /* ---- Swipe track (desktop: pass-through) ---- */
  .product-gallery__swipe-track {
    display: contents;
  }

  /* ---- Sticky bottom bar (mobile only) ---- */
  .product-sticky-bar {
    display: none;
  }

  /* ---- Responsive: Tablet ---- */
  @media screen and (max-width: 1100px) {
    .product-page__inner {
      grid-template-columns: 1fr 42%;
    }

    .product-gallery {
      grid-template-columns: 70px 1fr;
      padding-left: 16px;
    }

    .product-gallery__thumb {
      width: 70px;
    }

    .product-details {
      padding: 8px 24px 40px 24px;
    }
  }

  @media screen and (max-width: 860px) {
    .product-page__inner {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .product-gallery {
      position: static;
      grid-template-columns: 60px 1fr;
      padding-left: 12px;
    }

    .product-gallery__thumb {
      width: 60px;
    }

    .product-gallery__thumbnails {
      max-height: 50vh;
    }

    .product-details {
      position: static;
      max-height: none;
      padding: 20px 20px 0;
    }
  }

  /* ---- Responsive: Mobile ---- */
  @media screen and (max-width: 768px) {
    .product-page {
      padding: 0 0 80px;
    }

    .product-page__inner {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .product-gallery {
      position: static;
      padding: 0;
      overflow: hidden;
      width: 100%;
    }

    .product-gallery__grid {
      display: none;
    }

    .product-gallery__mobile {
      display: block;
    }

    .product-gallery__mobile-main {
      position: relative;
      overflow: hidden;
      width: 100%;
    }

    .product-gallery__swipe-track {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      gap: 0;
      padding: 0;
      margin: 0;
      width: 100%;
    }

    .product-gallery__swipe-track::-webkit-scrollbar {
      display: none;
    }

    .product-gallery__slide {
      display: block;
      flex: 0 0 100%;
      scroll-snap-align: start;
      min-width: 100%;
      max-width: 100%;
      position: relative;
      margin: 0;
      padding: 0;
    }

    .product-gallery__slide img {
      width: 100%;
      height: auto;
    }

    .product-gallery__mobile-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.85);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #111;
      box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    }

    .product-gallery__mobile-nav--prev {
      left: 8px;
    }

    .product-gallery__mobile-nav--next {
      right: 8px;
    }

    .product-gallery__mobile-thumbs {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 4px;
      padding: 4px 0 0;
    }

    .product-gallery__mobile-thumbs::-webkit-scrollbar {
      display: none;
    }

    .product-gallery__mobile-thumb {
      width: 100%;
      aspect-ratio: 3 / 4;
      border: none;
      padding: 0;
      cursor: pointer;
      overflow: hidden;
      background: #f5f5f5;
    }

    .product-gallery__mobile-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .product-gallery__progressbar {
      position: absolute;
      bottom: 8px;
      left: 10%;
      right: 10%;
      height: 4px;
      background: transparent;
    }

    .product-gallery__progressbar-fill {
      height: 100%;
      background: rgba(255,255,255,0.75);
      border-radius: 4px;
      position: absolute;
      top: 0;
      left: 0;
      will-change: transform;
    }

    .product-gallery__nav {
      display: none;
    }

    .product-gallery__dots {
      display: none;
    }

    .product-gallery__model-info {
      bottom: 12px;
      top: auto;
      left: auto;
      right: 12px;
      background: rgba(255,255,255,0.85);
      color: #555;
      font-size: 10px;
      padding: 5px 10px;
    }

    .product-details {
      position: static;
      max-height: none;
      padding: 16px 16px 0;
    }

    .product-details__title {
      font-size: 27px;
      flex: 1;
      color: #000;
    }

    .product-details__title-collection {
      display: inline;
    }

    .product-details__title-type {
      display: inline;
    }

    .product-details__price-current {
      font-size: 18px;
    }

    .product-details__price-compare {
      font-size: 14px;
    }

    .product-details__swatches {
      flex-wrap: wrap;
    }

    .product-details__size-buttons {
      flex-wrap: wrap;
      gap: 7px;
    }

    .product-details__size-wrap {
      flex: 0 0 auto;
    }

    .product-details__add-row {
      flex-wrap: nowrap;
    }

    .product-details__add-btn {
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 0.8px;
    }

    .product-sticky-bar {
      display: block;
      position: fixed;
      bottom: 24px;
      left: 10px;
      right: 10px;
      z-index: 100;
      background: #000;
      border-radius: 34px;
      padding: 0;
      pointer-events: none;
      transform: translateY(calc(100% + 24px));
      transition: transform 0.3s ease;
      visibility: hidden;
    }

    .product-sticky-bar.is-visible {
      transform: translateY(0);
      pointer-events: auto;
      visibility: visible;
    }

    .product-sticky-bar__btn {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      height: 52px;
      background: transparent;
      color: #fff;
      border: none;
      border-radius: 0;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      cursor: pointer;
      font-family: var(--font-primary--family), sans-serif;
    }

    .product-sticky-bar__btn svg {
      flex-shrink: 0;
    }

    .product-sticky-bar__dot {
      display: none;
    }

    .product-sticky-bar__btn--soldout {
      opacity: 0.5;
      cursor: not-allowed;
    }

    .product-recommendations {
      padding: 30px 0 40px 16px;
      margin-top: 40px;
    }

    .product-recommendations .bs-product-card {
      width: 43vw;
      min-width: 0;
      flex: 0 0 auto;
    }

    .product-recommendations .bs-product-card__image--hover,
    .product-recommendations .bs-product-card__quick-add {
      display: none !important;
    }
  }

  /* Social proof pill */
  .sp-pill{
    display:flex !important; align-items:center;
    padding:12px 0;
    margin-top:16px;
    font:14px/1.25 system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
    color:#0f172a; max-width:100%;
    visibility:visible !important;
    opacity:1 !important;
  }

  @media screen and (max-width: 768px) {
    .product-recommendations {
      padding: 24px 0;
      padding-left: 8px;
      margin-top: 40px;
    }
    .product-recommendations__title {
      font-size: 20px;
    }
    .product-recommendations { padding: 24px 16px; }
    .product-recommendations .best-sellers__track {
      width: calc(100vw - 16px);
      gap: 8px;
    }
    .product-recommendations .bs-product-card {
      width: 55vw;
      min-width: 0;
    }
    .rec-nav { display: none; }
    .product-recommendations .bs-product-card {
      width: 55vw;
      min-width: 0;
    }
    .product-recommendations .bs-product-card__name {
      font-size: 15px;
      margin-bottom: 2px;
    }
    .product-recommendations .bs-product-card__type,
    .product-recommendations .bs-product-card__color {
      font-size: 12px;
      margin: 0 0 2px;
    }
    .product-recommendations .bs-product-card__price {
      font-size: 13px;
      margin-top: 2px;
    }
  }

  @media (max-width:360px){
    .sp-pill{ font-size:12.5px; }
    .sp-badge{ width:14px; height:14px; margin-right:3px; }
  }
/* END_SECTION:product */

/* START_SECTION:return-policy (INDEX:32) */
.policy-page {
  font-family: var(--font-primary--family, sans-serif);
  color: #222;
  background: #fff;
}

.policy-page__title {
  text-align: center;
  padding: 48px 24px 0;
}

.policy-page__title h1 {
  font-size: 30px;
  font-weight: 500;
  color: #222;
  margin: 0;
  letter-spacing: -0.01em;
}

.policy-page__body {
  max-width: 680px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.policy-page__body h2 {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin: 36px 0 12px;
  font-family: var(--font-primary--family, sans-serif);
}

.policy-page__body h2:first-child {
  margin-top: 0;
}

.policy-page__body p {
  font-size: 16px;
  line-height: 1.65;
  color: #222;
  margin: 0 0 12px;
}

.policy-page__body p:last-child {
  margin-bottom: 0;
}

.policy-page__body strong {
  font-weight: 600;
  color: #222;
}

.policy-page__body a {
  color: #222;
  text-decoration: underline;
}

.policy-page__body ul,
.policy-page__body ol {
  font-size: 16px;
  line-height: 1.65;
  color: #222;
  margin: 0 0 12px;
  padding-left: 24px;
}

.policy-page__body li {
  margin-bottom: 4px;
}

@media screen and (max-width: 600px) {
  .policy-page__title {
    padding: 36px 20px 0;
  }

  .policy-page__title h1 {
    font-size: 22px;
  }

  .policy-page__body {
    padding: 24px 20px 60px;
  }

  .policy-page__body h2 {
    margin-top: 28px;
  }

  .policy-page__body p,
  .policy-page__body ul,
  .policy-page__body ol {
    font-size: 15px;
  }
}
/* END_SECTION:return-policy */

/* START_SECTION:search (INDEX:33) */
.dr-search { padding: 40px 24px 60px; max-width: 100%; }

.dr-search__hero { margin-bottom: 24px; }
.dr-search__label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: #888; margin: 0 0 8px;
  font-family: var(--font-heading--family), sans-serif;
}
.dr-search__term {
  font-size: 32px; font-weight: 700; color: #111; margin: 0; line-height: 1.2;
  font-family: var(--font-heading--family), sans-serif;
}

.dr-search__bar { margin-bottom: 24px; }
.dr-search__form {
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1.5px solid #d0d0d0; padding: 10px 0;
  transition: border-color 0.2s ease;
}
.dr-search__form:focus-within { border-color: #111; }
.dr-search__icon { flex-shrink: 0; color: #999; }
.dr-search__input {
  flex: 1; border: none; outline: none; font-size: 15px;
  font-family: var(--font-primary--family), sans-serif;
  background: transparent; color: #111; font-weight: 400;
}
.dr-search__input::placeholder { color: #bbb; }
.dr-search__clear {
  flex-shrink: 0; font-size: 11px; font-weight: 700; color: #888;
  text-decoration: none; letter-spacing: 0.06em;
  font-family: var(--font-heading--family), sans-serif;
  transition: color 0.15s ease;
}
.dr-search__clear:hover { color: #111; }

.dr-search__meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid #e8e8e8;
}
.dr-search__count { font-size: 13px; color: #888; }
.dr-search__sort-wrap { position: relative; }
.dr-search__sort-btn {
  display: flex; align-items: center; gap: 6px; background: none; border: none;
  font-size: 13px; font-weight: 600; color: #111; cursor: pointer;
  font-family: var(--font-heading--family), sans-serif; padding: 0;
}
.dr-search__sort-btn svg { transition: transform 0.2s ease; }
.dr-search__sort-btn.is-open svg { transform: rotate(180deg); }
.dr-search__sort-dd {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 200px;
  background: #fff; border: 1px solid #e0e0e0; box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  z-index: 200; opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.dr-search__sort-dd.is-open {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dr-search__sort-opt {
  display: block; width: 100%; padding: 12px 18px; border: none; background: #fff;
  font-size: 13px; color: #444; cursor: pointer; text-align: left;
  font-family: inherit; transition: background 0.1s ease, color 0.1s ease;
}
.dr-search__sort-opt:hover { background: #f5f5f5; color: #111; }
.dr-search__sort-opt--active { color: #111; font-weight: 600; }

.dr-search__empty { text-align: center; padding: 80px 0; }
.dr-search__empty p { font-size: 16px; color: #111; margin: 0 0 8px; }
.dr-search__empty-hint { font-size: 14px; color: #777; }

/* Reuse dr-grid/dr-card/dr-pagination from collection */
.dr-search .dr-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.dr-search .dr-card { position: relative; }
.dr-search .dr-card__link { display: block; text-decoration: none; }
.dr-search .dr-card__img-wrap {
  position: relative; overflow: hidden; background: #f5f5f5;
  aspect-ratio: 2/3; border-radius: 12px; margin-bottom: 10px;
}
.dr-search .dr-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dr-search .dr-card__img--hover { position: absolute; top: 0; left: 0; opacity: 0; transition: opacity 0.3s ease; }
.dr-search .dr-card__link:hover .dr-card__img--hover { opacity: 1; }
.dr-search .dr-card__placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: #f0f0f0; }
.dr-search .dr-card__placeholder svg { width: 60%; height: auto; fill: #ddd; }

.dr-search .dr-card__badge {
  position: absolute;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 2;
  font-family: 'NeueHaasDisplayMedium', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.dr-search .dr-card__badge--new { top: 8px; left: 8px; background: #111; color: #fff; }
.dr-search .dr-card__badge--sale { top: 8px; left: 8px; background: #111; color: #fff; }

.dr-search .dr-card__quick-add {
  position: absolute; bottom: 8px; left: 8px; z-index: 3;
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none; transition: opacity 0.15s ease;
}
.dr-search .dr-card__img-wrap:hover .dr-card__quick-add { opacity: 1; pointer-events: auto; }
.dr-search .dr-card__quick-trigger {
  background: rgba(255,255,255,0.95); padding: 6px 12px;
  font-size: 9px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: #111; cursor: pointer;
  text-align: center; border-radius: 3px 3px 0 0;
  font-family: var(--font-heading--family), sans-serif;
}
.dr-search .dr-card__sizes {
  display: flex; flex-wrap: wrap; gap: 4px; padding: 0;
  background: rgba(255,255,255,0.95); max-height: 0; overflow: hidden;
  transition: max-height 0.15s ease, padding 0.15s ease;
}
.dr-search .dr-card__quick-add:hover .dr-card__sizes { max-height: 150px; padding: 6px; }
.dr-search .dr-card__size {
  width: 26px; height: 26px; min-width: 0; padding: 0;
  border: 1px solid #d0d0d0; border-radius: 3px; background: #fff;
  font-size: 9px; font-weight: 400; color: #111; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-primary--family), sans-serif;
}
.dr-search .dr-card__size:hover { border-color: #111; }
.dr-search .dr-card__size--out { color: #ccc; border-color: #eee; cursor: not-allowed; text-decoration: line-through; }

.dr-search .dr-card__swatches {
  display: flex; gap: 6px; margin-bottom: 6px; align-items: center;
  flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none;
}
.dr-search .dr-card__swatches::-webkit-scrollbar { display: none; }
.dr-search .dr-card__swatch {
  display: block; width: 26px; height: 26px; border-radius: 50%;
  border: none; flex-shrink: 0; cursor: pointer; overflow: hidden;
  padding: 0; background: #f7f7f7; text-decoration: none;
}
.dr-search .dr-card__swatch img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dr-search .dr-card__swatch-more {
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%; font-size: 10px;
  font-weight: 600; color: #555; background: #fff; text-decoration: none; flex-shrink: 0;
}

.dr-search .dr-card__info { display: block; text-decoration: none; color: inherit; padding: 0 2px; }
.dr-search .dr-card__title {
  font-size: 16px; font-weight: 600;
  font-family: var(--font-heading--family), sans-serif;
  color: #111; margin: 0 0 4px; line-height: 1.3;
}
.dr-search .dr-card__type { font-size: 13px; color: #111; margin: 0 0 2px; }
.dr-search .dr-card__color { font-size: 13px; color: #111; margin: 0 0 2px; }
.dr-search .dr-card__price { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.dr-search .dr-card__price-now { font-size: 14px; color: #111; font-weight: 400; }
.dr-search .dr-card__price-now--sale { color: #111; }
.dr-search .dr-card__price-was { font-size: 13px; color: #d32f2f; text-decoration: line-through; font-weight: 400; }

.dr-search .dr-pagination { margin-top: 40px; display: flex; justify-content: center; }
.dr-search .dr-pagination__list { display: flex; align-items: center; gap: 4px; list-style: none; padding: 0; margin: 0; }
.dr-search .dr-pagination__link {
  display: flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 8px;
  border: 1px solid transparent; text-decoration: none;
  font-size: 14px; color: #555; transition: all 0.15s ease;
}
.dr-search .dr-pagination__link:hover { border-color: #111; color: #111; }
.dr-search .dr-pagination__link--active { background: #111; color: #fff; border-color: #111; }

@media screen and (max-width: 1024px) {
  .dr-search .dr-grid { grid-template-columns: repeat(3, 1fr); }
}

@media screen and (max-width: 768px) {
  .dr-search { padding: 24px 10px 40px; }
  .dr-search__term { font-size: 24px; }
  .dr-search .dr-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .dr-search .dr-card__img--hover { display: none !important; }
  .dr-search .dr-card__quick-add { display: none !important; }
  .dr-search .dr-card__swatches { flex-wrap: wrap; overflow-x: visible; }
  .dr-search .dr-card__swatch { width: 22px; height: 22px; }
  .dr-search .dr-card__swatch-more { width: 22px; height: 22px; font-size: 9px; }
  .dr-search .dr-card__title { font-size: 14px; margin: 0 0 2px; }
  .dr-search .dr-card__type, .dr-search .dr-card__color { font-size: 12px; margin: 0 0 2px; }
  .dr-search .dr-card__price { margin-top: 2px; }
  .dr-search .dr-card__price-now { font-size: 13px; }
  .dr-search .dr-card__price-was { font-size: 12px; }
}
/* END_SECTION:search */

/* START_SECTION:shipping-policy (INDEX:34) */
.policy-page {
  font-family: var(--font-primary--family, sans-serif);
  color: #222;
  background: #fff;
}

.policy-page__title {
  text-align: center;
  padding: 48px 24px 0;
}

.policy-page__title h1 {
  font-size: 30px;
  font-weight: 500;
  color: #222;
  margin: 0;
  letter-spacing: -0.01em;
}

.policy-page__body {
  max-width: 680px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.policy-page__body h2 {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin: 36px 0 12px;
  font-family: var(--font-primary--family, sans-serif);
}

.policy-page__body h2:first-child {
  margin-top: 0;
}

.policy-page__body p {
  font-size: 16px;
  line-height: 1.65;
  color: #222;
  margin: 0 0 12px;
}

.policy-page__body p:last-child {
  margin-bottom: 0;
}

.policy-page__body em {
  font-size: 14px;
  color: #555;
}

.policy-page__body strong {
  font-weight: 600;
  color: #222;
}

.policy-page__body a {
  color: #222;
  text-decoration: underline;
}

.policy-page__body ul,
.policy-page__body ol {
  font-size: 16px;
  line-height: 1.65;
  color: #222;
  margin: 0 0 12px;
  padding-left: 24px;
}

.policy-page__body li {
  margin-bottom: 4px;
}

.policy-page__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 16px 0 24px;
}

.policy-page__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 380px;
}

.policy-page__table thead th {
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #222;
  padding: 10px 16px;
  border-bottom: 2px solid #222;
  white-space: nowrap;
}

.policy-page__table tbody td {
  padding: 10px 16px;
  color: #222;
  border-bottom: 1px solid #e5e5e5;
  line-height: 1.5;
}

.policy-page__table tbody tr:last-child td {
  border-bottom: none;
}

@media screen and (max-width: 600px) {
  .policy-page__title { padding: 36px 20px 0; }
  .policy-page__title h1 { font-size: 22px; }
  .policy-page__body { padding: 24px 20px 60px; }
  .policy-page__body h2 { margin-top: 28px; }
  .policy-page__body p,
  .policy-page__body ul,
  .policy-page__body ol { font-size: 15px; }
  .policy-page__table { font-size: 14px; }
  .policy-page__table thead th,
  .policy-page__table tbody td { padding: 8px 12px; }
}
/* END_SECTION:shipping-policy */

/* START_SECTION:shop-by-color (INDEX:35) */
.shop-by-color {
  padding: 48px 0 48px 40px;
  overflow: hidden;
}

.shop-by-color__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-right: 40px;
}

.shop-by-color__title {
  font-size: 28px;
  font-weight: 500;
  font-family: var(--font-heading--family), sans-serif;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
  color: #111;
}

.shop-by-color__arrows {
  display: flex;
  gap: 8px;
}

.shop-by-color__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  padding: 0;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.shop-by-color__arrow:hover {
  border-color: #111;
}

.shop-by-color__arrow.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.shop-by-color__grid {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.shop-by-color__grid::-webkit-scrollbar {
  display: none;
}

.color-card {
  flex: 0 0 auto;
  width: calc((100vw - 80px - 40px) / 6);
  min-width: 140px;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  text-align: center;
}

.color-card__image-wrapper {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #e8e8e8;
  margin-bottom: 14px;
  border-radius: 12px;
}

.color-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.color-card:hover .color-card__image {
  transform: scale(1.04);
}

.color-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
}

.color-card__placeholder svg {
  width: 50%;
  height: 50%;
  opacity: 0.3;
}

.color-card__name {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
  color: #111;
}

@media (max-width: 999px) {
  .shop-by-color {
    padding: 32px 24px;
  }
  .shop-by-color__grid {
    gap: 12px;
  }
  .color-card {
    flex: 0 0 auto;
    width: calc((100% - 24px) / 3);
    min-width: 150px;
  }
}

@media (max-width: 768px) {
  .shop-by-color {
    padding: 24px 0 24px 24px;
  }
  .shop-by-color__title {
    font-size: 24px;
    margin-bottom: 0;
    padding: 0;
  }
  .shop-by-color__grid {
    display: flex;
    gap: 8px;
    padding: 0;
    margin-left: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
  .color-card {
    flex: 0 0 auto;
    width: 38vw;
    min-width: 0;
    scroll-snap-align: start;
  }
  .shop-by-color__spacer {
    flex: 0 0 16px;
    min-width: 16px;
  }
  .color-card__image-wrapper {
    border-radius: 10px;
    margin-bottom: 8px;
    aspect-ratio: 3/4.5;
  }
  .color-card__name {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .shop-by-color__header {
    padding-right: 8px;
  }
  .shop-by-color__arrows {
    display: none;
  }
}
/* END_SECTION:shop-by-color */

/* START_SECTION:split-grid (INDEX:36) */
.split-grid {
  display: flex;
  gap: 4px;
  padding: 0;
  height: 85vh;
  min-height: 500px;
  max-height: 800px;
  margin-bottom: 40px;
}

.split-grid__left {
  flex: 0 0 55%;
}

.split-grid__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.split-grid__item {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #e5e5e5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  height: 100%;
}

.split-grid__item--half {
  flex: 1;
}

.split-grid__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 50%);
  pointer-events: none;
}

.split-grid__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
}

.split-grid__heading {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: 0.04em;
}

.split-grid__heading:empty {
  display: none;
}

.split-grid__button {
  display: inline-block;
  background: #f5f5f0;
  color: #111;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.split-grid__button:hover {
  background: #fff;
  transform: translateY(-1px);
}

@media (max-width: 999px) {
  .split-grid {
    height: auto;
    min-height: auto;
    max-height: none;
    flex-direction: column;
    padding: 0;
    gap: 4px;
  }
  .split-grid__left {
    flex: none;
    height: 60vh;
  }
  .split-grid__right {
    flex: none;
    flex-direction: row;
    height: 40vh;
  }
  .split-grid__item--half {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .split-grid {
    height: auto;
    min-height: auto;
    max-height: none;
    flex-direction: column;
    padding: 0 8px;
    gap: 8px;
  }
  .split-grid__left {
    flex: none;
    height: 60vh;
    min-height: 320px;
  }
  .split-grid__right {
    flex: none;
    flex-direction: column;
    height: auto;
    gap: 8px;
  }
  .split-grid__item {
    border-radius: 10px;
  }
  .split-grid__item--half {
    height: 55vh;
    min-height: 280px;
    flex: none;
  }
  .split-grid__heading {
    font-size: 22px;
  }
  .split-grid__content {
    padding: 24px 16px;
  }
}
/* END_SECTION:split-grid */

/* START_SECTION:track-order (INDEX:37) */
.track-page {
  font-family: var(--font-primary--family, sans-serif);
  color: #111;
  background: #fff;
}

.track-page__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 56px 24px 0;
}

.track-page__title {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  color: #111;
}

.track-page__subtitle {
  font-size: 14px;
  color: #888;
  margin: 0 auto;
  max-width: 400px;
  line-height: 1.6;
}

.track-page__widget {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px 24px 48px;
}

/* ── Parcel Panel overrides (using PP's documented class names) ── */
#pp-tracking-page-app {
  font-family: var(--font-primary--family, sans-serif) !important;
}

.pp_tracking_title {
  display: none !important;
}

.pp_tracking_form_div {
  margin-top: 0 !important;
}

.pp_tracking_form {
  text-align: center !important;
}

.pp_tracking_content .PP-TextField__Input {
  width: 100% !important;
  padding: 14px 16px !important;
  border: 1.5px solid #ddd !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  font-family: var(--font-primary--family, sans-serif) !important;
  color: #111 !important;
  background: #fff !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  box-sizing: border-box !important;
}

.pp_tracking_content .PP-TextField__Input:focus {
  border-color: #111 !important;
}

.pp_tracking_content button {
  background: #111 !important;
  border: 1px solid #111 !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 14px 24px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  font-family: var(--font-primary--family, sans-serif) !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background 0.2s ease !important;
  width: 100% !important;
}

.pp_tracking_content button:hover {
  background: #333 !important;
}

.pp_tracking_content button::after,
.pp_tracking_content button:hover::after {
  box-shadow: none !important;
}

#pp-tracking-page-app .pp_tracking_result {
  padding-bottom: 20px !important;
}

/* ── FAQ ── */
.track-page__faq {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.track-page__faq-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #111;
}

.track-page__accordion {
  border-top: 1px solid #e5e5e5;
}

.track-page__item {
  border-bottom: 1px solid #e5e5e5;
}

.track-page__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.track-page__question::-webkit-details-marker {
  display: none;
}

.track-page__question::after {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.2s ease;
}

.track-page__item[open] .track-page__question::after {
  transform: rotate(180deg);
}

.track-page__answer {
  padding: 0 0 16px;
}

.track-page__answer p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

.track-page__answer a {
  color: #111;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .track-page__header {
    padding: 40px 20px 0;
  }

  .track-page__title {
    font-size: 24px;
  }

  .track-page__subtitle {
    font-size: 13px;
  }

  .track-page__widget {
    padding: 24px 20px 36px;
  }

  .track-page__faq {
    padding: 0 20px 60px;
  }

  .track-page__question {
    font-size: 13px;
  }
}
/* END_SECTION:track-order */

/* START_SECTION:welcome-popup (INDEX:39) */
.wp-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.wp-popup__container {
  width: 100%;
  height: 100%;
  background: #f5f3f0;
  display: flex;
  overflow: hidden;
  animation: wpFadeIn 0.3s ease;
}

@keyframes wpFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.wp-popup__close {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  color: #111;
  padding: 0;
  line-height: 1;
}

.wp-popup__close:hover {
  opacity: 0.5;
}

.wp-popup__content {
  width: 100%;
  height: 100%;
  position: relative;
}

.wp-popup__step {
  display: none;
  width: 100%;
  height: 100%;
}

.wp-popup__step--active {
  display: flex;
}

.wp-popup__left {
  width: 55%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  text-align: center;
  gap: 0;
  z-index: 1;
}

.wp-popup__right {
  width: 45%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.wp-popup__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wp-popup__image-placeholder {
  width: 100%;
  height: 100%;
  background: #e8e4df;
}

.wp-popup__logo {
  width: 160px;
  height: auto;
  margin-bottom: 16px;
  object-fit: contain;
}

.wp-popup__brand {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  margin: 0 0 16px;
  color: #111;
}

.wp-popup__heading {
  font-size: 60px;
  font-weight: 900;
  font-style: italic;
  font-family: var(--font-heading--family), Georgia, serif;
  line-height: 1.05;
  margin: 0 0 8px;
  color: #000;
}

.wp-popup__sub {
  font-size: 25px;
  font-weight: 400;
  color: #000;
  margin: 0 0 28px;
  line-height: 1.4;
  font-family: var(--font-primary--family), sans-serif;
}

/* Scratch card */
.wp-popup__scratch-wrap {
  position: relative;
  width: 300px;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  cursor: grab;
}

.wp-popup__scratch-wrap:active {
  cursor: grabbing;
}

.wp-popup__scratch-result {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #e8e0cc;
  border-radius: 16px;
}

.wp-popup__scratch-result-sub {
  font-size: 24px;
  font-weight: 400;
  color: #555;
  margin: 0 0 0;
  font-family: var(--font-primary--family), sans-serif;
}

.wp-popup__scratch-result-value {
  font-size: 64px;
  font-weight: 900;
  font-style: italic;
  font-family: var(--font-heading--family), Georgia, serif;
  color: #111;
  margin: 0;
  line-height: 1.1;
}

.wp-popup__scratch-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  touch-action: none;
  cursor: grab;
  transition: opacity 0.5s ease-out;
}

.wp-popup__scratch-canvas:active {
  cursor: grabbing;
}

.wp-popup__scratch-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 2px;
  color: rgba(100,92,68,0.35);
  pointer-events: none;
  margin: 0;
  text-transform: uppercase;
  font-family: var(--font-primary--family), sans-serif;
  font-style: normal;
}

/* Buttons */
.wp-popup__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 54px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-primary--family), sans-serif;
  transition: background 0.2s ease;
  padding: 16px;
  box-sizing: border-box;
}

.wp-popup__btn:hover {
  background: #222;
}

/* Form */
.wp-popup__form {
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wp-popup__input {
  width: 100%;
  height: 54px;
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 0 16px;
  font-size: 16px;
  font-family: var(--font-primary--family), sans-serif;
  background: #fff;
  color: #111;
  outline: none;
  box-sizing: border-box;
}

.wp-popup__input:focus {
  border-color: #111;
}

.wp-popup__input::placeholder {
  color: #999;
}

/* Discount code */
.wp-popup__code-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px dashed #c5bfb0;
  border-radius: 8px;
  padding: 12px 24px;
  margin-bottom: 20px;
  background: rgba(200,190,170,0.12);
}

.wp-popup__code {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #9a8c6c;
}

.wp-popup__code-copy {
  background: none;
  border: none;
  cursor: pointer;
  color: #bbb;
  padding: 2px;
  transition: color 0.15s ease;
}

.wp-popup__code-copy:hover {
  color: #111;
}

/* Mobile — fullscreen image background with overlay */
@media (max-width: 768px) {
  .wp-popup__container {
    position: relative;
    background: #000;
  }

  .wp-popup__step {
    position: relative;
  }

  .wp-popup__step--active {
    display: flex;
    flex-direction: column;
  }

  .wp-popup__right {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .wp-popup__right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
  }

  .wp-popup__left {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100vh;
    padding: 60px 28px 40px;
    justify-content: center;
    overflow-y: auto;
    box-sizing: border-box;
  }

  .wp-popup__close {
    top: 16px;
    right: 16px;
    left: auto;
    z-index: 20;
    color: #fff;
  }

  .wp-popup__logo {
    width: 120px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
  }

  .wp-popup__brand {
    color: #fff;
  }

  .wp-popup__heading {
    font-size: 38px;
    color: #fff;
  }

  .wp-popup__sub {
    font-size: 16px;
    color: #fff;
    margin-bottom: 24px;
  }

  .wp-popup__scratch-wrap {
    width: 80vw;
    max-width: 320px;
    height: 200px;
    margin-bottom: 20px;
  }

  .wp-popup__scratch-result-value {
    font-size: 48px;
  }

  .wp-popup__scratch-result-sub {
    font-size: 18px;
  }

  .wp-popup__scratch-hint {
    font-size: 24px;
    letter-spacing: 4px;
  }

  .wp-popup__btn {
    width: 100%;
    max-width: 320px;
    height: 52px;
    font-size: 15px;
    background: #fff;
    color: #000;
    border-radius: 12px;
    font-weight: 600;
  }

  .wp-popup__btn:hover {
    background: #f0f0f0;
  }

  .wp-popup__form {
    width: 100%;
    max-width: 320px;
  }

  .wp-popup__input {
    height: 52px;
    font-size: 15px;
    border-radius: 12px;
    border: none;
    background: #fff;
    color: #111;
  }

  .wp-popup__input::placeholder {
    color: #999;
  }

  .wp-popup__code-wrap {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
  }

  .wp-popup__code {
    color: #fff;
  }

  .wp-popup__code-copy {
    color: rgba(255, 255, 255, 0.6);
  }

  .wp-popup__code-copy:hover {
    color: #fff;
  }
}
/* END_SECTION:welcome-popup */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:40) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:41) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:image (INDEX:45) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */