/* ============================================================
   EverAura Jewels — styles.css
   Design: Warm Cream & Gold luxury editorial
============================================================ */

/* ── Custom Properties ─────────────────────────────────── */
:root {
  --promo-h:    36px;
  --cream:      #FAF7F4;
  --blush:      #F2EAE3;
  --gold:       #C8A96E;
  --gold-light: #E8D5B0;
  --gold-dark:  #A07C4A;
  --dark:       #1A1A1A;
  --mid:        #6B6258;
  --light-mid:  #B0A49A;
  --white:      #FFFFFF;
  --nav-h:      88px;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: calc(var(--promo-h) + var(--nav-h)); }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--dark);
}

/* ── Scroll Animation Helpers ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Promo Strip ────────────────────────────────────────── */
#promoStrip {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  height: var(--promo-h);
  background: var(--dark);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  overflow: hidden;
}
.promo-track {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-msg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.promo-msg.active {
  opacity: 1;
  transform: translateY(0);
}
.promo-msg strong {
  color: var(--gold);
  font-weight: 500;
  margin: 0 0.4em;
}

/* ── Navigation ─────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: var(--promo-h); left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s;
  /* liquid glass on hero */
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ── Navbar USP strip ─────────────────────────────────── */
.nav-usps {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 6px 0 0;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  order: -1; /* sits above logo + links row */
}
.nav-usp-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-light);
  opacity: 0.6;
}
#navbar.scrolled .nav-usps {
  color: var(--gold);
}
#navbar.scrolled .nav-usp-dot {
  background: var(--gold);
}
#navbar.scrolled {
  background: rgba(250, 247, 244, 0.97);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  backdrop-filter: blur(8px);
}
.nav-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
  transition: filter 0.3s;
}
#navbar.scrolled .nav-logo {
  filter: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--gold-light); }
#navbar.scrolled .nav-links a { color: var(--dark); }
#navbar.scrolled .nav-links a:hover { color: var(--gold-dark); }

/* Nav cart button */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  transition: color 0.3s, background 0.25s;
}
.nav-cart-btn svg {
  width: 20px;
  height: 20px;
}
.nav-cart-btn:hover {
  background: rgba(255,255,255,0.12);
}
#navbar.scrolled .nav-cart-btn {
  color: var(--dark);
}
#navbar.scrolled .nav-cart-btn:hover {
  background: rgba(0,0,0,0.06);
}
#navbar.solid .nav-cart-btn {
  color: var(--dark);
}
.nav-cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--gold);
  color: var(--white);
  border-radius: 8px;
  font-size: 0.6rem;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.nav-cart-badge.visible {
  display: flex;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.35s var(--ease), opacity 0.35s, background 0.3s;
  transform-origin: center;
}
#navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Drawer */
.nav-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100dvh;
  background: var(--cream);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  transition: right 0.45s var(--ease-out);
  box-shadow: -4px 0 24px rgba(0,0,0,0.08);
}
.nav-drawer.open { right: 0; }
.nav-drawer a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--dark);
  letter-spacing: 0.05em;
  transition: color 0.25s;
}
.nav-drawer a:hover { color: var(--gold); }
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.35);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.drawer-overlay.active { opacity: 1; pointer-events: all; }

/* ── Hero ───────────────────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  transform: scale(1.04);
  animation: kenburns 8s linear infinite;
}
.hero-slide.active {
  opacity: 1;
}
@keyframes kenburns {
  0%   { transform: scale(1.04); }
  100% { transform: scale(1.12); }
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.18) 0%,
    rgba(0,0,0,0.30) 50%,
    rgba(0,0,0,0.45) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  animation: fadeUp 1.2s var(--ease-out) 0.2s both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  animation: fadeUp 1.2s var(--ease-out) 0.45s both;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}
.hero-tagline {
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 2.75rem;
  animation: fadeUp 1.2s var(--ease-out) 0.65s both;
}
.hero-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-cta {
  display: inline-block;
  padding: 0.95rem 2.75rem;
  border: 1px solid rgba(255,255,255,0.7);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  animation: fadeUp 1.2s var(--ease-out) 0.85s both;
}
.hero-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
/* "Shop by Reels" — hidden on desktop, shown on mobile */
.hero-cta-reels {
  display: none;
}
.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}
.hero-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Trust Badges Row ───────────────────────────────────── */
.trust-band {
  background: var(--cream);
  border-top: 1px solid rgba(200, 169, 110, 0.18);
  border-bottom: 1px solid rgba(200, 169, 110, 0.18);
  padding: 1.5rem clamp(1rem, 4vw, 3rem);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  justify-content: center;
}
.trust-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  color: var(--gold-dark);
}
.trust-icon svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.trust-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.trust-title {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.04em;
}
.trust-sub {
  font-size: 0.7rem;
  color: var(--mid);
  margin-top: 1px;
}

/* ── Marquee Strip ──────────────────────────────────────── */
.marquee-strip {
  background: var(--dark);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 2.5rem;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Section Wrapper ────────────────────────────────────── */
.section-wrap {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 6vw, 5rem);
}
.section-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ── Collections Grid ───────────────────────────────────── */
#collections { background: var(--blush); }
.collections-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
/* 3 top + 2 bottom balanced layout */
.collection-card:nth-child(-n+3) { grid-column: span 2; }
.collection-card:nth-child(4),
.collection-card:nth-child(5) { grid-column: span 3; }
.collection-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  border-radius: 2px;
}
.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease);
}
.collection-card:hover img { transform: scale(1.06); }
.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.05) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem 1.5rem;
  transition: background 0.4s;
}
.collection-card:hover .collection-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.15) 60%);
}
.collection-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: var(--white);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}
.collection-count {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.85;
}
.collection-arrow {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s, transform 0.35s var(--ease);
}
.collection-card:hover .collection-arrow {
  opacity: 1;
  transform: translateY(0);
}
.collection-arrow svg { width: 14px; fill: none; stroke: #fff; stroke-width: 1.5; }

/* ── Shop Category Cards ────────────────────────────────── */
[hidden] { display: none !important; }

.shop-categories-grid {
  margin-top: 1.5rem;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 1rem;
}
.shop-categories-grid .collection-card,
.shop-categories-grid .collection-card:nth-child(-n+3),
.shop-categories-grid .collection-card:nth-child(4),
.shop-categories-grid .collection-card:nth-child(5) {
  grid-column: span 1 !important;
  aspect-ratio: 3/4;
}
@media (max-width: 900px) {
  .shop-categories-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 520px) {
  .shop-categories-grid {
    grid-template-columns: 1fr !important;
  }
}
.shop-cat-btn {
  margin-top: 0.9rem;
  padding: 0.6rem 1.5rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
  align-self: flex-start;
}
.shop-cat-btn:hover {
  background: var(--gold-light, #d4af37);
  transform: translateY(-2px);
}
.shop-products-head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 1rem 0 1.75rem;
  flex-wrap: wrap;
  position: sticky;
  top: calc(var(--promo-h) + var(--nav-h));
  z-index: 99;
  background: var(--cream, #faf7f4);
  padding: 0.75rem 0;
  margin-left: -1px;
  margin-right: -1px;
  transition: box-shadow 0.3s ease;
}
.shop-products-head.stuck {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 0.75rem 1rem;
  margin-left: -1rem;
  margin-right: -1rem;
  border-radius: 0 0 8px 8px;
}
.shop-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.shop-back-btn svg {
  width: 14px; height: 14px;
  fill: none; stroke: currentColor; stroke-width: 1.5;
}
.shop-back-btn:hover {
  background: var(--gold);
  color: var(--white);
}
.shop-cat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  margin: 0;
  letter-spacing: 0.04em;
}

/* ── Featured / New Arrivals ────────────────────────────── */
#featured { background: var(--cream); }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.featured-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
}
.featured-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease);
}
.featured-card:hover img { transform: scale(1.05); }
.featured-info {
  padding: 0.9rem 0;
}
.featured-cat {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.featured-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--dark);
  font-weight: 400;
}

/* ── Shop Section ───────────────────────────────────────── */
#shop { background: var(--cream); }

/* Shop filter (Browse) */
.shop-filter-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 0 auto 3rem;
  max-width: 1100px;
}
.shop-filter-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--mid);
  letter-spacing: 0.04em;
}
.shop-filter-wrap .gallery-filters {
  margin-bottom: 0;
}

/* Hidden state for filtered shop cards */
.shop-card.hidden {
  display: none;
}
.shop-card.fade-in {
  animation: shopFadeIn 0.45s var(--ease-out) both;
}
@keyframes shopFadeIn {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.shop-card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.shop-card:hover {
  transform: translateY(-2px);
}
.shop-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.shop-card-image picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.shop-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), opacity 0.55s var(--ease);
  position: absolute;
  inset: 0;
}
.shop-card-image .img-secondary {
  opacity: 0;
  transform: scale(1.04);
}
.shop-card:hover .shop-card-image .img-primary {
  transform: scale(1.06);
}
#shop .shop-card:hover .shop-card-image .img-primary {
  opacity: 0;
}
.shop-card:hover .shop-card-image .img-secondary {
  opacity: 1;
  transform: scale(1.06);
}
.shop-code-badge {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  color: var(--dark);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  padding: 0.35rem 0.7rem;
  border-radius: 2px;
  z-index: 2;
}
.shop-card-info {
  padding: 0.65rem 0.5rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}
.shop-cat {
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.shop-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--dark);
  font-weight: 400;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shop-price {
  font-size: 0.78rem;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.shop-price .price-original {
  text-decoration: line-through;
  color: var(--mid);
  font-weight: 400;
  margin-right: 0.35rem;
  font-size: 0.78rem;
}
.shop-price .price-current {
  color: var(--gold-dark, #8b6914);
  font-weight: 600;
}
.shop-add-btn {
  margin-top: auto;
  padding: 0.6rem 0.8rem;
  background: var(--white);
  color: var(--dark);
  border: 1px solid var(--dark);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}
.shop-add-btn:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-1px);
}
.shop-add-btn.added {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.shop-add-btn svg { width: 14px; fill: none; stroke: currentColor; stroke-width: 1.8; }

/* Sold Out state */
.shop-card.sold-out .shop-card-image::after {
  content: 'Sold Out';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.62);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 3;
  backdrop-filter: blur(1.5px);
}
.shop-card.sold-out .shop-card-image img {
  filter: grayscale(0.6) brightness(0.92);
}
.shop-card.sold-out:hover { transform: none; box-shadow: none; }
.shop-card.sold-out:hover .shop-card-image img { transform: none; }
.shop-card.sold-out .shop-add-btn {
  background: var(--light-mid);
  color: var(--white);
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.7;
}
.shop-card.sold-out .shop-add-btn:hover { transform: none; background: var(--light-mid); }

/* Qty disabled state in cart (when at max stock) */
.qty-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.qty-btn.shake {
  animation: qtyShake 0.4s ease;
}
@keyframes qtyShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); background: #b94545; color: white; }
  75% { transform: translateX(3px); background: #b94545; color: white; }
}
.cart-item-stocknote {
  font-size: 0.65rem;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
  margin-left: 0.35rem;
  font-style: italic;
}

/* ── Cart FAB (Floating Action Button) ──────────────────── */
.cart-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  transition: transform 0.3s var(--ease), background 0.3s;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}
.cart-fab.visible {
  opacity: 1;
  pointer-events: all;
  transform: scale(1);
}
.cart-fab:hover {
  background: var(--gold-dark);
  transform: scale(1.05);
}
.cart-fab svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: var(--gold);
  color: var(--white);
  border-radius: 11px;
  font-size: 0.68rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(200, 169, 110, 0.4);
}

/* ── Cart Drawer ────────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.4);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  backdrop-filter: blur(2px);
}
.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cart-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(440px, 92vw);
  height: 100dvh;
  background: var(--cream);
  z-index: 1600;
  display: flex;
  flex-direction: column;
  transition: right 0.45s var(--ease-out);
  box-shadow: -8px 0 32px rgba(0,0,0,0.12);
}
.cart-drawer.open { right: 0; }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(200, 169, 110, 0.25);
}
.cart-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--dark);
}
.cart-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.cart-close:hover { opacity: 1; }
.cart-close svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--mid);
}
.cart-empty p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.cart-empty span {
  font-size: 0.85rem;
  color: var(--light-mid);
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  align-items: center;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 80px; height: 100px;
  object-fit: cover;
  border-radius: 2px;
}
.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.cart-item-cat {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.cart-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--dark);
  font-weight: 400;
}
.cart-item-code {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--mid);
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.4rem;
}
.qty-btn {
  width: 24px; height: 24px;
  border: 1px solid var(--gold-light);
  background: transparent;
  color: var(--dark);
  font-size: 0.85rem;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.qty-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.qty-value {
  font-size: 0.85rem;
  font-weight: 500;
  min-width: 22px;
  text-align: center;
  color: var(--dark);
}
.cart-item-remove {
  align-self: start;
  color: var(--light-mid);
  padding: 6px;
  transition: color 0.2s;
}
.cart-item-remove:hover { color: #b94545; }
.cart-item-remove svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; }

.cart-footer {
  padding: 1.25rem 1.75rem 1.75rem;
  border-top: 1px solid rgba(200, 169, 110, 0.25);
  background: var(--white);
}
.cart-footer-note {
  font-size: 0.72rem;
  color: var(--mid);
  text-align: center;
  margin-bottom: 0.85rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.cart-checkout {
  width: 100%;
  padding: 1.05rem 1.5rem;
  background: #25D366;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  transition: background 0.3s, transform 0.2s;
}
.cart-checkout:hover:not(:disabled) {
  background: #1eba58;
  transform: translateY(-1px);
}
.cart-checkout:disabled {
  background: var(--light-mid);
  cursor: not-allowed;
}
.cart-checkout svg { width: 18px; fill: currentColor; stroke: none; }

/* ── Brand Story ────────────────────────────────────────── */
#story {
  background: var(--dark);
  padding: 0;
}
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.story-image {
  position: relative;
  overflow: hidden;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story-text {
  padding: clamp(3.5rem, 8vw, 7rem) clamp(2rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-text .section-label { color: var(--gold); }
.story-text .section-title { color: var(--white); margin-bottom: 1.75rem; }
.story-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--light-mid);
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.story-text p:last-of-type { margin-bottom: 2.25rem; }
.story-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--gold-dark);
  width: fit-content;
  transition: color 0.25s, border-color 0.25s;
}
.story-cta:hover { color: var(--gold-light); border-color: var(--gold-light); }
.story-cta svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; }

/* ── Gallery ────────────────────────────────────────────── */
#gallery { background: var(--blush); }
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.filter-btn {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border: 1px solid var(--light-mid);
  color: var(--mid);
  border-radius: 30px;
  transition: all 0.3s var(--ease);
  background: transparent;
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.filter-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.gallery-grid {
  columns: 4;
  column-gap: 0.9rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 0.9rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border-radius: 2px;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.55s var(--ease), filter 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(0.92);
}
.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s;
}
.gallery-item:hover .gallery-overlay { background: rgba(26,26,26,0.22); }
.gallery-overlay-icon {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s var(--ease);
  color: white;
}
.gallery-item:hover .gallery-overlay-icon { opacity: 1; transform: scale(1); }
.gallery-overlay-icon svg { width: 28px; fill: none; stroke: currentColor; stroke-width: 1.5; }

/* Gallery item hidden state (for filter) */
.gallery-item.hidden {
  display: none;
}
.gallery-item.fade-in {
  animation: galleryFadeIn 0.4s var(--ease-out) both;
}
@keyframes galleryFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── Gallery Video Items ─────────────────────────────────── */
.gallery-video-item {
  position: relative;
  cursor: pointer;
}
.gallery-video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.gallery-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 2;
}
.gallery-play-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  stroke: none;
  margin-left: 3px;
}
.gallery-video-item.playing .gallery-play-btn {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
}
.gallery-video-item:hover .gallery-play-btn {
  background: rgba(0,0,0,0.7);
}

/* ── Lightbox ───────────────────────────────────────────── */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10,8,6,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
  padding: 1rem;
}
#lightbox.active {
  opacity: 1;
  pointer-events: all;
}
#lightbox img {
  max-width: min(92vw, 1000px);
  max-height: 90dvh;
  object-fit: contain;
  border-radius: 2px;
  transform: scale(0.92);
  transition: transform 0.4s var(--ease-out);
}
#lightbox.active img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  opacity: 0.7;
  transition: opacity 0.25s;
  font-size: 1.5rem;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-close svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  opacity: 0.7;
  transition: opacity 0.25s, background 0.25s;
}
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }
.lightbox-prev:hover, .lightbox-next:hover {
  opacity: 1;
  background: rgba(255,255,255,0.08);
}
.lightbox-prev svg, .lightbox-next svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.lightbox-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%; transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.45);
}

/* ── Contact ────────────────────────────────────────────── */
#contact { background: var(--cream); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.contact-left .section-title { margin-bottom: 1.25rem; }
.contact-left p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--mid);
  font-weight: 300;
  margin-bottom: 2rem;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--dark);
  padding: 1rem 1.5rem;
  border: 1px solid var(--gold-light);
  border-radius: 2px;
  background: var(--white);
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.contact-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.contact-link svg { width: 20px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.5; }
.contact-link span { font-weight: 400; }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--gold-light);
  background: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  border-radius: 2px;
  transition: border-color 0.3s;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--light-mid); }
.form-submit {
  padding: 1rem 2.5rem;
  background: var(--dark);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: 2px;
  align-self: flex-start;
  transition: background 0.3s, transform 0.2s;
}
.form-submit:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

/* ── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 4rem clamp(1.5rem, 6vw, 5rem) 2rem;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(200, 169, 110, 0.18);
}
.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.footer-col-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--light-mid);
  margin: 1rem 0 1.25rem;
  font-weight: 300;
  max-width: 320px;
}
.footer-col-brand .footer-logo {
  height: 48px;
  margin-bottom: 0.5rem;
}
.footer-col ul li {
  margin-bottom: 0.65rem;
}
.footer-col ul a, .footer-col-brand .footer-link {
  font-size: 0.82rem;
  color: var(--light-mid);
  letter-spacing: 0.04em;
  transition: color 0.25s, padding-left 0.25s;
  display: inline-block;
}
.footer-col ul a:hover, .footer-col-brand .footer-link:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer-newsletter p {
  font-size: 0.82rem;
  color: var(--light-mid);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 300;
}
.newsletter-form {
  display: flex;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(200, 169, 110, 0.3);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.newsletter-form:focus-within { border-color: var(--gold); }
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(176, 164, 154, 0.55); }
.newsletter-form button {
  background: var(--gold);
  color: var(--dark);
  padding: 0 1.25rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.3s;
}
.newsletter-form button:hover { background: var(--gold-light); }

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(200, 169, 110, 0.18);
  gap: 1.5rem;
  display: none; /* legacy block, keep hidden */
}
.footer-logo {
  height: 56px;
  object-fit: contain;
  filter: invert(1) sepia(1) saturate(0.6) brightness(1.4);
  opacity: 0.85;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.footer-nav a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-mid);
  transition: color 0.25s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(200, 169, 110, 0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--light-mid);
  transition: all 0.3s;
}
.footer-social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.footer-social-link svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.footer-bottom {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(176, 164, 154, 0.5);
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(200, 169, 110, 0.4);
  letter-spacing: 0.08em;
}

/* ── Best Sellers Carousel ──────────────────────────────── */
#bestsellers { background: var(--blush); }
.carousel-wrap {
  position: relative;
}
.carousel-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track .shop-card {
  flex: 0 0 calc(25% - 1rem);
  scroll-snap-align: start;
}

/* ── Testimonials Carousel ──────────────────────────────── */
.testimonials-track .testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  scroll-snap-align: start;
}
@media (max-width: 900px) {
  .testimonials-track .testimonial-card { flex: 0 0 calc(50% - 1rem); }
}
@media (max-width: 600px) {
  .testimonials-track .testimonial-card { flex: 0 0 calc(85% - 1rem); }
}

/* ── Reels Carousel ─────────────────────────────────────── */
.reels-track .reel-card {
  flex: 0 0 calc(20% - 1rem);
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 9/16;
  background: var(--ink, #1a1a1a);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}
.reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.reel-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, background 0.25s;
  z-index: 2;
}
.reel-play-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  stroke: none;
  margin-left: 3px;
}
.reel-card:hover .reel-play-btn { background: rgba(0,0,0,0.75); }
.reel-card.playing .reel-play-btn {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
}
@media (max-width: 1100px) {
  .reels-track .reel-card { flex: 0 0 calc(33.333% - 1rem); }
}
@media (max-width: 720px) {
  .reels-track .reel-card { flex: 0 0 calc(50% - 1rem); }
}
@media (max-width: 480px) {
  .reels-track .reel-card { flex: 0 0 calc(75% - 1rem); }
}

/* ── Reel Shop Tag ───────────────────────────────────────── */
.reel-shop-tag {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 3;
  transition: background 0.3s;
}
.reel-shop-tag svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}
.reel-card:hover .reel-shop-tag {
  background: var(--gold);
}

/* ── Reel Full-Screen Player (Bloome/TikTok-style) ──────── */
.reel-fs-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}
.reel-fs-modal.active {
  opacity: 1;
  visibility: visible;
}

/* Video fills the entire viewport */
.reel-fs-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Top controls — close button */
.reel-fs-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 0;
  /* safe area for notch phones */
  padding-top: max(16px, env(safe-area-inset-top, 16px));
}
.reel-fs-close {
  width: 42px;
  height: 42px;
  background: rgba(0,0,0,0.45);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.reel-fs-close svg { width: 22px; height: 22px; }

/* Right-side controls — mute, up/down nav */
.reel-fs-controls {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.reel-fs-btn {
  width: 46px;
  height: 46px;
  background: rgba(0,0,0,0.45);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s;
}
.reel-fs-btn:active { background: rgba(0,0,0,0.7); }
.reel-fs-btn svg { width: 22px; height: 22px; pointer-events: none; }
.reel-fs-btn .icon-unmuted { display: none; }
.reel-fs-btn.unmuted .icon-muted { display: none; }
.reel-fs-btn.unmuted .icon-unmuted { display: block; }

/* Product name overlay on the video */
.reel-fs-product-name {
  position: absolute;
  bottom: 200px;
  left: 0;
  right: 70px;
  z-index: 4;
  padding: 0 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  line-height: 1.2;
  pointer-events: none;
}

/* Bottom product carousel — overlays the video */
.reel-fs-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 0 0 max(16px, env(safe-area-inset-bottom, 16px));
  background: linear-gradient(transparent, rgba(0,0,0,0.65) 30%);
}
.reel-fs-products {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 14px 16px 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reel-fs-products::-webkit-scrollbar { display: none; }

/* Individual product card in the carousel */
.reel-fs-pcard {
  flex: 0 0 auto;
  width: 200px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 8px;
  scroll-snap-align: start;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s;
}
.reel-fs-pcard:active { background: rgba(255,255,255,0.22); }
.reel-fs-pcard img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.reel-fs-pcard-info {
  flex: 1;
  min-width: 0;
}
.reel-fs-pcard-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.reel-fs-pcard-price {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  margin-top: 2px;
}
.reel-fs-pcard-shop {
  display: inline-block;
  margin-top: 4px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.95);
  color: #111;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  white-space: nowrap;
}

/* Shop this look button */
.reel-fs-shop-look {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 6px 16px 0;
  padding: 10px 20px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s;
}
.reel-fs-shop-look:active { background: rgba(255,255,255,0.3); }
.reel-fs-shop-look svg { width: 18px; height: 18px; }

/* Desktop tweaks — larger cards, centered video */
@media (min-width: 769px) {
  .reel-fs-video {
    width: auto;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    aspect-ratio: 9/16;
  }
  .reel-fs-pcard { width: 220px; }
  .reel-fs-product-name { font-size: 2rem; bottom: 220px; }
  .reel-fs-controls { right: 24px; }
  .reel-fs-btn { width: 52px; height: 52px; }
  .reel-fs-btn svg { width: 26px; height: 26px; }
}

.carousel-arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: var(--white);
  border: 1px solid rgba(200, 169, 110, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.carousel-arrow:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.carousel-arrow.prev { left: -1rem; }
.carousel-arrow.next { right: -1rem; }
.carousel-arrow:disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }
.carousel-arrow svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; }

/* ── Testimonials ───────────────────────────────────────── */
#testimonials {
  background: var(--cream);
  background-image:
    radial-gradient(circle at 10% 50%, rgba(200,169,110,0.06) 0%, transparent 50%),
    radial-gradient(circle at 90% 30%, rgba(200,169,110,0.05) 0%, transparent 45%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--white);
  padding: 2rem 1.85rem 2rem;
  border-radius: 4px;
  border: 1px solid rgba(200, 169, 110, 0.18);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -0.4rem; left: 1.25rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.5;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
}
.testimonial-stars svg { width: 14px; fill: currentColor; }
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--dark);
  font-weight: 400;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  flex-shrink: 0;
  border: 1px solid var(--gold-light);
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.testimonial-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.02em;
}
.testimonial-product {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Reviews summary line */
.reviews-summary {
  text-align: center;
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.reviews-summary .stars { color: var(--gold); display: flex; gap: 2px; }
.reviews-summary .stars svg { width: 16px; fill: currentColor; }
.reviews-summary p {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 500;
}
.reviews-summary strong { color: var(--dark); }

/* ── Instagram Band ─────────────────────────────────────── */
#instagram {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 6rem) clamp(1rem, 4vw, 3rem);
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  max-width: 1400px;
  margin: 2rem auto 0;
}
.insta-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.insta-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.insta-tile:hover img { transform: scale(1.08); }
.insta-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.35s, background 0.35s;
}
.insta-tile:hover .insta-tile-overlay {
  opacity: 1;
  background: rgba(26,26,26,0.35);
}
.insta-tile-overlay svg { width: 26px; fill: currentColor; }
.insta-handle {
  text-align: center;
  margin-top: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.insta-handle a { color: var(--gold-dark); border-bottom: 1px solid var(--gold-light); transition: color 0.25s; }
.insta-handle a:hover { color: var(--gold); }

/* ── Liquid Glass Effect (from reference) ───────────────── */
.liquid-glass {
  background: rgba(255, 255, 255, 0.04);
  background-blend-mode: luminosity;
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  border: none;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.18),
    0 4px 24px rgba(0,0,0,0.12);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.2px;
  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.5) 0%,
    rgba(255,255,255,0.15) 20%,
    rgba(255,255,255,0) 45%,
    rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.15) 80%,
    rgba(200,169,110,0.45) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Gold-tinted glass variant for light backgrounds */
.liquid-glass-gold {
  background: rgba(200, 169, 110, 0.06);
  backdrop-filter: blur(10px) saturate(1.5);
  -webkit-backdrop-filter: blur(10px) saturate(1.5);
  border: none;
  box-shadow:
    inset 0 1px 1px rgba(200, 169, 110, 0.25),
    0 2px 16px rgba(200, 169, 110, 0.08);
  position: relative;
  overflow: hidden;
}
.liquid-glass-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(200,169,110,0.55) 0%,
    rgba(200,169,110,0.15) 30%,
    rgba(255,255,255,0) 55%,
    rgba(200,169,110,0.15) 80%,
    rgba(200,169,110,0.45) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ── Cinematic Typography Highlights ───────────────────── */
.highlight-gold {
  color: var(--gold-light);
  font-style: normal;
}
.highlight-muted {
  color: rgba(255,255,255,0.45);
  font-style: normal;
}

/* ── Gold Divider ───────────────────────────────────────── */
.gold-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem auto 0;
  display: block;
}

/* ============================================================
   RESPONSIVE
============================================================ */

/* Tablet — 768px to 1024px */
@media (max-width: 1024px) {
  .collections-grid { grid-template-columns: repeat(4, 1fr); }
  .collection-card:nth-child(-n+3) { grid-column: span 2; }
  .collection-card:nth-child(4),
  .collection-card:nth-child(5) { grid-column: span 2; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { columns: 3; }
  .story-inner { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel-track .shop-card { flex: 0 0 calc(33.333% - 0.85rem); }
}

/* Phablet — 768px */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-usps { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Show "Shop by Reels" button on mobile */
  .hero-cta-reels { display: inline-block; }

  /* Horizontal scroll categories on mobile */
  .collections-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 0.75rem;
    padding: 0.5rem 0 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .collections-grid::-webkit-scrollbar { display: none; }
  .collection-card {
    flex: 0 0 70vw;
    max-width: 280px;
    scroll-snap-align: start;
    aspect-ratio: 3/4;
    border-radius: 12px;
  }
  .collection-card:nth-child(-n+3) { grid-column: unset; }
  .collection-card:nth-child(4),
  .collection-card:nth-child(5) { grid-column: unset; }

  .story-inner { grid-template-columns: 1fr; }
  .story-image { height: 380px; }

  .contact-inner { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .shop-card-info { padding: 0.5rem 0.35rem 0.6rem; }
  .shop-name { font-size: 0.9rem; }
  .shop-price { font-size: 0.72rem; margin-bottom: 0.3rem; }
  .shop-add-btn { padding: 0.5rem 0.6rem; font-size: 0.58rem; }
  .shop-cat { font-size: 0.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-cols { grid-template-columns: 1fr; gap: 2.25rem; padding-bottom: 2.25rem; }
  .footer-col-brand p { max-width: 100%; }
  .carousel-track .shop-card { flex: 0 0 calc(50% - 0.625rem); }
  .carousel-arrow.prev { left: 0.25rem; }
  .carousel-arrow.next { right: 0.25rem; }

  .hero-title { font-size: clamp(2.8rem, 11vw, 5rem); }

  .cart-fab { bottom: 1rem; right: 1rem; width: 52px; height: 52px; }

  /* Promo strip — smaller on mobile */
  :root { --promo-h: 32px; }
  .promo-msg { font-size: 0.75rem; letter-spacing: 0.12em; padding: 0 1rem; }
}

/* Mobile — 480px */
@media (max-width: 480px) {
  .collection-card { flex: 0 0 75vw; max-width: 260px; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .gallery-grid { columns: 2; column-gap: 0.5rem; }
  .gallery-item { margin-bottom: 0.5rem; }

  .hero-title { font-size: clamp(2.4rem, 13vw, 4rem); }
  .hero-tagline { letter-spacing: 0.12em; }
  .hero-cta { padding: 0.85rem 2rem; }

  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

/* Very small mobile — 360px */
@media (max-width: 360px) {
  .gallery-grid { columns: 1; }
  .featured-grid { grid-template-columns: 1fr; }
}

/* ── Product Detail Page ───────────────────────────────── */
#productPage { padding-top: 2rem; }
.breadcrumb {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span:nth-child(odd) { color: #ccc; }

.product-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Gallery */
.product-gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  align-items: start;
}
.product-thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-height: 600px;
  overflow-y: auto;
  padding-right: 4px;
}
.product-thumbs::-webkit-scrollbar { width: 4px; }
.product-thumbs::-webkit-scrollbar-thumb { background: #ddd; }
.product-thumbs .thumb {
  width: 76px;
  height: 76px;
  padding: 0;
  border: 1px solid transparent;
  background: #fafafa;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.product-thumbs .thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.product-thumbs .thumb:hover { border-color: #d4af37aa; }
.product-thumbs .thumb.active { border-color: var(--gold, #b48a3c); }

.product-main-image {
  position: relative;
  background: #fafafa;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  cursor: zoom-in;
}
.product-main-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s var(--ease, ease);
}
.product-main-image:hover img { transform: scale(1.04); }

/* Info column */
.product-info {
  padding-top: 0.5rem;
}
.product-cat {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold, #b48a3c);
  margin-bottom: 0.6rem;
}
.product-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: 0.02em;
  margin: 0 0 0.5rem;
}
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #1a1a1a;
  margin: 0.4rem 0 0.2rem;
  font-weight: 400;
}
.product-price .price-original {
  text-decoration: line-through;
  color: #999;
  font-weight: 300;
  font-size: 1.15rem;
  margin-right: 0.4rem;
}
.product-price .price-current {
  color: var(--gold-dark, #8b6914);
  font-weight: 500;
}
.product-tax {
  font-size: 0.78rem;
  color: #777;
  margin: 0 0 1.5rem;
}

.product-quantity { margin: 1.25rem 0 1rem; }
.qty-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.5rem;
}
.qty-controls {
  display: inline-flex;
  border: 1px solid #ddd;
  border-radius: 0;
  overflow: hidden;
}
.qty-btn {
  width: 42px; height: 42px;
  background: transparent;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: #1a1a1a;
  transition: background 0.2s;
}
.qty-btn:hover { background: #f5f5f5; }
.qty-input {
  width: 56px;
  height: 42px;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.product-actions {
  display: flex;
  flex-direction: row;
  gap: 0.6rem;
  margin: 1.25rem 0 1.5rem;
}
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.4rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--gold, #b48a3c);
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.btn-primary {
  background: var(--gold, #b48a3c);
  color: #fff;
}
.btn-primary:hover { background: #1a1a1a; border-color: #1a1a1a; }
.btn-primary svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.btn-primary.added { background: #2e7d32; border-color: #2e7d32; }
.btn-secondary {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}
.btn-secondary:hover { background: var(--gold, #b48a3c); border-color: var(--gold, #b48a3c); }

/* Product feature cards (infographic) */
.product-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin: 1.75rem 0 1.25rem;
}
.pf-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.95rem 0.5rem;
  background: linear-gradient(180deg, #fbf7ee 0%, #fff 100%);
  border: 1px solid rgba(180, 138, 60, 0.15);
  border-radius: 6px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.pf-card:hover {
  transform: translateY(-2px);
  border-color: rgba(180, 138, 60, 0.4);
  box-shadow: 0 8px 22px rgba(180, 138, 60, 0.12);
}
.pf-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.5rem;
  color: var(--gold, #b48a3c);
}
.pf-icon svg {
  width: 28px; height: 28px;
  fill: none; stroke: currentColor; stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
}
.pf-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.pf-sub {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #888;
  margin-top: 0.2rem;
}

.product-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0;
}
.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  background: #f7f4ec;
  color: #444;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}
.meta-pill svg {
  width: 14px; height: 14px;
  fill: none; stroke: var(--gold, #b48a3c); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.meta-pill strong { color: #1a1a1a; font-weight: 500; }

.product-desc-card {
  margin: 1rem 0 1.5rem;
  padding: 1.1rem 1.25rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2218 100%);
  color: #fff;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.product-desc-card::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(180, 138, 60, 0.25), transparent 70%);
  pointer-events: none;
}
.desc-headline {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  font-weight: 400;
  margin: 0 0 0.85rem;
  letter-spacing: 0.02em;
  position: relative;
}
.desc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold, #d4af37);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(180, 138, 60, 0.18);
}
.desc-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  position: relative;
}
.desc-tags li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(180, 138, 60, 0.4);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: #f0e8d8;
}
.desc-tags li svg {
  width: 12px; height: 12px;
  fill: none; stroke: var(--gold, #d4af37); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}

.product-accordion {
  border-top: 1px solid #eee;
  padding: 0.9rem 0;
}
.product-accordion:last-of-type { border-bottom: 1px solid #eee; }
.product-accordion summary {
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a1a1a;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-accordion summary::-webkit-details-marker { display: none; }
.product-accordion summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform 0.25s;
}
.product-accordion[open] summary::after {
  content: '−';
}
.accordion-body {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
}
.accordion-body p { margin: 0 0 0.7rem; }
.accordion-body a { color: var(--gold, #b48a3c); }

.product-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
}
.share-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #888;
  margin-right: 0.25rem;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  background: #fff;
  border: 1px solid #e0d6c2;
  color: #1a1a1a;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.share-btn svg {
  width: 14px; height: 14px;
  fill: currentColor;
}
.share-copy svg { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.share-btn:hover {
  background: var(--gold, #b48a3c);
  color: #fff;
  border-color: var(--gold, #b48a3c);
  transform: translateY(-1px);
}
.share-btn.copied {
  background: #2e7d32;
  border-color: #2e7d32;
  color: #fff;
}

.product-reviews {
  margin: 4rem 0 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
  text-align: center;
}
.reviews-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
}
.reviews-empty {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.reviews-cta {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--gold, #b48a3c);
  color: var(--gold, #b48a3c);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}
.reviews-cta:hover {
  background: var(--gold, #b48a3c);
  color: #fff;
}

/* Solid navbar on inner pages */
#navbar.solid {
  background: #fff;
  border-bottom: 1px solid #eee;
}
#navbar.solid .nav-links a {
  color: var(--dark);
}
#navbar.solid .nav-links a:hover {
  color: var(--gold-dark);
}
#navbar.solid .hamburger span {
  background: var(--dark);
}

@media (max-width: 880px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .product-gallery {
    grid-template-columns: 1fr;
  }
  .product-thumbs {
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    order: 2;
  }
  .product-main-image { order: 1; aspect-ratio: 1 / 1; }
  .product-thumbs .thumb { width: 64px; height: 64px; flex-shrink: 0; }
  .product-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .product-features-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-title { font-size: 0.92rem; }
}

/* ── Care Guide Page ───────────────────────────────────── */
#careGuide { padding-top: 2rem; }
.care-hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.care-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: 0.02em;
  margin: 0.4rem 0 0.6rem;
}
.care-title em {
  font-style: italic;
  color: var(--gold, #b48a3c);
}
.care-intro {
  font-size: 1rem;
  line-height: 1.75;
  color: #555;
  margin-top: 1.25rem;
}

/* 4 promise pillars */
.care-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0 3rem;
}
.care-pillar {
  text-align: center;
  padding: 1.75rem 1.1rem;
  background: linear-gradient(180deg, #fbf7ee 0%, #fff 100%);
  border: 1px solid rgba(180, 138, 60, 0.18);
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.care-pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 138, 60, 0.55);
  box-shadow: 0 12px 28px rgba(180, 138, 60, 0.15);
}
.care-pillar-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(180, 138, 60, 0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold, #b48a3c);
}
.care-pillar-icon svg {
  width: 30px; height: 30px;
  fill: none; stroke: currentColor; stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
}
.care-pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}
.care-pillar p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Do's & Don'ts */
.care-rules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 0 0 3rem;
}
.care-rules-col {
  padding: 1.75rem 1.6rem;
  border-radius: 8px;
  border: 1px solid #ececec;
}
.care-rules-col header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #f0e9d8;
}
.care-rules-col h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.65rem;
  margin: 0;
  letter-spacing: 0.04em;
}
.rules-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.rules-icon svg {
  width: 16px; height: 16px;
  fill: none; stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.care-do { background: linear-gradient(180deg, #f3f8f1 0%, #fff 100%); }
.care-do .rules-icon { background: #2e7d32; }
.care-do .rules-icon svg { stroke: #fff; }
.care-do h2 { color: #2e7d32; }

.care-dont { background: linear-gradient(180deg, #faf3f1 0%, #fff 100%); }
.care-dont .rules-icon { background: #b54e3e; }
.care-dont .rules-icon svg { stroke: #fff; }
.care-dont h2 { color: #b54e3e; }

.care-rules-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.care-rules-col li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.5rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #444;
  border-bottom: 1px dashed #eee;
}
.care-rules-col li:last-child { border-bottom: none; }
.care-rules-col li::before {
  content: '';
  position: absolute;
  left: 0; top: 1.1rem;
  width: 8px; height: 8px;
  border-radius: 50%;
}
.care-do li::before { background: #2e7d32; }
.care-dont li::before { background: #b54e3e; }
.care-rules-col strong { color: #1a1a1a; font-weight: 500; }

/* Daily Ritual */
.care-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  text-align: center;
  margin: 0 0 2rem;
  letter-spacing: 0.04em;
}
.care-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold, #b48a3c);
  margin: 0.85rem auto 0;
}
.care-ritual { margin: 0 0 3rem; }
.ritual-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
.ritual-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180,138,60,0.3), transparent);
  z-index: 0;
}
.ritual-step {
  position: relative;
  text-align: center;
  background: #fff;
  padding: 0 1rem;
  z-index: 1;
}
.step-number {
  width: 56px; height: 56px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  background: #1a1a1a;
  color: var(--gold, #d4af37);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  border: 2px solid var(--gold, #b48a3c);
}
.ritual-step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
  letter-spacing: 0.04em;
}
.ritual-step p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: #666;
  margin: 0;
}

/* Note */
.care-note {
  margin: 0 0 3rem;
  padding: 1.1rem 1.5rem;
  background: #fbf7ee;
  border-left: 3px solid var(--gold, #b48a3c);
  font-size: 0.88rem;
  line-height: 1.6;
  color: #555;
}
.care-note strong { color: #1a1a1a; }

/* Accordions on care page */
.care-extras {
  max-width: 800px;
  margin: 0 auto 3rem;
}
.care-accordion {
  border-top: 1px solid #eee;
  padding: 1rem 0;
}
.care-accordion:last-of-type { border-bottom: 1px solid #eee; }
.care-accordion summary {
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.care-accordion summary::-webkit-details-marker { display: none; }
.care-accordion summary::after {
  content: '+';
  color: var(--gold, #b48a3c);
  font-size: 1.4rem;
  font-weight: 300;
}
.care-accordion[open] summary::after { content: '−'; }

/* Contact */
.care-contact {
  text-align: center;
  margin: 0 0 3rem;
  padding: 2.5rem 1rem;
  background: #fbf7ee;
  border-radius: 8px;
}
.care-contact h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}
.care-contact > p {
  color: #666;
  font-size: 0.95rem;
  margin: 0 0 1.5rem;
}
.care-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}
.care-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.4rem 1rem;
  background: #fff;
  border: 1px solid #efe6d3;
  border-radius: 8px;
  text-decoration: none;
  color: #1a1a1a;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.care-contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold, #b48a3c);
  box-shadow: 0 12px 24px rgba(180, 138, 60, 0.15);
}
.ccc-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(180, 138, 60, 0.12);
  color: var(--gold, #b48a3c);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.3rem;
}
.ccc-icon svg {
  width: 22px; height: 22px;
  fill: currentColor;
}
.care-contact-card .ccc-icon svg[viewBox*="0 0 24 24"] path[d*="3 6h18"] {
  fill: none; stroke: currentColor; stroke-width: 1.6;
}
.ccc-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
}
.ccc-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a1a;
}

@media (max-width: 880px) {
  .care-pillars { grid-template-columns: repeat(2, 1fr); }
  .care-rules { grid-template-columns: 1fr; }
  .ritual-steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .ritual-steps::before { display: none; }
  .care-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .care-pillars { grid-template-columns: 1fr; }
}

/* Shop card image cursor (since now clickable) */
.shop-card-image { cursor: pointer; }

/* ── Floating Social Buttons ───────────────────────────── */
.social-floats {
  position: fixed;
  right: 1.5rem;
  bottom: calc(1.5rem + 58px + 0.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 999;
}
.social-float {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.social-float svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}
.social-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  filter: brightness(1.05);
}
.social-float-wa {
  background: #25D366;
}
.social-float-ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
@media (max-width: 480px) {
  .social-floats {
    right: 1rem;
    bottom: calc(1rem + 52px + 0.6rem);
    gap: 0.6rem;
  }
  .social-float { width: 48px; height: 48px; }
  .social-float svg { width: 22px; height: 22px; }
}

/* ── Mobile UX Fixes (touch targets & readability) ──── */
@media (max-width: 600px) {
  /* Promo strip — minimum readable font */
  .promo-msg span,
  .promo-msg strong,
  .promo-msg {
    font-size: 0.75rem !important;
  }

  /* Marquee text — minimum readable font */
  .marquee-track span {
    font-size: 0.75rem;
  }

  /* Form labels — minimum readable font */
  .form-group label {
    font-size: 0.75rem;
  }

  /* Hero dots — 44px touch area via pseudo-element */
  .hero-dot {
    width: 10px;
    height: 10px;
    position: relative;
  }
  .hero-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
  }

  /* Shop category labels — readable */
  .shop-cat {
    font-size: 0.75rem;
  }

  /* Section labels */
  .section-label {
    font-size: 0.75rem;
  }

  /* Shop category overlay buttons */
  .shop-cat-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
    min-height: 44px;
  }

  /* Carousel arrows */
  .carousel-arrow {
    min-width: 44px;
    min-height: 44px;
  }

  /* Trust badge sub text */
  .trust-sub {
    font-size: 0.75rem;
  }

  /* Shop add-to-cart button */
  .shop-add-btn {
    font-size: 0.75rem;
    min-height: 44px;
  }

  /* Testimonial product name */
  .testimonial-product {
    font-size: 0.75rem;
  }

  /* Filter pills */
  .filter-pill {
    min-height: 44px;
    font-size: 0.75rem;
  }

  /* Footer copy */
  .footer-copy {
    font-size: 0.75rem;
  }

  /* Footer social links */
  .footer-social-link {
    min-width: 44px;
    min-height: 44px;
  }

  /* Reel fullscreen controls */
  .reel-fs-close,
  .reel-fs-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  /* Form submit */
  .form-submit {
    font-size: 0.8rem;
    min-height: 44px;
  }

  /* Cart badge — decorative, ok to be small but ensure minimum */
  .cart-badge {
    font-size: 0.75rem;
  }

  /* Nav links in drawer */
  .nav-drawer a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Hero CTA button — readable font + proper touch target */
  .hero-cta {
    font-size: 0.75rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Footer links — proper touch targets */
  .footer-col ul a,
  .footer-col-brand .footer-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* Footer newsletter input + button */
  .newsletter-form input {
    min-height: 44px;
    font-size: 0.85rem;
  }
  .newsletter-form button {
    font-size: 0.75rem;
    min-height: 44px;
  }

  /* Footer contact info */
  .footer-col-brand p,
  .footer-newsletter p {
    font-size: 0.82rem;
  }
  /* Footer newsletter inline-styled contact line */
  .footer-newsletter > p[style] {
    font-size: 0.75rem !important;
  }

  /* Footer copy */
  .footer-copy {
    font-size: 0.75rem;
  }

  /* Cart footer note */
  .cart-footer-note {
    font-size: 0.75rem;
  }

  /* Cart close button */
  .cart-close {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  /* Cart FAB */
  .cart-fab {
    width: 52px;
    height: 52px;
  }
}

/* ── Shop Filters ── */

/* Mobile filter trigger bar — hidden on desktop */
.shop-filter-bar-mobile {
  display: none;
}
/* Filter drawer elements — hidden on desktop */
.filter-drawer-header,
.filter-drawer-footer,
.filter-drawer-overlay { display: none; }
.filter-drawer-body { display: contents; }

/* Desktop: inline filters */
.shop-filters {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding-top: 0.75rem;
}
.shop-filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.shop-filter-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  font-weight: 600;
}
.shop-filter-pills {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.filter-pill {
  padding: 0.4rem 0.85rem;
  border: 1px solid #ddd;
  border-radius: 100px;
  background: #fff;
  color: #555;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
}
.filter-pill:hover {
  border-color: var(--gold, #C8A96E);
  color: var(--gold, #C8A96E);
}
.filter-pill.active {
  background: var(--gold, #C8A96E);
  border-color: var(--gold, #C8A96E);
  color: #fff;
  font-weight: 500;
}
.shop-sort-select {
  padding: 0.4rem 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  color: #555;
  font-size: 0.78rem;
  cursor: pointer;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.shop-sort-select:focus {
  border-color: var(--gold, #C8A96E);
}
.shop-results-count {
  font-size: 0.78rem;
  color: #999;
  margin-left: auto;
  align-self: flex-end;
  white-space: nowrap;
  padding-bottom: 0.4rem;
}

/* ── Mobile: Filter Drawer ── */
@media (max-width: 768px) {
  /* Show compact trigger bar */
  .shop-filter-bar-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 0;
  }
  .filter-trigger-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.55rem 1rem;
    font-family: inherit;
    font-size: 0.82rem;
    color: #333;
    cursor: pointer;
    transition: border-color 0.2s;
  }
  .filter-trigger-btn:active {
    border-color: var(--gold, #C8A96E);
  }
  .shop-filter-bar-mobile .shop-results-count {
    font-size: 0.8rem;
    color: #888;
    padding: 0;
  }

  /* Slide-up drawer */
  .shop-filters {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
    padding: 0;
    flex-direction: column;
    gap: 0;
    max-height: 75vh;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    overflow-y: auto;
    display: flex;
  }
  .shop-filters.open {
    transform: translateY(0);
  }

  /* Drawer header */
  .filter-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem 0.75rem;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
  }
  .filter-drawer-title {
    font-family: var(--font-head);
    font-size: 1.15rem;
    color: #222;
  }
  .filter-drawer-count {
    font-size: 0.82rem;
    color: #999;
  }
  .filter-drawer-close {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #333;
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem;
  }

  /* Drawer body */
  .filter-drawer-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
  }
  .shop-filter-group { gap: 0.6rem; }
  .shop-filter-label {
    font-size: 0.75rem;
    color: #333;
    font-weight: 500;
  }
  .shop-filter-pills {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .filter-pill {
    font-size: 0.82rem;
    padding: 0.5rem 1rem;
  }
  .shop-filter-sort { width: 100%; }
  .shop-sort-select {
    width: 100%;
    padding: 0.6rem 0.75rem;
    font-size: 0.85rem;
    border-radius: 10px;
  }

  /* Drawer footer */
  .filter-drawer-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid #eee;
    position: sticky;
    bottom: 0;
    background: #fff;
  }
  .filter-reset-btn {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.85rem;
    color: #555;
    text-decoration: underline;
    cursor: pointer;
    padding: 0.6rem 0;
  }
  .filter-apply-btn {
    flex: 1;
    max-width: 200px;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.85rem 1.5rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
  }
  .filter-apply-btn:active {
    background: #000;
  }

  /* Overlay */
  .filter-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
  }
  .filter-drawer-overlay.active {
    display: block;
  }
}

/* ── Hero USP Badges ── */
.hero-usps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
}
.hero-usp-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold, #C8A96E);
  display: inline-block;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .hero-usps {
    font-size: 0.72rem;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
}

/* ── Reviews Summary (above carousel) ── */
.reviews-summary {
  text-align: center;
}
.reviews-summary .stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.reviews-summary .stars svg {
  width: 24px;
  height: 24px;
  fill: var(--gold, #C8A96E);
}
.reviews-summary p {
  font-size: 1rem;
  color: #555;
  margin: 0;
}
.reviews-summary p strong {
  color: #222;
  font-size: 1.1rem;
}

/* ── Our Story Section ── */
.our-story {
  padding: 5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.our-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 700px);
  height: 100%;
  background: linear-gradient(180deg, rgba(200,169,110,0.04) 0%, transparent 60%);
  border-radius: 50% 50% 0 0;
  pointer-events: none;
  z-index: 0;
}
.our-story > * { position: relative; z-index: 1; }
.our-story .story-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #666;
  margin-top: 1.75rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.our-story .story-text strong {
  color: var(--gold, #C8A96E);
  font-weight: 600;
}
.our-story .story-values {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.our-story .story-value {
  text-align: center;
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  background: #fff;
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 16px;
  padding: 2rem 1.25rem 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.our-story .story-value:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(200,169,110,0.15);
}
.our-story .story-value-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}
.our-story .story-value h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  color: #222;
  letter-spacing: 0.02em;
}
.our-story .story-value p {
  font-size: 0.85rem;
  color: #999;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .our-story { padding: 3.5rem 1.25rem; }
  .our-story .story-text { font-size: 0.95rem; line-height: 1.75; }
  .our-story .story-values { gap: 1rem; }
  .our-story .story-value { padding: 1.5rem 1rem 1.25rem; min-width: 140px; }
}

/* ── Accessibility utility ── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ════════════════════════════════════════════════════════════════════════════
   PRODUCT PAGE  (single-product.php)
════════════════════════════════════════════════════════════════════════════ */

/* Breadcrumb ─────────────────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  padding: 1rem var(--side-pad, 5vw);
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: #999;
}
.breadcrumb a { color: #888; text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span[aria-hidden] { color: #ccc; }
.breadcrumb [aria-current] { color: #444; }

/* Product detail layout ──────────────────────────────────────────────────── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  padding: 1.5rem var(--side-pad, 5vw) 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; gap: 2rem; padding: 1rem 1.25rem 3rem; }
}

/* Gallery ───────────────────────────────────────────────────────────────── */
.product-gallery {
  display: flex;
  gap: 1rem;
  position: sticky;
  top: 90px;
  align-self: start;
}
.product-thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 72px;
  flex-shrink: 0;
}
.thumb-btn {
  background: none;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s;
}
.thumb-btn img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; }
.thumb-btn.active,
.thumb-btn:hover { border-color: var(--gold, #C8A96E); }
.product-main-image { flex: 1; }
.product-main-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  border-radius: 12px;
  background: #f7f2ed;
}
.product-no-image {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  background: #f5f0eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 0.9rem;
}
@media (max-width: 900px) {
  .product-gallery { flex-direction: column-reverse; position: static; }
  .product-thumbs { flex-direction: row; width: 100%; overflow-x: auto; }
  .thumb-btn { width: 64px; flex-shrink: 0; }
}

/* Product info ──────────────────────────────────────────────────────────── */
.product-info { display: flex; flex-direction: column; gap: 0; }
.product-cat {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--gold, #C8A96E);
  margin: 0 0 0.5rem;
  font-weight: 500;
}
.product-title {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 1rem;
  line-height: 1.2;
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 0 0 0.25rem;
}
.price-sale {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  color: #1a1a1a;
}
.price-original {
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
}
.price-badge {
  background: #1a1a1a;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 0.2em 0.55em;
  border-radius: 3px;
  font-weight: 500;
}
.price-sold-out {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #999;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-tax {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #aaa;
  margin: 0 0 1rem;
}
.product-length {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #555;
  margin: 0 0 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.product-length strong { color: #1a1a1a; }

/* Quantity ──────────────────────────────────────────────────────────────── */
.product-quantity { margin: 0 0 1.2rem; }
.qty-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.qty-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}
.qty-btn {
  background: none;
  border: none;
  padding: 0.55rem 1rem;
  font-size: 1.1rem;
  cursor: pointer;
  color: #333;
  line-height: 1;
  transition: background 0.15s;
}
.qty-btn:hover { background: #f5f0eb; }
.qty-input {
  width: 3.5rem;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  padding: 0.55rem 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #1a1a1a;
  -moz-appearance: textfield;
}
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* Actions ──────────────────────────────────────────────────────────────── */
.product-actions {
  display: flex;
  flex-direction: row;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin: 0 0 1.8rem;
}
.product-add-cart,
.product-buy-now {
  flex: 1 1 auto;
  min-width: 130px;
  max-width: 240px;
}
.product-add-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.product-add-cart svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Feature grid ─────────────────────────────────────────────────────────── */
.product-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin: 0 0 1.8rem;
}
@media (max-width: 600px) {
  .product-features-grid { grid-template-columns: repeat(2, 1fr); }
}
.pf-card {
  background: #fdfaf6;
  border: 1px solid #f0e8dc;
  border-radius: 10px;
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}
.pf-icon svg { width: 28px; height: 28px; stroke: var(--gold, #C8A96E); }
.pf-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.3;
}
.pf-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: #999;
}

/* Accordions ──────────────────────────────────────────────────────────── */
.product-accordion {
  border-top: 1px solid #eee;
  font-family: var(--font-body);
}
.product-accordion:last-of-type { border-bottom: 1px solid #eee; }
.product-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 1rem 0;
  cursor: pointer;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: #222;
  list-style: none;
  user-select: none;
}
.product-accordion summary::-webkit-details-marker { display: none; }
.accordion-chevron {
  width: 18px; height: 18px;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.product-accordion[open] .accordion-chevron { transform: rotate(180deg); }
.accordion-body {
  padding: 0 0 1.2rem;
  font-size: 0.875rem;
  color: #555;
  line-height: 1.75;
}
.accordion-body p { margin: 0 0 0.75rem; }
.accordion-body ul {
  margin: 0.5rem 0 0.75rem 1.25rem;
  padding: 0;
}
.accordion-body li { margin-bottom: 0.35rem; }
.accordion-body a { color: var(--gold, #C8A96E); }

/* Share ─────────────────────────────────────────────────────────────────── */
.product-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.share-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: #aaa;
  text-transform: uppercase;
  margin-right: 0.25rem;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1px solid #e8e0d5;
  border-radius: 20px;
  padding: 0.4em 0.9em;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #555;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.share-btn svg { width: 15px; height: 15px; }
.share-btn:hover { border-color: var(--gold, #C8A96E); color: var(--gold); }

/* Reviews ──────────────────────────────────────────────────────────────── */
.product-reviews {
  padding: 3.5rem var(--side-pad, 5vw);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid #f0e8dc;
}
.reviews-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 400;
  margin: 0 0 0.5rem;
}
.reviews-stars {
  font-size: 1.3rem;
  color: var(--gold, #C8A96E);
  margin: 0 0 1rem;
  letter-spacing: 0.1em;
}
.reviews-tagline {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #777;
  max-width: 500px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}
.reviews-cta {
  display: inline-block;
  font-size: 0.85rem;
  padding: 0.65rem 1.8rem;
  border-radius: 30px;
}

/* Related products ─────────────────────────────────────────────────────── */
.related-products {
  padding-top: 1rem;
  border-top: 1px solid #f0e8dc;
}
.products-grid--related {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .products-grid--related { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .products-grid--related { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}

/* Product card (related products) ──────────────────────────────────────── */
.product-card {
  background: #fff;
  border: 1px solid #f0e8dc;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.product-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.07); }
.product-card.sold-out .product-card-img { opacity: 0.5; }
.product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.product-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-img { transform: scale(1.04); }
.product-card-body {
  padding: 0.75rem 0.85rem 0.9rem;
}
.product-card-name {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--dark, #1a1a1a);
  margin: 0 0 0.3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card-price {
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.product-card-price .price-sale {
  color: var(--dark, #1a1a1a);
  font-weight: 500;
}
.product-card-price .price-original {
  color: #999;
  text-decoration: line-through;
}
.product-card-price .price-oos {
  color: #aaa;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════════════════════
   CARE GUIDE PAGE  (page-care-guide.php)
════════════════════════════════════════════════════════════════════════════ */

.care-guide-page { font-family: var(--font-body, 'Jost', sans-serif); }

/* Hero ──────────────────────────────────────────────────────────────────── */
.care-hero {
  text-align: center;
  padding: 4rem var(--side-pad, 5vw) 3rem;
  max-width: 700px;
  margin: 0 auto;
}
.care-hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold, #C8A96E);
  margin: 0 0 1rem;
}
.care-hero-title {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 1.2rem;
  line-height: 1.15;
}
.care-hero-title em { font-style: italic; color: var(--gold, #C8A96E); }
.care-hero-line {
  width: 48px;
  height: 2px;
  background: var(--gold, #C8A96E);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}
.care-hero-intro {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* Promise Pillars ──────────────────────────────────────────────────────── */
.care-pillars {
  padding: 3rem var(--side-pad, 5vw);
  background: #fdfaf6;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .pillars-grid { grid-template-columns: 1fr; }
}
.pillar-card {
  background: #fff;
  border: 1px solid #f0e8dc;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: box-shadow 0.25s;
}
.pillar-card:hover { box-shadow: 0 6px 24px rgba(200,169,110,0.12); }
.pillar-icon svg { width: 48px; height: 48px; stroke: var(--gold, #C8A96E); }
.pillar-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: #1a1a1a;
  text-align: center !important;
}
.pillar-body {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
  text-align: center !important;
}

/* Do's & Don'ts ─────────────────────────────────────────────────────────── */
.care-dos-donts {
  padding: 4rem var(--side-pad, 5vw);
  max-width: 1100px;
  margin: 0 auto;
}
.dos-donts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 700px) {
  .dos-donts-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.col-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid;
}
.col-title--do { color: #2a7a4b; border-color: #2a7a4b; }
.col-title--dont { color: #c0392b; border-color: #c0392b; }
.col-title svg { width: 18px; height: 18px; }
.dos-donts-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.dos-donts-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: #444;
  line-height: 1.5;
}
.dos-col .dos-donts-list li svg { width: 18px; height: 18px; color: #2a7a4b; flex-shrink: 0; margin-top: 1px; }
.donts-col .dos-donts-list li svg { width: 18px; height: 18px; color: #c0392b; flex-shrink: 0; margin-top: 1px; }

/* Daily Ritual ──────────────────────────────────────────────────────────── */
.care-ritual {
  padding: 4rem var(--side-pad, 5vw);
  background: #1a1a1a;
  color: #fff;
}
.care-ritual .section-title { color: #fff; }
.ritual-intro {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.ritual-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.ritual-step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.ritual-step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(200,169,110,0.3);
  line-height: 1;
}
.ritual-step-icon svg { width: 48px; height: 48px; stroke: var(--gold, #C8A96E); }
.ritual-step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
}
.ritual-step-body {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.ritual-step-divider {
  font-size: 1.5rem;
  color: rgba(200,169,110,0.3);
  margin-top: 3rem;
  line-height: 1;
}
@media (max-width: 600px) {
  .ritual-step-divider { display: none; }
  .ritual-steps { flex-direction: column; align-items: center; }
  .ritual-step { max-width: 100%; }
}

/* Disclaimer ────────────────────────────────────────────────────────────── */
.care-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #fdfaf6;
  border: 1px solid #f0e8dc;
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  max-width: 800px;
  margin: 3rem auto;
  font-size: 0.83rem;
  color: #777;
  line-height: 1.7;
}
.care-disclaimer svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold, #C8A96E); margin-top: 2px; }
.care-disclaimer p { margin: 0; }

/* Accordions ──────────────────────────────────────────────────────────── */
.care-accordions {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--side-pad, 5vw) 3rem;
}

/* Size table ────────────────────────────────────────────────────────────── */
.size-table-wrap { overflow-x: auto; margin: 1rem 0; }
.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  color: #444;
}
.size-table th {
  background: #f7f2ed;
  padding: 0.6rem 1rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  color: #888;
  text-transform: uppercase;
  font-weight: 500;
}
.size-table td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid #f0e8dc;
}
.size-table tr:last-child td { border-bottom: none; }

/* Contact CTA ──────────────────────────────────────────────────────────── */
.care-contact {
  padding: 4rem var(--side-pad, 5vw);
  background: #fdfaf6;
  text-align: center;
}
.care-contact-sub {
  font-size: 0.9rem;
  color: #777;
  max-width: 480px;
  margin: 0.75rem auto 2.5rem;
  line-height: 1.7;
}
.care-contact-grid {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}
.contact-card {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid #f0e8dc;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.contact-card:hover {
  box-shadow: 0 6px 24px rgba(200,169,110,0.15);
  border-color: var(--gold, #C8A96E);
}
.contact-card-icon svg { width: 28px; height: 28px; }
.contact-card--wa .contact-card-icon { color: #25d366; }
.contact-card--ig .contact-card-icon { color: #e1306c; }
.contact-card--email .contact-card-icon { color: var(--gold, #C8A96E); }
.contact-card-title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 0.15rem;
}
.contact-card-sub {
  font-size: 0.78rem;
  color: #888;
  margin: 0;
}

/* ── Footer Policy Links ── */
.footer-policies {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.footer-policies a {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-policies a:hover {
  color: var(--gold, #C8A96E);
}

/* ════════════════════════════════════════════════════════════════════════════
   404 NOT FOUND PAGE
════════════════════════════════════════════════════════════════════════════ */
.not-found-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.not-found-inner {
  text-align: center;
  padding: 4rem var(--side-pad, 5vw);
  max-width: 600px;
  margin: 0 auto;
}
.not-found-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold, #C8A96E);
  margin: 0 0 1rem;
}
.not-found-title {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0 0 1.25rem;
}
.not-found-title em { font-style: italic; color: var(--gold, #C8A96E); }
.not-found-line {
  width: 48px;
  height: 2px;
  background: var(--gold, #C8A96E);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}
.not-found-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #777;
  line-height: 1.75;
  margin: 0 0 2rem;
}
.not-found-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.not-found-cats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 0.82rem;
}
.not-found-cats a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}
.not-found-cats a:hover { color: var(--gold, #C8A96E); }
.not-found-cats span { color: #ddd; }
