/* Click n Pay — concept rebuild
   Palette drawn from the existing CnP logo: deep maroon + sky blue,
   grounded in charcoal ink and warm paper. */

:root {
  --ink: #14181d;
  --ink-2: #1c2229;
  --paper: #faf8f4;
  --card: #ffffff;
  --line: #e8e2d8;
  --line-dark: rgba(255, 255, 255, 0.14);
  --maroon: #8e1f2f;
  --maroon-deep: #711726;
  --blue: #1798d4;
  --gold: #c99a3f;
  --text: #2a313a;
  --muted: #5b6470;
  --muted-light: #aab4bf;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(20, 24, 29, 0.10);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--maroon); }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 18px;
}
.skip-link:focus { left: 0; }

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--font-display); color: var(--ink); line-height: 1.12; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 600; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 600; letter-spacing: -0.01em; }
h3 { font-size: 1.22rem; font-weight: 600; }
h1 em { font-style: italic; color: var(--gold); }

.eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--maroon); margin-bottom: 14px;
}
.eyebrow.light { color: var(--gold); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; font-weight: 600; font-size: 0.95rem;
  padding: 12px 26px; border-radius: 999px; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 15px 32px; font-size: 1.02rem; }
.btn-sm { padding: 9px 20px; font-size: 0.88rem; }
.btn-solid { background: var(--maroon); color: #fff; }
.btn-solid:hover { background: var(--maroon-deep); box-shadow: 0 8px 20px rgba(142, 31, 47, 0.35); }
.btn-ghost { border-color: rgba(255, 255, 255, 0.55); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); }

.text-link {
  font-weight: 600; color: var(--maroon); text-decoration: none;
  border-bottom: 2px solid rgba(142, 31, 47, 0.25);
}
.text-link:hover { border-bottom-color: var(--maroon); }
.text-link.muted { color: var(--muted); border-bottom: none; font-weight: 500; }

/* ---------- topbar + header ---------- */
.topbar { background: var(--ink); color: var(--muted-light); font-size: 0.8rem; }
.topbar-inner {
  display: flex; justify-content: space-between; gap: 18px;
  padding-top: 8px; padding-bottom: 8px; flex-wrap: wrap;
}
.topbar-inner span { display: inline-flex; align-items: center; gap: 7px; }
.topbar-halal { width: 16px; height: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 244, 0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px; gap: 24px;
}
/* ---------- brand lockup ---------- */
.brand {
  display: inline-flex; align-items: center; gap: 12px; text-decoration: none;
}
.brand-tile {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 11px;
  background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
  font-family: var(--font-display); font-weight: 600; font-size: 19px;
  color: #fff; letter-spacing: -0.02em; line-height: 1;
}
.brand-tile i, .brand-word i {
  font-style: italic; font-weight: 500; color: var(--gold); padding: 0 1px;
}
.brand-word {
  font-family: var(--font-display); font-weight: 600; font-size: 26px;
  color: var(--ink); letter-spacing: -0.015em; line-height: 1;
}
.brand-word b { font-weight: 600; color: var(--maroon); }
.brand-dark .brand-word, .brand-dark .brand-word b { color: #fff; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a:not(.btn) {
  text-decoration: none; color: var(--ink); font-weight: 500; font-size: 0.94rem;
}
.site-nav a:not(.btn):hover, .site-nav a.active { color: var(--maroon); }
.nav-cta { margin-left: 6px; }
.nav-toggle { display: none; background: none; border: none; }

/* ---------- hero ---------- */
.hero, .page-hero { position: relative; color: #fff; overflow: hidden; }
.hero-media {
  position: absolute; inset: 0; background-size: cover; background-position: center right;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10, 12, 15, 0.88) 0%, rgba(10, 12, 15, 0.65) 45%, rgba(10, 12, 15, 0.15) 100%);
}
.hero-inner { position: relative; padding-top: 120px; padding-bottom: 120px; max-width: 1160px; }
.hero h1, .page-hero h1 { color: #fff; margin-bottom: 22px; max-width: 14ch; }
.hero-lede { font-size: 1.14rem; max-width: 54ch; color: rgba(255, 255, 255, 0.88); margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 26px; flex-wrap: wrap; list-style: none;
  margin-top: 46px; font-size: 0.86rem; font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust li::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
}
.page-hero .hero-inner { padding-top: 100px; padding-bottom: 90px; }
.page-hero-short .hero-inner { padding-top: 80px; padding-bottom: 70px; }

/* ---------- sections ---------- */
.section { padding: 96px 0; }
.section-tint { background: #f3efe7; }
.section-dark { background: var(--ink); color: #d6dbe1; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: #c4cbd3; }
.section-head { max-width: 640px; margin-bottom: 54px; }
.section-lede { color: var(--muted); font-size: 1.05rem; margin-top: 14px; }

/* ---------- marketplace store cards ---------- */
.store-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.store-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.store-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.store-card-media { height: 190px; background-size: cover; background-position: center; }
.store-card.is-live .store-card-media { background-position: center 65%; }
.store-card-body { padding: 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.store-card-body .text-link { margin-top: auto; align-self: flex-start; }
.store-card-body p { color: var(--muted); font-size: 0.95rem; }

.pill {
  align-self: flex-start; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: #edf0f3; color: var(--muted); border-radius: 999px; padding: 5px 12px;
}
.pill-live { background: rgba(23, 152, 212, 0.12); color: #0f7db1; }
.pill-gold { background: rgba(201, 154, 63, 0.16); color: #8a6524; }

/* ---------- split sections ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.split-copy > p { margin-bottom: 16px; }
.split-copy .btn { margin-top: 12px; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split-media-b {
  position: absolute; right: -28px; bottom: -44px; width: 52%;
  border: 6px solid var(--ink); display: none;
}
@media (min-width: 900px) { .split-media-b { display: block; } }
.signoff { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--gold) !important; }

.tick-list { list-style: none; margin: 22px 0 26px; display: grid; gap: 10px; }
.tick-list li { display: flex; gap: 12px; align-items: baseline; }
.tick-list li::before {
  content: "✓"; font-weight: 700; color: var(--gold); flex: 0 0 auto;
}

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.chip {
  font-size: 0.8rem; font-weight: 600; padding: 6px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.08); border: 1px solid var(--line-dark); color: #d6dbe1;
}
.section:not(.section-dark) .chip { background: #fff; border-color: var(--line); color: var(--text); }

/* ---------- products ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.product-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card img { height: 230px; width: 100%; object-fit: cover; }
.product-body { padding: 20px 22px 24px; }
.product-body .cat {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--maroon);
}
.product-body h3 { margin-top: 6px; font-size: 1.1rem; }

/* ---------- price tiles ---------- */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.price-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; display: flex; flex-direction: column; gap: 10px;
}
.price-card p:last-of-type { color: var(--muted); font-size: 0.92rem; }
.price-card .price {
  font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; color: var(--ink);
}
.price-card .price span { font-size: 1rem; color: var(--muted); font-family: var(--font-body); }
.price-card-feature { background: var(--ink); border-color: var(--ink); }
.price-card-feature h3, .price-card-feature .price { color: #fff; }
.price-card-feature p:last-of-type { color: var(--muted-light); }
.price-card-feature .btn { margin-top: 8px; align-self: flex-start; }
.note { margin-top: 30px; font-size: 0.9rem; color: var(--muted); }

/* ---------- steps ---------- */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  list-style: none; counter-reset: step;
}
.step-num {
  display: inline-flex; width: 46px; height: 46px; border-radius: 50%;
  background: var(--maroon); color: #fff; font-weight: 700; font-size: 1.1rem;
  align-items: center; justify-content: center; margin-bottom: 16px;
  font-family: var(--font-display);
}
.steps h3 { margin-bottom: 8px; }
.steps p { color: var(--muted); font-size: 0.97rem; }

/* ---------- values (about) ---------- */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px;
}
.value-card h3 { margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--maroon-deep), var(--maroon) 55%, #a5303f);
  color: #fff; padding: 90px 0;
}
.cta-inner { text-align: center; max-width: 640px; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255, 255, 255, 0.85); margin-bottom: 30px; }
.cta-band p a { color: #fff; font-weight: 600; }
.cta-band .hero-ctas { justify-content: center; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 5fr 6fr; gap: 64px; align-items: start; }
.contact-list { list-style: none; display: grid; gap: 22px; margin-top: 26px; }
.contact-list h3 {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px;
}
.contact-list a { font-size: 1.12rem; font-weight: 600; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.contact-badges {
  display: flex; gap: 16px; align-items: center; margin-top: 36px;
  padding: 18px 20px; background: #f3efe7; border-radius: var(--radius);
}
.contact-badges p { font-size: 0.85rem; color: var(--muted); }

.contact-form-wrap {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px; box-shadow: var(--shadow);
}
.contact-form { display: grid; gap: 8px; margin-top: 20px; }
.contact-form label { font-weight: 600; font-size: 0.9rem; margin-top: 10px; }
.contact-form input, .contact-form select, .contact-form textarea {
  font: inherit; padding: 12px 14px; border: 1.5px solid var(--line);
  border-radius: 10px; background: var(--paper);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--maroon);
}
.contact-form .btn { margin-top: 18px; justify-self: start; }
.contact-form .note { margin-top: 12px; font-size: 0.8rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--muted-light); }
.footer-grid {
  display: grid; grid-template-columns: 4fr 3fr 2fr 3fr; gap: 48px;
  padding-top: 72px; padding-bottom: 48px;
}
.site-footer h3 {
  color: #fff; font-family: var(--font-body); font-size: 0.8rem;
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-brand p { font-size: 0.92rem; margin: 18px 0; }
.footer-halal { width: 48px; height: auto; opacity: 0.9; }
.footer-list { list-style: none; display: grid; gap: 9px; font-size: 0.92rem; }
.footer-list li { overflow-wrap: anywhere; }
.footer-list a { color: var(--muted-light); text-decoration: none; }
.footer-list a:hover { color: #fff; }
.footer-base {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--line-dark);
  padding-top: 22px; padding-bottom: 26px; font-size: 0.82rem;
}

/* ---------- shop ---------- */
.shop-hero { background: var(--ink); color: #fff; padding: 72px 0 56px; }
.shop-hero h1 { color: #fff; margin-bottom: 14px; }
.shop-hero .hero-lede { margin-bottom: 0; }
.shop-body { padding: 44px 0 96px; }
.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 22px; flex-wrap: wrap; margin-bottom: 10px;
}
.shop-crumb { display: flex; align-items: center; gap: 18px; }
.shop-crumb h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.shop-back {
  font: inherit; font-size: 0.88rem; font-weight: 600; padding: 9px 18px;
  border-radius: 999px; background: #fff; border: 1.5px solid var(--line);
  color: var(--text); cursor: pointer; transition: all 0.15s ease; white-space: nowrap;
}
.shop-back:hover { border-color: var(--maroon); color: var(--maroon); }

.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.catcard {
  font: inherit; text-align: left; padding: 0; cursor: pointer;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.catcard:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.catcard-media { height: 150px; background-size: cover; background-position: center; }
.catcard-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 5px; }
.catcard-name { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--ink); }
.catcard-blurb { font-size: 0.88rem; color: var(--muted); }
.catcard-meta {
  margin-top: 6px; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--maroon);
}
.cat-grid[hidden], .shop-grid[hidden] { display: none; }
.shop-controls { display: flex; gap: 10px; }
.shop-controls input, .shop-controls select {
  font: inherit; font-size: 0.9rem; padding: 10px 14px;
  border: 1.5px solid var(--line); border-radius: 10px; background: #fff;
}
.shop-controls input { width: 210px; }
.shop-controls input:focus, .shop-controls select:focus { outline: none; border-color: var(--maroon); }
.shop-count { font-size: 0.85rem; color: var(--muted); margin: 8px 0 22px; }

.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.shop-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.shop-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.shop-card-media {
  position: relative; height: 170px; background: #f3efe7;
  display: flex; align-items: center; justify-content: center;
}
.shop-card-media img { width: 100%; height: 100%; object-fit: cover; }
.shop-ph, .cart-thumb-ph {
  font-family: var(--font-display); font-weight: 600; font-size: 1.6rem; color: #cfc6b4;
}
.shop-ph i, .cart-thumb-ph i { font-style: italic; }
.shop-sale { position: absolute; top: 10px; left: 10px; background: var(--gold); color: #fff; }
.shop-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.shop-card-body .cat {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--maroon);
}
.shop-card-body h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; line-height: 1.35; }
.shop-note { font-size: 0.78rem; color: var(--muted); }
.shop-card-foot {
  margin-top: auto; padding-top: 12px; display: flex;
  justify-content: space-between; align-items: center; gap: 10px;
}
.shop-price { font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; color: var(--ink); }
.btn-outline { border-color: var(--maroon); color: var(--maroon); }
.btn-outline:hover { background: var(--maroon); color: #fff; }

/* cart */
.cart-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  background: var(--ink); color: #fff; border: none; cursor: pointer;
  border-radius: 999px; padding: 14px 20px; font: inherit; font-weight: 600;
  box-shadow: 0 10px 26px rgba(20,24,29,0.35); transition: transform 0.15s ease;
}
.cart-fab:hover { transform: translateY(-2px); }
.cart-fab.has-items { background: var(--maroon); }
.cart-fab span {
  background: #fff; color: var(--ink); border-radius: 999px;
  padding: 2px 9px; font-size: 0.85rem; margin-left: 4px;
}
.cart-overlay { position: fixed; inset: 0; background: rgba(14,17,21,0.55); z-index: 70; }
.cart-overlay[hidden], .cart-drawer[hidden] { display: none; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100vw);
  background: var(--paper); z-index: 80; display: flex; flex-direction: column;
  box-shadow: -18px 0 50px rgba(0,0,0,0.25);
}
.cart-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 26px; border-bottom: 1px solid var(--line);
}
.cart-close { background: none; border: none; font-size: 1.9rem; line-height: 1; cursor: pointer; color: var(--muted); }
.cart-items { flex: 1; overflow-y: auto; padding: 18px 26px; display: grid; gap: 16px; align-content: start; }
.cart-empty { color: var(--muted); font-size: 0.95rem; }
.cart-item { display: flex; gap: 14px; }
.cart-thumb {
  width: 64px; height: 64px; border-radius: 10px; overflow: hidden; flex: 0 0 auto;
  background: #f3efe7; display: flex; align-items: center; justify-content: center;
}
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-thumb-ph { font-size: 1rem; }
.cart-item-name { font-weight: 600; font-size: 0.92rem; line-height: 1.3; }
.cart-item-price { font-size: 0.85rem; color: var(--muted); margin: 2px 0 8px; }
.qty { display: flex; align-items: center; gap: 10px; }
.qty-btn {
  width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--line);
  background: #fff; cursor: pointer; font-size: 1rem; line-height: 1;
}
.qty-btn:hover { border-color: var(--maroon); color: var(--maroon); }
.cart-remove { background: none; border: none; color: var(--muted); font-size: 0.78rem; cursor: pointer; text-decoration: underline; margin-left: 6px; }
.cart-foot { border-top: 1px solid var(--line); padding: 20px 26px 26px; }
.cart-total-row { display: flex; justify-content: space-between; font-size: 1.05rem; margin-bottom: 8px; }
.cart-note { font-size: 0.78rem; color: var(--muted); margin-bottom: 14px; }
.cart-checkout { width: 100%; }
.cart-demo-note { font-size: 0.75rem; color: var(--muted); margin-top: 12px; text-align: center; }

@media (max-width: 1080px) { .shop-grid { grid-template-columns: repeat(3, 1fr); } .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .shop-grid { grid-template-columns: 1fr; } .cat-grid { grid-template-columns: 1fr; } .shop-controls input { width: 100%; } .shop-controls { width: 100%; flex-wrap: wrap; } }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .store-grid, .product-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .price-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split-rev .split-media { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .topbar-mid { display: none !important; }
}
@media (max-width: 720px) {
  .section { padding: 68px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-inner { padding-top: 84px; padding-bottom: 84px; }
  .store-grid, .product-grid, .steps, .price-grid, .value-grid { grid-template-columns: 1fr; }
  .topbar-inner { justify-content: center; }
  .topbar-inner span:last-child { display: none; }

  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer;
  }
  .nav-toggle span:not(.sr-only) {
    width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; padding: 18px 24px 26px; gap: 16px;
  }
  .site-nav.open { display: flex; }
  .nav-cta { margin-left: 0; }
}

/* ---------- forms: status, honeypot, order form ---------- */
.hp-field { position: absolute; left: -9999px; height: 1px; width: 1px; opacity: 0; }
.form-status { margin-top: 12px; font-size: 0.92rem; font-weight: 600; color: #2e7d32; min-height: 1.4em; }
.form-status.is-error { color: var(--maroon); }
.cart-order-form {
  padding: 20px 24px 28px; overflow-y: auto; display: grid; gap: 7px;
  border-top: 1px solid var(--line);
}
.cart-order-form h3 { margin-bottom: 6px; }
.cart-order-form label { font-weight: 600; font-size: 0.88rem; margin-top: 8px; }
.cart-order-form input, .cart-order-form textarea {
  font: inherit; padding: 10px 12px; border: 1.5px solid var(--line);
  border-radius: 10px; background: var(--paper);
}
.cart-order-form input:focus, .cart-order-form textarea:focus { outline: none; border-color: var(--maroon); }
.of-method { border: none; margin-top: 10px; display: grid; gap: 6px; }
.of-method legend { font-weight: 600; font-size: 0.88rem; margin-bottom: 4px; }
.of-method label { font-weight: 500; font-size: 0.92rem; display: flex; gap: 8px; align-items: center; margin: 0; }
.of-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; gap: 10px; }
.btn-ghost-dark { border-color: var(--line); color: var(--text); }
.btn-ghost-dark:hover { border-color: var(--maroon); color: var(--maroon); }
