/* ══════════════════════════════════════
   SHELLICIOUS — Shared Stylesheet
   ══════════════════════════════════════ */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background-color: #FAF6EF;
  color: #2C2416;
  overflow-x: hidden;
  position: relative;
}
/* Subtle film grain across the whole site — editorial / boho feel */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: .045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .9 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}
@media (prefers-reduced-motion: reduce) {
  body::before { opacity: .025; }
}
img { display: block; width: 100%; }

/* ══════════════════════════════════════
   LIGHTBOX — Instagram grid fullscreen viewer
   ══════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(20, 16, 10, .92);
  display: flex; align-items: center; justify-content: center;
  padding: 40px; cursor: zoom-out;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
  backdrop-filter: blur(6px);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 92vw; max-height: 88vh;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  transform: scale(.94);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff;
  border: none; font-size: 1.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, transform .25s;
}
.lightbox-close:hover { background: rgba(255,255,255,.22); transform: rotate(90deg); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff;
  border: none; font-size: 1.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s;
}
.lightbox-nav:hover { background: rgba(255,255,255,.22); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
body.lightbox-locked { overflow: hidden; }
a { text-decoration: none; color: inherit; }

/* PALETTE */
:root {
  --sand:    #FAF6EF;
  --cream:   #F2E9D8;
  --gold:    #C4964A;
  --teal:    #3D9EA0;
  --teal-lt: #7FC8CA;
  --dark:    #2C2416;
  --mid:     #7A6A52;
  --white:   #FFFFFF;
  --green-wa: #25D366;
}

/* TYPOGRAPHY HELPERS */
.serif { font-family: 'Cormorant Garamond', serif; }
.caps  { letter-spacing: .18em; text-transform: uppercase; font-size: .72rem; font-weight: 500; }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 60px;
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s ease;
  border: none;
}
.btn-dark    { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #4B3B28; }
.btn-outline { background: transparent; border: 1.5px solid var(--dark); color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-teal    { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: #2F7F81; }
.btn-gold    { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #A87B38; }
.btn-wa      { background: var(--green-wa); color: var(--white); display: flex; align-items: center; justify-content: center; gap: 10px; }
.btn-wa:hover { background: #1da851; }
.btn-full    { width: 100%; text-align: center; justify-content: center; }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(250,246,239,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,150,74,.15);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--dark);
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-icon { font-size: 1.2rem; cursor: pointer; color: var(--mid); transition: color .2s; }
.nav-icon:hover { color: var(--teal); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(250,246,239,.98);
  backdrop-filter: blur(12px);
  z-index: 99;
  padding: 24px 24px 32px;
  flex-direction: column;
  gap: 0;
  border-bottom: 1px solid rgba(196,150,74,.15);
}
.mobile-menu.open { display: flex; }
.mobile-menu li { list-style: none; border-bottom: 1px solid rgba(44,36,22,.06); }
.mobile-menu li a {
  display: block;
  padding: 16px 0;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark);
}

/* TICKER */
.ticker-wrap { background: var(--dark); color: var(--white); padding: 12px 0; overflow: hidden; }
.ticker-inner {
  display: flex; white-space: nowrap;
  animation: ticker 32s linear infinite;
}
.ticker-inner span { font-size: .75rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; padding: 0 48px; }
.ticker-inner .dot { color: var(--gold); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SECTION COMMONS */
section { padding: 100px 48px; }
.section-label {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px; color: var(--teal);
}
.section-label::after { content: ''; flex: 1; max-width: 40px; height: 1px; background: var(--teal); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300; line-height: 1.15; color: var(--dark); margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--teal); }
.section-sub { font-size: 1rem; font-weight: 300; line-height: 1.75; color: var(--mid); max-width: 520px; }

/* HERO (homepage) */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  background: linear-gradient(120deg, #EDE3D0 0%, #D9EEF0 100%);
}
.hero-content { padding: 80px 60px; position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px; color: var(--teal);
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 28px; height: 1px; background: var(--teal);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 300; line-height: 1.08; color: var(--dark); margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--teal); }
.hero-sub {
  font-size: 1.05rem; font-weight: 300; line-height: 1.7;
  color: var(--mid); max-width: 440px; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-photo-wrap { position: relative; height: 100%; min-height: 100vh; overflow: hidden; perspective: 1400px; }
.hero-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  will-change: transform; transform-origin: center center;
  transition: transform .15s linear;
}
.hero-photo-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, #D9EEF0 0%, transparent 18%); z-index: 1;
}
.hero-badge {
  position: absolute; bottom: 40px; left: 24px;
  background: rgba(250,246,239,.95); border-radius: 18px;
  padding: 14px 20px; box-shadow: 0 8px 32px rgba(44,36,22,.15);
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem; z-index: 2; backdrop-filter: blur(8px);
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; animation: pulse-dot 2.5s ease infinite; }
.hero-tag {
  position: absolute; top: 100px; right: 24px;
  background: var(--gold); color: var(--white); border-radius: 12px;
  padding: 10px 18px; font-size: .78rem; font-weight: 500; letter-spacing: .08em;
  box-shadow: 0 6px 20px rgba(196,150,74,.4); z-index: 2;
  animation: bob 3.5s ease-in-out infinite; transform-origin: center bottom;
}

/* PRODUCTS GRID (homepage) */
.products { background: var(--white); }
.products-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 24px; margin-bottom: 60px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  border-radius: 20px; overflow: hidden; background: var(--sand);
  cursor: pointer; transition: transform .3s ease, box-shadow .3s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(44,36,22,.12); }
.product-img { aspect-ratio: 4/5; position: relative; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.product-card:hover .product-img img { transform: scale(1.12); filter: saturate(1.08); }
.product-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(44,36,22,.18) 100%);
  opacity: 0; transition: opacity .4s ease; pointer-events: none;
}
.product-card:hover .product-img::after { opacity: 1; }
.product-img-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center; font-size: 4rem;
}
.product-info { padding: 20px 22px 24px; }
.product-cat { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; font-weight: 500; }
.product-name { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 400; color: var(--dark); margin-bottom: 8px; }
.product-price { font-size: .9rem; font-weight: 500; color: var(--gold); }
.product-badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(250,246,239,.92); border-radius: 8px; padding: 5px 12px;
  font-size: .68rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--teal); z-index: 2; backdrop-filter: blur(4px);
}
.product-badge-dark {
  position: absolute; top: 16px; left: 16px;
  background: rgba(44,36,22,.75); border-radius: 8px; padding: 5px 12px;
  font-size: .68rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--white); z-index: 2; backdrop-filter: blur(4px);
}

/* ══════════════════════════════════════
   PRODUCT DETAIL PAGE
   ══════════════════════════════════════ */
.product-detail-page {
  padding-top: 80px;
}

/* Breadcrumb */
.breadcrumb {
  padding: 20px 48px;
  font-size: .78rem;
  color: var(--mid);
  background: var(--sand);
  border-bottom: 1px solid rgba(196,150,74,.1);
}
.breadcrumb a { color: var(--mid); transition: color .2s; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { margin: 0 8px; color: var(--gold); }

/* Product layout */
.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 60px 60px 100px;
  background: var(--white);
  max-width: 1400px;
  margin: 0 auto;
}

.product-gallery {
  position: sticky;
  top: 100px;
}
.product-gallery-main {
  aspect-ratio: 4/5;
  border-radius: 28px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 24px 64px rgba(44,36,22,.1);
}
.product-gallery-main img {
  width: 100%; height: 100%; object-fit: cover;
}
.product-gallery-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem; background: linear-gradient(145deg, #C5E8E9, #A8D8DA);
}
.product-gallery-badge {
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cream); border-radius: 12px; padding: 10px 18px;
  font-size: .8rem; font-weight: 500; color: var(--mid);
}

/* Product info */
.product-detail-info { padding-top: 8px; }
.product-detail-cat {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 10px; font-weight: 500;
}
.product-detail-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300; line-height: 1.1; color: var(--dark); margin-bottom: 16px;
}
.product-detail-price {
  font-size: 1.4rem; font-weight: 500; color: var(--gold); margin-bottom: 28px;
}
.product-detail-desc {
  font-size: .95rem; font-weight: 300; line-height: 1.8;
  color: var(--mid); margin-bottom: 32px; border-bottom: 1px solid var(--cream); padding-bottom: 32px;
}
.product-features {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px;
}
.product-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem; font-weight: 400; color: var(--dark);
}
.feature-icon { font-size: 1rem; flex-shrink: 0; }

/* Personalise form */
.personalise-block {
  background: var(--cream);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 28px;
}
.personalise-block h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 400; color: var(--dark); margin-bottom: 6px;
}
.personalise-block p {
  font-size: .83rem; font-weight: 300; color: var(--mid); margin-bottom: 18px; line-height: 1.6;
}
.personalise-block label {
  display: block; font-size: .78rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--dark); margin-bottom: 8px;
}
.personalise-block input[type="text"],
.personalise-block select {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid rgba(44,36,22,.15); border-radius: 12px;
  background: var(--white); font-family: 'Jost', sans-serif;
  font-size: .9rem; color: var(--dark); outline: none;
  transition: border-color .2s;
  margin-bottom: 14px;
}
.personalise-block input[type="text"]:focus,
.personalise-block select:focus { border-color: var(--teal); }
.char-hint { font-size: .75rem; color: var(--mid); margin-top: -10px; margin-bottom: 14px; }

/* Order actions */
.order-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.order-note {
  font-size: .78rem; font-weight: 300; color: var(--mid); line-height: 1.6;
  text-align: center; padding-top: 4px;
}
.order-or {
  text-align: center; font-size: .75rem; color: var(--mid);
  letter-spacing: .1em; text-transform: uppercase; position: relative;
}
.order-or::before, .order-or::after {
  content: ''; position: absolute; top: 50%;
  width: 35%; height: 1px; background: rgba(44,36,22,.12);
}
.order-or::before { left: 0; }
.order-or::after { right: 0; }

/* Shipping strip */
.shipping-strip {
  display: flex; gap: 0; border-top: 1px solid var(--cream); padding-top: 24px; margin-top: 8px;
  flex-wrap: wrap;
}
.ship-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: var(--mid); flex: 1; min-width: 140px; padding: 8px 0;
}
.ship-icon { font-size: 1rem; flex-shrink: 0; }

/* RELATED PRODUCTS */
.related-section { background: var(--sand); padding: 80px 48px; }
.related-section .section-title { margin-bottom: 40px; }
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px;
}

/* PERSONALISE BANNER */
.personalise {
  background: linear-gradient(130deg, #2C2416 0%, #4B3B28 100%);
  color: var(--white); text-align: center; padding: 100px 48px;
  position: relative; overflow: hidden;
}
.personalise::before {
  content: ''; position: absolute; top: -100px; left: 50%;
  transform: translateX(-50%); width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(61,158,160,.18) 0%, transparent 65%);
}
.personalise-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.personalise h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 300; line-height: 1.1; margin-bottom: 24px;
}
.personalise h2 em { font-style: italic; color: var(--teal-lt); }
.personalise p { font-size: 1rem; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,.72); margin-bottom: 44px; }
.personalise-options { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 44px; }
.p-option {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px; padding: 20px 28px;
  display: flex; align-items: center; gap: 12px;
  font-size: .88rem; font-weight: 400;
  transition: background .2s, transform .25s cubic-bezier(.34,1.56,.64,1);
  cursor: pointer;
}
.p-option:hover { background: rgba(255,255,255,.16); transform: translateY(-3px); }
.p-option-icon { font-size: 1.4rem; display: inline-block; transition: transform .3s cubic-bezier(.34,1.56,.64,1); }
.p-option:hover .p-option-icon { transform: scale(1.25) rotate(-8deg); }

/* HOW IT WORKS */
.how { background: var(--cream); }
.how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; margin-top: 60px; }
.how-step {
  text-align: center; padding: 40px 28px; background: var(--white);
  border-radius: 24px; transition: transform .25s;
}
.how-step:hover { transform: translateY(-4px); }
.step-num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--teal);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 400;
}
.step-icon {
  font-size: 1.85rem;
  width: 64px; height: 64px; border-radius: 20px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
  border: 1px solid rgba(61,158,160,.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 18px rgba(61,158,160,.1);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.how-step:hover .step-icon {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 28px rgba(61,158,160,.22);
}
.how-step h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; margin-bottom: 10px; color: var(--dark); }
.how-step p { font-size: .9rem; font-weight: 300; color: var(--mid); line-height: 1.65; }

/* ABOUT */
.about {
  background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; padding: 120px 60px;
}
.about-visual { position: relative; }
.about-img-main {
  width: 100%; aspect-ratio: 3/4;
  border-radius: 200px 200px 40px 40px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(44,36,22,.16);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-img-float {
  position: absolute; bottom: -28px; right: -28px;
  width: 160px; aspect-ratio: 1; border-radius: 24px; background: var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; box-shadow: 0 12px 36px rgba(196,150,74,.35);
  animation: float-badge 4s ease-in-out infinite;
}
.about-img-float span:first-child { font-size: 1.8rem; }
.about-img-float span:last-child { font-size: .72rem; font-weight: 500; letter-spacing: .1em; color: var(--white); text-transform: uppercase; }
.about-content .section-sub { margin-bottom: 32px; }
.about-quote {
  border-left: 3px solid var(--teal); padding: 16px 24px; margin: 32px 0;
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-style: italic;
  color: var(--dark); line-height: 1.5;
}
.about-stats { display: flex; gap: 40px; margin-top: 40px; }
.stat { border-top: 2px solid var(--cream); padding-top: 20px; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 400; color: var(--teal); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mid); }

/* INSTAGRAM GRID */
.instagram { background: var(--sand); text-align: center; }
.instagram .section-title { margin-bottom: 12px; }
.instagram .section-sub { margin: 0 auto 48px; text-align: center; }
.ig-handle { display: inline-flex; align-items: center; gap: 8px; color: var(--teal); font-size: .88rem; font-weight: 500; letter-spacing: .1em; margin-bottom: 48px; text-transform: uppercase; }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; max-width: 1100px; margin: 0 auto; }
.ig-cell { aspect-ratio: 1; border-radius: 12px; overflow: hidden; cursor: pointer; transition: opacity .25s, transform .25s; position: relative; }
.ig-cell img { width: 100%; height: 100%; object-fit: cover; }
.ig-cell:hover { opacity: .88; transform: scale(1.03); }
.ig-cell::after { content: '📸'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; background: rgba(44,36,22,.35); opacity: 0; transition: opacity .25s; }
.ig-cell:hover::after { opacity: 1; }

/* NEWSLETTER */
.newsletter { background: linear-gradient(135deg, #3D9EA0 0%, #2F7F81 100%); text-align: center; padding: 100px 48px; color: var(--white); }
.newsletter h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; margin-bottom: 16px; }
.newsletter p { font-size: 1rem; font-weight: 300; line-height: 1.7; opacity: .82; margin-bottom: 44px; max-width: 460px; margin-left: auto; margin-right: auto; }
.newsletter-form { display: flex; max-width: 480px; margin: 0 auto; border-radius: 60px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,.15); }
.newsletter-form input { flex: 1; padding: 18px 28px; border: none; background: var(--white); color: var(--dark); font-family: 'Jost', sans-serif; font-size: .9rem; outline: none; }
.newsletter-form input::placeholder { color: #A09080; }
.newsletter-form button { padding: 18px 32px; background: var(--dark); color: var(--white); border: none; font-family: 'Jost', sans-serif; font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; transition: background .2s; }
.newsletter-form button:hover { background: #4B3B28; }
.newsletter-note { margin-top: 18px; font-size: .78rem; opacity: .6; letter-spacing: .06em; }

/* FAQ PAGE */
.faq-page { padding-top: 80px; }
.faq-hero { background: linear-gradient(120deg, #EDE3D0 0%, #D9EEF0 100%); padding: 80px 60px; text-align: center; }
.faq-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 300; margin-bottom: 16px; }
.faq-hero h1 em { font-style: italic; color: var(--teal); }
.faq-hero p { font-size: 1rem; color: var(--mid); font-weight: 300; max-width: 480px; margin: 0 auto; line-height: 1.75; }
.faq-body { max-width: 800px; margin: 0 auto; padding: 80px 48px; }
.faq-group { margin-bottom: 60px; }
.faq-group-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400;
  color: var(--dark); margin-bottom: 28px; padding-bottom: 14px;
  border-bottom: 2px solid var(--cream);
}
.faq-item { border-bottom: 1px solid rgba(44,36,22,.08); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: 'Jost', sans-serif; font-size: .95rem; font-weight: 500; color: var(--dark);
}
.faq-chevron { font-size: .8rem; color: var(--teal); transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 0 20px; font-size: .9rem; font-weight: 300; color: var(--mid); line-height: 1.8; }
.faq-a a { color: var(--teal); text-decoration: underline; }
.faq-item.open .faq-a { display: block; }

/* LEGAL PAGES (Privacy / Terms) */
.legal-body { max-width: 760px; }
.legal-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 400; color: var(--dark);
  margin: 44px 0 14px;
}
.legal-body p, .legal-body ul, .legal-body ol {
  font-size: .92rem; font-weight: 300; color: var(--mid);
  line-height: 1.85; margin-bottom: 14px;
}
.legal-body ul, .legal-body ol { padding-left: 22px; }
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--teal); text-decoration: underline; }
.legal-body strong { color: var(--dark); font-weight: 500; }
.legal-body em { font-style: italic; }
.legal-meta { font-size: .8rem !important; color: var(--mid); opacity: .7; margin-bottom: 32px !important; }

/* FOOTER */
footer { background: var(--dark); color: rgba(255,255,255,.55); padding: 60px 48px 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 36px; }
.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 400; color: var(--white); margin-bottom: 14px; }
.footer-brand-name span { color: var(--gold); }
.footer-bio { font-size: .88rem; font-weight: 300; line-height: 1.75; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 14px; }
.social-btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); display: flex; align-items: center; justify-content: center; font-size: .95rem; color: rgba(255,255,255,.55); transition: all .2s; cursor: pointer; }
.social-btn:hover { border-color: var(--teal); color: var(--teal); }
.footer-col h5 { font-size: .75rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .88rem; font-weight: 300; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul li a:hover { color: var(--teal-lt); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: .78rem; }
.footer-bottom a { color: rgba(255,255,255,.38); }
.footer-bottom a:hover { color: var(--teal-lt); }

/* SUCCESS TOAST */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--dark); color: var(--white); border-radius: 14px;
  padding: 16px 28px; font-size: .88rem; font-weight: 400;
  box-shadow: 0 12px 40px rgba(0,0,0,.25); z-index: 999;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ══════════════════════════════════════
   SCROLL REVEAL & ANIMATIONS
   ══════════════════════════════════════ */

/* Single element fade-up */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Grid stagger — children fade in/out in sequence via JS-set transition-delay */
.stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.stagger.visible > * { opacity: 1; transform: none; }

/* Floating / pulsing keyframes */
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(61,158,160,.5); }
  60%       { box-shadow: 0 0 0 7px rgba(61,158,160,0); }
}
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-5px) rotate(-1deg); }
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > * {
    opacity: 1 !important; transform: none !important;
    animation: none !important; transition: none !important;
  }
  .badge-dot, .about-img-float, .hero-tag { animation: none !important; }
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 960px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 48px 24px 40px; }
  .hero-photo-wrap { min-height: 60vw; }

  section { padding: 72px 24px; }

  .product-detail { grid-template-columns: 1fr; gap: 40px; padding: 40px 24px 80px; }
  .product-gallery { position: static; }

  .about { grid-template-columns: 1fr; padding: 72px 24px; gap: 48px; }
  .about-visual { max-width: 340px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }

  .faq-body { padding: 60px 24px; }
  .faq-hero { padding: 60px 24px; }
  .breadcrumb { padding: 16px 24px; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 2.6rem; }
  .hero-content { padding: 40px 20px 32px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; border-radius: 20px; }
  .newsletter-form button { border-radius: 0 0 20px 20px; }
  .about-stats { flex-wrap: wrap; gap: 24px; }
  section { padding: 60px 20px; }
  .shipping-strip { flex-direction: column; }
  .related-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
}
