/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  --bg: #080810;
  --surface: #10101e;
  --surface2: #181828;
  --border: #22223a;
  --gold: #f0c040;
  --gold2: #c89820;
  --gold-dim: rgba(240,192,64,.12);
  --red: #ff4060;
  --green: #00d48a;
  --blue: #4488ff;
  --op-red: #dc2626;
  --text: #f0f0f8;
  --muted: #8888a8;
  --muted2: #4a4a6a;
  --radius: 14px;
  --radius-sm: 8px;
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Syne', sans-serif; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ── CONTAINER ────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ──────────────────────────────────────────────────── */
#navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(8,8,16,.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 14px; color: #000; letter-spacing: 1px;
}
.logo-text { font-size: 17px; font-weight: 500; color: var(--text); }
.logo-text strong { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 28px; flex: 1; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.cart-btn {
  position: relative; background: var(--surface2); border: 1px solid var(--border);
  color: var(--text); width: 40px; height: 40px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; transition: border-color .2s;
}
.cart-btn:hover { border-color: var(--gold); }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--gold); color: #000; font-size: 10px; font-weight: 800;
  width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  display: none;
}
.cart-count.visible { display: flex; }
.nav-mobile-toggle { display: none; background: none; border: none; color: var(--text); font-size: 22px; }
.mobile-nav { display: none; flex-direction: column; border-top: 1px solid var(--border); }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 14px 24px; font-size: 15px; border-bottom: 1px solid var(--border); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 64px);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 40px;
  padding: 80px 24px; max-width: 1200px; margin: 0 auto;
  position: relative;
}
.hero-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden;
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(120px); opacity: .35;
}
.hero-orb-1 {
  width: 600px; height: 600px; top: -200px; left: -200px;
  background: radial-gradient(circle, #c89820 0%, transparent 70%);
}
.hero-orb-2 {
  width: 500px; height: 500px; bottom: -100px; right: -100px;
  background: radial-gradient(circle, #4438aa 0%, transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(240,192,64,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(240,192,64,.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 9vw, 120px);
  line-height: .92; letter-spacing: 1px; margin-bottom: 24px;
  color: var(--text);
}
.hero-accent { color: var(--gold); }
.hero-sub { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 440px; margin-bottom: 36px; }
.hero-cta { display: flex; align-items: center; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold); color: #000;
  font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: 2px;
  padding: 14px 28px; border-radius: var(--radius-sm); border: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }

.btn-ghost {
  font-size: 14px; font-weight: 600; color: var(--muted);
  border: 1px solid var(--border); padding: 13px 22px; border-radius: var(--radius-sm);
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-trust { display: flex; align-items: center; gap: 24px; }
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-num { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--gold); line-height: 1; }
.trust-label { font-size: 11px; color: var(--muted); letter-spacing: 1px; }
.trust-sep { width: 1px; height: 36px; background: var(--border); }

/* HERO VISUAL */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.card-stack { position: relative; width: 320px; height: 400px; }
.card-float {
  position: absolute; width: 160px;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
  transition: transform .4s ease;
}
.card-float:hover { transform: translateY(-8px) rotate(0deg) !important; }
.card-f1 { top: 40px; left: 0; transform: rotate(-8deg); z-index: 3; }
.card-f2 { top: 0; left: 80px; transform: rotate(3deg); z-index: 2; }
.card-f3 { top: 60px; right: 0; transform: rotate(10deg); z-index: 1; }
.card-inner { background: var(--surface2); border: 1px solid var(--border); }
.card-badge {
  position: absolute; top: 8px; right: 8px; z-index: 2;
  background: var(--gold); color: #000;
  font-family: 'Bebas Neue', sans-serif; font-size: 11px; letter-spacing: 1px;
  padding: 2px 8px; border-radius: 4px;
}
.card-badge.op { background: var(--op-red); color: #fff; }
.card-art {
  height: 120px; position: relative; overflow: hidden;
}
.pokemon-art {
  background: linear-gradient(135deg, #1a1a40 0%, #2d1b69 50%, #1a3a6e 100%);
}
.pokemon-art::after {
  content: '⚡'; font-size: 48px; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); opacity: .4;
}
.onepiece-art {
  background: linear-gradient(135deg, #1a0505 0%, #4a0a0a 50%, #1a1530 100%);
}
.onepiece-art::after {
  content: '⚓'; font-size: 48px; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); opacity: .4;
}
.pokemon-art2 {
  background: linear-gradient(135deg, #0a2a1a 0%, #1a4a2a 50%, #0a2030 100%);
}
.pokemon-art2::after {
  content: '🌟'; font-size: 48px; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); opacity: .4;
}
.card-name {
  padding: 10px; font-size: 11px; font-weight: 700;
  text-align: center; color: var(--muted); letter-spacing: .5px;
}

/* ── SECTION HEADER ───────────────────────────────────────── */
.section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px; }
.section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: 1px; }
.see-all { font-size: 13px; color: var(--muted); border-bottom: 1px solid var(--border); padding-bottom: 2px; transition: color .2s, border-color .2s; }
.see-all:hover { color: var(--gold); border-color: var(--gold); }

/* ── CATEGORIES ───────────────────────────────────────────── */
.categories { padding: 80px 0; }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; display: flex; align-items: flex-end;
  border: 1px solid var(--border); transition: border-color .3s, transform .3s;
}
.cat-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.cat-bg { position: absolute; inset: 0; transition: transform .4s; }
.cat-card:hover .cat-bg { transform: scale(1.04); }
.cat-pokemon .cat-bg { background: linear-gradient(135deg, #0d1b3e 0%, #1a2a6c 40%, #2d1b69 100%); }
.cat-onepiece .cat-bg { background: linear-gradient(135deg, #1a0505 0%, #3d0a0a 40%, #1a1530 100%); }
.cat-graded .cat-bg { background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 40%, #2a1a00 100%); }
.cat-content {
  position: relative; z-index: 1; padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 100%);
  width: 100%;
}
.cat-icon { font-size: 28px; margin-bottom: 8px; }
.cat-content h3 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 1px; }
.cat-content p { font-size: 12px; color: var(--muted); margin: 4px 0 12px; }
.cat-link { font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: 1px; }

/* ── FEATURED / PRODUCT CARDS ─────────────────────────────── */
.featured { padding: 0 0 80px; }
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.product-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .25s, transform .25s;
  cursor: pointer;
}
.product-card:hover { border-color: rgba(240,192,64,.4); transform: translateY(-4px); }

.product-img {
  aspect-ratio: 3/4; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 60px; background: var(--surface2);
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-universe {
  position: absolute; top: 10px; left: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
}
.universe-pokemon { background: rgba(68,136,255,.2); color: var(--blue); border: 1px solid rgba(68,136,255,.3); }
.universe-onepiece { background: rgba(220,38,38,.2); color: #f87171; border: 1px solid rgba(220,38,38,.3); }
.product-grade {
  position: absolute; top: 10px; right: 10px;
  background: var(--gold); color: #000;
  font-family: 'Bebas Neue', sans-serif; font-size: 12px; letter-spacing: 1px;
  padding: 3px 9px; border-radius: 4px;
}
.product-etat {
  position: absolute; bottom: 10px; left: 10px;
  font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 4px;
}
.etat-nm { background: rgba(0,212,138,.15); color: var(--green); border: 1px solid rgba(0,212,138,.25); }
.etat-lp { background: rgba(68,136,255,.15); color: var(--blue); border: 1px solid rgba(68,136,255,.25); }
.etat-mp { background: rgba(240,192,64,.15); color: var(--gold); border: 1px solid rgba(240,192,64,.25); }

.product-info { padding: 14px; }
.product-name { font-size: 13px; font-weight: 700; margin-bottom: 4px; line-height: 1.3; }
.product-serie { font-size: 11px; color: var(--muted); margin-bottom: 12px; }
.product-bottom { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.product-price { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--gold); }
.add-to-cart {
  background: var(--gold); color: #000; border: none;
  font-family: 'Bebas Neue', sans-serif; font-size: 12px; letter-spacing: 1px;
  padding: 7px 14px; border-radius: var(--radius-sm);
  transition: background .2s;
}
.add-to-cart:hover { background: var(--gold2); }
.add-to-cart.added { background: var(--green); color: #000; }

/* ── WHY US ───────────────────────────────────────────────── */
.whyus { padding: 80px 0; border-top: 1px solid var(--border); }
.whyus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.whyus-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: 44px; line-height: 1; margin-bottom: 16px; }
.whyus-text p { color: var(--muted); line-height: 1.7; font-size: 15px; }
.whyus-features { display: flex; flex-direction: column; gap: 24px; }
.feature { display: flex; align-items: flex-start; gap: 16px; }
.feature-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.feature h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.feature p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── FOOTER ───────────────────────────────────────────────── */
footer { background: var(--surface); border-top: 1px solid var(--border); padding: 60px 0 32px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 280px; }
.footer-links h5 { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted2); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 4px; }
.footer-links a { font-size: 13px; color: var(--muted); padding: 4px 0; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--border); gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: var(--muted2); }
.footer-payment { display: flex; gap: 8px; }
.pay-badge { font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 4px; border: 1px solid var(--border); color: var(--muted); }

/* ── CART DRAWER ──────────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 300;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 301;
  width: 380px; max-width: 100vw;
  background: var(--surface); border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .3s;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-header h3 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 1px; }
.cart-header button { background: none; border: 1px solid var(--border); color: var(--muted); width: 32px; height: 32px; border-radius: var(--radius-sm); font-size: 14px; }
.cart-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; padding: 60px 0; color: var(--muted); }
.cart-empty p { margin-top: 12px; font-size: 13px; }
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 52px; height: 70px; border-radius: var(--radius-sm); background: var(--surface2); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; overflow: hidden; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.cart-item-serie { font-size: 11px; color: var(--muted); }
.cart-item-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.cart-item-price { font-family: 'Bebas Neue', sans-serif; font-size: 18px; color: var(--gold); }
.cart-item-remove { background: none; border: none; color: var(--muted); font-size: 13px; }
.cart-item-remove:hover { color: var(--red); }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--border); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cart-total span:first-child { font-size: 14px; color: var(--muted); }
.cart-total-price { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--gold); }
.cart-shipping-note { font-size: 11px; color: var(--muted); margin-bottom: 16px; }
.checkout-btn {
  width: 100%; background: var(--gold); color: #000; border: none;
  font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: 2px;
  padding: 16px; border-radius: var(--radius-sm);
  transition: background .2s;
}
.checkout-btn:hover { background: var(--gold2); }

/* ── FILTERS (catalogue) ──────────────────────────────────── */
.filters-bar {
  display: flex; align-items: center; gap: 10px; padding: 24px 0; flex-wrap: wrap;
}
.filter-btn {
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--muted); font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 600;
  padding: 8px 16px; border-radius: 30px;
  transition: all .2s;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: #000; }

/* ── PRODUCT DETAIL ───────────────────────────────────────── */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 60px 0; align-items: start; }
.product-detail-img { border-radius: var(--radius); overflow: hidden; background: var(--surface2); aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; font-size: 120px; }
.product-detail-img img { width: 100%; height: 100%; object-fit: contain; }
.product-detail-info {}
.detail-breadcrumb { font-size: 12px; color: var(--muted); margin-bottom: 20px; display: flex; gap: 8px; }
.detail-breadcrumb a:hover { color: var(--text); }
.detail-title { font-family: 'Bebas Neue', sans-serif; font-size: 42px; line-height: 1; margin-bottom: 8px; }
.detail-serie { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.detail-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.detail-price { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: var(--gold); margin-bottom: 24px; }
.detail-desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; border-top: 1px solid var(--border); padding-top: 24px; }
.detail-guarantees { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.guarantee { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
.guarantee span:first-child { font-size: 16px; }
.detail-add-btn {
  width: 100%; background: var(--gold); color: #000; border: none;
  font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 3px;
  padding: 18px; border-radius: var(--radius-sm); transition: background .2s;
}
.detail-add-btn:hover { background: var(--gold2); }

/* ── PAGE HERO (catalogue, legal) ─────────────────────────── */
.page-hero { padding: 60px 0 40px; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: 56px; letter-spacing: 1px; margin-bottom: 8px; }
.page-hero p { color: var(--muted); font-size: 15px; }

/* ── MENTIONS LEGALES ─────────────────────────────────────── */
.legal-content { padding: 60px 0 80px; }
.legal-nav { display: flex; flex-direction: column; gap: 6px; }
.legal-nav a { font-size: 13px; color: var(--muted); padding: 6px 0; border-bottom: 1px solid var(--border); transition: color .2s; }
.legal-nav a:hover { color: var(--gold); }
.legal-grid { display: grid; grid-template-columns: 220px 1fr; gap: 60px; }
.legal-section { margin-bottom: 48px; scroll-margin-top: 80px; }
.legal-section h2 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 1px; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.legal-section h3 { font-size: 15px; font-weight: 700; margin: 20px 0 8px; }
.legal-section p, .legal-section li { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 12px; }
.legal-section ul { padding-left: 20px; }
.legal-section a { color: var(--gold); }

/* ── CHECKOUT PAGE ────────────────────────────────────────── */
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; padding: 60px 0 80px; align-items: start; }
.checkout-form-section { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; margin-bottom: 20px; }
.checkout-form-section h3 { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.form-group input, .form-group select {
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text); font-family: 'Syne', sans-serif; font-size: 14px;
  padding: 11px 14px; border-radius: var(--radius-sm); outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus { border-color: var(--gold); }
.form-group input::placeholder { color: var(--muted2); }
.checkout-summary { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; position: sticky; top: 80px; }
.checkout-summary h3 { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px; margin-bottom: 20px; }
.summary-items { margin-bottom: 20px; }
.summary-item { display: flex; justify-content: space-between; font-size: 13px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.summary-item:last-child { border-bottom: none; }
.summary-item span:last-child { color: var(--gold); font-weight: 700; }
.summary-total { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--border); }
.summary-total span:first-child { font-weight: 700; }
.summary-total-price { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--gold); }
.stripe-note { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--muted); margin: 16px 0; }
.stripe-note::before { content: '🔒'; }
.pay-btn {
  width: 100%; background: var(--gold); color: #000; border: none;
  font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 2px;
  padding: 18px; border-radius: var(--radius-sm); margin-top: 16px;
  transition: background .2s;
}
.pay-btn:hover { background: var(--gold2); }

/* ── TOAST ────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--green); color: #000; padding: 12px 24px; border-radius: 30px;
  font-weight: 700; font-size: 13px; z-index: 500; transition: transform .3s;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 48px 20px; min-height: auto; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-title { font-size: 72px; }
  .cat-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .whyus-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .legal-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .card-stack { width: 260px; height: 320px; }
  .card-float { width: 130px; }
}
@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-trust { gap: 16px; }
}
