/* ============================================================
   AURUM — México's gold, worn.  Design system
   Warm masculine · cream · brown · white
   ============================================================ */

:root {
  /* palette — cream / brown / white (warm, earthy) */
  --emerald:      #3B2A1E;   /* espresso brown (dark sections) */
  --emerald-2:    #4A3527;   /* raised brown */
  --emerald-3:    #2E2017;   /* deepest brown */
  --ink:          #2B2017;   /* dark brown — text + dark fills */
  --mint:         #9C7A4D;   /* caramel pop */
  --mint-2:       #B5945F;
  --gold:         #9A6F3E;   /* warm caramel accent */
  --gold-2:       #B0824C;
  --gold-deep:    #6E4F30;   /* deep brown accent (on light) */
  --red:          #8A5A3C;   /* terracotta-brown (flags/badges) */
  --red-2:        #A06A45;
  --cream:        #F5EEE0;   /* light foreground (text on dark) */
  --cream-2:      #ECE0CC;   /* raised cream panel (on light) */
  --white:        #FFFFFF;   /* card surface */

  --paper:        #F2E8D6;   /* page background (cream) */
  --muted:        #7A6A57;   /* muted text on light surfaces */
  --on-emerald:   #F5EEE0;   /* text on brown sections */
  --on-emerald-2: #C9B9A0;   /* muted text on brown sections */

  --line:         rgba(43,32,23,.14);   /* hairline on light */
  --line-2:       rgba(43,32,23,.07);

  /* type */
  --display: 'Syne', 'Arial Black', sans-serif;
  --body: 'Space Grotesk', system-ui, sans-serif;

  --maxw: 1280px;
  --gutter: clamp(18px, 4.5vw, 64px);
  --radius: 18px;
  --radius-sm: 11px;

  --shadow: 0 2px 6px rgba(43,32,23,.06), 0 22px 50px -26px rgba(43,32,23,.30);
  --shadow-gold: 0 16px 40px -20px rgba(154,111,62,.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; width: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}
/* never let any section/marquee push the page sideways */
.page, section, .topbar, .mq, .socialmq, .hero { max-width: 100%; overflow-x: clip; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--gold); color: var(--cream); }

/* ---------- type ---------- */
.display {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}
.h1 { font-size: clamp(46px, 8.4vw, 132px); }
.h2 { font-size: clamp(36px, 6vw, 92px); }
.h3 { font-size: clamp(26px, 3.4vw, 50px); }
.h4 { font-size: clamp(20px, 2.2vw, 30px); }
.eyebrow {
  font-family: var(--body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.balance { text-wrap: balance; }
.pretty { text-wrap: pretty; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 120px); }
.section--tight { padding-block: clamp(40px, 5vw, 72px); }
.bg-emerald { background: var(--emerald); color: var(--on-emerald); }
.bg-ink { background: var(--ink); color: var(--on-emerald); }
.bg-mint { background: var(--cream-2); color: var(--ink); }
.bg-gold { background: var(--gold); color: var(--cream); }
.bg-cream { background: var(--cream-2); }

/* ---------- buttons ---------- */
.btn {
  --py: 16px; --px: 30px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--body); font-weight: 700;
  font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase;
  padding: var(--py) var(--px);
  border: 2px solid transparent; border-radius: 100px;
  transition: transform .16s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--gold { background: var(--gold); color: var(--cream); box-shadow: var(--shadow-gold); }
.btn--gold:hover { background: var(--gold-2); transform: translateY(-2px); }
.btn--mint { background: var(--red); color: var(--cream); }
.btn--mint:hover { background: var(--red-2); transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: var(--cream); }
.btn--dark:hover { background: var(--emerald); transform: translateY(-2px); }
.btn--wa { background: #1B7F44; color: #fff; }
.btn--wa:hover { background: #1FA855; transform: translateY(-2px); }
.wafab { position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 56px; height: 56px; border-radius: 50%; background: #1B7F44; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px -8px rgba(43,32,23,.5); transition: transform .2s; }
.wafab svg { width: 30px; height: 30px; }
.wafab:hover { transform: scale(1.07); }
@media (max-width: 700px) { .wafab { width: 52px; height: 52px; right: 14px; bottom: 14px; } }
.btn--ghost { background: transparent; color: currentColor; border-color: currentColor; }
.btn--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--ghost-light { background: transparent; color: var(--cream); border-color: rgba(245,238,224,.4); }
.btn--ghost-light:hover { border-color: var(--gold-2); color: var(--gold-2); }
.btn--lg { --py: 20px; --px: 40px; font-size: 15px; }
.btn--block { width: 100%; }
.btn .arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- announcement bar ---------- */
.topbar {
  background: var(--ink); color: var(--cream);
  font-family: var(--body); font-weight: 600; font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  overflow: hidden; border-bottom: 1px solid rgba(154,111,62,.3);
}
.topbar__track { display: flex; gap: 48px; width: max-content; padding-block: 9px; animation: ticker 26s linear infinite; }
.topbar__track span { display: inline-flex; align-items: center; gap: 48px; white-space: nowrap; }
.topbar__track span::after { content: "✦"; color: var(--gold-2); }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .topbar__track { animation: none; } }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 90;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid var(--line);
}
.nav__row { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 20px; }
.nav__logo { display: flex; align-items: center; gap: 11px; }
.nav__logo-mark { height: 30px; width: auto; }
.nav__logo-text { font-family: var(--display); font-weight: 800; font-size: 26px; letter-spacing: 0.12em; color: var(--ink); }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__link {
  font-family: var(--body); font-weight: 600; font-size: 14px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink); position: relative; padding: 4px 0; background: none; border: 0;
}
.nav__link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px; background: var(--gold); transition: right .25s ease; }
.nav__link:hover::after, .nav__link.is-active::after { right: 0; }
.nav__link.is-active { color: var(--gold-deep); }
.nav__tools { display: flex; align-items: center; gap: 14px; }
.lang {
  display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 100px; overflow: hidden;
  font-family: var(--body); font-weight: 700; font-size: 12px; letter-spacing: .06em;
}
.lang button { background: transparent; border: 0; padding: 6px 11px; color: var(--ink); opacity: .5; transition: background .2s, opacity .2s; }
.lang button.is-on { background: var(--ink); color: var(--cream); opacity: 1; }
.cartbtn { position: relative; background: none; border: 0; padding: 6px; color: var(--ink); display: inline-flex; }
.cartbtn svg { width: 24px; height: 24px; }
.cartbtn__count {
  position: absolute; top: -3px; right: -4px; min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--red); color: #fff; border-radius: 100px; font-size: 11px; font-weight: 700;
  display: grid; place-items: center; line-height: 1;
}
.nav__burger { display: none; background: none; border: 0; padding: 6px; color: var(--ink); }
.nav__burger svg { width: 26px; height: 26px; }

/* ---------- pages ---------- */
.page { display: none; }
.page.is-active { display: block; animation: pagein .4s ease; }
@keyframes pagein { from { opacity: 0; transform: translateY(8px); } }

/* ---------- hero ---------- */
.hero { position: relative; background: var(--emerald); color: var(--on-emerald); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 85% 15%, rgba(154,111,62,.22), transparent 70%),
    radial-gradient(55% 60% at 5% 92%, rgba(110,79,48,.3), transparent 72%);
  pointer-events: none;
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr minmax(300px, .9fr); gap: clamp(24px,4vw,56px); align-items: center; padding-block: clamp(40px,6vw,86px); }
.hero__copy { min-width: 0; }
.hero__eyebrow { color: var(--gold-2); margin-bottom: 22px; display: flex; align-items: center; gap: 12px; }
.hero__eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--gold-2); }
.hero h1 { color: var(--cream); font-size: clamp(38px, 5.3vw, 88px); }
.hero h1 .gold { color: var(--gold-2); }
.hero h1 .out { -webkit-text-stroke: 2px var(--gold-2); color: transparent; }
.hero__sub { margin-top: 24px; max-width: 44ch; color: var(--on-emerald-2); font-size: 18px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; align-items: center; }
.hero__price { font-family: var(--display); font-weight: 800; font-size: 20px; color: var(--gold-2); letter-spacing: .02em; }
.hero__price small { display: block; font-family: var(--body); font-weight: 500; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--on-emerald-2); }
.hero__media { position: relative; }
.hero__slot { width: 100%; height: auto; aspect-ratio: 4/5; border-radius: var(--radius); box-shadow: var(--shadow); background: var(--emerald-2); }
.hero__slot--cut { background: transparent; box-shadow: none; border-radius: 0; filter: drop-shadow(0 30px 40px rgba(0,0,0,.45)); }
.hero__badge {
  position: absolute; top: -16px; right: -10px; width: clamp(86px,9vw,116px); height: clamp(86px,9vw,116px);
  background: var(--gold); color: var(--cream); border-radius: 50%;
  display: grid; place-items: center; text-align: center; transform: rotate(11deg);
  font-family: var(--display); font-weight: 800; font-size: 13px; letter-spacing: .04em; line-height: 1.1;
  box-shadow: var(--shadow-gold); animation: bob 3.5s ease-in-out infinite;
}
@keyframes bob { 0%,100%{ transform: rotate(11deg) translateY(0);} 50%{ transform: rotate(11deg) translateY(-8px);} }
@media (prefers-reduced-motion: reduce) { .hero__badge { animation: none; } }

/* ---------- marquee band ---------- */
.mq { background: var(--ink); color: var(--cream); overflow: hidden; border-block: 1px solid rgba(154,111,62,.35); }
.mq__track { display: flex; gap: 40px; width: max-content; padding-block: 14px; animation: ticker 22s linear infinite; }
.mq__track span { display: inline-flex; align-items: center; gap: 40px; font-family: var(--display); font-weight: 800; font-size: clamp(20px,2.4vw,30px); text-transform: uppercase; letter-spacing: .02em; white-space: nowrap; }
.mq__track span::after { content: "★"; color: var(--gold-2); }
.mq--mint { background: var(--emerald-2); }
.mq--mint .mq__track span::after { content: "✦"; color: var(--gold-2); }

/* ---------- brand message ---------- */
.creed { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,72px); align-items: center; }
.creed__big { font-family: var(--display); font-weight: 800; text-transform: uppercase; line-height: .95; font-size: clamp(34px,5vw,76px); color: var(--ink); }
.creed__big .gold { color: var(--gold-deep); }
.creed__big .red { color: var(--red); }
.creed p { font-size: 18px; color: var(--muted); margin: 0 0 18px; max-width: 52ch; }
.creed p:first-of-type::first-letter { font-family: var(--display); font-weight: 800; font-size: 2.4em; float: left; line-height: .8; margin: 6px 12px 0 0; color: var(--gold-deep); }

/* ---------- feature row (cap details) ---------- */
.specs { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: clamp(32px,4vw,52px); }
.spec { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px; }
.spec__ico { width: 34px; height: 34px; color: var(--gold-deep); margin-bottom: 14px; }
.spec h4 { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 17px; margin: 0 0 6px; letter-spacing: .01em; color: var(--ink); }
.spec p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.45; }

/* ---------- lifestyle gallery ---------- */
.life { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: clamp(155px, 16.5vw, 250px); gap: 16px;
  grid-template-areas:
    "a a a a b b"
    "a a a a b b"
    "c c d d e e"; }
.life__cell { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; background: var(--emerald-2); }
.life__a { grid-area: a; } .life__b { grid-area: b; } .life__c { grid-area: c; } .life__d { grid-area: d; } .life__e { grid-area: e; }
.life__slot { width: 100%; height: 100%; display: block; background: var(--emerald-2); transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.life__cell:hover .life__slot { transform: scale(1.05); }
.life__a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,12,6,.6), transparent 48%); z-index: 1; pointer-events: none; }
.life__cap { position: absolute; left: 20px; bottom: 18px; z-index: 2; color: #fff; font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(20px, 2.2vw, 30px); letter-spacing: .01em; text-shadow: 0 2px 16px rgba(0,0,0,.5); pointer-events: none; }
.life__cap small { display: block; font-family: var(--body); font-weight: 600; font-size: 12px; letter-spacing: .18em; opacity: .85; margin-bottom: 4px; }

/* ---------- product card / grid ---------- */
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pcard { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; cursor: pointer; }
.pcard:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -28px rgba(43,32,23,.4); border-color: rgba(154,111,62,.4); }
.pcard__media { position: relative; aspect-ratio: 1; height: auto; background: var(--emerald); }
.pcard__slot { width: 100%; height: 100%; }
.pcard__flag { position: absolute; top: 12px; left: 12px; background: var(--red); color: #fff; font-family: var(--body); font-weight: 700; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; padding: 5px 10px; border-radius: 100px; }
.pcard__body { padding: 18px 18px 22px; }
.pcard__name { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 20px; margin: 0 0 4px; color: var(--ink); }
.pcard__row { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.pcard__price { font-family: var(--display); font-weight: 800; font-size: 20px; color: var(--gold-deep); }
.pcard__price small { font-family: var(--body); font-weight: 500; font-size: 11px; color: var(--muted); letter-spacing: .06em; }
.swatches { display: flex; gap: 6px; }
.swatch { width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid var(--line); }

/* ---------- product detail ---------- */
.pdp { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(28px,4vw,64px); align-items: start; max-width: 100%; }
[data-page="product"], [data-page="product"] .wrap, .pdp__info { max-width: 100%; min-width: 0; overflow-wrap: anywhere; }
.pdp__gallery { display: block; min-width: 0; overflow: hidden; }
.pdp__main { width: 100% !important; max-width: 100%; height: auto !important; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; background: var(--emerald); display: block; }
.pdp__thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 12px; }
.pdp__thumb { aspect-ratio: 1; height: auto; border-radius: var(--radius-sm); overflow: hidden; background: var(--emerald-2); border: 2px solid transparent; cursor: pointer; transition: border-color .2s; }
.pdp__thumb.is-on { border-color: var(--gold); }
.pdp__info h1 { margin: 0; color: var(--ink); }
.pdp__info { min-width: 0; }
.pdp__flag { display: inline-flex; align-items: center; gap: 8px; background: rgba(138,90,60,.14); color: var(--red); font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; padding: 6px 13px; border-radius: 100px; margin-bottom: 18px; }
.pdp__price { font-family: var(--display); font-weight: 800; font-size: clamp(30px,4vw,46px); color: var(--gold-deep); margin: 16px 0 4px; }
.pdp__price small { font-family: var(--body); font-weight: 500; font-size: 14px; color: var(--muted); letter-spacing: .04em; }
.pdp__desc { color: var(--muted); margin: 18px 0; max-width: 52ch; }
.opt { margin: 22px 0; }
.opt__label { font-family: var(--body); font-weight: 700; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; display: flex; gap: 8px; }
.opt__label b { color: var(--ink); }
.opt__row { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { border: 1.5px solid var(--line); background: var(--white); color: var(--ink); border-radius: 100px; padding: 10px 18px; font-family: var(--body); font-weight: 600; font-size: 14px; transition: border-color .2s, background .2s, color .2s; }
.chip:hover { border-color: var(--ink); }
.chip.is-on { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.cswatch { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--line); cursor: pointer; transition: transform .15s, box-shadow .2s; position: relative; }
.cswatch.is-on { box-shadow: 0 0 0 2px var(--paper), 0 0 0 4px var(--gold); }
.cswatch:hover { transform: scale(1.08); }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 100px; overflow: hidden; }
.qty button { background: transparent; border: 0; width: 42px; height: 44px; font-size: 20px; color: var(--ink); }
.qty button:hover { background: var(--cream-2); }
.qty span { min-width: 36px; text-align: center; font-weight: 700; }
.pdp__buy { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.pdp__buy .btn { flex: 1 1 auto; min-width: 0; }
.pdp__info .btn { white-space: normal; }
.pdp__trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.pdp__trust div { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--muted); font-weight: 600; }
.pdp__trust svg { width: 18px; height: 18px; color: var(--gold-deep); }
.accordion { margin-top: 26px; border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { list-style: none; cursor: pointer; padding: 16px 0; font-family: var(--body); font-weight: 700; font-size: 15px; display: flex; justify-content: space-between; align-items: center; color: var(--ink); }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; font-size: 20px; color: var(--gold-deep); }
.accordion details[open] summary::after { content: "–"; }
.accordion__body { padding: 0 0 18px; color: var(--muted); font-size: 15px; line-height: 1.6; }

/* ---------- about ---------- */
.about-hero { text-align: center; }
.about-hero h1 { color: var(--gold-2); }
.about-hero .out { -webkit-text-stroke: 2px var(--cream); color: transparent; }
.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,72px); align-items: center; margin-top: 0; }
.story__slot { aspect-ratio: 4/5; height: auto; border-radius: var(--radius); overflow: hidden; background: var(--emerald-2); box-shadow: var(--shadow); }
.story p { font-size: 18px; color: var(--muted); margin: 0 0 18px; }
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.value { padding: 28px; border-radius: var(--radius); background: var(--emerald-2); color: var(--on-emerald); border: 1px solid rgba(245,238,224,.08); }
.value__n { font-family: var(--display); font-weight: 800; font-size: 40px; color: var(--gold-2); line-height: 1; }
.value h4 { font-family: var(--display); font-weight: 800; text-transform: uppercase; margin: 14px 0 8px; font-size: 21px; color: var(--cream); }
.value p { margin: 0; color: var(--on-emerald-2); font-size: 15px; }

/* ---------- social ---------- */
.social { text-align: center; }
.social__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: clamp(28px,4vw,46px); }
.socialmq { overflow: hidden; margin-top: clamp(28px,4vw,46px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.socialmq__track { display: flex; gap: 16px; width: max-content; animation: ticker 48s linear infinite; }
.socialmq:hover .socialmq__track { animation-play-state: paused; }
.socialmq__slot { width: clamp(210px, 23vw, 290px); aspect-ratio: 1; flex: none; border-radius: var(--radius); overflow: hidden; background: var(--emerald-2); }
@media (prefers-reduced-motion: reduce) { .socialmq__track { animation: none; } }

/* ---------- sticky buy bar ---------- */
.stickybar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  background: color-mix(in srgb, var(--ink) 95%, transparent); backdrop-filter: blur(12px) saturate(1.2);
  border-top: 1px solid rgba(154,111,62,.32);
  transform: translateY(115%); transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.stickybar.is-on { transform: none; }
.stickybar__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 12px; }
.stickybar__txt { display: flex; flex-direction: column; line-height: 1.15; color: var(--cream); min-width: 0; }
.stickybar__txt strong { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 16px; letter-spacing: .01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.stickybar__txt span { font-size: 13px; color: var(--gold-2); font-weight: 700; }
.stickybar__cta { display: flex; gap: 10px; flex: none; }
.stickybar__buy { animation: buypop 1.5s ease-in-out infinite; }
@keyframes buypop {
  0%, 100% { box-shadow: 0 0 0 0 rgba(154,111,62,0); transform: scale(1); }
  50%      { box-shadow: 0 0 0 7px rgba(154,111,62,.16), 0 0 24px 2px rgba(154,111,62,.45); transform: scale(1.045); }
}
.stickybar.is-on ~ .wafab { opacity: 0; pointer-events: none; }
.wafab { transition: transform .2s, opacity .3s; }
@media (prefers-reduced-motion: reduce) { .stickybar__buy { animation: none; } }
@media (max-width: 560px) {
  .stickybar__txt span { display: none; }
  .stickybar__row { padding-block: 10px; }
  .stickybar .btn { --px: 18px; font-size: 12px; }
  .stickybar__buy .arr { display: none; }
}
.social__slot { aspect-ratio: 1; height: auto; border-radius: var(--radius-sm); overflow: hidden; background: var(--emerald-2); position: relative; }
.social__tag { position: absolute; left: 10px; bottom: 10px; color: #fff; font-weight: 700; font-size: 12px; mix-blend-mode: difference; }
.social__links { display: inline-flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; justify-content: center; }
.social__btn { display: inline-flex; align-items: center; gap: 10px; padding: 13px 22px; border-radius: 100px; background: var(--ink); color: var(--cream); border: 1px solid transparent; font-weight: 700; font-size: 14px; transition: transform .18s, background .2s, border-color .2s; }
.social__btn:hover { transform: translateY(-2px); background: var(--emerald); border-color: var(--gold-2); color: var(--gold-2); }
.social__btn svg { width: 20px; height: 20px; }

/* ---------- newsletter ---------- */
.news { display: flex; gap: 12px; max-width: 480px; margin-top: 24px; }
.news input { flex: 1; border: 2px solid rgba(245,238,224,.22); background: transparent; color: var(--cream); border-radius: 100px; padding: 14px 20px; font-family: var(--body); font-size: 15px; }
.news input::placeholder { color: var(--on-emerald-2); }
.news input:focus { outline: none; border-color: var(--gold-2); }

/* ---------- footer ---------- */
.foot { background: var(--ink); color: var(--on-emerald-2); }
.foot__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 28px; padding-block: clamp(48px,6vw,72px); }
.foot__brand .nav__logo-text { color: var(--gold-2); }
.foot h5 { font-family: var(--body); font-weight: 700; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2); margin: 0 0 16px; }
.foot a { display: block; color: var(--on-emerald); opacity: .8; padding: 5px 0; font-size: 14.5px; }
.foot a:hover { opacity: 1; color: var(--gold-2); }
.foot__pay { display: flex; gap: 10px; align-items: center; margin-top: 16px; flex-wrap: wrap; }
.paychip { font-family: var(--body); font-weight: 700; font-size: 11px; letter-spacing: .04em; border: 1px solid rgba(245,238,224,.2); border-radius: 6px; padding: 6px 10px; color: var(--on-emerald); }
.foot__bot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 24px 40px; border-top: 1px solid rgba(245,238,224,.12); font-size: 12.5px; }

/* ---------- cart drawer ---------- */
.scrim { position: fixed; inset: 0; background: rgba(43,32,23,.5); backdrop-filter: blur(3px); opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 120; }
.scrim.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 92vw); z-index: 130;
  background: var(--paper); box-shadow: -20px 0 60px -20px rgba(43,32,23,.45);
  transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.8,.2,1);
  display: flex; flex-direction: column;
}
.drawer.is-open { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.drawer__head h3 { font-family: var(--display); font-weight: 800; text-transform: uppercase; margin: 0; font-size: 22px; color: var(--ink); }
.drawer__close { background: none; border: 0; font-size: 22px; color: var(--ink); padding: 4px; }
.drawer__items { flex: 1; overflow-y: auto; padding: 8px 22px; }
.drawer__empty { text-align: center; color: var(--muted); padding: 56px 20px; }
.drawer__empty svg { width: 54px; height: 54px; color: rgba(43,32,23,.2); margin: 0 auto 16px; }
.citem { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: center; }
.citem__img { width: 64px; height: 64px; border-radius: 10px; overflow: hidden; background: var(--emerald-2); }
.citem__name { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 15px; margin: 0 0 2px; color: var(--ink); }
.citem__meta { font-size: 12px; color: var(--muted); }
.citem__price { font-weight: 700; color: var(--ink); }
.citem__rm { background: none; border: 0; color: var(--red); font-size: 12px; font-weight: 600; padding: 4px 0; }
.drawer__foot { padding: 20px 22px; border-top: 1px solid var(--line); }
.drawer__line { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 14px; color: var(--muted); }
.drawer__total { display: flex; justify-content: space-between; font-family: var(--display); font-weight: 800; font-size: 22px; color: var(--ink); margin: 8px 0 16px; }

/* ---------- checkout preview ---------- */
.checkout { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(28px,4vw,56px); align-items: start; }
.cofield { margin-bottom: 14px; }
.cofield label { display: block; font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.cofield input, .cofield select { width: 100%; border: 1.5px solid var(--line); border-radius: 10px; padding: 13px 15px; font-family: var(--body); font-size: 15px; background: var(--white); color: var(--ink); }
.cofield input::placeholder { color: var(--muted); }
.cofield input:focus, .cofield select:focus { outline: none; border-color: var(--gold); }
.co2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cosummary { background: var(--emerald); color: var(--on-emerald); border-radius: var(--radius); padding: 28px; position: sticky; top: 90px; }
.cosummary h3 { font-family: var(--display); font-weight: 800; text-transform: uppercase; margin: 0 0 18px; color: var(--gold-2); }
.coline { display: flex; justify-content: space-between; padding: 9px 0; font-size: 14px; color: var(--on-emerald-2); border-bottom: 1px solid rgba(245,238,224,.12); }
.coline b { color: var(--on-emerald); }
.cototal { display: flex; justify-content: space-between; font-family: var(--display); font-weight: 800; font-size: 24px; color: var(--gold-2); margin-top: 16px; }
.copay { display: flex; gap: 10px; margin-top: 8px; }
.coship { display: flex; flex-direction: column; gap: 2px; border: 1.5px solid var(--line); border-radius: 10px; padding: 12px 15px; background: var(--white); }
.coship__carrier { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 15px; letter-spacing: .02em; color: var(--gold-deep); }
.coship__note { font-size: 12px; color: var(--muted); }
.coalt { margin-top: 14px; }
.coalt__or { display: block; text-align: center; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--on-emerald-2); margin-bottom: 10px; position: relative; }
.coalt__btns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.coalt__btns .btn { --py: 13px; --px: 12px; font-size: 12px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- section head ---------- */
.shead { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(28px,4vw,48px); flex-wrap: wrap; }
.shead .eyebrow { color: var(--gold-deep); display: block; margin-bottom: 12px; }

/* ---------- toast ---------- */
.toast {
  position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%) translateY(120%);
  background: var(--ink); color: var(--gold-2); padding: 14px 22px; border-radius: 100px; z-index: 200;
  font-weight: 700; font-size: 14px; box-shadow: var(--shadow); transition: transform .35s cubic-bezier(.2,.8,.2,1);
  display: flex; align-items: center; gap: 10px; border: 1px solid rgba(154,111,62,.3);
}
.toast.is-on { transform: translateX(-50%) translateY(0); }
.toast svg { width: 18px; height: 18px; }

/* ---------- mobile menu ---------- */
.mmenu { position: fixed; inset: 0; z-index: 110; background: var(--emerald); color: var(--cream); transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.8,.2,1); display: flex; flex-direction: column; padding: 24px var(--gutter); }
.mmenu.is-open { transform: none; }
.mmenu__top { display: flex; justify-content: space-between; align-items: center; height: 46px; }
.mmenu__links { display: flex; flex-direction: column; gap: 6px; margin-top: 30px; }
.mmenu__links button { background: none; border: 0; text-align: left; color: var(--cream); font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 38px; padding: 8px 0; }
.mmenu__close { background: none; border: 0; color: var(--cream); font-size: 30px; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { max-width: 440px; }
  .creed, .pdp, .story, .checkout { grid-template-columns: 1fr; }
  .pdp__gallery { position: static; }
  .cosummary { position: static; }
  .pgrid { grid-template-columns: repeat(2,1fr); }
  .specs { grid-template-columns: 1fr 1fr; }
  .values { grid-template-columns: 1fr; }
  .social__grid { grid-template-columns: 1fr 1fr; }
  .foot__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .life { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(150px, 42vw, 210px); grid-template-areas: "a a" "b b" "c d" "e e"; }
  .pgrid { grid-template-columns: 1fr; }
  .specs { grid-template-columns: 1fr; }
  .foot__top { grid-template-columns: 1fr; }
  .co2 { grid-template-columns: 1fr; }
  .coalt__btns { grid-template-columns: 1fr; }
}

/* ============================================================
   MOBILE POLISH — phone-friendly, easy scrolling
   ============================================================ */
html { -webkit-text-size-adjust: 100%; }
@media (max-width: 760px) {
  /* smooth momentum scroll + no accidental sideways scroll */
  html, body { overflow-x: hidden; -webkit-overflow-scrolling: touch; }
  body { font-size: 16px; }

  /* tighter vertical rhythm so there's less endless scrolling */
  .section { padding-block: clamp(40px, 9vw, 60px); }
  .section--tight { padding-block: 32px; }
  :root { --gutter: 20px; }

  /* hero: image first, big tap-friendly buttons */
  .hero__inner { gap: 24px; padding-block: 28px 36px; }
  .hero__media { order: -1; max-width: 320px; margin: 0 auto; }
  .hero h1 { font-size: clamp(40px, 12vw, 58px); }
  .hero__sub { font-size: 16px; margin-top: 18px; }
  .hero__eyebrow { margin-bottom: 16px; }
  .hero__badge { width: 82px; height: 82px; font-size: 12px; top: -10px; right: 4px; }

  /* full-width primary CTAs on phones */
  .hero__cta { gap: 12px; }
  .hero__cta .btn { flex: 1 1 100%; }
  .hero__price { flex: 1 1 100%; text-align: center; margin-top: 4px; }
  .btn--lg { --py: 17px; --px: 26px; }

  /* headings scale down so nothing clips */
  .h1 { font-size: clamp(40px, 13vw, 64px); }
  .h2 { font-size: clamp(32px, 10vw, 52px); }
  .creed__big { font-size: clamp(32px, 9.5vw, 50px); }

  /* product detail: comfy stacking, sticky off */
  .pdp { gap: 22px; }
  .pdp__buy .btn { flex: 1 1 100%; }
  .pdp__buy .qty { width: 100%; justify-content: center; }
  .pdp__thumbs { gap: 8px; }
  .pdp__trust { gap: 12px; }

  /* checkout: roomy fields, summary below */
  .checkout { gap: 24px; }
  .cosummary { padding: 22px; }
  .coalt__btns .btn { --py: 15px; font-size: 13px; }

  /* cart drawer full width on small phones */
  .drawer { width: 100%; }

  /* marquees a touch calmer */
  .mq__track { animation-duration: 18s; }
  .socialmq__slot { width: 64vw; }

  /* lifestyle gallery: simpler, taller tiles */
  .life { grid-template-columns: 1fr; grid-auto-rows: 62vw; grid-template-areas: "a" "b" "c" "d" "e"; gap: 12px; }
  .life__cap { font-size: 22px; }

  /* social grid 2-up */
  .social__grid { grid-template-columns: 1fr 1fr; }
  .social__links { gap: 10px; }
  .social__btn { flex: 1 1 100%; justify-content: center; }

  /* footer breathing room above sticky bar */
  .foot__bot { flex-direction: column; gap: 8px; text-align: center; }

  /* keep content clear of the sticky buy bar */
  body { padding-bottom: 64px; }
  .stickybar__txt strong { font-size: 14px; }
  .stickybar .btn { --py: 13px; --px: 16px; font-size: 12px; }
  /* hide floating WhatsApp on mobile (it's already in the sticky bar) */
  .wafab { display: none; }

  /* bigger tap targets in nav + menus */
  .cartbtn, .nav__burger { padding: 10px; }
  .lang button { padding: 8px 13px; }
  .mmenu__links button { font-size: clamp(30px, 9vw, 40px); padding: 12px 0; }
  /* respect iPhone notch / safe areas so menus aren't clipped */
  .topbar { padding-top: env(safe-area-inset-top, 0); }
  .nav__row { padding-top: env(safe-area-inset-top, 0); height: auto; min-height: 64px; gap: 10px; }
  .nav__logo-text { font-size: 22px; }
  .nav__tools { gap: 8px; flex: none; }
  .nav__logo { min-width: 0; flex: 1 1 auto; overflow: hidden; }
  .mmenu { padding-top: calc(24px + env(safe-area-inset-top, 0)); padding-bottom: calc(24px + env(safe-area-inset-bottom, 0)); overflow-y: auto; }
  .mmenu__links { gap: 2px; }
  .stickybar__row { padding-bottom: calc(12px + env(safe-area-inset-bottom, 0)); }

  /* toast sits well above the sticky bar */
  .toast { bottom: 96px; width: max-content; max-width: calc(100vw - 32px); }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 38px; }
  .nav__logo-text { font-size: 22px; }
  .hero__media { max-width: 280px; }
}
