/* =========================================================
   HALCON — Storefront styles (LIGHT / WHITE theme)
   Design tokens + components. White-first, gold accents.
   ========================================================= */

:root {
  /* surfaces */
  --bg: #FFFFFF;
  --tint: #F6F4EE;        /* alternating sections / art backgrounds */
  --tint-2: #FBFAF5;
  --surface: #FFFFFF;
  --line: #E7E3D8;
  --line-soft: #EFEBE1;

  /* ink / text */
  --ink: #0B0E16;         /* headings, logo */
  --text: #2B2E37;        /* body */
  --muted: #6B7280;       /* secondary */

  /* brand accents */
  --gold: #E8A92C;        /* fills: buttons, badges, borders, marks */
  --gold-2: #F4C04A;
  --accent: #A9690C;      /* accent TEXT (AA contrast on white) */
  --amber: #B5710F;
  --midnight: #0B0E16;
  --bone: #F4F1EA;

  /* type */
  --display: "Sora", Futura, "Century Gothic", "Trebuchet MS", sans-serif;
  --body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* space + shape */
  --maxw: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 22px 48px -24px rgba(20,22,30,.28);
  --shadow-sm: 0 10px 26px -16px rgba(20,22,30,.22);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, .display { font-family: var(--display); font-weight: 600; line-height: 1.05; letter-spacing: .01em; color: var(--ink); }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.muted { color: var(--muted); }
.gold { color: var(--accent); }

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

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 15px;
  letter-spacing: .02em; transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .25s;
}
.btn:active { transform: scale(.97); }
.btn-gold { background: var(--gold); color: #1A1305; box-shadow: 0 10px 24px -12px rgba(232,169,44,.7); }
.btn-gold:hover { background: var(--gold-2); }
.btn-ghost { border: 1.5px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold); color: var(--accent); }
.btn-light { background: var(--midnight); color: var(--bone); }
.btn-light:hover { background: #161B28; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* ---------- announcement ---------- */
.announce {
  background: var(--midnight); color: var(--bone); text-align: center;
  font-size: 13px; font-weight: 500; letter-spacing: .04em; padding: 9px 16px;
}
.announce::first-letter { color: var(--gold); }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.85); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 82px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark { width: 30px; height: 38px; }
.brand .word { font-family: var(--display); font-weight: 600; font-size: 24px; letter-spacing: .14em; color: var(--ink); }
.brand-logo { height: 78px; width: 90px; object-fit: contain; display: block; }
.nav-links { display: flex; gap: 34px; }
.nav-links a { font-size: 15px; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: var(--ink); transition: background .2s; }
.icon-btn:hover { background: var(--tint); }
.cart-btn { position: relative; }
.cart-count {
  position: absolute; top: 4px; right: 4px; min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--gold); color: #1A1305; border-radius: 999px; font-size: 11px; font-weight: 700;
  display: grid; place-items: center; transform: scale(0); transition: transform .25s var(--ease);
}
.cart-count.show { transform: scale(1); }
.hamburger { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 34px 0; overflow: hidden; background: linear-gradient(180deg, var(--tint-2), var(--bg)); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(820px 460px at 80% 18%, rgba(232,169,44,.20), transparent 62%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 40px; position: relative; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--accent); font-size: 13px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); }
.hero h1 { font-size: clamp(48px, 7vw, 86px); margin: 18px 0 0; }
.hero h1 .thin { color: var(--accent); }
.hero p.lead { font-size: 18px; color: var(--muted); max-width: 30ch; margin: 22px 0 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-falcon { justify-self: center; width: 250px; height: 460px; object-fit: contain; filter: drop-shadow(0 20px 30px rgba(232,169,44,.20)); }
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-14px) } }

/* ---------- marquee ---------- */
.marquee { border-block: 1px solid var(--line-soft); background: var(--tint); overflow: hidden; }
.marquee-track { display: flex; gap: 60px; padding: 16px 0; white-space: nowrap; animation: scroll 26s linear infinite; }
.marquee-track span { color: var(--muted); font-size: 14px; letter-spacing: .12em; text-transform: uppercase; display: inline-flex; gap: 60px; }
.marquee-track span::after { content: "✦"; color: var(--gold); }
@keyframes scroll { to { transform: translateX(-50%) } }

/* ---------- section ---------- */
.section { padding: 86px 0; background: var(--bg); }
.section.light { background: var(--tint); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.sec-head h2 { font-size: clamp(30px, 4.6vw, 50px); }
.sec-head .kicker { color: var(--accent); font-size: 13px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 12px; }
.sec-head p { color: var(--muted); max-width: 46ch; }

/* ---------- series cards ---------- */
.series { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.series-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; cursor: pointer;
}
.series-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow-sm); }
.series-card .shape { width: 52px; height: 52px; margin-bottom: 18px; color: var(--accent); }
.series-card h3 { font-size: 21px; letter-spacing: .08em; }
.series-card .play { color: var(--accent); font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin: 6px 0 10px; }
.series-card p { color: var(--muted); font-size: 14px; }

/* ---------- product grid ---------- */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow); }
.card-art {
  position: relative; aspect-ratio: 1/1; display: grid; place-items: center;
  background: radial-gradient(120% 120% at 50% 0%, #FFFFFF, var(--tint));
  padding: 20px;
}
.card-art svg { height: 100%; width: auto; }
.card-art .quickview {
  position: absolute; inset-inline: 14px; bottom: 14px; opacity: 0; transform: translateY(8px);
  transition: opacity .25s, transform .25s; background: rgba(255,255,255,.85); backdrop-filter: blur(6px);
  border: 1px solid var(--line); border-radius: 10px; padding: 10px; text-align: center; font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--ink);
}
.card:hover .quickview { opacity: 1; transform: translateY(0); }
.badge {
  position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--gold); color: #1A1305;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px;
}
.badge.flag { background: var(--midnight); color: var(--gold); }
.card-body { padding: 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-body .tag { color: var(--accent); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.card-body h3 { font-size: 19px; letter-spacing: .04em; }
.card-body .desc { color: var(--muted); font-size: 13.5px; flex: 1; }
.card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.price { font-family: var(--display); font-size: 20px; font-weight: 600; color: var(--ink); }
.price .cur { font-size: 12px; color: var(--muted); margin-right: 4px; font-family: var(--body); }

/* ---------- coming-soon state ---------- */
.badge.soon-badge { background: var(--midnight); color: #fff; letter-spacing: .1em; }
.card.soon .card-art { opacity: .82; filter: grayscale(.18); }
.card.soon .card-art img, .card.soon .card-art svg { opacity: .9; }
.price.soon-price { font-size: 16px; font-style: italic; color: var(--muted); }

/* ---------- features band ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature { text-align: center; padding: 10px; }
.feature .ic { width: 40px; height: 40px; margin: 0 auto 14px; color: var(--accent); }
.feature h4 { font-size: 16px; font-family: var(--display); letter-spacing: .04em; }
.feature p { color: var(--muted); font-size: 13.5px; margin-top: 4px; }

/* ---------- story ---------- */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.story h2 { font-size: clamp(30px, 4.4vw, 48px); margin-bottom: 20px; }
.story p { color: var(--muted); margin-bottom: 16px; }
.story p strong { color: var(--ink); }
.story .urdu { font-size: 30px; color: var(--accent); font-family: var(--display); }
.story-falcon { justify-self: center; width: min(320px, 75%); height: auto; object-fit: contain; filter: drop-shadow(0 22px 40px rgba(181,113,15,.22)); }

/* ---------- newsletter ---------- */
.cta-band { background: linear-gradient(160deg, #FFF9EC, var(--tint)); border: 1px solid var(--line); border-radius: 24px; padding: 56px; text-align: center; box-shadow: var(--shadow-sm); }
.cta-band h2 { font-size: clamp(28px, 4vw, 44px); }
.cta-band p { color: var(--muted); max-width: 44ch; margin: 14px auto 28px; }
.subscribe { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.subscribe input {
  flex: 1; background: var(--surface); border: 1px solid var(--line); color: var(--ink);
  border-radius: 999px; padding: 14px 20px; font-size: 15px; font-family: inherit;
}
.subscribe input::placeholder { color: var(--muted); }

/* ---------- footer ---------- */
.footer { background: var(--tint); border-top: 1px solid var(--line); padding: 64px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer .word { font-family: var(--display); font-size: 26px; letter-spacing: .14em; color: var(--ink); }
.footer p.about { color: var(--muted); font-size: 14px; max-width: 30ch; margin-top: 16px; }
.foot-col h5 { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); margin-bottom: 16px; }
.foot-col a { display: block; color: var(--muted); font-size: 14px; margin-bottom: 10px; transition: color .2s; }
.foot-col a:hover { color: var(--accent); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 24px; color: var(--muted); font-size: 13px; gap: 16px; flex-wrap: wrap; }
.pay { display: flex; gap: 8px; align-items: center; color: var(--muted); font-size: 12px; }
.pill { border: 1px solid var(--line); border-radius: 6px; padding: 4px 9px; font-size: 11px; letter-spacing: .04em; }

/* ---------- cart drawer ---------- */
.overlay {
  position: fixed; inset: 0; background: rgba(20,22,30,.42); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s; z-index: 90;
}
.overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 100%); z-index: 100;
  background: var(--bg); border-left: 1px solid var(--line); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .4s var(--ease); box-shadow: -30px 0 60px -30px rgba(0,0,0,.3);
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-size: 18px; letter-spacing: .1em; }
.drawer-items { flex: 1; overflow-y: auto; padding: 14px 24px; }
.empty { text-align: center; color: var(--muted); padding: 60px 0; }
.line-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.line-item .thumb { width: 64px; height: 64px; border-radius: 10px; background: var(--tint); border: 1px solid var(--line); display: grid; place-items: center; padding: 6px; }
.line-item .thumb svg { height: 100%; }
.line-item h4 { font-size: 14px; font-family: var(--body); font-weight: 600; color: var(--ink); }
.line-item .li-meta { color: var(--muted); font-size: 12px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 8px; margin-top: 8px; }
.qty button { width: 26px; height: 26px; color: var(--muted); }
.qty button:hover { color: var(--accent); }
.qty span { min-width: 24px; text-align: center; font-size: 13px; }
.li-right { text-align: right; display: flex; flex-direction: column; justify-content: space-between; }
.li-price { font-weight: 600; font-size: 14px; color: var(--ink); }
.li-remove { color: var(--muted); font-size: 12px; }
.li-remove:hover { color: #D4493B; }
.drawer-foot { padding: 20px 24px 24px; border-top: 1px solid var(--line); }
.sub-row { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 14px; }
.sub-row.total { font-size: 18px; font-family: var(--display); margin: 12px 0 4px; color: var(--ink); }
.drawer-foot .note { color: var(--muted); font-size: 12px; text-align: center; margin-top: 12px; }
.wa { display: inline-flex; gap: 8px; align-items: center; }

/* ---------- modal (quick view) ---------- */
.modal { position: fixed; inset: 0; z-index: 110; display: grid; place-items: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; background: rgba(20,22,30,.42); }
.modal.open { opacity: 1; visibility: visible; }
.modal-card {
  position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: 20px;
  width: min(820px, 100%); max-height: 90vh; overflow: auto; display: grid; grid-template-columns: 1fr 1fr;
  transform: scale(.96); transition: transform .3s var(--ease); box-shadow: var(--shadow);
}
.modal.open .modal-card { transform: scale(1); }
.modal-art { background: radial-gradient(120% 120% at 50% 0%, #FFFFFF, var(--tint)); display: grid; place-items: center; padding: 30px; }
.modal-art svg { height: 280px; }
.modal-info { padding: 34px; }
.modal-info .tag { color: var(--accent); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.modal-info h3 { font-size: 28px; margin: 8px 0 12px; }
.modal-info .desc { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.spec-list { display: grid; gap: 8px; margin-bottom: 22px; }
.spec-list li { display: flex; justify-content: space-between; font-size: 13.5px; border-bottom: 1px dashed var(--line); padding-bottom: 7px; }
.spec-list li span:first-child { color: var(--muted); }
.modal-info .price { font-size: 26px; margin-bottom: 18px; }
.modal-close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.7); display: grid; place-items: center; z-index: 2; color: var(--ink); }
.modal-close:hover { color: var(--accent); }

/* ---------- product detail page ---------- */
.pdp { padding: 50px 0 90px; }
.pdp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.pdp-art { position: sticky; top: 100px; background: radial-gradient(120% 120% at 50% 0%, #FFFFFF, var(--tint)); border: 1px solid var(--line); border-radius: 20px; display: grid; place-items: center; padding: 40px; aspect-ratio: 1/1; }
.pdp-art svg { height: 100%; }
.pdp h1 { font-size: clamp(32px, 5vw, 52px); margin: 8px 0 14px; }
.pdp .price { font-size: 30px; margin: 18px 0; }
.pdp .desc { color: var(--muted); margin-bottom: 24px; }
.pdp-actions { display: flex; gap: 12px; align-items: center; margin: 24px 0; flex-wrap: wrap; }
.crumbs { color: var(--muted); font-size: 13px; margin-bottom: 18px; }
.crumbs a:hover { color: var(--accent); }
.accordion { border-top: 1px solid var(--line); margin-top: 24px; }
.accordion summary { padding: 16px 0; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; color: var(--ink); }
.accordion summary::-webkit-details-marker { display: none; }
.accordion p, .accordion ul { color: var(--muted); font-size: 14px; padding-bottom: 16px; }
.accordion li { padding-left: 16px; position: relative; margin-bottom: 6px; }
.accordion li::before { content: "✦"; color: var(--gold); position: absolute; left: 0; font-size: 10px; top: 4px; }

/* ---------- reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .series, .grid, .features { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .story-grid { grid-template-columns: 1fr; }
  .modal-card { grid-template-columns: 1fr; }
  .modal-art { display: grid; height: 200px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: grid; }
  .series, .grid, .grid.cols-3, .features, .foot-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 36px 22px; }
  .subscribe { flex-direction: column; }
  .pdp-grid { grid-template-columns: 1fr; }
  .pdp-art { position: static; }
  .sec-head { flex-direction: column; align-items: flex-start; }
}

/* mobile menu */
.mobile-menu { position: fixed; inset: 0 0 0 auto; width: min(320px,85%); background: var(--surface); z-index: 120; transform: translateX(100%); transition: transform .35s var(--ease); padding: 80px 30px; display: flex; flex-direction: column; gap: 6px; border-left: 1px solid var(--line); box-shadow: -30px 0 60px -30px rgba(0,0,0,.3); }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-size: 20px; font-family: var(--display); padding: 12px 0; border-bottom: 1px solid var(--line-soft); color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- checkout ---------- */
.checkout-header .secure { color: var(--muted); font-size: 13px; display: flex; align-items: center; gap: 8px; }
.checkout { padding: 36px 0 90px; }
.checkout-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 48px; align-items: start; }
.co-step { margin-bottom: 30px; }
.co-step h2 { font-size: 18px; letter-spacing: .04em; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.co-step .num { width: 26px; height: 26px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-size: 13px; font-family: var(--body); font-weight: 700; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.field input, .field select, .field textarea { width: 100%; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 13px 14px; font-size: 15px; font-family: inherit; color: var(--ink); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(232,169,44,.16); }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pay-opt { border: 1.5px solid var(--line); border-radius: 14px; padding: 16px 18px; margin-bottom: 12px; cursor: pointer; transition: border-color .2s, background .2s; display: block; }
.pay-opt:hover { border-color: var(--steel); }
.pay-opt.sel { border-color: var(--gold); background: rgba(232,169,44,.06); }
.pay-opt .po-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pay-opt .po-title { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink); }
.pay-opt .radio { width: 20px; height: 20px; border: 2px solid var(--steel); border-radius: 50%; position: relative; flex: none; }
.pay-opt.sel .radio { border-color: var(--gold); }
.pay-opt.sel .radio::after { content: ""; position: absolute; inset: 3px; background: var(--gold); border-radius: 50%; }
.save-badge { background: var(--gold); color: #1A1305; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; letter-spacing: .03em; }
.po-body { font-size: 13px; color: var(--muted); margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--line); display: none; }
.pay-opt.sel .po-body { display: block; }
.bank-row { display: flex; justify-content: space-between; gap: 12px; padding: 3px 0; font-size: 13px; }
.bank-row b { color: var(--ink); font-weight: 600; }
.co-summary { background: var(--tint); border: 1px solid var(--line); border-radius: 16px; padding: 24px; position: sticky; top: 104px; }
.co-summary h3 { font-size: 16px; letter-spacing: .06em; margin-bottom: 16px; }
.co-line { display: grid; grid-template-columns: 54px 1fr auto; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line-soft); align-items: center; }
.co-line .thumb { width: 54px; height: 54px; border-radius: 8px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; padding: 5px; }
.co-line .thumb img, .co-line .thumb svg { height: 100%; object-fit: contain; }
.co-line h4 { font-size: 13px; font-weight: 600; color: var(--ink); font-family: var(--body); }
.co-line .qty-mini { color: var(--muted); font-size: 12px; }
.co-line .lp { font-weight: 600; font-size: 13px; color: var(--ink); }
.sumrow { display: flex; justify-content: space-between; font-size: 14px; margin-top: 10px; }
.sumrow.disc { color: var(--accent); font-weight: 600; }
.sumrow.tot { font-size: 20px; font-family: var(--display); font-weight: 600; color: var(--ink); margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.co-note { font-size: 12px; color: var(--muted); margin-top: 16px; text-align: center; }
.co-empty { text-align: center; padding: 80px 24px; }
.co-done { text-align: center; max-width: 560px; margin: 30px auto; background: var(--tint); border: 1px solid var(--line); border-radius: 20px; padding: 48px 32px; }
.co-done .tick { width: 64px; height: 64px; border-radius: 50%; background: var(--gold); color: #1A1305; display: grid; place-items: center; margin: 0 auto 20px; }
@media (max-width: 860px) {
  .checkout-grid { grid-template-columns: 1fr; gap: 28px; }
  .co-summary { position: static; order: -1; }
  .row2 { grid-template-columns: 1fr; }
}

/* ---------- policy pages ---------- */
.checkout-header .secure { color: var(--muted); }
a.secure:hover { color: var(--accent); }
.policy { padding: 48px 0 90px; }
.policy .wrap { max-width: 800px; }
.policy h1 { font-size: clamp(30px, 5vw, 46px); margin-bottom: 8px; }
.policy .updated { color: var(--muted); font-size: 13px; margin-bottom: 28px; }
.policy .lead { font-size: 16px; color: var(--muted); margin-bottom: 8px; }
.policy h2 { font-size: 20px; margin: 32px 0 10px; }
.policy p { color: var(--text); font-size: 15px; line-height: 1.75; margin-bottom: 10px; }
.policy ul { margin: 6px 0 12px; }
.policy li { color: var(--text); font-size: 15px; line-height: 1.7; padding-left: 18px; position: relative; margin-bottom: 8px; list-style: none; }
.policy li::before { content: "✦"; color: var(--gold); position: absolute; left: 0; font-size: 10px; top: 5px; }
.policy a.inline { color: var(--accent); }
.policy .callout { background: var(--tint); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: 10px; padding: 16px 18px; margin: 18px 0; font-size: 14.5px; }

/* Review improvements: product-first layouts and accessible purchase flows. */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip-path:inset(50%); white-space:nowrap; border:0; }
.skip-link { position:fixed; top:10px; left:12px; padding:12px 18px; background:var(--midnight); color:white; z-index:200; transform:translateY(-160%); }
.skip-link:focus { transform:none; }
section[id], #shopSearch { scroll-margin-top:100px; }
.honeypot { position:absolute; left:-10000px; width:1px; height:1px; overflow:hidden; }
button:disabled { opacity:.55; cursor:not-allowed; }
fieldset { border:0; min-width:0; }
input,textarea,select { font:inherit; min-width:0; }
.section { padding:64px 0; }
.collection { padding-top:48px; }
.kicker { color:var(--accent); text-transform:uppercase; letter-spacing:.16em; font-size:12px; margin-bottom:12px; font-weight:600; }
.comparison-scroll { overflow-x:auto; border:1px solid var(--line); border-radius:16px; }
.comparison { width:100%; min-width:760px; border-collapse:collapse; text-align:left; font-size:14px; }
.comparison caption { text-align:left; padding:16px 20px; background:var(--midnight); color:var(--bone); font-weight:600; }
.comparison th,.comparison td { padding:15px 20px; border-bottom:1px solid var(--line); vertical-align:top; }
.comparison thead { background:var(--tint); }
.comparison tbody th { width:140px; font-weight:500; color:var(--muted); }
.comparison th a { display:block; padding:4px 0; color:var(--accent); }
.comparison tr:last-child>* { border-bottom:0; }
.comparison tbody tr:nth-child(even) { background:var(--tint-2); }
.fine-print { color:var(--muted); font-size:13px; margin:16px 0; line-height:1.7; }
.fine-print a,.co-note a { text-decoration:underline; text-underline-offset:3px; }
.art-link { position:absolute; inset:24px 20px 48px; display:flex; justify-content:center; min-height:0; }
.art-link img,.thumb img { width:100%; height:100%; object-fit:contain; }
.card-art { aspect-ratio:4/5; padding:24px 20px 48px; }
.card-art .quickview { opacity:1; transform:none; padding:9px; }
.card-body { padding:18px; }
.card-foot { flex-wrap:wrap; gap:8px; }
.card-body h3 a:hover { color:var(--accent); }
.catalog-search { width:min(350px,100%); }
.catalog-search label { display:block; font-size:13px; margin-bottom:8px; font-weight:600; }
.catalog-search input { width:100%; padding:12px 16px; border:1px solid var(--line); border-radius:12px; background:white; }
.search-link { font-size:30px; }
.features .feature h2 { font-size:18px; line-height:1.3; }
.feature a { font-size:13px; color:var(--accent); display:inline-block; margin-top:8px; text-decoration:underline; }
.upcoming { background:var(--tint-2); padding:40px 0; }
.upcoming .sec-head { margin-bottom:24px; }
.upcoming h2 { font-size:32px; }
.upcoming-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.upcoming-card { display:flex; align-items:center; gap:16px; padding:16px; border:1px solid var(--line); border-radius:12px; background:white; }
.upcoming-card img { width:90px; height:100px; object-fit:contain; }
.upcoming-card small { display:block; color:var(--muted); font-size:12px; margin-top:6px; }
.upcoming-card:hover { border-color:var(--gold); }
.consent { display:flex; gap:10px; justify-content:center; align-items:flex-start; font-size:13px; margin:20px auto 0; max-width:460px; text-align:left; }
.consent input { margin-top:4px; width:18px; height:18px; flex-shrink:0; }
.cta-band .fine-print { font-size:12px; margin:12px auto; }
.form-message { font-size:14px; min-height:24px; margin:12px 0; overflow-wrap:anywhere; }
.form-message.error { color:#a32b24; }
.cta-band .form-message { margin-bottom:0; }
.foot-col h2 { font-size:13px; letter-spacing:.1em; text-transform:uppercase; margin-bottom:16px; }
.drawer-head h2 { font-size:22px; }
.qty button { width:38px; height:38px; }
.li-remove { min-height:38px; text-decoration:underline; }
.modal-art img { width:100%; height:100%; max-height:360px; object-fit:contain; }
.modal-info h2 { font-size:28px; line-height:1.2; margin:8px 0 16px; }
.modal-info { min-width:0; }
.details-link { display:block; margin:16px 0; color:var(--accent); font-size:14px; text-decoration:underline; text-underline-offset:3px; }
.mobile-menu #menuClose { position:absolute; top:20px; right:20px; }
.mobile-menu nav { display:flex; flex-direction:column; }
.product-gallery { min-width:0; position:sticky; top:104px; }
.product-gallery .pdp-art { position:static; aspect-ratio:4/5; max-height:600px; }
.pdp-art img { width:100%; height:100%; min-height:0; object-fit:contain; }
.detail-photo { width:100%; height:auto; margin-top:16px; border-radius:12px; }
.purchase-help { background:var(--tint); border-radius:12px; padding:18px; font-size:14px; }
.purchase-help p { margin:8px 0; }
.purchase-help a { color:var(--accent); text-decoration:underline; }
.spec-list li { gap:16px; }
.spec-list li span:last-child { text-align:right; }
.checkout h1 { font-size:36px; }
.checkout-intro { color:var(--muted); margin:12px 0 24px; }
.co-summary h2 { font-size:22px; margin-bottom:18px; }
.co-line h3 { font:600 13px var(--body); line-height:1.4; }
.field small { color:var(--muted); font-size:12px; }
.promo-row { display:flex; gap:8px; margin-top:18px; }
.promo-row input { width:100%; padding:10px; border:1px solid var(--line); border-radius:8px; }
.order-reference { font-family:monospace; overflow-wrap:anywhere; padding:16px 0; font-size:14px; }
.co-done h1 { font-size:34px; margin-bottom:18px; }
.receipt { margin:18px 0 28px; }
.receipt>div { display:flex; justify-content:space-between; padding:8px 0; border-bottom:1px solid var(--line); }
.reviews { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:24px; }
.reviews figure { background:var(--tint); padding:24px; border-radius:12px; }
.reviews figcaption { margin-top:16px; color:var(--muted); font-size:13px; }
video { width:100%; max-height:560px; margin-bottom:24px; }
@media(max-width:1000px) {
 .upcoming-grid { grid-template-columns:1fr; }
 .upcoming-card img { height:80px; }
 .modal-art img { max-height:160px; }
 .pdp-grid { gap:28px; }
}
@media(max-width:640px) {
 .wrap { padding-inline:18px; }
 .nav { height:72px; }
 .brand-logo { height:68px; width:82px; }
 .announce { font-size:11px; letter-spacing:0; }
 .hero { padding:26px 0 32px; }
 .hero-grid { grid-template-columns:1fr 130px; gap:12px; }
 .hero-copy { display:contents; }
 .hero .eyebrow { grid-column:1/-1; font-size:10px; letter-spacing:.12em; }
 .hero h1 { grid-column:1; grid-row:2; font-size:52px; margin:0; align-self:center; }
 .hero-falcon { grid-column:2; grid-row:2; width:130px; height:230px; }
 .hero p.lead { grid-column:1/-1; font-size:16px; max-width:none; margin:0 0 8px; }
 .hero-cta { grid-column:1/-1; gap:8px; }
 .hero-cta .btn { flex:1; padding:13px 10px; font-size:13px; }
 .section { padding:44px 0; }
 .collection { padding-top:32px; }
 .sec-head { margin-bottom:24px; align-items:stretch; }
 .sec-head h2 { font-size:30px; }
 .sec-head p { font-size:14px; }
 .grid { gap:12px; }
 .card-art { padding:16px 10px 48px; }
 .art-link { inset:16px 10px 48px; }
 .card-body { padding:12px; }
 .card-body h3 { font-size:15px; line-height:1.3; }
 .card-body .tag { font-size:10px; }
 .card-body .desc { font-size:12px; }
 .price { font-size:17px; }
 .card-foot .btn { width:100%; }
 .badge { top:8px; left:8px; font-size:9px; padding:4px 8px; }
 .feature { padding:6px 0; }
 .features { gap:26px 18px; }
 .feature p { font-size:12px; }
 .feature h2 { font-size:16px; }
 .story-grid { gap:20px; }
 .story-falcon { width:160px; height:auto; }
 .subscribe input { width:100%; }
 .modal { padding:12px; }
 .modal-card { max-height:calc(100dvh - 24px); }
 .modal-art { height:170px; padding:18px; }
 .modal-art img { max-height:134px; }
 .modal-info { padding:22px; }
 .pdp { padding:28px 0; }
 .pdp-grid { grid-template-columns:1fr; }
 .product-gallery { position:static; }
 .product-gallery .pdp-art { max-height:380px; }
 .co-summary { order:-1; }
 .co-done { padding:28px 18px; }
 .checkout { padding-top:24px; }
}
@media(max-width:360px) { .hero-grid { grid-template-columns:1fr 110px; } .hero h1 { font-size:44px; } .hero-falcon { width:110px; } }
