/** Shopify CDN: Minification failed

Line 370:12 Expected identifier but found whitespace
Line 370:13 Unexpected "14px"

**/
:root {
  --color-text: #1a1a1a;
  --color-muted: #5c5c5c;
  --color-gold: #c4a35a;
  --color-peach: #f3e6dc;
  --color-cream: #f9f6f0;
  --color-cream-2: #f3eee4;
  --color-border: #e6e1d8;
  --color-green: #1b7a4e;
  --color-green-bg: #e7f6ee;
  --color-navy: #0c1b33;
  --header-h: 120px;
  --page: 1120px;
  --page-pad: 24px;
  --radius: 10px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --font: "Inter", system-ui, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font);
  background: #fff;
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { line-height: 1.2; margin: 0 0 0.5em; }
p { margin: 0 0 1em; }
[hidden] { display: none !important; }

.page-width {
  width: min(100% - (var(--page-pad) * 2), var(--page));
  margin-inline: auto;
}
.visually-hidden, .skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  inset: 8px;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 100;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: 0.2s ease;
}
.btn--full { width: 100%; }
.btn--sm { min-height: 40px; padding: 8px 14px; font-size: 13px; }
.btn--black { background: #111; color: #fff; }
.btn--black:hover { background: #000; }
.btn--outline { background: #fff; color: #111; border-color: #111; }
.btn--outline:hover { background: #111; color: #fff; }
.btn--gold { background: var(--color-gold); color: #111; }
.btn--pill { border-radius: 999px; padding: 12px 28px; }
.btn--white { background: #fff; color: #111; border-color: #fff; }
.btn--white:hover { background: #f5f5f5; }
.btn--cod { margin-top: 10px; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.icon-btn {
  border: 0;
  background: none;
  padding: 6px;
}

/* Header */
.announcement-marquee {
  background: var(--marquee-bg, #000);
  color: var(--marquee-color, #ff9f1a);
  overflow: hidden;
  position: relative;
  min-height: 38px;
  display: flex;
  align-items: center;
}
.announcement-marquee__track {
  display: flex;
  width: max-content;
  animation: announcement-marquee var(--marquee-speed, 28s) linear infinite;
  will-change: transform;
}
.announcement-marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.announcement-marquee__item {
  display: inline-flex;
  align-items: center;
  padding: 10px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
}
.announcement-marquee__item:hover {
  opacity: 0.9;
}
@keyframes announcement-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .announcement-marquee__track {
    animation: none;
    width: 100%;
    justify-content: center;
  }
  .announcement-marquee__group[aria-hidden="true"] { display: none; }
}

.site-header {
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 40;
  color: var(--color-text);
}
.site-header--asthetics .site-header__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  gap: 16px;
  padding-top: 8px;
}
.site-header__left {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}
.site-header--asthetics .site-header__actions {
  justify-self: end;
}
.site-header--asthetics .site-header__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(14px, 2.2vw, 32px);
  padding: 0 0 18px;
}
.site-header__logo {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  color: var(--color-text);
  text-decoration: none;
}
.site-header__logo-mobile { display: none; }
.site-header__logo-desktop { display: inline-flex; }
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}
.brand-logo__mark {
  flex-shrink: 0;
  display: block;
}
.brand-logo__text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-logo--stacked .brand-logo__text {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  font-size: 15px;
  letter-spacing: 0.22em;
}
.brand-logo--stacked .brand-logo__line {
  display: block;
}
.brand-logo__image {
  display: block;
  height: auto;
}
.site-header__logo-box {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--color-navy);
  color: #fff;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  border-radius: 0;
}
.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-h);
  gap: 16px;
}
.site-header__nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}
.site-header__link {
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  color: var(--color-text);
  white-space: nowrap;
}
.site-header__link:hover { color: var(--color-navy); opacity: 1; }
.site-header__link.is-active {
  color: var(--color-navy);
  font-weight: 600;
}
.site-header__link.is-active::after { display: none; }
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.site-header__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  position: relative;
}
.site-header__cart { position: relative; }
.site-header__badge {
  position: absolute;
  right: -6px;
  bottom: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--color-navy);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}
.site-header__menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--color-text);
  padding: 0;
  align-items: center;
  justify-content: center;
}
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 60;
  display: flex;
  justify-content: flex-start;
}
.mobile-nav__panel {
  width: min(85%, 360px);
  height: 100%;
  background: #fff;
  padding: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 8px 0 30px rgba(0,0,0,0.12);
  animation: slideInLeft 0.25s ease;
}
@keyframes slideInLeft {
  from { transform: translateX(-24px); opacity: 0.6; }
  to { transform: translateX(0); opacity: 1; }
}
.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid #e8e8e8;
}
.mobile-nav__title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
}
.mobile-nav__close {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  display: inline-grid;
  place-items: center;
  color: #111;
  padding: 4px;
  margin-left: auto;
}
.mobile-nav__links {
  display: flex;
  flex-direction: column;
  overflow: auto;
  padding: 8px 0;
}
.mobile-nav__links a {
  padding: 18px 20px;
  border-bottom: 0;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  color: #111;
}
.mobile-nav__links a:hover { color: #111; background: #fafafa; }
.mobile-nav__footer {
  margin-top: auto;
  display: none;
}
  font-size: 14px;
  color: #666;
}

/* Category circles */
.category-circles {
  border-bottom: 1px solid #f3f3f3;
  padding: 18px 0 12px;
  position: relative;
}
.category-circles__shell {
  position: relative;
}
.category-circles__track {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
}
.category-circles__track::-webkit-scrollbar { display: none; }
.category-circles__inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: max-content;
  min-width: 100%;
  padding: 4px 0 8px;
  justify-content: flex-start;
}
.category-circles__item {
  flex: 0 0 auto;
  width: 86px;
  text-align: center;
  scroll-snap-align: start;
}
.category-circles__image {
  width: 72px;
  height: 72px;
  margin: 0 auto 8px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #f3f1ec;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.category-circles__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-circles__placeholder {
  font-weight: 700;
  color: var(--color-gold);
  font-size: 20px;
}
.category-circles__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #333;
  line-height: 1.25;
}
.category-circles__hint {
  display: none;
}

@media (min-width: 991px) {
  .category-circles__track {
    overflow: visible;
    scroll-snap-type: none;
  }
  .category-circles__inner {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    padding: 4px 0 8px;
    justify-content: space-between;
    gap: 8px;
  }
  .category-circles__item {
    width: auto;
    flex: 1 1 0;
    max-width: 120px;
  }
  .category-circles__image {
    width: 78px;
    height: 78px;
  }
  .category-circles__label { font-size: 12px; }
}

@media (max-width: 990px) {
  .category-circles {
    padding-left: 0;
    padding-right: 0;
  }
  .category-circles__shell {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }
  .category-circles__inner {
    padding-left: var(--page-pad);
    padding-right: calc(var(--page-pad) + 20px);
    gap: 12px;
  }
  .category-circles__hint {
    display: flex;
    justify-content: flex-end;
    padding: 0 var(--page-pad);
    font-size: 11px;
    color: #999;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .category-circles__hint span::after {
    content: " →";
  }
}

/* Categories page */
.categories-page { padding: 40px 0 56px; }
.categories-page__header { text-align: center; margin-bottom: 28px; }
.categories-page__header h1 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 8px;
}
.categories-page__header p { color: #666; margin: 0 auto; max-width: 520px; }
.categories-page__circles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 16px;
}
.categories-page__item {
  text-align: center;
  color: inherit;
}
.categories-page__image {
  width: 120px;
  height: 120px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #f3f1ec;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.categories-page__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.categories-page__placeholder {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-gold);
}
.categories-page__label {
  display: block;
  font-weight: 700;
  font-size: 14px;
}
.categories-page__count {
  display: block;
  font-size: 12px;
  color: #777;
  margin-top: 4px;
}
.categories-page__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #666;
}

@media (max-width: 990px) {
  .categories-page__circles { grid-template-columns: repeat(3, 1fr); }
  .categories-page__image { width: 96px; height: 96px; }
}

@media (max-width: 749px) {
  .categories-page__circles { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
  .categories-page__image { width: 88px; height: 88px; }
}

/* Hero image slider */
.hero-slider {
  --hero-h: 480px;
  position: relative;
  width: 100%;
  background: var(--color-cream);
  overflow: hidden;
}
.hero-slider__viewport {
  width: 100%;
  overflow: hidden;
}
.hero-slider__track {
  display: flex;
  width: 100%;
  transition: transform 0.55s ease;
  will-change: transform;
}
.hero-slider__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  position: relative;
  background: var(--color-cream);
}
.hero-slider__link {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-slider__image {
  display: block;
  width: 100%;
  height: var(--hero-h);
  object-fit: cover;
  object-position: center;
}
.hero-slider__placeholder {
  width: 100%;
  height: var(--hero-h);
  display: grid;
  place-items: center;
  background: #ebe6dc;
}
.hero-slider__placeholder .placeholder-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  display: inline-grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
  cursor: pointer;
}
.hero-slider__arrow:hover { background: #fff; }
.hero-slider__arrow--prev { left: 14px; }
.hero-slider__arrow--next { right: 14px; }
.hero-slider__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.hero-slider__dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  padding: 0;
  cursor: pointer;
}
.hero-slider__dot.is-active {
  background: #fff;
  width: 22px;
}

/* Legacy full-width hero (fallback) */
.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero__media,
.hero__placeholder {
  position: absolute;
  inset: 0;
}
.hero__media img,
.hero__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__placeholder {
  background:
    linear-gradient(90deg, #1a1a1a 0%, #2a2420 38%, transparent 70%),
    radial-gradient(circle at 70% 40%, #c4a35a 0%, #3a2a22 45%, #111 100%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.35) 46%, rgba(10,10,10,0.08) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - (var(--page-pad) * 2), var(--page));
  max-width: min(100% - (var(--page-pad) * 2), var(--page));
  margin-inline: auto;
  padding: 80px 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__heading {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0;
  max-width: 560px;
}
.hero__heading span { display: block; font-size: 0.72em; }
.hero__heading em {
  font-style: normal;
  color: var(--color-gold);
  font-weight: 700;
}
.hero__divider {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 220px;
  margin: 18px 0;
}
.hero__divider span {
  flex: 1;
  height: 1px;
  background: var(--color-gold);
}
.hero__divider i {
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: var(--color-gold);
}
.hero__subheading {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  opacity: 0.92;
}

/* Featured + cards */
.featured-collection,
.related-products,
.search-page,
.page-section,
.cart-page,
.account-page,
.list-collections {
  padding: 56px 0;
}
.featured-collection {
  background: #fff;
  padding: 40px 0;
}
.featured-collection--grey {
  background: #f5f5f5;
}
.section-heading { text-align: center; margin-bottom: 28px; }
.section-heading h2 {
  font-family: var(--font);
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 800;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}
.section-heading p {
  max-width: 640px;
  margin: 8px auto 0;
  color: #666;
}
.section-heading--cta { margin: 24px 0 0; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.product-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
.product-grid--cols-5 { grid-template-columns: repeat(5, 1fr); }
.product-grid--home {
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.product-card--home {
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  border: 1px solid #efefef;
}
.product-card--home:hover {
  transform: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.product-card--home .product-card__body {
  padding: 12px 10px 14px;
}
.product-card--home h3 {
  font-size: 13px;
  font-weight: 600;
  min-height: auto;
}
.product-card--home .product-card__from {
  font-size: 14px;
}
.product-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
.product-card__media {
  position: relative;
  display: block;
  background: #f6f6f6;
  aspect-ratio: 1;
  overflow: hidden;
}
.product-card__media img,
.product-card .placeholder-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.product-card:hover .product-card__media img {
  transform: scale(1.04);
}
.product-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  left: auto;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}
.product-card__body {
  padding: 14px 14px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.product-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
  line-height: 1.3;
}
.product-card h3 a:hover { color: #000; }
.product-card__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  margin: 0;
}
.product-card__from { font-weight: 800; font-size: 15px; color: #111; }
.product-card__price s { color: #9a9a9a; font-size: 13px; }
.product-card__atc {
  width: 100%;
  margin-top: auto;
  border-radius: 8px;
  min-height: 42px;
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 700;
}
.product-card__atc:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.product-card--placeholder { padding: 0; }

.product-description {
  padding: 36px 0 16px;
}
.product-description__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  text-align: center;
}
.product-description .rte {
  max-width: 900px;
  margin-inline: auto;
  color: #333;
  font-size: 15px;
  line-height: 1.7;
}
.product-description .rte img {
  border-radius: 12px;
  margin: 16px 0;
}
.product-description .rte h1,
.product-description .rte h2,
.product-description .rte h3 {
  margin-top: 1.2em;
}

/* Reels */
.reels-section {
  padding: 56px 0;
  background: #fff;
  color: #111;
}
.reels-section .section-heading h2 { color: #111; font-weight: 800; }
.reels-section .section-heading p { color: #666; }
.reels-carousel {
  position: relative;
}
.reels-carousel__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px 12px;
  -webkit-overflow-scrolling: touch;
}
.reels-carousel__track::-webkit-scrollbar { display: none; }
.reel-card {
  flex: 0 0 auto;
  width: 240px;
  scroll-snap-align: center;
}
.reel-card__media {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  background: #2a2a2a;
  cursor: pointer;
}
.reel-card__media img,
.reel-card__media video,
.reel-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.reel-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #aaa;
  background: linear-gradient(160deg, #333, #1a1a1a);
}
.reel-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  z-index: 2;
}
.reel-card__sound {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}
.reel-card__sound:hover,
.reel-card__sound.is-unmuted {
  background: rgba(0, 0, 0, 0.75);
}
.reel-card__body {
  padding: 10px 4px 0;
}
.reel-card__body h3 {
  font-size: 14px;
  margin: 0 0 4px;
}
.reel-card__body a {
  font-size: 12px;
  color: var(--color-gold);
  font-weight: 600;
}
.reels-carousel__nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.92);
  color: #111;
  font-size: 24px;
  z-index: 2;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.reels-carousel__nav--prev { left: -8px; }
.reels-carousel__nav--next { right: -8px; }
@media (min-width: 990px) {
  .reel-card { width: 240px; }
}
@media (max-width: 989px) {
  .reels-carousel {
    margin-inline: calc(var(--page-pad, 24px) * -1);
  }
  .reels-carousel__track {
    gap: 0;
    padding: 0;
  }
  .reel-card {
    width: 100%;
    flex: 0 0 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    padding-inline: var(--page-pad, 24px);
    box-sizing: border-box;
  }
  .reel-card__media {
    border-radius: 16px;
    max-height: min(78vh, 620px);
    margin-inline: auto;
    width: min(100%, 380px);
  }
  .reels-carousel__nav {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
  .reels-carousel__nav--prev { left: 4px; }
  .reels-carousel__nav--next { right: 4px; }
}

/* Testimonials */
.testimonials-section {
  padding: 48px 0;
  background: #fff;
}
.testimonials-section--facebook {
  background: #fff;
}
.testimonials-section__title {
  text-align: center;
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 800;
  margin-bottom: 28px;
}
.testimonials-track--facebook {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.fb-post {
  background: #fff;
  border: 1px solid #e4e6eb;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.fb-post__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.fb-post__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.fb-post__avatar--placeholder {
  display: grid;
  place-items: center;
  background: #1877f2;
  color: #fff;
  font-weight: 700;
}
.fb-post__header strong {
  display: block;
  font-size: 14px;
}
.fb-post__header em {
  font-size: 12px;
  color: #65676b;
  font-style: normal;
}
.fb-post__text {
  font-size: 14px;
  line-height: 1.5;
  color: #050505;
  margin: 0 0 12px;
}
.fb-post__actions {
  display: flex;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid #e4e6eb;
  font-size: 12px;
  color: #65676b;
}

/* Comparison table */
.comparison-section {
  padding: 48px 0 56px;
  background: #fff;
}
.comparison-section__title {
  text-align: center;
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 800;
  margin-bottom: 28px;
}
.comparison-table {
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
}
.comparison-table__head,
.comparison-table__row {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
}
.comparison-table__head {
  background: #fafafa;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #666;
}
.comparison-table__row {
  border-top: 1px solid #eee;
  font-size: 14px;
}
.comparison-table__feature { color: #222; }
.comparison-table__yes {
  text-align: center;
  color: #1b7a4e;
  font-weight: 800;
  font-size: 18px;
}
.comparison-table__no {
  text-align: center;
  color: #bbb;
  font-weight: 800;
  font-size: 18px;
}


.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}
.testimonial-card__stars {
  color: #f5b400;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.testimonial-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 16px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-card__author img,
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-card__avatar {
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
  font-weight: 700;
}
.testimonial-card__author strong { display: block; font-size: 14px; }
.testimonial-card__author em {
  font-style: normal;
  font-size: 12px;
  color: #777;
}

@media (max-width: 990px) {
  .testimonials-track {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 6px;
  }
  .testimonials-track::-webkit-scrollbar { display: none; }
  .testimonial-card {
    flex: 0 0 min(86vw, 320px);
    scroll-snap-align: start;
  }
}

.related-products {
  background: #f0f0f0;
}
.related-products__title {
  font-family: var(--font);
  text-align: center;
  margin-bottom: 28px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
}
.product-grid--related {
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.product-card--related {
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.product-card--related .product-card__atc {
  margin: 0 10px 12px;
  width: calc(100% - 20px);
  min-height: 38px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 4px;
}
.product-card--related .wishlist-btn {
  display: none;
}
.product-card--related h3 {
  font-size: 13px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card--related .product-card__price {
  font-size: 13px;
}
.product-card--related .product-card__from {
  font-weight: 800;
}

.collection-page {
  padding: 0;
  background: #fff;
}
.collection-page__intro-wrap {
  background: #fff;
  width: 100%;
}
.collection-page__intro {
  padding: 36px 0 18px;
}
.collection-page__body-wrap {
  background: #f3f3f3;
  width: 100%;
  padding: 28px 0 48px;
}
.collection-page__body {
  padding-top: 0;
}
.collection-page__title {
  margin: 0 0 18px;
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #111;
  letter-spacing: -0.02em;
}
.collection-page__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 8px;
  border-bottom: 1px solid #ececec;
}
.collection-page__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #888;
}
.collection-page__breadcrumbs a { color: #666; }
.collection-page__breadcrumbs a:hover { color: #111; }
.collection-page__tools {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-left: auto;
}
.collection-page__sort {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
}
.collection-page__sort-select {
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  padding: 6px 28px 6px 10px;
  font-size: 13px;
  color: #333;
  min-height: 34px;
}
.collection-page__count {
  font-size: 13px;
  color: #888;
  white-space: nowrap;
}
.product-grid--collection {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card--collection {
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border: 0;
  overflow: hidden;
}
.product-card--collection:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.product-card--collection .product-card__media {
  aspect-ratio: 1;
  border-radius: 10px 10px 0 0;
}
.product-card--collection .product-card__body {
  padding: 14px 12px 18px;
  text-align: center;
  gap: 8px;
}
.product-card--collection h3 {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  min-height: 38px;
  -webkit-line-clamp: 2;
  color: #222;
}
.product-card--collection .product-card__price {
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.product-card--collection .product-card__current {
  font-weight: 800;
  font-size: 15px;
  color: #111;
}
.product-card--collection .product-card__price s {
  font-size: 13px;
  color: #999;
}
.collection-page__pagination {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pagination__link,
.pagination__gap {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  font-size: 14px;
  color: #333;
}
.pagination__link:hover { color: #000; }
.pagination__link.is-current {
  font-weight: 700;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.pagination__gap { color: #999; }
.collection-page__empty {
  text-align: center;
  padding: 48px 0;
  color: #666;
}
.collection-newsletter {
  background: #ececec;
  padding: 48px 0;
}
.collection-newsletter__inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.collection-newsletter__inner h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
}
.collection-newsletter__inner p {
  margin: 0 0 20px;
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}
.collection-newsletter__form {
  display: grid;
  gap: 12px;
}
.collection-newsletter__form input[type="email"] {
  width: 100%;
  min-height: 46px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0 14px;
  font-size: 15px;
  background: #fff;
}
.collection-newsletter__success {
  margin: 8px 0 0;
  color: var(--color-green);
  font-size: 14px;
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.collection-card {
  background: var(--color-cream);
  overflow: hidden;
}
.collection-card img,
.collection-card .placeholder-svg { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.collection-card h2, .collection-card p { padding: 0 12px; }
.collection-card p { padding-bottom: 16px; color: var(--color-muted); }

.product-page {
  padding: 20px 0 0;
  background: #fff;
}
.product-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  align-items: start;
}
.product-gallery,
.product-info {
  align-self: start;
  width: 100%;
  min-width: 0;
}
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-gallery__main {
  background: #f3f0ea;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  width: 100%;
}
.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-gallery__thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}
.product-gallery__thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid #ddd;
  background: #f3f0ea;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
}
.product-gallery__thumb.is-active { border-color: #000; }
.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 991px) {
  .template-product {
    --product-sticky-top: 118px;
  }
  .product-page__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px 40px;
  }
  .product-gallery {
    position: sticky;
    top: var(--product-sticky-top);
    z-index: 2;
    max-height: calc(100dvh - var(--product-sticky-top) - 12px);
  }
  .product-gallery__main {
    flex: 0 1 auto;
    width: min(100%, calc(100dvh - var(--product-sticky-top) - 100px));
    max-height: calc(100dvh - var(--product-sticky-top) - 100px);
    aspect-ratio: 1;
  }
  .product-gallery__thumbs {
    flex-shrink: 0;
  }
  .product-info .product-description {
    padding: 28px 0 0;
    margin-top: 24px;
    border-top: 1px solid #eee;
    max-width: none;
    margin-inline: 0;
    text-align: left;
  }
  .product-info .product-feature-block {
    border-radius: 12px;
    padding: 28px 20px;
    margin-top: 24px;
  }
}

.template-product .related-products {
  margin-top: 0;
  padding-top: 40px;
}
.template-product .section-product {
  margin-bottom: 0;
}

.product-info__title {
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 14px;
  color: #111;
  text-align: center;
}
.product-info__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #555;
  margin-bottom: 12px;
  text-align: center;
}
.stars { color: #f5b400; letter-spacing: 1px; font-size: 14px; }
.product-info__highlight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f4f4f4;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 14px;
}
.product-info__highlight-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2bb673;
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.product-info__highlight strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
.product-info__highlight p {
  margin: 0;
  font-size: 13px;
  color: #555;
  line-height: 1.45;
}
.product-purchase-box {
  border: 1px solid #111;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 14px;
  background: #fff;
}
.product-purchase-box__consistency strong {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  line-height: 1.35;
  margin-bottom: 6px;
}
.product-purchase-box__mark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}
.product-purchase-box__consistency p {
  margin: 0;
  font-size: 13px;
  color: #555;
  line-height: 1.45;
}
.product-purchase-box__divider {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 14px 0;
}
.product-purchase-box__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #eee;
  font-size: 13px;
  font-weight: 600;
}
.product-purchase-box__trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.product-purchase-box__check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2bb673;
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
}
.product-info__actions {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}
.product-info__atc,
.product-info__cod {
  min-height: 52px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 6px;
}
.product-info__cod {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.product-info__price {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.product-info__current {
  font-size: 28px;
  font-weight: 800;
  color: #111;
}
.product-info__compare { color: #999; text-decoration: line-through; font-size: 16px; }
.product-info__save {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
}
.product-info__save::before {
  content: "🏷";
  font-size: 10px;
}
.product-info__bullets {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.product-info__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #333;
  line-height: 1.45;
}
.product-info__check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}
.product-info__variant-label {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
}
.product-info__variant-select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0 12px;
  font-size: 15px;
  background: #fff;
}
.product-info__actions {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}
.product-info__atc,
.product-info__buy-now {
  min-height: 50px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 4px;
}
.product-info__buy-now {
  background: #fff;
  color: #111;
  border: 2px solid #111;
}
.product-info__buy-now:hover {
  background: #f5f5f5;
}
.product-info__prepaid-banner {
  background: #fffbea;
  border: 1px solid #f0e4a8;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 18px;
}
.product-info__trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 4px;
}
.product-trust-badge {
  text-align: center;
  display: grid;
  gap: 8px;
  justify-items: center;
}
.product-trust-badge__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 700;
  background: #fafafa;
}
.product-trust-badge span:last-child {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}

.product-cod-widget {
  padding: 28px 0 8px;
}
.product-cod-widget__inner {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 20px;
  background: #fafafa;
  text-align: center;
}
.product-cod-widget__inner h2 {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 800;
}
.product-cod-widget__inner .btn {
  max-width: 420px;
  margin: 0 auto;
  min-height: 50px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.product-description-section {
  padding: 36px 0 12px;
  background: #fff;
}
.product-description.rte {
  display: grid;
  gap: 24px;
}
.product-description.rte img {
  width: 100%;
  border-radius: 16px;
  margin: 0 auto;
}
.product-description.rte p {
  text-align: center;
  color: #555;
  font-size: 14px;
  max-width: 640px;
  margin: -8px auto 0;
}
.product-lifestyle {
  margin: 0;
  display: grid;
  gap: 10px;
}
.product-lifestyle img {
  width: 100%;
  border-radius: 16px;
}
.product-lifestyle figcaption {
  text-align: center;
  color: #555;
  font-size: 14px;
}
.product-faq-item {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 10px;
}
.product-faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.product-faq-item summary::-webkit-details-marker { display: none; }
.benefits-box {
  background: #f6eef8;
  border: 1px solid #e8d7ef;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
}
.benefits-box h2 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 800;
}
.benefits-box ul { display: grid; gap: 8px; }
.benefits-box li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #333;
}
.benefits-box__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.benefits-box__highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px dashed #c9a0d4;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 12px;
}
.benefits-box__highlight strong {
  background: #111;
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.benefits-box__highlight span {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}
.benefits-box__icon--pink { background: #e85d8a; }
.benefits-box__icon--orange { background: #f0a020; }
.benefits-box__icon--blue { background: #4a90e2; }
.benefits-box__icon--green { background: #2bb673; }
.prepaid-discount-note {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #e7f6ee;
  border: 1px solid #b8e0c8;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
}
.prepaid-discount-note strong {
  color: #1b7a4e;
  white-space: nowrap;
}
.bundle-options {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.bundle-option {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid #111;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
  background: #fff;
  transition: background 0.15s ease;
}
.bundle-option.has-badge { margin-top: 10px; }
.bundle-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.bundle-option__radio {
  width: 18px;
  height: 18px;
  border: 2px solid #111;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.bundle-option.is-selected { background: #f3f3f3; }
.bundle-option.is-selected .bundle-option__radio {
  border-color: #111;
  background: #111;
}
.bundle-option.is-selected .bundle-option__radio::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #fff;
}
.bundle-option.is-disabled { opacity: 0.45; pointer-events: none; }
.bundle-option__body { display: grid; gap: 3px; min-width: 0; }
.bundle-option__title { font-size: 15px; font-weight: 700; line-height: 1.2; }
.bundle-option__meta { font-size: 12px; color: #1b7a4e; font-weight: 600; }
.bundle-option__prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-align: right;
  flex-shrink: 0;
}
.bundle-option__prices em {
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  color: #111;
}
.bundle-option__prices s { color: #999; font-size: 12px; }
.bundle-option__per-piece { font-size: 11px; color: #777; font-weight: 500; }
.bundle-option__badge {
  position: absolute;
  top: -10px;
  right: 12px;
  background: #111;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 1;
}
.wholesale-box {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 14px;
  margin: 14px 0;
  display: grid;
  gap: 12px;
}
.wholesale-box strong { display: block; margin-bottom: 4px; }
.wholesale-box p { margin: 0; font-size: 13px; color: #555555ff; }
.btn--whatsapp { width: 100%; background-color: #02ae08ff !important;}
.info-toggle {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 8px;
}
.info-toggle summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.info-toggle summary::-webkit-details-marker { display: none; }
.info-toggle summary::after { content: "▾"; color: #888; }
.info-toggle[open] summary::after { content: "▴"; }
.info-toggle summary span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.info-toggle > div { margin-top: 10px; font-size: 14px; color: #555; }
.product-info .product-description {
  padding: 24px 0 0;
  margin-top: 20px;
  border-top: 1px solid #eee;
}
.prepaid-offers {
  border: 1px dashed #7cbc96;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0 20px;
  background: #fff;
}
.prepaid-offers__header {
  background: #1b7a4e;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 10px 12px;
}
.prepaid-offers__grid {
  display: grid;
  gap: 10px;
  padding: 12px;
  background: #f4fbf7;
}
.prepaid-offers__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px dashed #7cbc96;
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
}
.prepaid-offers__copy { display: grid; gap: 4px; }
.prepaid-offers__copy strong { font-size: 14px; color: #111; }
.prepaid-offers__copy span { font-size: 12px; color: #555; }
.prepaid-offers__tag {
  background: #ffd54f;
  color: #111;
  font-size: 11px;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 6px;
  border: 2px dashed #e6b800;
  white-space: nowrap;
  flex-shrink: 0;
}
.prepaid-offers__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  padding: 10px 12px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  background: #f4fbf7;
}

.payment-trust { margin: 0 0 20px; }
.payment-trust h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  margin: 0 0 12px;
}
.payment-trust__note {
  margin: 10px 0 0;
  font-size: 12px;
  color: #666;
  line-height: 1.45;
}
.payment-trust__icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 10px 0;
}
.payment-trust__icons span {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 12px 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  background: #fafafa;
}
.payment-trust p { font-size: 13px; color: var(--color-muted); }

.shipping-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 8px 0 24px;
  position: relative;
}
.shipping-timeline::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 8px;
  height: 2px;
  background: #ddd;
}
.shipping-timeline__step {
  text-align: center;
  font-size: 12px;
  position: relative;
}
.shipping-timeline__step .dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ddd;
  margin-bottom: 6px;
}
.shipping-timeline__step.is-done .dot { background: var(--color-green); }
.shipping-timeline__step strong,
.shipping-timeline__step em { display: block; }
.shipping-timeline__step em { color: #777; font-style: normal; }

.product-faqs { margin: 16px 0 32px; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 8px;
}
.faq-item summary { cursor: pointer; font-weight: 600; }

.product-feature-block {
  background: linear-gradient(180deg, #16325c 0%, #071018 100%);
  color: #fff;
  padding: 48px 0;
  margin-top: 24px;
}
.product-feature-block__kicker {
  letter-spacing: 0.12em;
  font-size: 13px;
  color: var(--color-gold);
  text-transform: uppercase;
}
.product-feature-block h2 { font-size: 28px; }
.product-feature-block__list { margin: 16px 0 24px; }
.product-feature-block__list li { margin-bottom: 8px; }
.product-feature-block__icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.product-feature-block__icons span {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 12px 8px;
  text-align: center;
  font-size: 13px;
}

/* Cart */
.cart-page__form {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 32px;
}
.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}
.cart-item__image img { border-radius: 8px; }
.cart-summary {
  background: var(--color-cream);
  padding: 20px;
  border-radius: 10px;
  display: grid;
  gap: 10px;
}
.cart-summary > div,
.cod-modal__summary > div {
  display: flex;
  justify-content: space-between;
}
.cart-summary__total,
.cod-modal__total { font-size: 18px; }
.cart-summary__note { font-size: 13px; color: var(--color-muted); }
.cart-page__empty { text-align: center; padding: 40px 0; }

.cart-drawer { position: fixed; inset: 0; z-index: 80; }
.cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 420px);
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.cart-drawer__header,
.cart-drawer__footer { padding: 16px; border-bottom: 1px solid var(--color-border); }
.cart-drawer__footer { border-bottom: 0; border-top: 1px solid var(--color-border); }
.cart-drawer__body { flex: 1; overflow: auto; padding: 16px; }
.cart-drawer__empty { padding: 32px 16px; text-align: center; }
.drawer-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.drawer-item img { width: 72px; height: 72px; object-fit: cover; border-radius: 6px; }

/* COD modal */
.cod-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}
.cod-modal[hidden] { display: none !important; }
.cod-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.cod-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  height: min(94dvh, 94vh);
  max-height: min(94dvh, 94vh);
  margin: 0;
  background: #fff;
  border-radius: 18px 18px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.18);
}
.cod-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #f3f3f3;
  display: grid;
  place-items: center;
}
.cod-modal__form {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  margin: 0;
}
.cod-modal__scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 18px 16px 12px;
  padding-right: 16px;
}
.cod-modal__product {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  margin-bottom: 12px;
  padding-right: 36px;
}
.cod-modal__product img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  background: #eee;
}
.cod-modal__product h3 { font-size: 15px; margin: 0 0 4px; }
.cod-modal__product p { margin: 0; font-size: 13px; color: #666; }
.cod-modal__summary {
  background: #f4f4f4;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 16px;
  display: grid;
  gap: 6px;
}
.cod-modal__form h2 { font-size: 16px; margin: 0 0 12px; }
.cod-modal__form label {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
}
.cod-modal__form em { color: #d00; font-style: normal; }
.cod-field {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0 10px;
  background: #fff;
}
.cod-field input,
.cod-field select {
  width: 100%;
  border: 0;
  outline: none;
  min-height: 44px;
  background: transparent;
  font-size: 16px; /* prevents iOS zoom */
}
.cod-modal__secure {
  font-size: 12px;
  color: #666;
  margin: 4px 0 8px;
  line-height: 1.45;
}
.cod-modal__footer {
  flex: 0 0 auto;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid #eee;
  background: #fff;
  box-shadow: 0 -6px 16px rgba(0,0,0,0.06);
}
.cod-modal__footer .btn {
  min-height: 50px;
}

@media (min-width: 768px) {
  .cod-modal {
    align-items: center;
    padding: 16px;
  }
  .cod-modal__dialog {
    height: auto;
    max-height: min(90dvh, 90vh);
    border-radius: 14px;
    margin: 0 auto;
  }
  
}
@media (max-width: 768px){
.product-page__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "gallery"
      "info" !important;
}

.product-gallery {
    grid-area: gallery !important;
}

.product-info {
    grid-area: info !important;
}
}

/* Footer */
.lifestyle-gallery__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.lifestyle-gallery__item,
.lifestyle-gallery__placeholder {
  aspect-ratio: 1;
  overflow: hidden;
  background: #e8e0d4;
}
.lifestyle-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lifestyle-gallery__placeholder {
  display: grid;
  place-items: center;
  color: #7a6a55;
  font-weight: 600;
}
.site-footer {
  background: var(--footer-bg, var(--color-cream));
  color: var(--footer-text, var(--color-text));
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}
.site-footer::before { display: none; }
.site-footer__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px 28px;
  padding: 56px 0 36px;
}
.site-footer__logo {
  display: inline-flex;
  align-items: center;
  color: inherit;
  margin-bottom: 12px;
}
.site-footer__logo img {
  display: block;
  height: auto;
}
.site-footer__tagline {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 600;
  color: inherit;
  max-width: 320px;
}
.site-footer__brand-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-muted);
  max-width: 340px;
}
.site-footer h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: inherit;
}
.site-footer a { color: inherit; }
.site-footer a:hover { opacity: 0.72; }
.site-footer__col ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer__col ul a {
  font-size: 14px;
  line-height: 1.4;
}
.site-footer__contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.site-footer__contact-list svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.site-footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.55);
  display: inline-grid;
  place-items: center;
  color: inherit;
}
.site-footer__social-link:hover {
  opacity: 1;
  background: #fff;
  border-color: rgba(0, 0, 0, 0.28);
}
.site-footer__social-link svg {
  width: 16px;
  height: 16px;
}
.site-footer__bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 0 24px;
  font-size: 13px;
  color: var(--color-muted);
  border-top: 1px solid var(--color-border);
}
.site-footer__bottom p { margin: 0; }
.site-footer__powered a { color: inherit; }

.contact-form,
.account-page form,
.search-page__form {
  display: grid;
  gap: 12px;
  max-width: 480px;
}
.contact-form input,
.contact-form textarea,
.account-page input,
.search-page__form input {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 10px 12px;
}
.search-page__form { max-width: none; grid-template-columns: 1fr auto; }
.pagination { margin-top: 28px; text-align: center; }
.form-success { color: var(--color-green); }
.errors { color: #b00020; }

/* Responsive */
@media (max-width: 990px) {
  .announcement-marquee__item {
    padding: 9px 24px;
    font-size: 12px;
  }
  .site-header--asthetics .site-header__nav { display: none; }
  .site-header__nav { display: none; }
  .site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
  }
  .site-header__menu-toggle { display: inline-flex; }
  .site-header__account { display: inline-flex; }
  .site-header__top {
    grid-template-columns: auto 1fr auto;
    min-height: 64px;
    padding-top: 0;
    padding-inline: 12px;
    gap: 8px;
  }
  .site-header__left {
    gap: 10px;
  }
  .site-header__logo {
    justify-self: center;
  }
  .site-header__logo-desktop { display: none; }
  .site-header__logo-mobile {
    display: inline-flex;
  }
  .site-header__logo-mobile .brand-logo__mark {
    width: 36px;
    height: 36px;
  }
  .site-header__logo-mobile .brand-logo__text {
    font-size: 13px;
    letter-spacing: 0.16em;
  }
  .site-header__actions {
    gap: 12px;
  }
  .site-header__icon svg,
  .site-header__menu-toggle svg {
    width: 22px;
    height: 22px;
  }
  .site-header__badge {
    right: -7px;
    bottom: -5px;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    font-size: 9px;
  }

  .hero-slider {
    --hero-h: auto;
    margin: 0;
  }
  .hero-slider__viewport,
  .hero-slider__track,
  .hero-slider__slide {
    width: 100%;
  }
  .hero-slider__image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center top;
    display: block;
  }
  .hero-slider__placeholder {
    height: auto;
    min-height: 240px;
    aspect-ratio: 4 / 5;
  }
  .hero-slider__arrow {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
  }
  .hero-slider__arrow--prev { left: 8px; }
  .hero-slider__arrow--next { right: 8px; }
  .hero-slider__dots { bottom: 10px; }
  .hero-split__grid { grid-template-columns: 1fr; }
  .hero-split__media,
  .hero-split__placeholder,
  .hero-split__panels { min-height: 280px; }
  .hero-split__media img { min-height: 280px; }
  .product-grid,
  .product-grid--related,
  .product-grid--cols-5 { grid-template-columns: repeat(2, 1fr); }
  .product-grid--collection,
  .product-grid--cols-4,
  .product-grid--cols-3 { grid-template-columns: repeat(2, 1fr); }
  .product-grid--home { grid-template-columns: repeat(3, 1fr); }
  .testimonials-track--facebook { grid-template-columns: 1fr; }
  .product-page__grid,
  .cart-page__form,
  .site-footer__inner,
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .site-footer__inner { gap: 28px 24px; }
  .site-footer__col--brand { grid-column: 1 / -1; }
  .product-gallery {
    position: static;
    max-height: none;
  }
  .product-gallery__main { max-height: none; }
  .hero { min-height: 420px; }
  .lifestyle-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .lifestyle-gallery__item:last-child { grid-column: 1 / -1; }
  .prepaid-offers__grid,
  .product-feature-block__icons { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 749px) {
  .collection-page__toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .collection-page__tools {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0 28px;
  }
  .site-footer__col--brand { grid-column: auto; }
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .product-grid--collection { grid-template-columns: 1fr 1fr; gap: 14px; }
  .product-card--collection h3 { font-size: 12px; min-height: 34px; }
  .category-circles__item { width: 78px; }
  .category-circles__image { width: 66px; height: 66px; }
  .hero__content { padding: 48px 0; }
  .prepaid-offers__card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .prepaid-offers__tag { align-self: center; }
  .bundle-option {
    grid-template-columns: 20px 1fr;
    grid-template-rows: auto auto;
    padding: 12px 14px;
  }
  .bundle-option__prices {
    grid-column: 2;
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 4px;
  }
  .product-purchase-box__trust {
    flex-direction: column;
    gap: 10px;
  }
  .product-info__title { font-size: 20px; }
  .product-info__current { font-size: 26px; }
  .product-info__trust-badges { gap: 8px; }
  .product-trust-badge__icon { width: 38px; height: 38px; font-size: 14px; }
  .product-trust-badge span:last-child { font-size: 11px; }
  .cart-item { grid-template-columns: 72px 1fr; }
  .cart-item__line { grid-column: 2; }
}

@media (max-width: 480px) {
  .payment-trust__icons { grid-template-columns: 1fr; }
  .product-card h3 { font-size: 13px; }
}

/* About page */
.about-page__hero {
  background: var(--color-cream);
  color: var(--color-text);
  padding: 64px 0 48px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.about-page__eyebrow {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--color-navy);
  margin: 0 0 12px;
}
.about-page__hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 56px);
  margin: 0 0 14px;
  color: inherit;
}
.about-page__lead {
  max-width: 560px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 17px;
}
.about-page__story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 64px 0;
}
.about-page__story-media img,
.about-page__placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  background:
    linear-gradient(160deg, #f3e6dc, #c4a35a 40%, #2a2420);
}
.about-page__story-copy h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 14px;
}
.about-page__story-copy .btn { margin-top: 8px; }
.about-page__values {
  background: var(--color-cream);
  padding: 56px 0;
}
.about-page__values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.about-value {
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  text-align: center;
}
.about-value__icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #111;
  color: var(--color-gold);
  margin-bottom: 12px;
  font-size: 18px;
}
.about-value h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.about-value p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.55;
}
.about-page__cta {
  text-align: center;
  padding: 64px 0;
}
.about-page__cta h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 10px;
}
.about-page__cta p {
  color: #666;
  margin: 0 auto 20px;
  max-width: 480px;
}
.about-page__cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 990px) {
  .about-page__story {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0;
  }
  .about-page__values-grid {
    grid-template-columns: 1fr;
  }
  .about-page__hero { padding: 48px 0 40px; }
}

/* Legal / policy pages */
.legal-page {
  background: #fff;
}
.legal-page__hero {
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-border);
  padding: 56px 0 40px;
  text-align: center;
}
.legal-page__eyebrow {
  margin: 0 0 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-navy);
}
.legal-page__hero h1 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(28px, 4.5vw, 44px);
  color: var(--color-text);
}
.legal-page__lead {
  margin: 0 auto;
  max-width: 560px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.6;
}
.legal-page__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: start;
  padding: 40px 0 64px;
}
.legal-page__content--single {
  grid-template-columns: 1fr;
  max-width: 860px;
}
.legal-page__card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 28px 28px 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.legal-page__card h2,
.legal-page__card h3 {
  margin-top: 1.4em;
  margin-bottom: 0.5em;
  font-size: 1.15em;
}
.legal-page__card p,
.legal-page__card li {
  color: #444;
  line-height: 1.7;
}
.legal-page__card ul,
.legal-page__card ol {
  padding-left: 1.2em;
}
.legal-page__nav {
  position: sticky;
  top: calc(var(--header-h, 100px) + 16px);
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 18px 18px 20px;
}
.legal-page__nav h2 {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.legal-page__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.legal-page__nav a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.55);
}
.legal-page__nav a:hover,
.legal-page__nav a[aria-current="page"] {
  background: #fff;
  font-weight: 600;
}

@media (max-width: 990px) {
  .legal-page__content {
    grid-template-columns: 1fr;
    padding: 28px 0 48px;
  }
  .legal-page__nav {
    position: static;
    order: -1;
  }
  .legal-page__card {
    padding: 20px 18px 24px;
  }
  .legal-page__hero {
    padding: 40px 0 28px;
  }
}

/* Wishlist */
.wishlist-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: #333;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: 0.2s ease;
}
.wishlist-btn:hover {
  transform: scale(1.06);
}
.wishlist-btn.is-active {
  color: #e11d48;
  background: #fff;
}
.wishlist-btn.is-active svg {
  fill: currentColor;
}
.wishlist-btn--product {
  top: 14px;
  right: 14px;
  left: auto;
}
.wishlist-page {
  padding: 40px 0 64px;
}
.wishlist-page__header {
  text-align: center;
  margin-bottom: 28px;
}
.wishlist-page__header h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 8px;
}
.wishlist-page__header p {
  color: #666;
  margin: 0;
}
.wishlist-page__empty {
  text-align: center;
  padding: 48px 16px;
  background: var(--color-cream);
  border-radius: 16px;
}
.wishlist-page__empty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  color: #e11d48;
}
.wishlist-page__empty p {
  margin: 0 0 18px;
  color: #555;
}
.wishlist-card .wishlist-btn {
  left: auto;
  right: 10px;
}
.product-card__placeholder {
  width: 100%;
  height: 100%;
  background: #eee;
}
