/* =========================================================================
 * style.css — Ballop  "Clean Seoul" — minimal white + oval brand stamp
 * Ref    : Yummy Yummy style (white bg, serif oval, large photo, + deco)
 * Palette: white #fff · cherry #D42B35 · ink #1A1A1A · muted #888
 * ===================================================================== */
:root {
  --cherry:      #D42B35;
  --cherry-dark: #A8202A;
  --cherry-soft: #FFF0F1;
  --amber:       #F5A623;
  --ink:         #1A1A1A;
  --ink-2:       #333333;
  --muted:       #888888;
  --faint:       #BBBBBB;
  --line:        #EBEBEB;
  --bg:          #FFFFFF;
  --cream:       #FAF8F6;
  --card:        #FFFFFF;
  --radius:      12px;
  --radius-lg:   18px;
  --shadow:      0 2px 14px rgba(0,0,0,.06);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.10);
  --maxw:        760px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei",
               -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }

.wrap    { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 40px 0; }

/* section titles: +  TITLE  + style */
.section-title {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 6px;
  padding-left: 0;
  border-left: none;
}
.section-title::before,
.section-title::after {
  content: '+';
  color: var(--cherry);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}
.section-sub { color: var(--muted); font-size: 13px; margin-bottom: 22px; text-align: center; }

/* ── Topbar ──────────────────────────────────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between; height: 52px;
}
.brand {
  display: flex;
  align-items: center;
}
.brand-logo {
  height: 32px;
  width: auto;
  display: block;
  filter: invert(1);
}
.lang {
  font-size: 11px; color: var(--muted); letter-spacing: .04em;
  border: 1px solid var(--line); padding: 4px 12px; border-radius: 999px;
}

/* ══════════════════════════════════════════════════════════════════════
   HERO — clean minimal, Yummy Yummy style
   oval stamp → centered photo with deco → headline → countdown
   ══════════════════════════════════════════════════════════════════════ */
.hero {
  background: #fff;
  text-align: center;
  overflow: hidden;
  padding-bottom: 28px;
}

/* ── oval brand stamp ── */
.hero-oval {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--cherry);
  border-radius: 999px;
  padding: 13px 52px;
  margin: 20px auto 0;
  gap: 4px;
}
.oval-brand {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 34px;
  color: var(--cherry);
  line-height: 1;
  letter-spacing: .02em;
}
.oval-sub {
  font-size: 10px;
  font-weight: 900;
  color: var(--cherry);
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* ── center stage ── */
.hero-center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(220px, 68vw, 420px);
  margin: 0 auto;
}

/* decorative + and ✦ */
.deco {
  position: absolute;
  color: var(--cherry);
  font-weight: 900;
  pointer-events: none;
  line-height: 1;
  z-index: 3;
  user-select: none;
}
.d1 { top: 14%; left: 6%;  font-size: 28px; }
.d2 { top: 18%; right: 8%; font-size: 16px; opacity: .65; }
.d3 { bottom: 16%; left: 10%; font-size: 16px; opacity: .55; }
.d4 { bottom: 20%; right: 6%;  font-size: 22px; }

/* product photo */
.hero-photo {
  position: relative;
  z-index: 2;
  width: clamp(220px, 74vw, 500px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,.11));
}

/* ── headline ── */
.hero-copy { margin-top: 6px; }
.hero-h1 {
  font-size: clamp(20px, 5vw, 30px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.2;
  color: var(--ink);
  text-wrap: balance;
}
.hero-h1 em { color: var(--cherry); font-style: normal; }
.lead {
  color: var(--muted); font-size: 13px;
  max-width: 460px; margin: 8px auto 0; line-height: 1.75;
}

/* countdown */
.hero-count { margin-top: 20px; }
.countdown { display: flex; gap: 8px; justify-content: center; }
.cd-box {
  background: var(--ink); color: #fff;
  border-radius: 10px; min-width: 58px; padding: 9px 4px;
}
.cd-box b {
  display: block; font-size: 24px; font-weight: 900;
  letter-spacing: -.04em; font-variant-numeric: tabular-nums;
}
.cd-box small { font-size: 10px; opacity: .5; letter-spacing: .08em; }
.cd-label {
  font-size: 12px; color: var(--muted); margin-top: 10px;
  letter-spacing: .04em;
}

/* ── Benefits ────────────────────────────────────────────────────────── */
.benefits { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.benefit {
  background: var(--card); border-radius: var(--radius);
  padding: 14px; box-shadow: var(--shadow);
  display: flex; gap: 10px; align-items: flex-start;
  border: 1px solid var(--line); transition: border-color .2s;
}
.benefit:hover { border-color: var(--cherry); }
.benefit .ico   { font-size: 18px; line-height: 1; margin-top: 1px; flex-shrink: 0; }
.benefit b      { display: block; font-size: 13px; font-weight: 800; }
.benefit small  { color: var(--muted); font-size: 12px; margin-top: 1px; display: block; }

/* gift progress */
.gift-card {
  background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 16px; margin-top: 12px;
  border: 1px solid var(--line);
}
.gift-card b { font-size: 14px; font-weight: 900; }
.progress {
  height: 5px; background: var(--line); border-radius: 999px;
  overflow: hidden; margin: 10px 0;
}
.progress > i {
  display: block; height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--cherry-dark), var(--cherry));
  width: 0; transition: width .55s cubic-bezier(.4,0,.2,1);
}
.gift-tiers { display: flex; justify-content: space-between; font-size: 11px; color: var(--faint); }
.gift-tiers span.hit { color: var(--cherry); font-weight: 800; }

/* ── Gallery ─────────────────────────────────────────────────────────── */
.gallery .main-img {
  background: var(--cream); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
}
.gallery .main-img img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.thumbs { display: flex; gap: 8px; margin-top: 10px; }
.thumbs img {
  width: 60px; height: 60px; border-radius: 8px; object-fit: contain;
  border: 1.5px solid transparent; cursor: pointer; background: var(--cream); padding: 4px;
  transition: border-color .15s;
}
.thumbs img.active { border-color: var(--cherry); }

.prod-head h2 { font-size: 22px; font-weight: 900; letter-spacing: -.02em; }
.prod-head .tagline { color: var(--muted); font-size: 13px; margin: 5px 0 9px; }
.stars { color: var(--amber); font-size: 13px; }
.stars small { color: var(--muted); margin-left: 6px; }

.price-row { display: flex; align-items: baseline; gap: 10px; margin: 14px 0; }
.price-now {
  font-size: 34px; font-weight: 900; color: var(--cherry);
  font-variant-numeric: tabular-nums; letter-spacing: -.03em;
}
.price-list {
  color: var(--faint); text-decoration: line-through; font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.price-off {
  background: var(--cherry); color: #fff;
  font-size: 10px; font-weight: 900; padding: 3px 8px;
  border-radius: 6px; letter-spacing: .03em;
}

.highlights { list-style: none; margin: 10px 0; }
.highlights li {
  font-size: 14px; padding: 5px 0 5px 20px; position: relative; line-height: 1.55;
}
.highlights li::before {
  content: "+"; position: absolute; left: 0;
  color: var(--cherry); font-weight: 900; font-size: 14px;
}

/* ── Tiers ───────────────────────────────────────────────────────────── */
.tiers { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin: 12px 0 6px; }
.tier {
  border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 13px; text-align: center; background: #fff;
  cursor: pointer; transition: .18s; position: relative;
}
.tier:hover  { border-color: var(--cherry); }
.tier.active { border-color: var(--cherry); background: var(--cherry); color: #fff; }
.tier.active .t-unit  { color: #fff; }
.tier.active .t-each  { color: rgba(255,255,255,.75); }
.tier .t-label { font-weight: 800; font-size: 13px; }
.tier .t-unit  {
  color: var(--cherry); font-weight: 900; font-size: 20px; margin-top: 3px;
  font-variant-numeric: tabular-nums; letter-spacing: -.02em;
}
.tier .t-each  { font-size: 11px; color: var(--muted); margin-top: 2px; }
.tier .t-tag   {
  position: absolute; top: -8px; right: 8px;
  background: var(--amber); color: #fff;
  font-size: 10px; font-weight: 900; padding: 2px 8px;
  border-radius: 999px; letter-spacing: .04em;
}

/* options */
.opt { margin: 14px 0; }
.opt > label {
  font-size: 11px; font-weight: 900; display: block; margin-bottom: 8px;
  color: var(--ink-2); letter-spacing: .08em; text-transform: uppercase;
}
.opt-values { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1.5px solid var(--line); background: #fff; border-radius: 8px;
  padding: 7px 13px; font-size: 13px; cursor: pointer; transition: .15s; font-weight: 500;
}
.chip:hover  { border-color: var(--cherry); }
.chip.active { border-color: var(--cherry); background: var(--cherry); color: #fff; }

/* qty */
.qty {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--line); border-radius: 10px; overflow: hidden; background: #fff;
}
.qty button {
  width: 38px; height: 38px; font-size: 18px;
  background: #fff; color: var(--ink); transition: background .1s;
}
.qty button:hover { background: var(--cream); }
.qty input {
  width: 46px; height: 38px; text-align: center; border: none;
  font-size: 15px; font-weight: 700;
  border-left: 1px solid var(--line); border-right: 1px solid var(--line);
}

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; font-weight: 900; font-size: 15px; padding: 14px 24px;
  width: 100%; transition: .18s; letter-spacing: .01em;
}
.btn-primary  { background: var(--cherry); color: #fff; box-shadow: 0 4px 18px rgba(212,43,53,.25); }
.btn-primary:hover  { background: var(--cherry-dark); }
.btn-primary:active { transform: translateY(1px); }
.btn-outline  {
  background: transparent; color: var(--cherry);
  border: 1.5px solid var(--cherry); border-radius: 999px;
}
.btn-outline:hover { background: var(--cherry); color: #fff; }
.btn-ghost    { background: var(--line); color: var(--ink-2); border-radius: 999px; }
.btn-ghost:hover { background: #ddd; }
.btn-block    { width: 100%; }
.btn[disabled] { opacity: .4; cursor: not-allowed; pointer-events: none; }

/* ── Cards / FAQ / reviews ───────────────────────────────────────────── */
.card {
  background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 18px; border: 1px solid var(--line);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  padding: 14px 0; font-weight: 800; font-size: 15px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-a { font-size: 14px; color: var(--muted); padding: 0 0 14px; display: none; line-height: 1.75; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.arrow { transition: .2s; color: var(--faint); flex-shrink: 0; }

.review { padding: 13px 0; border-bottom: 1px solid var(--line); }
.review:last-child { border-bottom: none; }
.review .r-top  { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); }
.review .r-name { font-weight: 900; color: var(--ink-2); font-size: 13px; }
.review p       { font-size: 14px; color: var(--ink-2); margin-top: 5px; line-height: 1.65; }

/* detail blocks */
.detail-block h3 { font-size: 18px; font-weight: 900; margin: 22px 0 8px; }
.detail-block p  { font-size: 15px; color: var(--ink-2); line-height: 1.75; }
.spec-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.spec-table td { padding: 10px 12px; border-bottom: 1px solid var(--line); font-size: 14px; }
.spec-table td:first-child { color: var(--muted); width: 34%; background: var(--cream); font-size: 13px; }

/* ── Floating cart bar ───────────────────────────────────────────────── */
.cartbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: #fff; border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(0,0,0,.07);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
}
.cartbar .wrap { display: flex; align-items: center; gap: 12px; }
.cartbar .ci   { flex: 1; }
.cartbar .ci .lbl { font-size: 11px; color: var(--muted); letter-spacing: .04em; }
.cartbar .ci .amt { font-size: 20px; font-weight: 900; color: var(--cherry); font-variant-numeric: tabular-nums; }
.cartbar .btn { width: auto; flex: 0 0 auto; padding: 13px 26px; }
.cart-fab-badge {
  background: var(--cherry); color: #fff; font-size: 11px; font-weight: 900;
  border-radius: 999px; padding: 1px 7px; margin-left: 4px;
}
body { padding-bottom: 24px; }
.cartbar { display: none !important; }
.drawer-mask, .drawer { display: none !important; }

/* ── Drawer ──────────────────────────────────────────────────────────── */
.drawer-mask {
  position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 80;
  opacity: 0; pointer-events: none; transition: .25s;
}
.drawer-mask.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; right: 0; top: 0; bottom: 0; width: min(420px, 90vw);
  background: var(--bg); z-index: 90; transform: translateX(100%);
  transition: .28s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column;
}
.drawer.open { transform: none; }
.drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px; border-bottom: 1px solid var(--line); background: #fff;
}
.drawer-head b { font-size: 16px; font-weight: 900; }
.drawer-head .x { font-size: 22px; background: none; color: var(--muted); }
.drawer-body { flex: 1; overflow-y: auto; padding: 12px 16px; }
.drawer-foot { padding: 14px 16px calc(14px + env(safe-area-inset-bottom)); background: #fff; border-top: 1px solid var(--line); }

.line-item {
  display: flex; gap: 12px; background: #fff; border-radius: var(--radius);
  padding: 12px; margin-bottom: 10px; border: 1px solid var(--line);
}
.line-item img { width: 64px; height: 64px; border-radius: 8px; object-fit: contain; background: var(--cream); flex-shrink: 0; }
.line-item .li-info { flex: 1; min-width: 0; }
.line-item .li-name { font-size: 13px; font-weight: 800; }
.line-item .li-opt  { font-size: 12px; color: var(--muted); margin-top: 2px; }
.line-item .li-bot  { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
.line-item .li-price { font-weight: 900; color: var(--cherry); font-variant-numeric: tabular-nums; }
.li-remove { background: none; color: var(--muted); font-size: 12px; text-decoration: underline; }
.qty-sm button { width: 30px; height: 30px; font-size: 16px; }
.qty-sm input  { width: 36px; height: 30px; font-size: 14px; }

.empty      { text-align: center; color: var(--muted); padding: 50px 0; }
.empty .big { font-size: 44px; }

/* summary */
.sum-row {
  display: flex; justify-content: space-between;
  font-size: 14px; padding: 5px 0; font-variant-numeric: tabular-nums;
}
.sum-row.total {
  font-size: 18px; font-weight: 900; letter-spacing: -.01em;
  border-top: 1px dashed var(--line); margin-top: 10px; padding-top: 12px;
}
.sum-row .save { color: var(--cherry); font-weight: 700; }
.note-free {
  font-size: 13px; background: var(--cherry-soft); color: var(--cherry-dark);
  padding: 8px 12px; border-radius: 8px; margin: 8px 0; line-height: 1.6;
}

/* ── Checkout steps ──────────────────────────────────────────────────── */
.steps { display: flex; align-items: flex-start; margin: 22px 0 28px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 13px;
  left: calc(12.5% - 4px); right: calc(12.5% - 4px);
  height: 1px; background: var(--line); z-index: 0;
}
.step { flex: 1; text-align: center; font-size: 11px; color: var(--faint); position: relative; z-index: 1; }
.step .dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg); border: 1.5px solid var(--line); color: var(--faint);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; margin: 0 auto 5px; font-size: 12px; transition: .2s;
}
.step.active .dot {
  background: var(--cherry); border-color: var(--cherry); color: #fff;
  box-shadow: 0 0 0 3px rgba(212,43,53,.18);
}
.step.done .dot { background: var(--cherry); border-color: var(--cherry); color: #fff; }
.step.active  { color: var(--cherry); font-weight: 800; }
.step.done    { color: var(--cherry); }

/* form fields */
.field { margin-bottom: 16px; }
.field label {
  font-size: 11px; font-weight: 900; display: block; margin-bottom: 7px;
  color: var(--ink-2); letter-spacing: .07em; text-transform: uppercase;
}
.field label .req { color: var(--cherry); }
.field input, .field select, .field textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 10px;
  padding: 12px 14px; font-size: 15px; font-family: inherit;
  background: #fff; color: var(--ink); transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--cherry);
  box-shadow: 0 0 0 3px rgba(212,43,53,.10);
}
.field .err { color: var(--cherry); font-size: 12px; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid select { border-color: var(--cherry); }
.field.invalid .err { display: block; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* pay / ship options */
.pay-opt, .ship-opt {
  display: flex; gap: 12px; align-items: center;
  border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 14px 16px; margin-bottom: 10px; cursor: pointer;
  background: #fff; transition: .18s;
}
.pay-opt:hover, .ship-opt:hover { border-color: var(--cherry); }
.pay-opt.active, .ship-opt.active { border-color: var(--cherry); background: var(--cherry-soft); }
.pay-opt .ico { font-size: 20px; line-height: 1; }
.pay-opt b, .ship-opt b { font-size: 14px; font-weight: 800; }
.pay-opt small, .ship-opt small { color: var(--muted); font-size: 12px; display: block; margin-top: 1px; }
.radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--line); flex: 0 0 auto; transition: .15s;
}
.pay-opt.active .radio, .ship-opt.active .radio {
  border-color: var(--cherry); border-width: 5px;
}
.payoneer-pill {
  display: inline-block; margin-top: 3px;
  background: var(--cherry); color: #fff;
  font-size: 10px; font-weight: 900;
  padding: 2px 8px; border-radius: 4px; letter-spacing: .05em;
}

.review-list { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 8px 16px; border: 1px solid var(--line); }
.checkout-nav { display: flex; gap: 12px; margin-top: 22px; }
.checkout-nav .btn { flex: 1; }
.mini-sum { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 14px 16px; margin-bottom: 18px; border: 1px solid var(--line); }

/* complete page */
.complete { text-align: center; padding: 56px 0; }
.complete .check {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--cherry); color: #fff; font-size: 36px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 8px 32px rgba(212,43,53,.25);
}
.complete h1 { font-size: 26px; font-weight: 900; letter-spacing: -.02em; }
.order-box { text-align: left; margin: 20px 0; }

.toast {
  position: fixed; left: 50%; bottom: 100px;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff; padding: 12px 22px;
  border-radius: 999px; font-size: 14px; font-weight: 700;
  z-index: 200; opacity: 0; transition: .25s; pointer-events: none; white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.footer { text-align: center; color: var(--muted); font-size: 12px; padding: 28px 16px 110px; line-height: 1.85; }
.footer a { color: var(--cherry); }

/* ── Product grid ────────────────────────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.pcard {
  background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  display: flex; flex-direction: column; position: relative;
  transition: box-shadow .2s, transform .2s; border: 1px solid var(--line);
}
.pcard:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.pcard-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: var(--cherry); color: #fff;
  font-size: 10px; font-weight: 900; padding: 3px 9px;
  border-radius: 999px; letter-spacing: .04em;
}
.pcard-img { aspect-ratio: 1/1; background: var(--cream); }
.pcard-img img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.pcard-body { padding: 12px 14px; display: flex; flex-direction: column; flex: 1; }
.pcard-name {
  font-weight: 900; font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink);
}
.pcard-tag {
  color: var(--muted); font-size: 11px; margin: 3px 0 8px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden; line-height: 1.5;
}
.pcard-price { font-size: 13px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.pcard-price b { color: var(--cherry); font-size: 17px; font-variant-numeric: tabular-nums; font-weight: 900; }
.pcard-price small { color: var(--faint); text-decoration: line-through; font-size: 11px; }
.pcard .btn { font-size: 12px; padding: 9px; margin-top: 10px; }

.secure-badge {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 12px; color: var(--muted); margin-top: 12px;
  padding: 8px 12px; background: var(--cream); border-radius: 8px;
}

/* ── Desktop ─────────────────────────────────────────────────────────── */
@media (min-width: 500px) {
  .hero-photo   { width: clamp(280px, 60vw, 520px); }
  .hero-center  { min-height: clamp(260px, 58vw, 460px); }
  .oval-brand   { font-size: 42px; }
  .hero-oval    { padding: 16px 64px; }
}
@media (min-width: 760px) {
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
  .benefits { grid-template-columns: repeat(4,1fr); }
  .product-grid { grid-template-columns: repeat(3,1fr); }
  .d1 { left: 14%; }
  .d4 { right: 14%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
:focus-visible { outline: 2px solid var(--cherry); outline-offset: 2px; }
