/* ============================================================
   SMRK Beauty — luxury beauty & skincare
   Palette from logo: champagne gold · soft gold · black · ivory ·
   warm beige · white.  Hand-written CSS. No build step.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --charcoal: #211d17;       /* warm near-black (logo black) — dark sections */
  --charcoal-deep: #17140f;
  --rose: #b8933f;           /* primary — champagne gold */
  --rose-deep: #9a7830;      /* deeper gold — hover */
  --rose-soft: #d9bd85;      /* soft gold — accents on dark */
  --rose-mist: #f7f0e1;      /* pale gold wash */
  --blush: #e8dabf;          /* warm beige */
  --champagne: #e2c48c;
  --cream: #fdfaf2;          /* ivory */
  --silk: #f8f4ea;           /* warm ivory — page background */
  --ink: #201c15;
  --ink-soft: #6a6052;
  --hairline: rgba(33, 29, 23, 0.12);
  --hairline-light: rgba(255, 255, 255, 0.1);

  --font-display: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1280px;
  --margin: clamp(20px, 5vw, 64px);
  --section: clamp(64px, 11vw, 120px);
  --gutter: 24px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gold-grad: linear-gradient(135deg, #d8b878 0%, #b8933f 55%, #9a7830 100%);
  --header-h: 116px;
}
@media (max-width: 680px) { :root { --header-h: 98px; } }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

/* Poppins consistency — upright display type (no italics) */
.display, .headline, .headline-sm, .hero__title, .promo__pct, .cat__body h3,
.feature__num, .step h3, .quote__mark, .quote p, .product__name, .product__price,
.reviews__rate strong, .cart__head h3, .cart-item__line, .cart__subtotal strong,
.empty-state h2, .prose h2, .info-card h3, .page-hero h1, .mobile-menu__panel nav a,
.pcard__name, .summary__title, .summary__total, .cstep__title, .cosum__title {
  font-style: normal !important;
  font-family: var(--font-display);
}
.display, .hero__title, .page-hero h1 { letter-spacing: -0.02em; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--silk); color: var(--ink);
  font-family: var(--font-body); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; }
::selection { background: var(--rose-soft); color: #fff; }

/* ---------- Type helpers ---------- */
.display { font-family: var(--font-display); font-weight: 700; font-style: italic; letter-spacing: -0.02em;
  line-height: 1.05; font-size: clamp(2.25rem, 5.5vw, 3rem); }
.headline { font-family: var(--font-display); font-weight: 600; font-style: italic; line-height: 1.2;
  font-size: clamp(1.75rem, 3.6vw, 2rem); }
.headline-sm { font-family: var(--font-display); font-weight: 600; font-style: italic; line-height: 1.3; font-size: 1.5rem; }
.eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; }
.muted { color: var(--ink-soft); }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--margin); }
.section { padding-block: var(--section); }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 34px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .icon { width: 18px; height: 18px; transition: transform 0.4s var(--ease); }
.btn:hover .icon { transform: translateX(4px); }
.btn--rose { background: var(--rose); color: var(--charcoal); }
.btn--rose:hover { background: var(--rose-deep); color: #fff; box-shadow: 0 18px 40px -18px rgba(154, 120, 48, 0.75); }
.btn--cream { background: var(--cream); color: var(--charcoal); }
.btn--cream:hover { background: var(--rose); color: var(--charcoal); box-shadow: 0 18px 40px -18px rgba(154, 120, 48, 0.6); }
.btn--dark { background: var(--charcoal); color: #fff; }
.btn--dark:hover { background: var(--rose); color: var(--charcoal); }

/* ---------- Icons ---------- */
.icon { width: 22px; height: 22px; stroke: currentColor; stroke-width: 1.5; fill: none;
  stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.icon--fill { fill: currentColor; stroke: none; }

/* ============================================================
   Header — top utility bar + solid white navigation
   ============================================================ */
body { padding-top: var(--header-h); }
[id] { scroll-margin-top: calc(var(--header-h) + 16px); }
.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 60; }

/* Top utility bar */
.topbar { background: var(--charcoal); color: rgba(255, 253, 245, 0.85); font-size: 0.76rem;
  overflow: hidden; transition: max-height 0.45s var(--ease), opacity 0.3s var(--ease); max-height: 60px; }
.topbar__inner { max-width: var(--container); margin-inline: auto; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 8px var(--margin); }
.topbar__msg { margin: 0; letter-spacing: 0.02em; }
.topbar__msg strong { color: var(--rose-soft); font-weight: 700; }
.topbar__links { display: flex; align-items: center; gap: 22px; }
.topbar__links a { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; letter-spacing: 0.03em;
  color: rgba(255, 253, 245, 0.82); transition: color 0.3s var(--ease); }
.topbar__links a:hover { color: var(--rose-soft); }
.topbar__links .icon { width: 15px; height: 15px; }
.site-header.is-scrolled .topbar { max-height: 0; opacity: 0; }

/* Main nav (always solid white) */
.nav { background: #fff; border-bottom: 1px solid var(--hairline); transition: box-shadow 0.4s var(--ease); }
.nav__inner { max-width: var(--container); margin-inline: auto; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 10px var(--margin); transition: padding 0.4s var(--ease); }
.brand { display: inline-flex; align-items: center; white-space: nowrap; }
.brand__logo { height: 58px; width: auto; display: block; transition: height 0.4s var(--ease); }
.brand__logo--lg { height: 68px; }
.site-header.is-scrolled .nav { box-shadow: 0 10px 30px -20px rgba(33, 29, 23, 0.55); }
.site-header.is-scrolled .brand__logo { height: 48px; }
@media (max-width: 520px) { .brand__logo { height: 46px; } }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { position: relative; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); padding-bottom: 4px; transition: color 0.3s var(--ease); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px;
  background: var(--rose); transform: scaleX(0); transform-origin: right; transition: transform 0.35s var(--ease); }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__links a.is-active, .nav__links a:hover { color: var(--rose-deep); }
.nav__actions { display: flex; align-items: center; gap: 16px; }
.nav__icon { color: var(--ink); display: inline-flex; position: relative; transition: color 0.3s var(--ease); }
.nav__icon:hover { color: var(--rose); }
.nav__cart .cart-count { position: absolute; top: -8px; right: -9px; min-width: 17px; height: 17px; padding: 0 4px;
  border-radius: 999px; background: var(--rose); color: #fff; font-size: 0.62rem; font-weight: 700; line-height: 17px; text-align: center; }
.nav__contact { background: var(--charcoal); color: #fff; padding: 9px 22px; font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; transition: background-color 0.3s var(--ease), color 0.3s var(--ease); }
.nav__contact:hover { background: var(--rose); color: var(--charcoal); }
.nav__toggle { display: none; color: var(--ink); }

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__contact { display: none; }
  .nav__toggle { display: inline-flex; }
}
@media (max-width: 680px) {
  .topbar__msg { display: none; }
  .topbar__inner { justify-content: center; }
}

/* ---------- Mobile menu ---------- */
.mobile-menu { position: fixed; inset: 0; z-index: 80; visibility: hidden; pointer-events: none; }
.mobile-menu.is-open { visibility: visible; pointer-events: auto; }
.mobile-menu__scrim { position: absolute; inset: 0; background: rgba(20, 26, 28, 0.5); opacity: 0; transition: opacity 0.4s var(--ease); }
.mobile-menu.is-open .mobile-menu__scrim { opacity: 1; }
.mobile-menu__panel { position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 360px); background: var(--charcoal);
  color: var(--cream); padding: 26px 30px 40px; transform: translateX(100%); transition: transform 0.45s var(--ease);
  display: flex; flex-direction: column; }
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.mobile-menu__head .brand { color: #fff; }
.mobile-menu__panel nav a { display: block; padding: 15px 0; border-bottom: 1px solid var(--hairline-light);
  font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--cream); }
.mobile-menu__panel nav a:hover { color: var(--rose-soft); }
.mobile-menu__sub { display: flex; flex-direction: column; gap: 4px; padding-top: 18px; margin-top: 6px; }
.mobile-menu__sub a { color: rgba(255,253,245,0.72); font-size: 0.92rem; font-weight: 600; letter-spacing: 0.03em; padding: 7px 0; }
.mobile-menu__sub a:hover { color: var(--rose-soft); }
.mobile-menu__contact { margin-top: auto; padding-top: 26px; color: rgba(255,253,245,0.6); font-size: 0.9rem; }
.mobile-menu__contact a:hover { color: var(--rose-soft); }
.mobile-menu__close { color: var(--cream); display: inline-flex; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; min-height: calc(100vh - var(--header-h)); display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.hero__bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(28,24,18,0.66) 0%, rgba(28,24,18,0.36) 55%, rgba(28,24,18,0.12) 100%); }
.hero__inner { position: relative; z-index: 1; max-width: var(--container); margin-inline: auto; width: 100%;
  padding-inline: var(--margin); padding-block: 40px; }
.hero__copy { max-width: 640px; }
.hero__copy .eyebrow { color: var(--rose-soft); display: block; margin-bottom: 18px; }
.hero__title { font-family: var(--font-display); font-weight: 700; font-style: normal; letter-spacing: 0.005em;
  line-height: 1.03; font-size: clamp(2.6rem, 6vw, 4.3rem); color: #fff; }
.hero h1 { color: #fff; margin-bottom: 24px; text-shadow: 0 2px 34px rgba(0,0,0,0.32); }
.hero p { color: rgba(255,253,245,0.9); font-size: 1.125rem; max-width: 32rem; margin: 0 0 38px; }
.hero__scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 6px; color: #fff; opacity: 0.6; }
.hero__scroll span { font-size: 0.6rem; letter-spacing: 0.2em; }
.hero__scroll .icon { width: 20px; height: 20px; animation: bob 1.8s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---------- Hero slider ---------- */
.hero__track { position: absolute; inset: 0; z-index: 0; }
.hero__slide { position: absolute; inset: 0; display: flex; align-items: center;
  opacity: 0; visibility: hidden; transition: opacity 1s var(--ease), visibility 1s var(--ease); }
.hero__slide.is-active { opacity: 1; visibility: visible; }
.hero__slide .hero__inner { position: relative; z-index: 1; }
.hero__slide.is-active .hero__bg { animation: hero-zoom 7.5s var(--ease) both; }
@keyframes hero-zoom { from { transform: scale(1.08); } to { transform: scale(1); } }
/* Content is visible by default (fail-safe); the active slide animates it in. */
.hero__slide .hero__copy > * { opacity: 1; }
.hero__slide.is-active .hero__copy > * { animation: hero-rise 0.7s var(--ease) both; }
.hero__slide.is-active .hero__copy .eyebrow { animation-delay: 0.05s; }
.hero__slide.is-active .hero__copy .hero__title { animation-delay: 0.14s; }
.hero__slide.is-active .hero__copy p { animation-delay: 0.24s; }
.hero__slide.is-active .hero__copy .btn { animation-delay: 0.34s; }
@keyframes hero-rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.hero__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 46px; height: 46px;
  border-radius: 999px; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.35); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: background-color 0.3s var(--ease); }
.hero__nav:hover { background: rgba(255,255,255,0.3); }
.hero__nav .icon { width: 22px; height: 22px; }
.hero__nav--prev { left: 22px; }
.hero__nav--next { right: 22px; }
.hero__dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 10px; }
.hero__dot { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,255,255,0.5); cursor: pointer;
  transition: width 0.35s var(--ease), background-color 0.35s var(--ease); }
.hero__dot.is-active { width: 28px; background: #fff; }
@media (max-width: 640px) { .hero__nav { display: none; } }

/* ============================================================
   Promo tiers
   ============================================================ */
.promo { background: rgba(247, 240, 225, 0.6); }
.promo h2 { margin-bottom: 56px; }
.promo__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); }
.promo__card { background: #fff; border: 1px solid rgba(184,147,63,0.22); padding: 48px 24px; text-align: center;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.promo__card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -40px rgba(154,120,48,0.45); }
.promo__pct { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 3rem; color: var(--rose); margin-bottom: 6px; }
.promo__when { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 18px; }
.promo__line { width: 48px; height: 1px; background: rgba(184,147,63,0.35); margin: 0 auto; transition: width 0.5s var(--ease); }
.promo__card:hover .promo__line { width: 80px; }
@media (max-width: 760px) { .promo__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }

/* ============================================================
   Category tiles (Hers / His)
   ============================================================ */
.shop__title { margin-bottom: clamp(36px, 5vw, 56px); }
.cats { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gutter); }
.cats.cats--3 { grid-template-columns: repeat(3, 1fr); }
.cat { position: relative; display: block; overflow: hidden; aspect-ratio: 1.1 / 1; }
.cat img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.cat:hover img { transform: scale(1.05); }
.cat::after { content: ""; position: absolute; inset: 0; background: rgba(30,41,59,0.12); transition: background-color 0.4s var(--ease); }
.cat:hover::after { background: rgba(30,41,59,0.24); }
.cat__body { position: absolute; left: 40px; bottom: 40px; z-index: 2; }
.cat__body h3 { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: clamp(2rem, 4vw, 3rem);
  color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,0.4); }
.cat__link { display: inline-flex; align-items: center; gap: 6px; color: #fff; font-size: 0.82rem; font-weight: 600;
  margin-top: 8px; opacity: 0; transform: translateY(12px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.cat:hover .cat__link { opacity: 1; transform: translateY(0); }
.cat__link .icon { width: 18px; height: 18px; }
@media (max-width: 980px) { .cats.cats--3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) { .cats { grid-template-columns: 1fr; } .cat__body { left: 28px; bottom: 28px; } }
@media (max-width: 640px) { .cats.cats--3 { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }

/* ============================================================
   40+ feature band
   ============================================================ */
.feature { background: var(--charcoal); color: var(--cream); }
.feature__inner { display: flex; align-items: center; gap: clamp(32px, 6vw, 64px); }
.feature__stat { flex: 0 0 32%; text-align: left; }
.feature__num { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: clamp(4.5rem, 11vw, 7rem);
  line-height: 0.9; color: var(--rose-soft); margin-bottom: 8px; }
.feature__label { font-size: 1.1rem; font-weight: 600; letter-spacing: 0.18em; color: rgba(255,253,245,0.55); }
.feature__body { flex: 1; }
.feature__body h2 { margin-bottom: 20px; }
.feature__body p { color: rgba(255,253,245,0.7); max-width: 36rem; margin: 0 0 34px; font-size: 1.05rem; }
@media (max-width: 760px) { .feature__inner { flex-direction: column; text-align: center; }
  .feature__stat { text-align: center; } }

/* ============================================================
   Jewellery feature
   ============================================================ */
.jewel { position: relative; overflow: hidden; }
.jewel__bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.jewel__bg::after { content: ""; position: absolute; inset: 0; background: rgba(255,255,255,0.62); }
.jewel__inner { position: relative; z-index: 1; text-align: center; max-width: 680px; margin-inline: auto; }
.jewel .eyebrow { color: var(--rose); display: block; margin-bottom: 16px; }
.jewel h2 { color: var(--charcoal); margin-bottom: 20px; }
.jewel p { color: var(--ink-soft); margin: 0 auto 36px; font-size: 1.05rem; }

/* ============================================================
   3 steps
   ============================================================ */
.steps h2 { margin-bottom: 64px; }
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; position: relative; }
.steps__grid::before { content: ""; position: absolute; top: 48px; left: 16%; right: 16%; height: 1px;
  background: var(--hairline); z-index: 0; }
.step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.step__circle { width: 96px; height: 96px; border-radius: 999px; background: #fff; display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px; box-shadow: 0 14px 30px -18px rgba(0,0,0,0.3); transition: transform 0.4s var(--ease); }
.step:hover .step__circle { transform: scale(1.08); }
.step__circle .icon { width: 34px; height: 34px; color: var(--rose); }
.step h3 { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; margin-bottom: 12px; }
.step p { color: var(--ink-soft); max-width: 240px; font-size: 0.9rem; margin: 0; }
@media (max-width: 760px) { .steps__grid { grid-template-columns: 1fr; gap: 40px; } .steps__grid::before { display: none; } }

/* ============================================================
   Testimonial
   ============================================================ */
.quote { background: var(--charcoal); text-align: center; }
.quote__mark { font-family: var(--font-display); font-style: italic; font-size: 5rem; line-height: 0.5; color: var(--rose);
  display: block; margin-bottom: 28px; }
.quote blockquote { margin: 0; max-width: 48rem; margin-inline: auto; }
.quote p { font-family: var(--font-display); font-style: italic; font-weight: 600; color: var(--cream);
  font-size: clamp(1.6rem, 3.4vw, 2rem); line-height: 1.3; margin: 0; }
.quote footer { margin-top: 28px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose-soft); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--charcoal); color: var(--cream); padding-top: var(--section); padding-bottom: 32px;
  border-top: 1px solid var(--hairline-light); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
.footer__brand .brand { color: #fff; display: inline-block; margin-bottom: 22px; }
.footer__brand p { color: rgba(255,253,245,0.6); font-size: 0.9rem; display: flex; align-items: center; gap: 10px; margin: 8px 0; }
.footer__brand .icon { width: 16px; height: 16px; color: var(--rose-soft); }
.footer__brand a:hover { color: var(--rose-soft); }
.footer__col h4 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); margin-bottom: 28px; }
.footer__links { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.footer__links a, .footer__col li a { color: rgba(255,253,245,0.8); font-size: 0.9rem; }
.footer__links a:hover { color: var(--rose-soft); }
.footer__social { display: flex; gap: 14px; }
.footer__social a { width: 46px; height: 46px; border-radius: 999px; border: 1px solid var(--hairline-light);
  display: inline-flex; align-items: center; justify-content: center; color: var(--cream); transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease); }
.footer__social a:hover { background: var(--rose); border-color: var(--rose); }
.footer__social .icon { width: 20px; height: 20px; }
.footer__bottom { border-top: 1px solid var(--hairline-light); margin-top: 56px; padding-top: 28px;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px;
  color: rgba(255,253,245,0.45); font-size: 0.82rem; }
.footer__bottom a:hover { color: var(--rose-soft); }
.footer__bottom-links { display: flex; gap: 28px; }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; gap: 44px; } }

/* ============================================================
   WhatsApp float
   ============================================================ */
.wa-float { position: fixed; right: 24px; bottom: 24px; z-index: 60; width: 56px; height: 56px; border-radius: 999px;
  background: #25d366; color: #fff; display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 36px -12px rgba(37,211,102,0.6); transition: transform 0.3s var(--ease); }
.wa-float:hover { transform: scale(1.1); }
.wa-float .icon { width: 30px; height: 30px; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Gentle stagger for items within a grid */
.promo__grid .reveal:nth-child(2), .cats .reveal:nth-child(2), .steps__grid .reveal:nth-child(2),
.product-grid .reveal:nth-child(2), .review-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.promo__grid .reveal:nth-child(3), .steps__grid .reveal:nth-child(3),
.product-grid .reveal:nth-child(3), .review-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.review-grid .reveal:nth-child(4) { transition-delay: 0.1s; }
.review-grid .reveal:nth-child(5) { transition-delay: 0.2s; }
.review-grid .reveal:nth-child(6) { transition-delay: 0.3s; }

/* Hero copy: children rise in sequence once the block reveals */
.hero__copy.is-visible > * { animation: rise-in 0.9s var(--ease) both; }
.hero__copy.is-visible .eyebrow { animation-delay: 0.05s; }
.hero__copy.is-visible h1 { animation-delay: 0.18s; }
.hero__copy.is-visible p { animation-delay: 0.32s; }
.hero__copy.is-visible .btn { animation-delay: 0.46s; }
@keyframes rise-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-delay: 0s !important; transition-duration: 0.001ms !important; transition-delay: 0s !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__copy.is-visible > * { animation: none; }
  .hero__scroll .icon { animation: none; }
  .live-dot { animation: none; }
}

/* ============================================================
   Shared helpers — section heads, eyebrow, stars
   ============================================================ */
.eyebrow--gold { color: var(--rose); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.section-head .eyebrow { display: block; margin-bottom: 12px; }
.live-visitors { font-size: 0.82rem; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 8px; }
.live-visitors strong { color: var(--ink); }
.live-dot { width: 9px; height: 9px; border-radius: 999px; background: #2ecc71; box-shadow: 0 0 0 0 rgba(46,204,113,0.6);
  animation: live-pulse 2s infinite; }
@keyframes live-pulse { 0% { box-shadow: 0 0 0 0 rgba(46,204,113,0.5); } 70% { box-shadow: 0 0 0 8px rgba(46,204,113,0); } 100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); } }

.stars { position: relative; display: inline-block; width: 5.6em; height: 1em; font-size: 1rem; vertical-align: middle; }
.stars::before { content: "★★★★★"; letter-spacing: 0.08em; color: #e3d8c2; position: absolute; inset: 0; }
.stars > span { position: absolute; inset: 0; overflow: hidden; white-space: nowrap; width: var(--rating, 100%); }
.stars > span::before { content: "★★★★★"; letter-spacing: 0.08em; color: var(--rose); }
.stars--sm { font-size: 0.82rem; }

/* ============================================================
   Best Sellers — product cards
   ============================================================ */
.bestsellers { background: var(--rose-mist); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.product { background: #fff; border: 1px solid rgba(184,147,63,0.16); display: flex; flex-direction: column; overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.product:hover { transform: translateY(-8px); box-shadow: 0 40px 70px -46px rgba(33,29,23,0.5); }
.product__media { position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; background: #f4efe6; }
.product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.product:hover .product__media img { transform: scale(1.06); }
.product__badge { position: absolute; top: 14px; left: 14px; background: var(--charcoal); color: var(--rose-soft);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 12px; }
.product__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.product__cat { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose-deep); margin-bottom: 8px; }
.product__name { font-family: var(--font-display); font-style: italic; font-size: 1.35rem; margin-bottom: 10px; }
.product .stars { margin-bottom: 12px; }
.product__desc { color: var(--ink-soft); font-size: 0.9rem; margin: 0 0 22px; }
.product__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product__price { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 1.5rem; color: var(--ink); }
.product__add { padding: 12px 20px; font-size: 0.74rem; }

/* ============================================================
   Google Reviews
   ============================================================ */
.reviews { background: var(--silk); }
.reviews__head { text-align: center; margin-bottom: 52px; }
.reviews__badge { display: inline-flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--hairline);
  padding: 14px 26px; border-radius: 999px; box-shadow: 0 20px 44px -34px rgba(33,29,23,0.5); margin-bottom: 26px; }
.g-logo { width: 30px; height: 30px; flex-shrink: 0; }
.reviews__rate { display: flex; align-items: center; gap: 10px; }
.reviews__rate strong { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--ink); }
.reviews__count { margin: 2px 0 0; font-size: 0.76rem; color: var(--ink-soft); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: #fff; border: 1px solid var(--hairline); padding: 26px 26px 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.review:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -44px rgba(33,29,23,0.5); }
.review__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review__avatar { width: 42px; height: 42px; border-radius: 999px; background: var(--c, var(--rose)); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.05rem; flex-shrink: 0; }
.review__name { margin: 0; font-weight: 700; font-size: 0.92rem; }
.review__meta { margin: 1px 0 0; font-size: 0.74rem; color: var(--ink-soft); }
.review__head .g-mark { width: 20px; height: 20px; margin-left: auto; flex-shrink: 0; }
.review .stars { margin-bottom: 12px; }
.review__text { margin: 0; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.6; }

/* ============================================================
   Instagram feed
   ============================================================ */
.insta__head { margin-bottom: 44px; }
.insta__head .eyebrow { display: block; margin-bottom: 12px; }
.insta__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.insta__item { position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; }
.insta__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.insta__item:hover img { transform: scale(1.08); }
.insta__ico { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff;
  background: rgba(33,29,23,0.35); opacity: 0; transition: opacity 0.35s var(--ease); }
.insta__item:hover .insta__ico { opacity: 1; }
.insta__ico .icon { width: 26px; height: 26px; }
@media (max-width: 760px) { .insta__grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   Newsletter
   ============================================================ */
.newsletter { position: relative; overflow: hidden; }
.newsletter__bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.newsletter__bg::after { content: ""; position: absolute; inset: 0; background: rgba(28,24,18,0.78); }
.newsletter__inner { position: relative; z-index: 1; text-align: center; max-width: 620px; margin-inline: auto; }
.newsletter .eyebrow { color: var(--rose-soft); display: block; margin-bottom: 14px; }
.newsletter h2 { color: #fff; margin-bottom: 14px; }
.newsletter p { color: rgba(255,253,245,0.82); margin: 0 auto 28px; }
.newsletter__form { display: flex; gap: 12px; max-width: 480px; margin-inline: auto; }
.newsletter__form input { flex: 1; padding: 15px 20px; border: 1px solid rgba(255,253,245,0.25); background: rgba(255,255,255,0.08);
  color: #fff; font-family: inherit; font-size: 0.95rem; }
.newsletter__form input::placeholder { color: rgba(255,253,245,0.6); }
.newsletter__form input:focus { outline: none; border-color: var(--rose-soft); background: rgba(255,255,255,0.14); }
.newsletter__note { color: var(--rose-soft) !important; font-weight: 600; margin-top: 18px !important; }
@media (max-width: 560px) { .newsletter__form { flex-direction: column; } }

/* ============================================================
   Cart drawer
   ============================================================ */
.cart { position: fixed; inset: 0; z-index: 90; visibility: hidden; pointer-events: none; }
.cart.is-open { visibility: visible; pointer-events: auto; }
.cart__scrim { position: absolute; inset: 0; background: rgba(20,16,12,0.5); opacity: 0; transition: opacity 0.4s var(--ease); }
.cart.is-open .cart__scrim { opacity: 1; }
.cart__panel { position: absolute; top: 0; right: 0; height: 100%; width: min(92vw, 420px); background: var(--cream);
  display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.45s var(--ease); }
.cart.is-open .cart__panel { transform: translateX(0); }
.cart__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 26px; border-bottom: 1px solid var(--hairline); }
.cart__head h3 { font-family: var(--font-display); font-style: italic; font-size: 1.4rem; }
.cart__count { color: var(--ink-soft); font-family: var(--font-body); font-style: normal; font-size: 0.9rem; }
.cart__close { display: inline-flex; color: var(--ink); }
.cart__close:hover { color: var(--rose); }
.cart__progress { padding: 18px 26px; border-bottom: 1px solid var(--hairline); }
.cart__progress-msg { margin: 0 0 10px; font-size: 0.82rem; color: var(--ink-soft); }
.cart__progress-msg strong { color: var(--rose-deep); }
.cart__progress-track { height: 6px; border-radius: 999px; background: rgba(184,147,63,0.18); overflow: hidden; }
.cart__progress-fill { display: block; height: 100%; width: 0; border-radius: 999px; background: var(--gold-grad); transition: width 0.5s var(--ease); }
.cart__items { flex: 1; overflow-y: auto; padding: 8px 26px; }
.cart-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--hairline); }
.cart-item__img { width: 64px; height: 64px; object-fit: cover; background: #f0e9dc; }
.cart-item__name { font-weight: 600; font-size: 0.9rem; margin: 0 0 4px; }
.cart-item__price { font-size: 0.82rem; color: var(--ink-soft); }
.cart-item__qty { display: inline-flex; align-items: center; gap: 10px; margin-top: 8px; }
.cart-item__qty button { width: 24px; height: 24px; border: 1px solid var(--hairline); border-radius: 4px; font-size: 1rem; line-height: 1;
  color: var(--ink); transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease); }
.cart-item__qty button:hover { background: var(--rose); color: #fff; border-color: var(--rose); }
.cart-item__qty span { font-size: 0.86rem; min-width: 16px; text-align: center; }
.cart-item__right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.cart-item__line { font-family: var(--font-display); font-style: italic; font-weight: 700; }
.cart-item__remove { font-size: 0.72rem; color: var(--ink-soft); text-decoration: underline; text-underline-offset: 2px; }
.cart-item__remove:hover { color: var(--rose-deep); }
.cart__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 40px; text-align: center; color: var(--ink-soft); }
.cart__empty .icon { width: 46px; height: 46px; color: var(--rose); }
.cart.has-items .cart__empty { display: none; }
.cart__foot { padding: 22px 26px calc(22px + env(safe-area-inset-bottom)); border-top: 1px solid var(--hairline); background: #fff; }
.cart__subtotal { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; }
.cart__subtotal span { font-size: 0.86rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }
.cart__subtotal strong { font-family: var(--font-display); font-style: italic; font-size: 1.6rem; }
.cart__checkout { width: 100%; }
.cart__note { margin: 14px 0 0; font-size: 0.72rem; color: var(--ink-soft); text-align: center; }

/* ============================================================
   Live purchase notification
   ============================================================ */
.social-proof { position: fixed; left: 20px; bottom: 20px; z-index: 70; width: min(320px, calc(100vw - 40px));
  display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--hairline);
  padding: 12px 14px; box-shadow: 0 26px 50px -28px rgba(33,29,23,0.55);
  transform: translateY(16px); opacity: 0; transition: transform 0.5s var(--ease), opacity 0.5s var(--ease); }
.social-proof.is-visible { transform: translateY(0); opacity: 1; }
.social-proof__img { width: 46px; height: 46px; object-fit: cover; flex-shrink: 0; background: #f0e9dc; }
.social-proof__body { flex: 1; min-width: 0; }
.social-proof__name { margin: 0; font-size: 0.84rem; font-weight: 600; }
.social-proof__meta { margin: 2px 0 0; font-size: 0.72rem; color: var(--ink-soft); }
.social-proof__close { position: absolute; top: 6px; right: 6px; color: var(--ink-soft); display: inline-flex; }
.social-proof__close .icon { width: 15px; height: 15px; }
@media (max-width: 480px) { .social-proof { left: 12px; bottom: 84px; } }

/* ============================================================
   Content pages (shared)
   ============================================================ */
.page-hero { background: var(--charcoal); color: var(--cream); text-align: center; padding: clamp(48px, 8vw, 84px) 0; }
.page-hero .eyebrow { color: var(--rose-soft); display: block; margin-bottom: 14px; }
.page-hero h1 { font-family: var(--font-display); font-style: italic; font-weight: 700; color: #fff;
  font-size: clamp(2rem, 4.6vw, 3rem); line-height: 1.1; }
.page-hero p { color: rgba(255,253,245,0.78); max-width: 620px; margin: 16px auto 0; }
.crumbs { font-size: 0.78rem; color: var(--ink-soft); margin-bottom: 6px; }
.crumbs a:hover { color: var(--rose-deep); }
.prose { max-width: 820px; margin-inline: auto; }
.prose h2 { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; margin: 40px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.05rem; margin: 26px 0 8px; }
.prose p { color: var(--ink-soft); margin: 0 0 16px; }
.prose ul { margin: 0 0 16px; padding-left: 0; }
.prose li { color: var(--ink-soft); padding: 8px 0 8px 28px; position: relative; border-bottom: 1px solid var(--hairline); }
.prose li::before { content: ""; position: absolute; left: 4px; top: 16px; width: 8px; height: 8px; border-radius: 999px; background: var(--rose); }
.prose a { color: var(--rose-deep); text-decoration: underline; text-underline-offset: 2px; }
.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; margin: 8px 0 24px; }
.info-card { background: #fff; border: 1px solid var(--hairline); padding: 26px 24px; }
.info-card .icon { width: 30px; height: 30px; color: var(--rose); margin-bottom: 14px; }
.info-card h3 { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; margin-bottom: 6px; }
.info-card p { color: var(--ink-soft); font-size: 0.9rem; margin: 0; }
.table { width: 100%; border-collapse: collapse; margin: 8px 0 24px; }
.table th, .table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--hairline); font-size: 0.92rem; }
.table th { background: var(--rose-mist); font-weight: 700; letter-spacing: 0.04em; }
.table td { color: var(--ink-soft); }

/* Simple form (contact / account / track) */
.form { max-width: 560px; margin-inline: auto; display: grid; gap: 16px; }
.form label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); display: block; margin-bottom: 6px; }
.form input, .form textarea, .form select { width: 100%; padding: 14px 16px; border: 1px solid var(--hairline); background: #fff;
  font-family: inherit; font-size: 0.95rem; color: var(--ink); }
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(184,147,63,0.15); }
.form textarea { min-height: 130px; resize: vertical; }
.form .form__note { font-size: 0.82rem; color: var(--rose-deep); font-weight: 600; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item summary { cursor: pointer; padding: 20px 0; font-weight: 600; font-size: 1.02rem; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--rose); font-size: 1.4rem; line-height: 1; transition: transform 0.3s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--ink-soft); margin: 0 0 20px; }

@media (max-width: 900px) { .product-grid, .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .product-grid, .review-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }

/* Category chips + coming-soon + wishlist/empty states */
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 4px 0 8px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border: 1px solid rgba(184,147,63,0.4);
  border-radius: 999px; font-size: 0.82rem; font-weight: 600; color: var(--ink); background: #fff; transition: all 0.3s var(--ease); }
.chip:hover { background: var(--rose); color: #fff; border-color: var(--rose); transform: translateY(-2px); }
.coming-soon { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 10px; }
.coming-soon span { padding: 10px 20px; border: 1px dashed rgba(184,147,63,0.5); border-radius: 999px; font-size: 0.8rem;
  color: var(--ink-soft); letter-spacing: 0.04em; }
.empty-state { text-align: center; max-width: 460px; margin: 0 auto; padding: 20px 0; }
.empty-state .icon { width: 54px; height: 54px; color: var(--rose); margin-bottom: 18px; }
.empty-state h2 { font-family: var(--font-display); font-style: italic; font-size: 1.6rem; margin-bottom: 10px; }
.empty-state p { color: var(--ink-soft); margin-bottom: 24px; }
.section-intro { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-intro .eyebrow { display: block; margin-bottom: 12px; color: var(--rose); }
.section-intro p { color: var(--ink-soft); margin-top: 12px; }
.auth-tabs { display: flex; gap: 8px; max-width: 560px; margin: 0 auto 24px; }
.auth-tabs button { flex: 1; padding: 13px; border: 1px solid var(--hairline); background: #fff; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.76rem; color: var(--ink-soft); transition: all 0.3s var(--ease); }
.auth-tabs button.is-active { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }

/* Footer helpers */
.footer__brandname { display: inline-block; color: #fff; font-family: var(--font-body); font-weight: 700;
  font-size: 1.4rem; letter-spacing: 0.04em; margin-bottom: 20px; }
.footer__brandname:hover { color: var(--rose-soft); }
.footer__links--col { grid-template-columns: 1fr; gap: 12px; }
.footer__tag { display: block !important; color: rgba(255,253,245,0.6); font-size: 0.9rem; margin: 0 0 18px; max-width: 30ch; }
.footer__col .footer__social { margin-top: 22px; }

/* ============================================================
   Button variants (commerce)
   ============================================================ */
.btn--block { width: 100%; }
.btn--ghost { background: transparent; border: 1px solid var(--rose); color: var(--rose-deep); }
.btn--ghost:hover { background: var(--rose); color: var(--charcoal); }
.btn--sm { padding: 10px 16px; font-size: 0.72rem; }
.page-hero--slim { padding: clamp(32px, 5vw, 52px) 0; }
.cart__viewcart { display: block; text-align: center; margin-top: 12px; font-size: 0.82rem; font-weight: 600;
  color: var(--rose-deep); text-decoration: underline; text-underline-offset: 2px; }
.cart__viewcart:hover { color: var(--rose); }

/* ============================================================
   Product detail page (PDP)
   ============================================================ */
.product__name a { color: inherit; transition: color 0.3s var(--ease); }
.product__name a:hover { color: var(--rose-deep); }
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 60px); align-items: start; margin: 22px 0 64px; }
.pdp__main { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: #f4efe6; border: 1px solid rgba(184,147,63,0.16); }
.pdp__main img { width: 100%; height: 100%; object-fit: cover; }
.pdp__cat { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose-deep); }
.pdp__name { font-size: clamp(1.8rem, 3.6vw, 2.6rem); line-height: 1.1; margin: 10px 0 14px; }
.pdp__rating { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.pdp__reviews { font-size: 0.82rem; color: var(--ink-soft); }
.pdp__price { font-size: 1.85rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.pdp__metaline { font-size: 0.85rem; color: var(--ink-soft); margin: 0 0 18px; }
.pdp__short { color: var(--ink-soft); margin: 0 0 26px; }
.pdp__buy { display: flex; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; }
.qty-select { display: inline-flex; align-items: center; border: 1px solid var(--hairline); background: #fff; }
.qty-select button { width: 44px; height: 50px; font-size: 1.1rem; line-height: 1; color: var(--ink); transition: background-color 0.2s var(--ease); }
.qty-select button:hover { background: var(--rose-mist); }
.qty-select input { width: 48px; height: 50px; text-align: center; border: 0; border-left: 1px solid var(--hairline); border-right: 1px solid var(--hairline); font-family: inherit; font-size: 0.95rem; color: var(--ink); }
.qty-select input:focus { outline: none; }
.pdp__add { flex: 1; min-width: 190px; }
.pdp__buynow { width: 100%; margin-bottom: 24px; }
.pdp__usp { display: flex; flex-direction: column; gap: 10px; padding: 20px 0; margin: 0 0 8px; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.pdp__usp li { display: flex; align-items: center; gap: 10px; font-size: 0.86rem; color: var(--ink-soft); }
.pdp__usp .icon { width: 20px; height: 20px; color: var(--rose); flex-shrink: 0; }
.pdp__accordions { margin-top: 8px; }
.pdp__benefits { margin: 0; padding: 0; }
.pdp__benefits li { position: relative; padding: 6px 0 6px 22px; color: var(--ink-soft); font-size: 0.92rem; }
.pdp__benefits li::before { content: ""; position: absolute; left: 2px; top: 13px; width: 7px; height: 7px; border-radius: 999px; background: var(--rose); }
.pdp__related { margin-top: 20px; }
.pdp__related .headline { margin-bottom: 36px; }
@media (max-width: 760px) { .pdp { grid-template-columns: 1fr; } }

/* ============================================================
   Shop — filters + product grid
   ============================================================ */
.shop { display: grid; grid-template-columns: 240px 1fr; gap: clamp(28px, 4vw, 48px); align-items: start; }
.filters { position: sticky; top: calc(var(--header-h) + 16px); display: flex; flex-direction: column; gap: 30px; }
.filter-group h3 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink);
  margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--hairline); }
.filter-opt { display: flex; align-items: center; gap: 11px; padding: 7px 0; font-size: 0.9rem; color: var(--ink-soft); cursor: pointer; }
.filter-opt input { width: 17px; height: 17px; accent-color: var(--rose); cursor: pointer; }
.filter-opt.is-checked { color: var(--ink); font-weight: 600; }
.filters__toggle { display: none; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 600; color: var(--ink);
  padding: 10px 16px; border: 1px solid var(--hairline); }
.filters__toggle .icon { width: 16px; height: 16px; }

.shop__bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-bottom: 20px; margin-bottom: 26px; border-bottom: 1px solid var(--hairline); }
.shop__count { margin: 0; font-size: 0.86rem; color: var(--ink-soft); }
.shop__count strong { color: var(--ink); }
.shop__none { text-align: center; padding: 60px 20px; color: var(--ink-soft); font-size: 0.95rem; }
.shop__sort { display: flex; align-items: center; gap: 12px; }
.shop__sort label { font-size: 0.8rem; color: var(--ink-soft); }
.shop__sort select { padding: 9px 32px 9px 14px; border: 1px solid var(--hairline); background: #fff; font-family: inherit;
  font-size: 0.85rem; color: var(--ink); cursor: pointer;
  appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23834' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center; background-size: 14px; }
.shop__sort select:focus { outline: none; border-color: var(--rose); }

.product-grid--shop { grid-template-columns: repeat(3, 1fr); }
.product__badge--leaf { background: #4f6f52; color: #fff; }
.product__badge--gold { background: var(--rose); color: var(--charcoal); }

@media (max-width: 1100px) { .product-grid--shop { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) {
  .shop { grid-template-columns: 1fr; }
  .filters { position: static; display: none; padding: 20px; border: 1px solid var(--hairline); background: #fff; }
  .filters.is-open { display: flex; }
  .filters__toggle { display: inline-flex; }
}
@media (max-width: 560px) { .product-grid--shop { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; } }

/* ============================================================
   Cart page
   ============================================================ */
.cart-item__mid { min-width: 0; }
.cartpage { display: grid; grid-template-columns: 1fr 360px; gap: clamp(28px, 4vw, 52px); align-items: start; }
.cartpage__items { display: flex; flex-direction: column; }
.cartpage__items .cart-item { padding: 22px 0; }
.cartpage__cont { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; font-weight: 600; font-size: 0.88rem; color: var(--rose-deep); }
.cartpage__cont .icon { width: 18px; height: 18px; }
.cartpage__cont:hover { color: var(--rose); }
.summary { background: var(--rose-mist); border: 1px solid rgba(184,147,63,0.2); padding: 30px; position: sticky; top: calc(var(--header-h) + 16px); }
.summary__title { font-size: 1.2rem; margin-bottom: 22px; }
.summary__row { display: flex; justify-content: space-between; font-size: 0.92rem; color: var(--ink-soft); padding: 8px 0; }
.summary__note { font-size: 0.78rem; color: var(--rose-deep); padding: 6px 0 14px; }
.summary__total { display: flex; justify-content: space-between; align-items: baseline; font-weight: 700; font-size: 1.15rem;
  color: var(--ink); padding: 16px 0 22px; margin-top: 6px; border-top: 2px solid var(--charcoal); }
.summary__secure { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.76rem; color: var(--ink-soft); margin: 14px 0 0; }
.summary__secure .icon { width: 15px; height: 15px; }
@media (max-width: 820px) { .cartpage { grid-template-columns: 1fr; } .summary { position: static; } }

/* ============================================================
   Checkout
   ============================================================ */
.checkout { display: grid; grid-template-columns: 1fr 360px; gap: clamp(28px, 4vw, 52px); align-items: start; }
.steps-ind { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-bottom: 30px; padding-bottom: 22px; border-bottom: 1px solid var(--hairline); }
.steps-ind__item { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); letter-spacing: 0.02em; }
.steps-ind__num { width: 24px; height: 24px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.76rem; background: #ece3d2; color: var(--ink-soft); }
.steps-ind__item.is-active { color: var(--ink); }
.steps-ind__item.is-active .steps-ind__num { background: var(--rose); color: var(--charcoal); }
.steps-ind__item.is-done .steps-ind__num { background: var(--charcoal); color: #fff; }
.cstep__title { font-size: 1.4rem; margin-bottom: 6px; }
.cstep__sub { color: var(--ink-soft); font-size: 0.92rem; margin: 0 0 24px; }
.checkout__form { display: flex; flex-direction: column; gap: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; }
.field label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.03em; color: var(--ink-soft); margin-bottom: 7px; }
.field input, .field select, .field textarea { padding: 13px 15px; border: 1px solid var(--hairline); background: #fff;
  font-family: inherit; font-size: 0.95rem; color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(184,147,63,0.15); }
.field textarea { min-height: 96px; resize: vertical; }
.field__err { display: none; color: #b3402f; font-size: 0.76rem; margin-top: 6px; }
.field .is-invalid, .is-invalid { border-color: #d06a5b !important; }
.cstep__actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.cstep__back { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 0.86rem; color: var(--ink-soft); }
.cstep__back:hover { color: var(--rose-deep); }
.cstep__back .icon { width: 18px; height: 18px; }
.cstep__secure-note { display: flex; align-items: center; gap: 8px; margin-top: 20px; font-size: 0.8rem; color: var(--ink-soft); }
.cstep__secure-note .icon { width: 16px; height: 16px; color: var(--rose); }
.pay-methods { display: flex; flex-direction: column; gap: 14px; }
.pay-method { display: flex; align-items: center; gap: 14px; padding: 18px 20px; border: 1px solid var(--hairline); cursor: pointer; transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease); }
.pay-method:has(input:checked) { border-color: var(--rose); background: var(--rose-mist); }
.pay-method input { width: 18px; height: 18px; accent-color: var(--rose); }
.pay-method__name { display: block; font-weight: 600; }
.pay-method__desc { display: block; font-size: 0.82rem; color: var(--ink-soft); margin-top: 2px; }
.pay-method__badge { margin-left: auto; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rose-deep); background: rgba(184,147,63,0.16); padding: 5px 10px; border-radius: 999px; }

.checkout__aside { position: sticky; top: calc(var(--header-h) + 16px); display: flex; flex-direction: column; gap: 18px; }
.cosum { background: var(--rose-mist); border: 1px solid rgba(184,147,63,0.2); padding: 26px; }
.cosum__title { font-size: 1.15rem; margin-bottom: 18px; }
.cosum__line { display: grid; grid-template-columns: 26px 46px 1fr auto; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--hairline); }
.cosum__qty { width: 24px; height: 24px; border-radius: 999px; background: var(--charcoal); color: #fff; font-size: 0.72rem; display: inline-flex; align-items: center; justify-content: center; }
.cosum__line img { width: 46px; height: 46px; object-fit: cover; background: #f0e9dc; }
.cosum__meta { display: flex; flex-direction: column; min-width: 0; }
.cosum__name { font-size: 0.85rem; font-weight: 600; }
.cosum__meta span:last-child { font-size: 0.75rem; color: var(--ink-soft); }
.cosum__price { font-weight: 600; font-size: 0.88rem; }
.cosum__totals { padding-top: 14px; }
.cosum__totals .summary__row { padding: 6px 0; }
.cosum__totals .summary__total { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.1rem; color: var(--ink); margin-top: 8px; padding-top: 14px; border-top: 2px solid var(--charcoal); }
.checkout__trust { display: flex; flex-direction: column; gap: 12px; padding: 4px 4px 0; }
.checkout__trust li { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: var(--ink-soft); }
.checkout__trust .icon { width: 20px; height: 20px; color: var(--rose); flex-shrink: 0; }
@media (max-width: 820px) { .checkout { grid-template-columns: 1fr; } .checkout__aside { position: static; } .field-row { grid-template-columns: 1fr; } }

/* ============================================================
   Toasts + add-to-cart notification
   ============================================================ */
.toast-wrap { position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 95; display: flex; flex-direction: column; gap: 10px; }
.toast { display: flex; align-items: center; gap: 10px; background: var(--charcoal); color: var(--cream); padding: 12px 20px;
  border-radius: 999px; font-size: 0.85rem; box-shadow: 0 20px 40px -20px rgba(0,0,0,0.5); opacity: 0; transform: translateY(12px); transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); }
.toast.is-show { opacity: 1; transform: none; }
.toast .icon { width: 18px; height: 18px; color: var(--rose-soft); }

.cart-toast { position: fixed; right: 20px; bottom: 20px; z-index: 95; width: min(340px, calc(100vw - 40px));
  background: #fff; border: 1px solid var(--hairline); box-shadow: 0 30px 60px -28px rgba(33,29,23,0.55); padding: 18px;
  transform: translateY(16px); opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.cart-toast.is-show { opacity: 1; transform: none; pointer-events: auto; }
.cart-toast__close { position: absolute; top: 10px; right: 10px; color: var(--ink-soft); }
.cart-toast__close .icon { width: 16px; height: 16px; }
.cart-toast__head { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.9rem; margin-bottom: 14px; }
.cart-toast__head .icon { width: 18px; height: 18px; color: #4f6f52; }
.cart-toast__body { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.cart-toast__body img { width: 52px; height: 52px; object-fit: cover; background: #f0e9dc; }
.cart-toast__info { display: flex; flex-direction: column; min-width: 0; }
.cart-toast__name { font-size: 0.86rem; font-weight: 600; }
.cart-toast__meta { font-size: 0.78rem; color: var(--ink-soft); }
.cart-toast__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cart-toast__actions .btn { width: 100%; }
.nav__cart.is-cart-pop { animation: cart-pop 0.48s var(--ease); }
@keyframes cart-pop { 0%,100% { transform: none; } 30% { transform: scale(1.25); } 60% { transform: scale(0.92); } }
@media (max-width: 480px) { .cart-toast { right: 12px; left: 12px; width: auto; } }

/* ---- Sale pricing & badges (product import 2026-07) ---- */
.product__price s,
.price-was { color: var(--ink-soft); font-weight: 400; text-decoration: line-through; font-size: 0.85em; font-style: normal; margin-left: 4px; }
.product__badge--sale { background: #b3403b; color: #fff; }

/* ---- Refined product card typography (2026-07 polish) ---- */
.product__cat { font-size: 0.6rem; letter-spacing: 0.12em; }
.product__name { font-size: 1.05rem; margin-bottom: 8px; }
.product__desc { font-size: 0.8rem; margin: 0 0 16px; }
.product__price { font-size: 1.15rem; }
.product__body { padding: 18px 18px 20px; }
.product__add { padding: 10px 16px; font-size: 0.7rem; }
.product .stars { margin-bottom: 10px; }

/* ---- Shop pagination ---- */
.pager { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 40px; flex-wrap: wrap; }
.pager:empty { display: none; }
.pager__nums { display: flex; gap: 6px; flex-wrap: wrap; }
.pager__btn, .pager__num { font: inherit; background: #fff; border: 1px solid var(--hairline); padding: 10px 16px; cursor: pointer; font-size: 0.78rem; transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease); }
.pager__num { min-width: 42px; }
.pager__btn:hover:not(:disabled), .pager__num:hover:not(.is-active) { border-color: var(--rose-deep); color: var(--rose-deep); }
.pager__num.is-active { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.pager__btn:disabled { opacity: 0.4; cursor: default; }

/* ---- Product carousel ---- */
.carousel { position: relative; }
.carousel__track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 4px 14px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.carousel__track .product { flex: 0 0 calc((100% - 56px) / 3); scroll-snap-align: start; }
.carousel__nav { position: absolute; top: 34%; transform: translateY(-50%); z-index: 2; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--hairline); background: #fff; color: var(--ink); cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px -12px rgba(33,29,23,0.4); transition: background 0.25s var(--ease), color 0.25s var(--ease); }
.carousel__nav:hover { background: var(--charcoal); color: #fff; }
.carousel__nav--prev { left: -16px; }
.carousel__nav--next { right: -16px; }
@media (max-width: 900px) { .carousel__track .product { flex-basis: calc((100% - 32px) / 2); } }
@media (max-width: 620px) { .carousel__track .product { flex-basis: 86%; } .carousel__nav--prev { left: -6px; } .carousel__nav--next { right: -6px; } }

/* ---- Product page gallery thumbnails ---- */
.pdp__thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 12px; }
.pdp__thumb { padding: 0; border: 1px solid var(--hairline); background: #f4efe6; cursor: pointer; aspect-ratio: 1 / 1; overflow: hidden; opacity: 0.7; transition: opacity 0.25s var(--ease), border-color 0.25s var(--ease); }
.pdp__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp__thumb:hover { opacity: 1; }
.pdp__thumb.is-active { border-color: var(--rose-deep); opacity: 1; }
@media (max-width: 560px) { .pdp__thumbs { grid-template-columns: repeat(4, 1fr); } }

/* ---- Product page title size reduction (2026-07) ---- */
.pdp__name { font-size: clamp(1.25rem, 2.4vw, 1.65rem); line-height: 1.25; }
