/* ════════════════════════════════════════════════════════════
   CartePro — Gaming Gift Cards
   Palette: Charcoal · Green · White · Gaming
════════════════════════════════════════════════════════════ */
:root {
  --charcoal:       #1e2235;
  --charcoal-dark:  #141622;
  --charcoal-mid:   #2a2f47;
  --green:          #00a651;
  --green-dark:     #007a3d;
  --green-light:    #e6f7ee;
  --white:          #FFFFFF;
  --light:          #f5f7fa;
  --text:           #1a1a2e;
  --muted:          #6b7280;
  --border:         #e2e8f0;
  --red:            #e53935;
  --shadow:         0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:      0 12px 40px rgba(0,0,0,.18);
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; }
body { font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--text); background: var(--white); margin: 0; overflow-x: hidden; max-width: 100%; }
img { max-width: 100%; display: block; }
a { color: var(--green); }

/* ── TOP BAR ─────────────────────────────────────────────── */
.topbar {
  background: var(--charcoal-dark);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: 7px 0;
  text-align: center;
  font-weight: 500;
  letter-spacing: .3px;
}
.topbar strong { color: var(--green); }
.topbar i { margin: 0 4px; }

/* Topbar: desktop/mobile split */
.topbar-mobile { display: none; }
.topbar-desktop { display: block; }

/* Marquee */
.topbar-marquee {
  overflow: hidden;
  white-space: nowrap;
}
.topbar-marquee span {
  display: inline-block;
  animation: marquee 18s linear infinite;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar { background: var(--charcoal); border-bottom: 2px solid var(--charcoal-mid); padding: 14px 0; }
.navbar-brand { font-size: 1.6rem; font-weight: 800; color: var(--white) !important; text-decoration: none; display: flex; align-items: center; gap: 8px; }
.navbar-brand img { height: 44px; width: auto; display: block; }
.nav-cart-btn {
  background: var(--green);
  color: var(--white) !important;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .2s, transform .15s;
}
.nav-cart-btn:hover { background: var(--green-dark); transform: translateY(-1px); color: var(--white) !important; }
.nav-trust { font-size: .78rem; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 6px; }
.nav-trust i { color: var(--green); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary-ff {
  background: var(--green);
  border: none;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-primary-ff:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,166,81,.3);
}
.btn-lg-ff { padding: 16px 36px; font-size: 1.05rem; }
.btn-outline-ff {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: .9rem;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.btn-outline-ff:hover { background: var(--light); border-color: var(--green); color: var(--green); }

/* ── BADGES ──────────────────────────────────────────────── */
.badge-discount {
  background: var(--red);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .3px;
}
.badge-free-ship {
  background: var(--green);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal) 60%, #1a2f1e 100%);
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,166,81,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 { color: var(--white); }
.hero .lead { color: rgba(255,255,255,.7); }
.hero-badge {
  background: rgba(0,166,81,.15);
  border: 1px solid rgba(0,166,81,.35);
  color: var(--green);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: .82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ── CATEGORY TABS ───────────────────────────────────────── */
.cat-tabs-section { background: var(--white); border-bottom: 1px solid var(--border); }
.cat-tab {
  background: var(--light);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: .85rem;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.cat-tab:hover, .cat-tab.active { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.cat-tab.active { background: var(--green); border-color: var(--green); }

/* ── PRODUCT GRID ────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

/* ── PRODUCT CARD ────────────────────────────────────────── */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: all .25s;
  display: block;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
  color: var(--text);
}
.product-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--charcoal-dark);
}
.product-card__body { padding: 14px; }
.product-card__title {
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.4;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__stars { font-size: .8rem; color: var(--muted); margin-top: 4px; }
.product-card__stars i { color: #f59e0b; }
.product-card__price { display: flex; align-items: baseline; gap: 8px; margin-top: 8px; }

/* ── PRICES ──────────────────────────────────────────────── */
.price-now { font-size: 1.4rem; font-weight: 900; color: var(--green); }
.price-old { font-size: .92rem; text-decoration: line-through; color: var(--muted); }
.price-hero { display: flex; align-items: baseline; gap: 12px; margin: 12px 0; }
.price-hero .price-now { font-size: 2.2rem; }

/* ── REVIEW STARS ────────────────────────────────────────── */
.review-stars i { color: #f59e0b; font-size: .9rem; }

/* ── TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.trust-bar__item { text-align: center; }
.trust-bar__icon {
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: var(--green);
  font-size: 1.2rem;
}
.trust-bar__title { font-weight: 700; font-size: .95rem; }
.trust-bar__sub { font-size: .8rem; color: var(--muted); }

/* ── SOCIAL PROOF STRIP ──────────────────────────────────── */
.proof-strip {
  background: var(--charcoal);
  color: var(--white);
  padding: 48px 0;
}
.proof-strip .stat-value { font-size: 2rem; font-weight: 900; color: var(--green); }
.proof-strip .stat-label { font-size: .82rem; opacity: .75; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--charcoal-dark);
  color: rgba(255,255,255,.8);
  padding: 56px 0 0;
}
.footer a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .88rem; line-height: 2; }
.footer a:hover { color: var(--green); }
.footer-brand { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.footer-heading { font-weight: 700; font-size: .88rem; text-transform: uppercase; letter-spacing: .8px; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 48px;
  padding: 18px 0;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  text-align: center;
}
.footer .payment-icon {
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
  padding: 2px 6px;
  background: rgba(255,255,255,.05);
}

/* ── PRODUCT PAGE ────────────────────────────────────────── */
.product-title { font-size: 1.7rem; font-weight: 800; line-height: 1.3; color: var(--text); }
.product-subtitle { color: var(--muted); font-size: 1rem; }
.urgency-box {
  background: #fff5f5;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
}
.shipping-box {
  background: var(--green-light);
  border: 1px solid rgba(0,166,81,.25);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: .88rem;
}
.shipping-box i { color: var(--green); }
.checkout-btn {
  background: var(--green);
  color: var(--white);
  border: none;
  font-size: 1.1rem;
  font-weight: 800;
  padding: 18px 36px;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: all .2s;
  letter-spacing: .3px;
}
.checkout-btn:hover { background: var(--green-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,166,81,.35); }

/* ── GALLERY ─────────────────────────────────────────────── */
.product-gallery { }
.gallery-main {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 420px;
  border: 1px solid var(--border);
  background: var(--charcoal-dark);
}
.gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.gallery-thumb {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color .2s;
}
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--green); }

/* ── REVIEW CARD ─────────────────────────────────────────── */
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}
.review-text { color: var(--text); line-height: 1.6; }
.reviewer-name { font-weight: 700; color: var(--muted); }

/* ── CHECKOUT FORM ───────────────────────────────────────── */
.checkout-section { background: var(--light); min-height: 100vh; padding: 48px 0; }
.checkout-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-label { font-weight: 600; font-size: .9rem; color: var(--text); }
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .95rem;
  transition: border-color .2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,166,81,.12);
  outline: none;
}
.order-summary { background: var(--charcoal); color: var(--white); border-radius: 12px; padding: 24px; }
.order-summary .price-now { color: var(--green); }

/* ── THANKS PAGE ─────────────────────────────────────────── */
.thanks-section { background: var(--light); min-height: 70vh; display: flex; align-items: center; }
.thanks-card {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.thanks-icon {
  width: 80px;
  height: 80px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: var(--green);
}

/* ── UTILS ───────────────────────────────────────────────── */
.text-green { color: var(--green) !important; }
.bg-charcoal { background: var(--charcoal) !important; }
.section-title { font-size: 1.6rem; font-weight: 800; color: var(--text); }

/* ── LEGACY VARIABLE ALIASES (backwards compat) ───────────── */
:root {
  --brown:       var(--charcoal);
  --brown-dark:  var(--charcoal-dark);
  --amber:       var(--green);
  --amber-light: var(--green-light);
  --amber-dark:  var(--green-dark);
  --cream:       var(--light);
}

/* ── CHECKOUT PAGE ───────────────────────────────────────────── */
.checkout-page { background: var(--light); min-height: 100vh; padding: 32px 0 60px; }
.checkout-container { max-width: 580px; margin: 0 auto; padding: 0 16px; }
.progress-steps { display: flex; align-items: center; justify-content: center; gap: 0; }
.step { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: .75rem; color: var(--muted); font-weight: 600; }
.step__dot { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; }
.step.active .step__dot { border-color: var(--green); color: var(--green); }
.step.active span { color: var(--text); }
.step.done .step__dot { background: var(--green); border-color: var(--green); color: #fff; }
.step-line { flex: 1; height: 2px; background: var(--border); max-width: 48px; margin-bottom: 16px; }
.checkout-card { background: var(--white); border-radius: 16px; box-shadow: var(--shadow); overflow: hidden; }
.checkout-card__header { background: var(--charcoal); color: #fff; padding: 18px 24px; display: flex; align-items: center; gap: 14px; }
.checkout-card__header h2 { margin: 0; font-size: 1.1rem; font-weight: 800; }
.checkout-card__header p { margin: 2px 0 0; font-size: .8rem; opacity: .7; }
.checkout-card__body { padding: 24px; }
.order-mini { display: flex; align-items: center; gap: 12px; background: var(--light); border-radius: 10px; padding: 12px; margin-bottom: 16px; }
.order-mini img { width: 64px; height: 48px; object-fit: cover; border-radius: 8px; flex-shrink: 0; background: var(--charcoal-dark); }
.order-mini__price { font-size: 1.1rem; font-weight: 800; color: var(--green); }
.order-mini__price-old { font-size: .8rem; text-decoration: line-through; color: var(--muted); }
.form-section-title { font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); margin: 20px 0 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.form-section-title:first-of-type { border-top: none; padding-top: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-weight: 600; font-size: .85rem; margin-bottom: 5px; color: var(--text); }
.form-field .req { color: var(--red); }
.form-field input, .form-field select { width: 100%; border: 1.5px solid var(--border); border-radius: 8px; padding: 11px 14px; font-size: .95rem; transition: border-color .2s; }
.form-field input:focus, .form-field select:focus { border-color: var(--green); outline: none; box-shadow: 0 0 0 3px rgba(0,166,81,.1); }
.form-field input.is-invalid, .form-field select.is-invalid { border-color: var(--red); }
.field-error { display: none; font-size: .76rem; color: var(--red); margin-top: 4px; }
.form-field input.is-invalid ~ .field-error { display: block; }
.payment-notice { background: var(--light); border: 1px solid var(--border); border-radius: 10px; padding: 14px; display: flex; gap: 12px; font-size: .85rem; margin: 16px 0; }
.payment-notice i { color: var(--green); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.payment-icons-row { display: flex; align-items: center; gap: 6px; }
.payment-icons-row img { height: 20px; }
.submit-btn-wrap { margin: 20px 0 12px; }
.submit-btn-wrap button { width: 100%; font-size: 1.05rem; padding: 16px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; font-size: .76rem; color: var(--muted); }
.trust-row i { color: var(--green); }

/* ── PRODUCT PAGE EXTRA ───────────────────────────────────────── */
.stock-wrap { margin: 12px 0; }
.stock-bar { height: 8px; background: var(--light); border-radius: 4px; overflow: hidden; border: 1px solid var(--border); }
.stock-fill { height: 100%; background: linear-gradient(90deg, var(--green), #00cc66); border-radius: 4px; transition: width 1s ease; }
.features-list { list-style: none; padding: 0; margin: 14px 0; }
.features-list li { display: flex; align-items: flex-start; gap: 8px; font-size: .9rem; margin-bottom: 8px; }
.features-list li i { color: var(--green); margin-top: 2px; flex-shrink: 0; }
.custom-input-box { background: var(--green-light); border: 1.5px solid rgba(0,166,81,.3); border-radius: 10px; padding: 14px; margin: 14px 0; }
.custom-input-box label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: 6px; }
.custom-input-box input { width: 100%; border: 1.5px solid rgba(0,166,81,.4); border-radius: 8px; padding: 10px 14px; font-size: 1rem; }
.shipping-box__row { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(0,166,81,.15); }
.shipping-box__row:last-child { border-bottom: none; }
.shipping-box__row i { color: var(--green); width: 16px; margin-top: 2px; }
.shipping-box__label { font-size: .76rem; color: var(--muted); }
.reviews-summary { display: flex; gap: 24px; align-items: center; background: var(--light); border-radius: 12px; padding: 20px; margin-bottom: 20px; }
.reviews-summary__score { font-size: 3rem; font-weight: 900; color: var(--text); line-height: 1; }

/* ── THANKS PAGE ─────────────────────────────────────────────── */
.thanks-wrap { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 40px 16px; background: var(--light); }
.thanks-card { background: var(--white); border-radius: 20px; padding: 40px 32px; text-align: center; box-shadow: var(--shadow-lg); max-width: 520px; width: 100%; }
.thanks-icon { font-size: 3rem; margin-bottom: 16px; }

/* ══════════════════════════════════════════════════════════════
   MOBILE FIRST — Responsive overrides
══════════════════════════════════════════════════════════════ */

/* ── HERO ────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .hero { padding: 36px 0 48px; }
  .hero h1 { font-size: 1.9rem !important; }
  .hero .lead { font-size: .95rem !important; }
  .hero-badge { font-size: .78rem; }
  .btn-primary-ff.btn-lg-ff { padding: 14px 24px; font-size: .97rem; }
}

/* ── NAVBAR ──────────────────────────────────────────────────── */
@media (max-width: 575px) {
  .navbar { padding: 8px 0; }
  .navbar-brand img { height: 38px; }
  .nav-cart-btn { padding: 8px 14px; font-size: .82rem; }
}

/* ── TOPBAR ──────────────────────────────────────────────────── */
@media (max-width: 575px) {
  .topbar { font-size: .75rem; padding: 6px 0; }
  .topbar-desktop { display: none; }
  .topbar-mobile { display: block; }
}

/* ── PRODUCT GRID ────────────────────────────────────────────── */
@media (max-width: 575px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card__body { padding: 10px; }
  .product-card__title { font-size: .85rem; }
  .price-now { font-size: 1.1rem; }
  .btn-primary-ff { padding: 9px 12px; font-size: .82rem; }
}

/* ── CATEGORY TABS ───────────────────────────────────────────── */
@media (max-width: 767px) {
  .cat-tabs-section .d-flex { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .cat-tabs-section .d-flex::-webkit-scrollbar { display: none; }
  .cat-tab { flex-shrink: 0; font-size: .8rem; padding: 7px 14px; }
}

/* ── TRUST BAR ───────────────────────────────────────────────── */
@media (max-width: 575px) {
  .trust-bar { padding: 20px 0; }
  .trust-bar__title { font-size: .85rem; }
  .trust-bar__sub { font-size: .72rem; }
  .trust-bar__icon { width: 42px; height: 42px; font-size: 1rem; }
}

/* ── SOCIAL PROOF STRIP ──────────────────────────────────────── */
@media (max-width: 575px) {
  .proof-strip { padding: 28px 0; }
  .proof-strip .stat-value { font-size: 1.5rem; }
}

/* ── PRODUCT PAGE ────────────────────────────────────────────── */
@media (max-width: 991px) {
  .product-title { font-size: 1.4rem; }
  .price-hero .price-now { font-size: 1.8rem; }
}
@media (max-width: 575px) {
  .gallery-main { max-height: 280px; }
  .gallery-thumb { width: 56px; height: 42px; }
  .urgency-box { flex-wrap: wrap; gap: 8px; font-size: .85rem; }
  .features-list li { font-size: .85rem; }
  /* prevent breadcrumb and price badge from bleeding */
  .price-hero { flex-wrap: wrap; gap: 8px; }
  .badge-discount { font-size: .7rem; }
  .container { max-width: 100%; padding-left: 16px; padding-right: 16px; }
  /* topbar marquee overflow guard */
  .topbar-mobile { overflow: hidden; max-width: 100vw; }
  /* sticky CTA must not exceed viewport */
  #stickyCta { max-width: 100vw; box-sizing: border-box; }
}

/* ── STICKY MOBILE CTA ───────────────────────────────────────── */
#stickyCta { padding: 10px 14px !important; }
@media (max-width: 575px) {
  #stickyCta > div { gap: 8px !important; }
  #stickyCta .price-title { font-size: .82rem !important; }
}

/* ── CHECKOUT PAGE ───────────────────────────────────────────── */
@media (max-width: 575px) {
  .checkout-page { padding: 16px 0 40px; }
  .checkout-container { padding: 0 12px; }
  .checkout-card__body { padding: 16px; }
  .checkout-card__header { padding: 14px 16px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .progress-steps { gap: 0; }
  .step span { font-size: .68rem; }
  .step-line { max-width: 32px; }
  .submit-btn-wrap button { font-size: .97rem; padding: 14px; }
}

/* ── FOOTER ──────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .footer { padding: 36px 0 0; }
  .footer-brand { font-size: 1.2rem; }
}

/* ── THANKS PAGE ─────────────────────────────────────────────── */
@media (max-width: 575px) {
  .thanks-card { padding: 28px 20px; }
  .thanks-card h1 { font-size: 1.35rem !important; }
}

/* ── GENERAL MOBILE TOUCH IMPROVEMENTS ──────────────────────── */
@media (max-width: 767px) {
  /* Larger tap targets */
  .btn-primary-ff, .btn-outline-ff, a.nav-cart-btn { min-height: 44px; }
  /* Better form fields on mobile */
  .form-field input, .form-field select { font-size: 16px !important; /* prevent iOS zoom */ padding: 13px 14px; }
  /* Section spacing */
  section.py-5 { padding-top: 32px !important; padding-bottom: 32px !important; }
  .section-title { font-size: 1.3rem; }
}
