/* ============================================================
   MELI'S DEFENSE BOUTIQUE — "TACTICAL CUTE" PROTOTYPE
   Palette: punch pink #FF3E8A · ink #141414 · olive #6B7143
            warm base #FFF4E9 · volt #E1FF17
   Type:    Archivo Black (display) · Figtree (body)
   ============================================================ */

:root {
  --pink: #FF3E8A;
  --pink-deep: #E22571;
  --blush: #FFE1EE;
  --ink: #141414;
  --olive: #6B7143;
  --olive-deep: #4F5430;
  --base: #FFF4E9;
  --volt: #E1FF17;
  --white: #FFFFFF;
  --star: #FFB800;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(20, 20, 20, .10);
  --display: 'Archivo Black', sans-serif;
  --body: 'Figtree', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--body);
  background: var(--base);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; }

:focus-visible { outline: 3px solid var(--pink); outline-offset: 2px; border-radius: 4px; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 22px; }

/* ---------- announcement bar ---------- */
.announce {
  background: var(--ink);
  color: var(--base);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
}
.announce .track {
  display: inline-flex;
  gap: 56px;
  padding-left: 100%;
  animation: ticker 26s linear infinite;
}
.announce .volt { color: var(--volt); }
.announce .pinky { color: var(--pink); }
@keyframes ticker { to { transform: translateX(-100%); } }

/* ---------- header ---------- */
header.site {
  background: var(--base);
  border-bottom: 2px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 50;
}
.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}
.logo {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
  letter-spacing: -.01em;
}
.logo .tick { color: var(--pink); }
.logo small {
  display: block;
  font-family: var(--body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--olive);
  margin-top: 3px;
}
nav.main { display: flex; gap: 4px; flex-wrap: wrap; }
nav.main a {
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
nav.main a:hover { background: var(--ink); color: var(--base); }
nav.main a.hot { background: var(--pink); color: var(--white); }
nav.main a.hot:hover { background: var(--pink-deep); }
.head-icons { display: flex; gap: 16px; align-items: center; font-weight: 700; font-size: 14px; }
.head-icons a { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; cursor: pointer; }
.head-icons svg { width: 20px; height: 20px; stroke: var(--ink); stroke-width: 2.2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* shared inline-svg icon defaults */
.ic { stroke: currentColor; stroke-width: 2.2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 16px 34px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ink { background: var(--ink); color: var(--base); }
.btn-ink:hover { background: #000; }
.btn-pink { background: var(--pink); color: var(--white); }
.btn-pink:hover { background: var(--pink-deep); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--ink);
}

/* ---------- chevron divider (the veteran signature) ---------- */
.chevrons {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 26px 0;
}
.chevrons i {
  width: 26px;
  height: 14px;
  background: var(--olive);
  clip-path: polygon(0 100%, 50% 40%, 100% 100%, 100% 60%, 50% 0, 0 60%);
  opacity: .9;
}
.chevrons i:nth-child(2) { opacity: .55; }
.chevrons i:nth-child(3) { opacity: .3; }

/* ---------- hero ---------- */
.hero {
  background: var(--pink);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.hero .inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 30px;
  align-items: center;
  padding: 64px 0 70px;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(52px, 7.5vw, 96px);
  line-height: .95;
  letter-spacing: -.015em;
  text-transform: uppercase;
  animation: rise .7s ease both;
}
.hero h1 .out { color: var(--ink); }
.hero p.sub {
  font-size: 19px;
  font-weight: 600;
  max-width: 46ch;
  margin: 22px 0 30px;
  animation: rise .7s .12s ease both;
}
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; animation: rise .7s .2s ease both; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.badge-olive {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--olive);
  color: var(--base);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 22px;
}
.badge-olive::before, .badge-olive::after {
  content: "";
  width: 14px; height: 9px;
  background: var(--base);
  clip-path: polygon(0 100%, 50% 40%, 100% 100%, 100% 60%, 50% 0, 0 60%);
}

/* starburst dB badge */
.starburst {
  position: absolute;
  top: 48px;
  right: 6%;
  width: 118px;
  height: 118px;
  background: var(--volt);
  color: var(--ink);
  clip-path: polygon(50% 0%, 59% 12%, 72% 5%, 76% 19%, 91% 17%, 89% 32%, 100% 38%, 92% 50%, 100% 62%, 89% 68%, 91% 83%, 76% 81%, 72% 95%, 59% 88%, 50% 100%, 41% 88%, 28% 95%, 24% 81%, 9% 83%, 11% 68%, 0% 62%, 8% 50%, 0% 38%, 11% 32%, 9% 17%, 24% 19%, 28% 5%, 41% 12%);
  display: grid;
  place-content: center;
  text-align: center;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
  transform: rotate(8deg);
  animation: pulseB 2.6s ease-in-out infinite;
  z-index: 3;
}
.starburst small { font-family: var(--body); font-weight: 800; font-size: 10px; letter-spacing: .1em; }
@keyframes pulseB { 0%,100% { transform: rotate(8deg) scale(1); } 50% { transform: rotate(8deg) scale(1.06); } }

/* ---------- CSS-drawn alarm illustration ---------- */
.alarm-stage { position: relative; display: grid; place-items: center; min-height: 380px; }
.alarm-stage .ring-bg {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
}
.alarm-stage .ring-bg.r2 { width: 250px; height: 250px; background: rgba(255,255,255,.14); }

.alarm { --shell: #FF9ECB; width: 150px; position: relative; filter: drop-shadow(0 16px 22px rgba(0,0,0,.22)); }
.alarm .loop {
  width: 54px; height: 54px;
  border: 10px solid var(--ink);
  border-radius: 50%;
  margin: 0 auto -8px;
}
.alarm .bodyshell {
  background: var(--shell);
  border: 4px solid var(--ink);
  border-radius: 34px;
  height: 190px;
  position: relative;
  overflow: hidden;
}
.alarm .grill {
  position: absolute;
  top: 26px; left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 9px);
  gap: 7px;
}
.alarm .grill i { width: 9px; height: 9px; border-radius: 50%; background: var(--ink); }
.alarm .grill i:nth-child(n+4) { opacity: .85; }
.alarm .led {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 14px;
  border-radius: 999px;
  background: var(--volt);
  border: 3px solid var(--ink);
}
.alarm .pin {
  position: absolute;
  right: -34px; top: 46%;
  width: 46px; height: 16px;
  background: var(--ink);
  border-radius: 0 999px 999px 0;
}
.alarm .pin::after {
  content: "";
  position: absolute;
  right: -22px; top: -9px;
  width: 34px; height: 34px;
  border: 8px solid var(--ink);
  border-radius: 50%;
}
.alarm.small { width: 84px; }
.alarm.small .loop { width: 30px; height: 30px; border-width: 6px; margin-bottom: -5px; }
.alarm.small .bodyshell { height: 106px; border-radius: 20px; border-width: 3px; }
.alarm.small .grill { top: 14px; grid-template-columns: repeat(3, 5px); gap: 4px; }
.alarm.small .grill i { width: 5px; height: 5px; }
.alarm.small .led { bottom: 14px; width: 24px; height: 8px; border-width: 2px; }
.alarm.small .pin { display: none; }

/* sound waves */
.wave {
  position: absolute;
  width: 34px; height: 60px;
  border: 6px solid rgba(255,255,255,.85);
  border-left-color: transparent;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}
.wave.w1 { right: 12%; top: 34%; }
.wave.w2 { right: 6%; top: 30%; height: 90px; width: 50px; opacity: .6; }
.wave.w3 { left: 12%; top: 34%; transform: scaleX(-1); }
.wave.w4 { left: 6%; top: 30%; height: 90px; width: 50px; opacity: .6; transform: scaleX(-1); }

/* pom pom */
.pom {
  position: absolute;
  bottom: 16%;
  left: 16%;
  width: 88px; height: 88px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff 0 8%, transparent 9%),
    radial-gradient(circle at 70% 40%, #fff 0 6%, transparent 7%),
    radial-gradient(circle at 45% 70%, #fff 0 7%, transparent 8%),
    radial-gradient(circle at 60% 60%, #FFD3E7 0 60%, #FF9ECB 100%);
  box-shadow: 0 10px 18px rgba(0,0,0,.18), inset -6px -8px 0 rgba(0,0,0,.06);
}
.pom::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 3px dashed rgba(255,255,255,.7);
}

/* ---------- trust bar ---------- */
.trustbar { background: var(--ink); color: var(--base); }
.trustbar .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 20px 0;
  text-align: center;
}
.trustbar b { display: block; font-size: 14px; letter-spacing: .02em; }
.trustbar span { font-size: 12.5px; opacity: .75; }
.trustbar svg { width: 26px; height: 26px; margin: 0 auto 7px; display: block; color: var(--volt); }

/* ---------- section scaffolding ---------- */
section.block { padding: 64px 0; }
.eyebrow {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 10px;
}
h2.title {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: 14px;
}
p.lede { font-size: 17px; max-width: 62ch; }
.center { text-align: center; }
.center p.lede { margin: 0 auto; }

/* ---------- scenario tiles ---------- */
.scenarios {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.scenario {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 22px 16px 18px;
  text-decoration: none;
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.scenario:hover { transform: translateY(-4px); box-shadow: var(--shadow); background: var(--blush); }
.scenario svg { width: 34px; height: 34px; margin: 0 auto; display: block; color: var(--pink); }
.scenario b { display: block; font-size: 14.5px; margin-top: 10px; line-height: 1.25; }
.scenario span { font-size: 12px; color: var(--olive); font-weight: 700; }

/* ---------- colorway candy row ---------- */
.candy {
  background: var(--blush);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.candy-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  margin: 38px 0 26px;
  align-items: end;
}
.candy-item { text-align: center; text-decoration: none; }
.candy-item .alarm { margin: 0 auto 10px; transition: transform .18s ease; }
.candy-item:hover .alarm { transform: translateY(-6px) rotate(-3deg); }
.candy-item b { font-size: 12px; display: block; }

/* ---------- product grid ---------- */
.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.card {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
  position: relative;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card .art {
  height: 180px;
  display: grid;
  place-items: center;
  border-bottom: 2px solid var(--ink);
}
.card .art svg.p-art { width: 92px; height: 92px; }
.card .art .alarm.small { filter: drop-shadow(0 8px 12px rgba(0,0,0,.15)); }
.card .art.bg-pink { background: var(--pink); }
.card .art.bg-olive { background: var(--olive); }
.card .art.bg-volt { background: var(--volt); }
.card .art.bg-blush { background: var(--blush); }
.card .art.bg-sky { background: #BFE3F2; }
.card .art.bg-butter { background: #F5DF47; }
.card .meta { padding: 14px 16px 18px; }
.card .meta b { font-size: 15px; display: block; line-height: 1.3; }
.card .stars { color: var(--star); font-size: 13px; letter-spacing: .05em; margin: 5px 0 3px; }
.card .stars span { color: var(--ink); font-weight: 600; }
.card .price { font-weight: 800; font-size: 15px; }
.card .price s { font-weight: 600; opacity: .5; margin-right: 6px; }
.flag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--volt);
  color: var(--ink);
  border: 2px solid var(--ink);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 2;
}
.flag.pinkflag { background: var(--pink); color: var(--white); }

/* ---------- founder block ---------- */
.founder {
  background: var(--olive);
  color: var(--base);
  position: relative;
  overflow: hidden;
}
.founder .stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent 0 42px, rgba(255,244,233,.06) 42px 84px);
  pointer-events: none;
}
.founder .inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: center;
  padding: 70px 0;
  position: relative;
}
.founder h2.title { color: var(--base); }
.founder .eyebrow { color: var(--volt); }
.founder p { margin-bottom: 14px; font-size: 16.5px; }
.dogtags { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.tag {
  background: var(--base);
  color: var(--ink);
  border-radius: 999px;
  padding: 9px 18px 9px 34px;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  position: relative;
}
.tag::before {
  content: "";
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 12px;
  border: 3px solid var(--olive);
  border-radius: 50%;
}
.portrait {
  background: var(--base);
  border-radius: var(--radius);
  border: 3px solid var(--ink);
  min-height: 340px;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--ink);
  padding: 30px;
  position: relative;
  background-image: repeating-linear-gradient(-45deg, transparent 0 26px, rgba(107,113,67,.08) 26px 52px);
}
.portrait svg { width: 64px; height: 64px; margin: 0 auto 16px; color: var(--olive); }
.portrait b { font-size: 13px; text-transform: uppercase; letter-spacing: .18em; color: var(--olive); }
.portrait small { display: block; font-size: 12px; margin-top: 6px; opacity: .7; }

/* ---------- bundles ---------- */
.bundles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.bundle {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  text-align: center;
  position: relative;
  transition: transform .15s ease, box-shadow .15s ease;
}
.bundle:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.bundle.hotpick { background: var(--ink); color: var(--base); }
.bundle .rank { font-weight: 800; font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--olive); }
.bundle.hotpick .rank { color: var(--volt); }
.bundle h3 { font-family: var(--display); font-size: 21px; text-transform: uppercase; margin: 8px 0 4px; }
.bundle .bprice { font-family: var(--display); font-size: 34px; margin: 10px 0 2px; }
.bundle .bprice sup { font-size: 16px; }
.bundle ul { list-style: none; margin: 14px 0 20px; font-size: 14px; }
.bundle li { padding: 5px 0; border-bottom: 1px dashed rgba(20,20,20,.2); }
.bundle.hotpick li { border-color: rgba(255,244,233,.25); }
.bundle .btn { padding: 12px 26px; font-size: 13px; }

/* ---------- legality strip ---------- */
.legal-strip {
  background: var(--volt);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.legal-strip .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px 0;
  flex-wrap: wrap;
}
.legal-strip h3 { font-family: var(--display); font-size: 22px; text-transform: uppercase; }
.legal-strip p { font-weight: 600; font-size: 14.5px; max-width: 52ch; }

/* ---------- reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.review {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 22px;
}
.review .stars { color: var(--star); letter-spacing: .1em; margin-bottom: 10px; }
.review p { font-size: 15px; margin-bottom: 14px; }
.review b { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.review span { display: block; font-size: 12px; color: var(--olive); font-weight: 700; }

/* ---------- email capture ---------- */
.capture { background: var(--pink); color: var(--white); }
.capture .inner { text-align: center; padding: 64px 0; }
.capture h2.title { color: var(--white); }
.capture form {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 26px;
  flex-wrap: wrap;
}
.capture input[type="email"] {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 22px;
  border-radius: 999px;
  border: 3px solid var(--ink);
  min-width: 300px;
}
.capture .fine { font-size: 12.5px; opacity: .85; margin-top: 14px; }

/* ---------- footer ---------- */
footer.site {
  background: var(--ink);
  color: var(--base);
  padding: 54px 0 30px;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.foot-grid h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .2em; color: var(--volt); margin-bottom: 14px; }
.foot-grid a { display: block; text-decoration: none; font-size: 14px; padding: 4px 0; opacity: .85; }
.foot-grid a:hover { opacity: 1; color: var(--pink); }
.foot-grid p { font-size: 14px; opacity: .8; max-width: 34ch; }
.foot-legal {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,244,233,.2);
  font-size: 12px;
  opacity: .65;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.crumbs { font-size: 13px; font-weight: 600; padding: 18px 0 4px; color: var(--olive); }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

.pdp {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  padding: 26px 0 60px;
  align-items: start;
}
.gallery .main-art {
  background: var(--pink);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  min-height: 470px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.gallery .thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 12px; }
.gallery .thumb {
  border: 2px solid var(--ink);
  border-radius: 10px;
  height: 96px;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: var(--blush);
  overflow: hidden;
}
.gallery .thumb.bg2 { background: var(--volt); }
.gallery .thumb.bg3 { background: var(--olive); }
.gallery .thumb.bg4 { background: #BFE3F2; }
.gallery .thumb .alarm.small { width: 52px; }
.gallery .thumb .alarm.small .bodyshell { height: 66px; border-radius: 14px; }
.gallery .thumb .alarm.small .loop { width: 20px; height: 20px; border-width: 5px; margin-bottom: -4px; }
.gallery .thumb .alarm.small .grill { top: 9px; }
.gallery .thumb .alarm.small .led { bottom: 9px; width: 18px; height: 6px; }

.buybox .stars { color: var(--star); font-weight: 700; letter-spacing: .08em; font-size: 15px; }
.buybox .stars a { color: var(--ink); font-size: 13.5px; }
.buybox h1 {
  font-family: var(--display);
  font-size: clamp(30px, 3.6vw, 44px);
  text-transform: uppercase;
  line-height: 1;
  margin: 10px 0 12px;
}
.buybox .pprice { font-family: var(--display); font-size: 30px; margin-bottom: 4px; }
.buybox .pprice small { font-family: var(--body); font-weight: 700; font-size: 13px; color: var(--olive); }
.icon-bullets { display: flex; gap: 8px; margin: 18px 0; flex-wrap: wrap; }
.icon-bullets span {
  background: var(--blush);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
  font-size: 12.5px;
  padding: 7px 14px;
}

.opt-label { font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; margin: 18px 0 10px; }
.opt-label em { font-style: normal; color: var(--pink); }
.swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  cursor: pointer;
  transition: transform .12s ease;
  position: relative;
}
.swatch:hover { transform: scale(1.12); }
.swatch.active::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 3px solid var(--pink);
  border-radius: 50%;
}

.packs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pack {
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--white);
  padding: 12px 10px;
  text-align: center;
  cursor: pointer;
  font-size: 13px;
  position: relative;
}
.pack b { display: block; font-size: 15px; }
.pack .save { color: var(--pink); font-weight: 800; font-size: 11.5px; text-transform: uppercase; }
.pack.active { background: var(--ink); color: var(--base); }
.pack.active .save { color: var(--volt); }
.pack .mini-flag {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
}

.atc-row { display: flex; gap: 12px; margin-top: 24px; }
.qty {
  display: flex;
  align-items: center;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
}
.qty button {
  font-family: var(--body);
  font-weight: 800;
  font-size: 18px;
  background: none;
  border: none;
  width: 42px; height: 100%;
  cursor: pointer;
}
.qty output { font-weight: 800; min-width: 26px; text-align: center; }
.atc-row .btn { flex: 1; text-align: center; }

.ship-notes { margin-top: 18px; font-size: 13.5px; }
.ship-notes li { list-style: none; padding: 4px 0 4px 26px; position: relative; }
.ship-notes li::before {
  content: "";
  position: absolute;
  left: 4px; top: 10px;
  width: 12px; height: 8px;
  background: var(--olive);
  clip-path: polygon(0 100%, 50% 40%, 100% 100%, 100% 60%, 50% 0, 0 60%);
}

/* how it works */
.howto { background: var(--blush); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.step {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
}
.step .n {
  font-family: var(--display);
  font-size: 42px;
  color: var(--pink);
  line-height: 1;
}
.step b { display: block; font-size: 16px; margin: 10px 0 6px; }
.step p { font-size: 14.5px; }

/* description + specs */
.desc-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 44px; padding: 60px 0; }
.desc-grid h3 { font-family: var(--display); font-size: 22px; text-transform: uppercase; margin-bottom: 14px; }
.desc-grid p { margin-bottom: 14px; font-size: 15.5px; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.spec-table td { padding: 10px 6px; border-bottom: 1.5px solid rgba(20,20,20,.15); }
.spec-table td:first-child { font-weight: 800; width: 45%; }
.legal-note {
  margin-top: 20px;
  background: var(--white);
  border: 2px dashed var(--olive);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 13.5px;
}
.legal-note b { color: var(--olive-deep); text-transform: uppercase; letter-spacing: .06em; font-size: 12px; }

/* cross-sell + pdp reviews reuse card/review styles */
.pdp-reviews { padding-bottom: 70px; }
.review-summary {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 26px 0 8px;
  flex-wrap: wrap;
}
.review-summary .big {
  font-family: var(--display);
  font-size: 54px;
  line-height: 1;
}

/* sticky mobile ATC */
.sticky-atc {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  color: var(--base);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 18px;
  z-index: 60;
}
.sticky-atc b { font-size: 14px; }
.sticky-atc .btn { padding: 12px 24px; font-size: 13px; }

/* ---------- version switcher ---------- */
.ver-switch {
  position: fixed;
  bottom: 18px;
  left: 18px;
  z-index: 80;
  background: var(--ink);
  color: var(--base);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ver-switch:hover { background: #000; }
.ver-switch .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--pink); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero .inner { grid-template-columns: 1fr; padding: 48px 0 100px; }
  .alarm-stage { min-height: 300px; }
  .starburst { top: auto; bottom: 20px; right: 8%; width: 96px; height: 96px; font-size: 19px; }
  .scenarios { grid-template-columns: repeat(3, 1fr); }
  .candy-row { grid-template-columns: repeat(4, 1fr); row-gap: 26px; }
  .grid4 { grid-template-columns: repeat(2, 1fr); }
  .founder .inner { grid-template-columns: 1fr; }
  .bundles, .reviews, .steps { grid-template-columns: 1fr; }
  .pdp { grid-template-columns: 1fr; }
  .desc-grid { grid-template-columns: 1fr; padding: 44px 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .trustbar .row { grid-template-columns: repeat(2, 1fr); row-gap: 18px; }
  nav.main { display: none; }
  .sticky-atc { display: flex; }
}
@media (max-width: 560px) {
  .scenarios { grid-template-columns: repeat(2, 1fr); }
  .candy-row { grid-template-columns: repeat(3, 1fr); }
  .grid4 { grid-template-columns: 1fr; }
  .capture input[type="email"] { min-width: 0; width: 100%; }
  .foot-grid { grid-template-columns: 1fr; }
}

/* ---------- real product photos ---------- */
.card .art.art-photo {
  background: var(--white);
  padding: 0;
  height: 220px;
  display: block;
  overflow: hidden;
  flex: none;
}
.card .art.art-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}
.card .meta { background: var(--white); position: relative; }
.card:hover .art.art-photo img { transform: scale(1.045); }

.gallery .main-art.art-photo {
  background: var(--white);
  min-height: 0;
  aspect-ratio: 1 / 1;
}
.gallery .main-art.art-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery .thumb.thumb-photo {
  background: var(--white);
  padding: 0;
  border-radius: 10px;
}
.gallery .thumb.thumb-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery .thumb.thumb-photo.active {
  outline: 3px solid var(--pink);
  outline-offset: 2px;
}

/* hero photo replaces the CSS alarm illustration */
.hero-photo {
  width: min(380px, 78%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--ink);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  position: relative;
  z-index: 2;
}

/* fan-favorite photo chips */
.candy-item.candy-photo .chip {
  display: block;
  width: 86px;
  height: 86px;
  margin: 0 auto 10px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  overflow: hidden;
  background: var(--white);
  transition: transform .18s ease;
}
.candy-item.candy-photo:hover .chip { transform: translateY(-6px) rotate(-3deg); }
.candy-item.candy-photo .chip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- PDP option chips ---------- */
.opt-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 4px;
}
.opt-chip {
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  padding: 8px 14px;
  cursor: pointer;
  transition: transform .12s ease;
}
.opt-chip:hover { transform: translateY(-2px); }
.opt-chip.active { background: var(--ink); color: var(--base); }

/* ---------- cart drawer ---------- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,20,20,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 90;
}
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100dvh;
  width: min(420px, 94vw);
  background: var(--base);
  border-left: 3px solid var(--ink);
  z-index: 91;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform .25s ease;
}
body.drawer-is-open .drawer-overlay { opacity: 1; pointer-events: auto; }
body.drawer-is-open .cart-drawer { transform: translateX(0); }
body.drawer-is-open { overflow: hidden; }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 3px solid var(--ink);
}
.drawer-head b {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: .02em;
}
.drawer-close {
  font-size: 26px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 8px;
}
.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 20px;
}
.drawer-empty { text-align: center; padding: 48px 10px; }
.drawer-empty b { font-size: 17px; display: block; margin-bottom: 8px; }
.drawer-empty p { margin-bottom: 20px; }
.drawer-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 2px solid rgba(20,20,20,.12);
}
.drawer-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--white);
}
.drawer-info b { font-size: 14px; display: block; line-height: 1.25; }
.drawer-variant { display: block; font-size: 12.5px; opacity: .75; margin-top: 2px; }
.drawer-price { display: block; font-weight: 800; font-size: 13.5px; margin-top: 3px; }
.drawer-qty { margin-top: 8px; width: max-content; }
.drawer-qty button { width: 30px; height: 30px; font-size: 15px; }
.drawer-qty output { font-size: 13.5px; }
.drawer-remove {
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
  opacity: .6;
  padding: 0 4px;
}
.drawer-remove:hover { opacity: 1; }
.drawer-foot {
  border-top: 3px solid var(--ink);
  padding: 16px 20px 20px;
  background: var(--white);
}
.drawer-ship {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
.drawer-ship.unlocked { color: var(--pink); }
.drawer-total {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin-bottom: 12px;
}
.drawer-total b { font-size: 17px; }
.drawer-checkout { display: block; text-align: center; width: 100%; }
.drawer-note {
  font-size: 11.5px;
  text-align: center;
  opacity: .65;
  margin-top: 8px;
}

@media (max-width: 720px) {
  .card .art.art-photo { height: 170px; }
  .card .art.art-photo img { height: 170px; }
  .candy-item.candy-photo .chip { width: 68px; height: 68px; }
  .hero-photo { width: min(300px, 82%); }
}

/* ---------- policies page ---------- */
.policy-page { padding-bottom: 60px; }
.policy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 18px 0 30px;
}
.policy-nav a {
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 9px 16px;
  background: var(--white);
  transition: transform .12s ease;
}
.policy-nav a:hover { transform: translateY(-2px); background: var(--pink); color: var(--white); }
.policy {
  max-width: 820px;
  margin: 0 auto 26px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 34px 38px 40px;
  scroll-margin-top: 90px;
}
.policy .title { font-size: clamp(24px, 3vw, 34px); margin-bottom: 14px; }
.policy-body { font-size: 14.5px; line-height: 1.65; }
.policy-body p { margin: 10px 0; }
.policy-body h1, .policy-body h2, .policy-body h3, .policy-body h4, .policy-body h5, .policy-body strong > em {
  font-family: var(--body);
  font-weight: 800;
  font-size: 15.5px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 22px 0 8px;
}
.policy-body ul, .policy-body ol { margin: 10px 0 10px 22px; }
.policy-body li { margin: 5px 0; }
.policy-body a { color: var(--pink); font-weight: 700; }
@media (max-width: 720px) {
  .policy { padding: 24px 20px 28px; }
}

/* ---------- founder photo ---------- */
.portrait.portrait-photo {
  padding: 0;
  overflow: hidden;
  place-content: stretch;
  min-height: 0;
}
.portrait.portrait-photo img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.portrait.portrait-photo b {
  display: block;
  text-align: center;
  padding: 12px 14px;
  border-top: 3px solid var(--ink);
  background: var(--base);
}
.founder-quote {
  font-weight: 800;
  font-style: italic;
  font-size: 17px;
  color: var(--volt);
  margin-bottom: 12px;
}

/* ---------- article page ---------- */
.article {
  max-width: 780px;
  margin: 0 auto;
  padding: 10px 0 30px;
}
.article .title { font-size: clamp(30px, 4.5vw, 48px); margin: 8px 0 20px; }
.article-hero {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.article-body { font-size: 16.5px; line-height: 1.7; }
.article-body p { margin: 14px 0; }
.article-body ul { margin: 14px 0 14px 24px; }
.article-body li { margin: 10px 0; }
.article-body .legal-note { margin-top: 26px; }
