/* Saltbrook Kitchen — v2 identity
   Navy ink, butter-mustard, tomato for prices, warm white paper.
   Zilla Slab for display, Public Sans for everything else. */

:root {
  --paper:      #fbfaf6;
  --tile:       #eef1ee;
  --tile-deep:  #e2e7e2;
  --card:       #ffffff;
  --navy:       #1c2b4a;
  --navy-deep:  #121d34;
  --navy-soft:  #34456a;
  --mustard:    #e3a92f;
  --mustard-dk: #c48f1d;
  --mustard-lt: #f6e2ad;
  --tomato:     #cf3f2a;
  --text:       #22262e;
  --muted:      #656b76;
  --line:       #d9dde3;
  --line-soft:  #e8ebef;
  --ok:         #2c7a4b;

  --slab: "Zilla Slab", "Rockwell", "Roboto Slab", Georgia, serif;
  --sans: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1160px;
  --r: 6px;
  --r-lg: 10px;
  --shadow: 0 2px 4px rgba(28,43,74,.06), 0 12px 32px rgba(28,43,74,.08);
  --hard: 6px 6px 0 var(--mustard);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; overflow-x: hidden;
  background: var(--paper); color: var(--text);
  font-family: var(--sans); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--slab); color: var(--navy); font-weight: 700; line-height: 1.1; margin: 0; letter-spacing: -.01em; text-wrap: balance; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 800px; }
:focus-visible { outline: 2px solid var(--mustard); outline-offset: 3px; }

/* ---------- Top utility bar ---------- */
.topbar { background: var(--navy-deep); color: #c9d0dd; font-size: 12.5px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 34px; gap: 16px; }
.topbar strong { color: #fff; font-weight: 600; }
.topbar nav { display: flex; gap: 18px; }
.topbar nav a { color: #c9d0dd; text-decoration: none; }
.topbar nav a:hover { color: #fff; }

/* ---------- Header ---------- */
.hdr { position: sticky; top: 0; z-index: 60; background: rgba(251,250,246,.94); backdrop-filter: blur(10px) saturate(150%); border-bottom: 1px solid var(--line); }
.hdr-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 72px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--navy); font-family: var(--slab); font-weight: 700; font-size: 22px; letter-spacing: -.01em; white-space: nowrap; }
.logo svg { width: 30px; height: 30px; flex: none; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 14px; font-weight: 500; color: var(--navy-soft); text-decoration: none; padding: 6px 0; border-bottom: 2px solid transparent; transition: border-color .15s ease, color .15s ease; }
.nav a:hover { color: var(--navy); border-bottom-color: var(--mustard); }
.hdr-actions { display: flex; align-items: center; gap: 10px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--sans); font-size: 14.5px; font-weight: 600; padding: 12px 20px; border-radius: var(--r); text-decoration: none; border: 1.5px solid transparent; cursor: pointer; white-space: nowrap; transition: transform .12s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-soft); }
.btn-accent { background: var(--mustard); color: var(--navy-deep); }
.btn-accent:hover { background: var(--mustard-dk); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-lg { font-size: 16px; padding: 15px 28px; }
.btn-sm { font-size: 13px; padding: 8px 14px; }
.btn-block { display: flex; width: 100%; }
.btn[disabled] { opacity: .55; cursor: default; }
.cart-btn .count { display: inline-flex; align-items: center; justify-content: center; min-width: 20px; height: 20px; padding: 0 6px; border-radius: 999px; background: var(--tomato); color: #fff; font-size: 11.5px; font-weight: 700; }
.cart-btn .count[data-zero="true"] { background: var(--line); color: var(--muted); }
.btn-ghost:hover .count[data-zero="true"] { background: rgba(255,255,255,.2); color: #fff; }

/* ---------- Sections ---------- */
section { padding: 80px 0; }
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--tomato); margin: 0 0 12px; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 40px; padding-bottom: 20px; border-bottom: 3px solid var(--navy); }
.sec-head h2 { font-size: clamp(30px, 4vw, 44px); }
.sec-head p { max-width: 420px; margin: 0; color: var(--muted); font-size: 15.5px; }
.sec-head.stack { display: block; }
.sec-head.stack p { max-width: 620px; margin-top: 14px; }

/* ---------- Hero ---------- */
.hero { background: var(--navy); color: #fff; padding: 64px 0 60px; overflow: hidden; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.hero .eyebrow { color: var(--mustard); }
.hero h1 { color: #fff; font-size: clamp(40px, 5.6vw, 66px); line-height: 1.02; }
.hero h1 mark { background: none; color: var(--mustard); }
.hero-sub { font-size: 18px; color: #c9d0dd; max-width: 480px; margin: 22px 0 0; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-fine { margin: 18px 0 0; font-size: 13px; color: #9aa4b8; }
.hero-fine strong { color: #fff; font-weight: 600; }
.shelf-scene { position: relative; padding: 24px 0 0; min-width: 0; }
.hero-grid > * { min-width: 0; }
.shelf-row { display: flex; justify-content: center; align-items: flex-end; padding: 0 0 22px; }
.shelf-row a { display: block; height: 236px; aspect-ratio: 2 / 3; margin: 0 -8px; background: #fff; border-radius: 3px; box-shadow: 0 18px 40px rgba(0,0,0,.45), 0 2px 0 rgba(255,255,255,.15) inset; overflow: hidden; transition: transform .2s ease; position: relative; }
.shelf-row a:nth-child(1) { transform: rotate(-3deg); z-index: 1; }
.shelf-row a:nth-child(2) { z-index: 2; }
.shelf-row a:nth-child(3) { z-index: 3; }
.shelf-row a:nth-child(4) { z-index: 4; }
.shelf-row a:nth-child(5) { transform: rotate(3deg); z-index: 5; }
.shelf-row a:hover { transform: translateY(-8px); z-index: 9; }
.shelf-row a img { width: 100%; height: 100%; object-fit: cover; }
.shelf-row a:nth-child(2), .shelf-row a:nth-child(4) { margin-bottom: 22px; }
.shelf-row a:nth-child(3) { margin-bottom: 8px; }
.shelf-plank { height: 14px; background: linear-gradient(180deg, #2f4068, #1a2743); border-radius: 3px; box-shadow: 0 10px 24px rgba(0,0,0,.4); margin: 0 -8px; }
.shelf-plank::after { content: ""; display: block; height: 6px; margin: 14px 24px 0; background: rgba(0,0,0,.25); filter: blur(6px); border-radius: 50%; }

/* ---------- Promise strip ---------- */
.promises { background: var(--paper); border-bottom: 1px solid var(--line); padding: 0; }
.promise-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.promise { display: flex; gap: 12px; align-items: center; padding: 22px 20px; border-right: 1px solid var(--line); font-size: 14px; color: var(--navy); }
.promise:first-child { padding-left: 0; }
.promise:last-child { border-right: 0; }
.promise svg { width: 22px; height: 22px; flex: none; color: var(--tomato); }
.promise b { display: block; font-weight: 600; }
.promise span { color: var(--muted); font-size: 12.5px; }

/* ---------- Bookshelf grid ---------- */
.shelf-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.title { display: flex; flex-direction: column; }
.title .cover { display: block; position: relative; aspect-ratio: 2 / 3; overflow: hidden; border-radius: 3px; box-shadow: var(--shadow); background: var(--tile); transition: transform .2s ease, box-shadow .2s ease; }
.title .cover:hover { transform: translateY(-4px); box-shadow: 0 6px 8px rgba(28,43,74,.08), 0 22px 40px rgba(28,43,74,.16); }
.title .cover img { width: 100%; height: 100%; object-fit: cover; }
.title .flag { position: absolute; top: 10px; left: -4px; background: var(--tomato); color: #fff; font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 10px 5px 12px; border-radius: 0 3px 3px 0; }
.title .kicker { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 16px; }
.title h3 { font-size: 19px; margin: 4px 0 6px; }
.title h3 a { text-decoration: none; }
.title h3 a:hover { color: var(--tomato); }
.title p { font-size: 13.5px; color: var(--muted); margin: 0; flex: 1; }
.buy-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); }
.price { display: flex; align-items: baseline; gap: 8px; }
.price .now { font-family: var(--slab); font-size: 22px; font-weight: 700; color: var(--tomato); line-height: 1; }
.price .was { font-size: 12.5px; color: var(--muted); text-decoration: line-through; }
.price .save { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ok); }
.buy-row .btn { padding: 8px 12px; font-size: 13px; }

/* Bundle banner */
.bundle-banner { margin-top: 48px; background: var(--mustard); color: var(--navy-deep); border-radius: var(--r-lg); display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; padding: 30px 36px; position: relative; overflow: hidden; }
.bundle-banner::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, rgba(255,255,255,.12) 0 2px, transparent 2px 14px); pointer-events: none; }
.bundle-banner > * { position: relative; }
.bundle-stack { display: flex; }
.bundle-stack img { width: 52px; height: 78px; object-fit: cover; border-radius: 2px; box-shadow: 0 8px 16px rgba(0,0,0,.25); margin-left: -16px; border: 2px solid var(--mustard); background: #fff; }
.bundle-stack img:first-child { margin-left: 0; }
.bundle-banner .eyebrow { color: var(--navy-deep); opacity: .7; margin-bottom: 6px; }
.bundle-banner h3 { font-size: 30px; color: var(--navy-deep); }
.bundle-banner p { margin: 6px 0 0; font-size: 14.5px; color: #3b3a2e; max-width: 560px; }
.bundle-cta { text-align: right; }
.bundle-cta .price { justify-content: flex-end; margin-bottom: 12px; }
.bundle-cta .price .now { font-size: 38px; color: var(--navy-deep); }
.bundle-cta .price .was { color: #6b6350; }
.bundle-cta .price .save { color: var(--navy-deep); }

/* ---------- Steps ---------- */
.steps-sec { background: var(--tile); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { background: var(--card); border: 1.5px solid var(--navy); border-radius: var(--r-lg); padding: 28px 26px 30px; position: relative; }
.step:nth-child(2) { box-shadow: var(--hard); }
.step .n { font-family: var(--slab); font-size: 44px; font-weight: 700; color: var(--mustard); line-height: 1; }
.step h3 { font-size: 21px; margin: 12px 0 8px; }
.step p { margin: 0; font-size: 14.5px; color: var(--muted); }

/* ---------- Inside / recipe card ---------- */
.inside-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.checks { list-style: none; margin: 24px 0 0; padding: 0; }
.checks li { position: relative; padding: 10px 0 10px 34px; font-size: 15.5px; border-top: 1px solid var(--line-soft); }
.checks li:first-child { border-top: 0; }
.checks li::before { content: ""; position: absolute; left: 0; top: 14px; width: 20px; height: 20px; border-radius: 50%; background: var(--mustard-lt); }
.checks li::after { content: ""; position: absolute; left: 7px; top: 18px; width: 5px; height: 9px; border: solid var(--navy); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.recipe-card { background: #fff; border: 1.5px solid var(--navy); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--hard); }
.recipe-card .rc-head { background: var(--navy); color: #fff; padding: 16px 24px; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.recipe-card .rc-head h3 { color: #fff; font-size: 22px; }
.recipe-card .rc-head span { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--mustard); font-weight: 700; white-space: nowrap; }
.recipe-card .rc-body { padding: 20px 24px 24px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 24px; }
.recipe-card .meta { grid-column: 1 / -1; display: flex; gap: 18px; flex-wrap: wrap; font-size: 12.5px; color: var(--muted); padding-bottom: 14px; border-bottom: 1px dashed var(--line); }
.recipe-card .meta b { color: var(--navy); font-weight: 600; }
.recipe-card h4 { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--tomato); margin: 0 0 8px; }
.recipe-card ul, .recipe-card ol { margin: 0; padding-left: 18px; font-size: 13.5px; color: var(--text); }
.recipe-card li { margin-bottom: 5px; }
.rc-note { font-size: 12.5px; color: var(--muted); margin: 14px 0 0; }

/* ---------- Billing ---------- */
.billing-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.stamp { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; width: 200px; height: 200px; border-radius: 50%; border: 3px solid var(--tomato); color: var(--tomato); transform: rotate(-8deg); margin: 14px 0 22px; font-family: var(--slab); }
.stamp b { font-size: 64px; line-height: 1; font-weight: 700; }
.stamp span { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-family: var(--sans); font-weight: 700; margin-top: 4px; }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; }
.fact h3 { font-size: 18px; margin-bottom: 6px; padding-top: 12px; border-top: 2px solid var(--mustard); }
.fact p { margin: 0; font-size: 14.5px; color: var(--muted); }
.operator { margin-top: 48px; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; display: grid; grid-template-columns: repeat(3, 1fr); }
.op { padding: 22px 26px; border-right: 1px solid var(--line); }
.op:last-child { border-right: 0; }
.op h4 { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 0 0 8px; }
.op p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--navy); }

/* ---------- Pricing table ---------- */
.pricing-sec { background: var(--tile); }
.price-table { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border: 1.5px solid var(--navy); border-radius: var(--r-lg); overflow: hidden; }
.price-table th, .price-table td { padding: 18px 22px; text-align: left; vertical-align: top; border-top: 1px solid var(--line-soft); font-size: 14.5px; }
.price-table thead th { border-top: 0; background: var(--navy); color: #fff; font-family: var(--slab); font-size: 20px; font-weight: 700; }
.price-table thead th.hi { background: var(--mustard); color: var(--navy-deep); }
.price-table thead th small { display: block; font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; opacity: .8; margin-top: 4px; }
.price-table tbody th { width: 22%; font-weight: 600; color: var(--muted); font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; background: var(--paper); }
.price-table td.hi { background: #fff8e6; }
.price-table .amt { font-family: var(--slab); font-size: 30px; font-weight: 700; color: var(--navy); line-height: 1; }
.price-table .amt small { font-family: var(--sans); font-size: 13px; color: var(--muted); text-decoration: line-through; font-weight: 500; margin-left: 8px; }
.price-table .amt.zero { color: var(--muted); font-size: 24px; }
.price-table td .btn { margin-top: 4px; }
.legal-note { font-size: 12px; line-height: 1.6; color: var(--muted); margin: 18px 0 0; }
.legal-note strong { color: var(--navy); }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 56px; }
.qa h3 { font-size: 19px; margin-bottom: 8px; }
.qa p { margin: 0; font-size: 15px; color: var(--muted); }
.qa a { color: var(--navy); }

/* ---------- Final CTA ---------- */
.final { background: var(--navy); color: #fff; }
.final-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; }
.final h2 { color: #fff; font-size: clamp(30px, 4.4vw, 48px); }
.final h2 mark { background: none; color: var(--mustard); }
.final p { color: #c9d0dd; margin: 14px 0 0; max-width: 520px; }
.final .legal-note { color: #9aa4b8; }
.final .cta-col { text-align: right; }

/* ---------- Footer ---------- */
.ftr { background: var(--navy-deep); color: #9aa4b8; font-size: 13.5px; padding: 56px 0 36px; }
.ftr-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.ftr .logo { color: #fff; font-size: 20px; }
.ftr .blurb { margin: 14px 0 0; max-width: 300px; line-height: 1.6; }
.ftr h4 { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--mustard); margin: 0 0 14px; }
.ftr ul { list-style: none; margin: 0; padding: 0; }
.ftr li { margin-bottom: 8px; }
.ftr a { color: #c9d0dd; text-decoration: none; }
.ftr a:hover { color: #fff; text-decoration: underline; }
.ftr-bottom { padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.ftr-bottom p { margin: 0; }

/* ---------- Product page ---------- */
.crumbs { font-size: 13px; color: var(--muted); padding: 22px 0 0; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--navy); }
.product-page { padding: 20px 0 72px; }
.product-top { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.cover-panel { background: var(--tile); border-radius: var(--r-lg); padding: 48px; display: flex; justify-content: center; position: sticky; top: 96px; }
.cover-panel .cover { width: min(100%, 320px); aspect-ratio: 2 / 3; box-shadow: 0 30px 60px rgba(28,43,74,.28); border-radius: 3px; overflow: hidden; background: #fff; position: relative; }
.cover-panel .cover img { width: 100%; height: 100%; object-fit: cover; }
.cover-panel .flag { position: absolute; top: 14px; left: -4px; background: var(--tomato); color: #fff; font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 10px 5px 12px; border-radius: 0 3px 3px 0; }
.product-info h1 { font-size: clamp(32px, 4.4vw, 48px); }
.product-info .lede { font-size: 17px; color: var(--muted); margin: 16px 0 0; }
.buy-box { margin: 26px 0 0; border: 1.5px solid var(--navy); border-radius: var(--r-lg); background: #fff; padding: 22px 24px; box-shadow: var(--hard); }
.buy-box .price .now { font-size: 36px; }
.buy-box .fmt { font-size: 13px; color: var(--muted); margin: 8px 0 16px; }
.buy-box .row { display: flex; gap: 10px; flex-wrap: wrap; }
.buy-box .row .btn { flex: 1; }
.buy-box .fine { font-size: 12.5px; color: var(--muted); margin: 14px 0 0; padding-top: 12px; border-top: 1px solid var(--line-soft); line-height: 1.6; }
.buy-box .fine a { color: var(--navy); }
.product-body { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; margin-top: 56px; padding-top: 40px; border-top: 3px solid var(--navy); }
.product-body h2 { font-size: 26px; margin-bottom: 12px; }
.product-body p { font-size: 15.5px; color: #3a3f48; margin: 0 0 14px; }
.product-body .checks { margin-top: 8px; }
.product-body .checks li { font-size: 14.5px; }
.product-body .recipe-card { margin-top: 32px; box-shadow: none; }
.also { padding-top: 0; }
.also-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mini { text-decoration: none; }
.mini .cover { display: block; aspect-ratio: 2 / 3; border-radius: 3px; overflow: hidden; box-shadow: var(--shadow); background: var(--tile); }
.mini .cover img { width: 100%; height: 100%; object-fit: cover; }
.mini .t { font-family: var(--slab); font-size: 16px; font-weight: 700; color: var(--navy); margin-top: 12px; line-height: 1.2; }
.mini .p { font-size: 13px; color: var(--muted); margin-top: 4px; }
.mini .p b { color: var(--tomato); font-weight: 700; }

/* ---------- Cart drawer ---------- */
.cart-backdrop { position: fixed; inset: 0; background: rgba(18,29,52,.5); z-index: 90; opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100%); background: var(--paper); z-index: 100; box-shadow: -10px 0 40px rgba(0,0,0,.25); transform: translateX(100%); transition: transform .25s ease; display: flex; flex-direction: column; }
body.cart-open .cart-backdrop { opacity: 1; pointer-events: auto; }
body.cart-open .cart-drawer { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: var(--navy); color: #fff; }
.cart-head h3 { font-size: 20px; color: #fff; }
.cart-close { background: none; border: 0; font-size: 26px; line-height: 1; color: #fff; cursor: pointer; padding: 4px; }
.cart-items { flex: 1; overflow: auto; padding: 8px 24px; }
.cart-item { display: grid; grid-template-columns: 54px 1fr auto; gap: 14px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 54px; height: 81px; object-fit: cover; border-radius: 3px; background: #fff; box-shadow: var(--shadow); }
.cart-item .t { font-family: var(--slab); font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.2; }
.cart-item .s { font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.cart-item .rm { background: none; border: 0; color: var(--muted); font-size: 12.5px; cursor: pointer; padding: 0; margin-top: 6px; text-decoration: underline; }
.cart-item .pr { font-family: var(--slab); font-size: 18px; font-weight: 700; color: var(--tomato); }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); font-size: 15px; }
.cart-empty .btn { margin-top: 18px; }
.cart-foot { padding: 18px 24px 24px; border-top: 1px solid var(--line); background: #fff; }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.cart-total .lbl { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.cart-total .val { font-family: var(--slab); font-size: 28px; font-weight: 700; color: var(--navy); }
.cart-foot .fine { font-size: 12px; color: var(--muted); margin: 12px 0 0; line-height: 1.55; }
.toast { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 20px); background: var(--navy); color: #fff; font-size: 14px; font-weight: 500; padding: 12px 18px; border-radius: var(--r); box-shadow: var(--shadow); border-left: 4px solid var(--mustard); opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; z-index: 110; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Checkout ---------- */
.checkout-page { padding: 40px 0 80px; }
.checkout-grid { display: grid; grid-template-columns: 1.2fr .9fr; gap: 40px; align-items: start; }
.co-panel { background: #fff; border: 1.5px solid var(--navy); border-radius: var(--r-lg); padding: 32px; }
.co-panel h2 { font-size: 26px; margin-bottom: 6px; }
.co-step { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--tomato); margin-bottom: 22px; }
fieldset { border: 0; margin: 0 0 26px; padding: 0; }
legend { font-family: var(--slab); font-size: 18px; font-weight: 700; color: var(--navy); padding: 0 0 12px; width: 100%; border-bottom: 2px solid var(--mustard); margin-bottom: 18px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.field input, .field select { width: 100%; font-family: var(--sans); font-size: 15px; color: var(--text); padding: 12px 14px; background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--r); transition: border-color .15s ease, box-shadow .15s ease; }
.field input:focus, .field select:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(227,169,47,.35); }
.field input::placeholder { color: #aeb4bf; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.row-3 { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 14px; }
.card-brands { display: flex; gap: 8px; align-items: center; font-size: 11px; font-weight: 700; letter-spacing: .06em; color: var(--muted); }
.card-brands span { border: 1px solid var(--line); border-radius: 4px; padding: 3px 8px; background: #fff; }
.consent { display: flex; gap: 12px; align-items: flex-start; background: #fff8e6; border: 1.5px solid var(--mustard); border-radius: var(--r-lg); padding: 18px; margin: 24px 0; }
.consent input { margin-top: 3px; width: 17px; height: 17px; flex: none; accent-color: var(--navy); }
.consent label { font-size: 13px; line-height: 1.65; color: #3a3f48; }
.consent strong { color: var(--navy); }
.consent a { color: var(--navy); }
.form-error { display: none; background: #fdecea; border: 1.5px solid #e9a89f; color: #8d2a1c; border-radius: var(--r); padding: 12px 16px; font-size: 14px; margin-bottom: 18px; }
.form-error.show { display: block; }
.form-notice { display: none; background: #e9f3ec; border: 1.5px solid #a6cdb3; color: #1f5a37; border-radius: var(--r); padding: 14px 16px; font-size: 14px; margin-top: 18px; line-height: 1.6; }
.form-notice.show { display: block; }
.summary { position: sticky; top: 96px; }
.summary-inner { background: #fff; border: 1.5px solid var(--navy); border-radius: var(--r-lg); overflow: hidden; }
.summary-head { padding: 18px 24px; background: var(--navy); color: #fff; }
.summary-head h3 { font-size: 20px; color: #fff; }
.summary-head p { margin: 4px 0 0; font-size: 13px; color: #c9d0dd; }
.summary-body { padding: 18px 24px 22px; }
.sum-item { display: grid; grid-template-columns: 44px 1fr auto; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line-soft); }
.sum-item img { width: 44px; height: 66px; object-fit: cover; border-radius: 3px; background: #fff; box-shadow: var(--shadow); }
.sum-item .t { font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.25; }
.sum-item .s { font-size: 12px; color: var(--muted); margin-top: 3px; }
.sum-item .pr { font-family: var(--slab); font-size: 17px; font-weight: 700; color: var(--navy); }
.sum-row { display: flex; justify-content: space-between; gap: 16px; font-size: 14.5px; padding: 8px 0; }
.sum-row .lbl { color: var(--muted); }
.sum-row .val { font-weight: 600; color: var(--navy); }
.sum-total { display: flex; justify-content: space-between; align-items: baseline; border-top: 2px solid var(--navy); margin-top: 12px; padding-top: 16px; }
.sum-total .lbl { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.sum-total .val { font-family: var(--slab); font-size: 32px; font-weight: 700; color: var(--tomato); }
.summary-terms { background: #fff8e6; border-top: 1px solid var(--mustard-lt); padding: 16px 24px; font-size: 12px; line-height: 1.65; color: var(--muted); }
.summary-terms strong { color: var(--navy); }
.secure-line { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12.5px; color: var(--muted); margin-top: 16px; }
.co-empty { text-align: center; padding: 70px 24px; }
.co-empty h2 { font-size: 30px; }
.co-empty p { color: var(--muted); margin: 12px 0 24px; }

/* ---------- Legal pages ---------- */
.legal-page { padding: 56px 0 90px; }
.legal-page h1 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 8px; }
.legal-page .updated { color: var(--muted); font-size: 13px; margin: 0 0 36px; padding-bottom: 20px; border-bottom: 3px solid var(--navy); }
.legal-page h2 { font-size: 22px; margin: 36px 0 10px; }
.legal-page p, .legal-page li { color: #3a3f48; font-size: 15.5px; }
.legal-page ul { padding-left: 20px; }
.legal-page li { margin-bottom: 8px; }
.callout { background: #fff8e6; border: 1.5px solid var(--mustard); border-radius: var(--r-lg); padding: 18px 22px; margin: 26px 0; font-size: 15px; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0 8px; }
.contact-card { background: #fff; border: 1.5px solid var(--navy); border-radius: var(--r-lg); padding: 22px; }
.contact-card h3 { font-size: 17px; margin: 0 0 8px; }
.contact-card p { margin: 0; font-size: 14.5px; color: var(--muted) !important; }
.contact-card a { color: var(--navy); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .shelf-scene { padding-top: 8px; }
  .promise-row { grid-template-columns: repeat(2, 1fr); }
  .promise:nth-child(2n) { border-right: 0; }
  .promise { border-bottom: 1px solid var(--line); padding-left: 0; }
  .shelf-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .inside-grid, .billing-grid, .final-inner, .product-top, .product-body { grid-template-columns: 1fr; }
  .final .cta-col { text-align: left; }
  .cover-panel { position: static; padding: 32px; }
  .operator { grid-template-columns: 1fr; }
  .op { border-right: 0; border-bottom: 1px solid var(--line); }
  .op:last-child { border-bottom: 0; }
  .faq-grid { grid-template-columns: 1fr; }
  .ftr-grid { grid-template-columns: 1fr 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .summary { position: static; order: -1; }
  .also-grid { grid-template-columns: repeat(2, 1fr); }
  .bundle-banner { grid-template-columns: 1fr; }
  .bundle-cta { text-align: left; }
  .bundle-cta .price { justify-content: flex-start; }
}
@media (max-width: 720px) {
  .nav, .topbar nav { display: none; }
  .hide-sm { display: none !important; }
  .topbar-inner { justify-content: center; text-align: center; height: auto; padding: 8px 0; }
  section { padding: 56px 0; }
  .hero { padding-top: 44px; }
  .hero h1 { font-size: 38px; }
  .shelf-row a { height: 114px; margin: 0 -6px; }
  .shelf-row a:nth-child(2), .shelf-row a:nth-child(4) { margin-bottom: 10px; }
  .shelf-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .sec-head { display: block; }
  .sec-head p { margin-top: 12px; }
  .recipe-card .rc-body { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .price-table thead th { font-size: 16px; padding: 14px 12px; }
  .price-table th, .price-table td { padding: 12px; font-size: 13.5px; }
  .price-table tbody th { width: 26%; }
  .price-table .amt { font-size: 22px; }
  .ftr-grid { grid-template-columns: 1fr; }
  .co-panel { padding: 22px 18px; }
  .row-3 { grid-template-columns: 1fr 1fr; }
  .row-3 > :first-child { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .stamp { width: 160px; height: 160px; }
  .stamp b { font-size: 50px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
