/* ============================================
   B.A.C 31 - Brigade Anti-Creux
   Feuille de styles
   ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bac-black: #050505;
  --bac-dark: #0A0A12;
  --bac-surface: #0F0F18;
  --bac-blue: #0044FF;
  --bac-blue-light: #3388FF;
  --bac-blue-night: #0a0e2a;
  --bac-white: #F5F5F5;
  --bac-gray: #999999;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bac-black);
  color: var(--bac-white);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

::selection { background: rgba(0,68,255,.4); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bac-black); }
::-webkit-scrollbar-thumb { background: var(--bac-blue); border-radius: 3px; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.bebas { font-family: 'Bebas Neue', 'Inter', sans-serif; letter-spacing: 0.02em; }

/* ==== Neon shared ==== */
.neon-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bac-blue), transparent);
  box-shadow: 0 0 8px rgba(0,68,255,.4);
}

.neon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bac-blue);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 14px;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s;
  box-shadow: 0 0 20px rgba(0,68,255,.45);
}
.neon-btn:hover { background: var(--bac-blue-light); box-shadow: 0 0 30px rgba(0,68,255,.7); transform: translateY(-1px); }
.neon-btn:active { transform: translateY(0); }
.neon-btn.full { width: 100%; }

.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--bac-blue);
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 14px;
  text-transform: uppercase;
  transition: background .2s, box-shadow .2s;
}
.outline-btn:hover { background: rgba(0,68,255,.1); box-shadow: 0 0 12px rgba(0,68,255,.3); }

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(0,68,255,.15);
  color: var(--bac-blue-light);
  border: 1px solid rgba(0,68,255,.3);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ==== NAVIGATION ==== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  background: rgba(5,5,5,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo { display: flex; align-items: baseline; gap: 6px; }
.logo .logo-main { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 0.05em; }
.logo .logo-sub { font-size: 11px; color: var(--bac-gray); letter-spacing: 0.1em; }

.nav-links { display: none; gap: 28px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--bac-blue-light); }
.nav-cta-desktop { display: none; }
@media (min-width: 1024px) { .nav-links { display: flex; } .nav-cta-desktop { display: inline-flex; } .nav .neon-btn.mobile-cta { padding: 12px 22px; font-size: 13px; } }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.cart-btn {
  position: relative;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.cart-btn:hover { background: rgba(0,68,255,.2); border-color: var(--bac-blue); }
.cart-btn svg { width: 20px; height: 20px; }
.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--bac-blue);
  color: #fff;
  font-size: 11px;
  min-width: 20px; height: 20px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 5px;
  font-weight: 700;
  box-shadow: 0 0 10px rgba(0,68,255,.7);
}
.cart-badge.hidden { display: none; }

.burger-btn {
  width: 40px; height: 40px;
  display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
.burger-btn span { width: 22px; height: 2px; background: #fff; transition: transform .3s, opacity .3s; }
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .burger-btn { display: none; } }

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  background: rgba(5,5,5,.97);
  backdrop-filter: blur(12px);
}
.mobile-menu.open { max-height: 320px; }
.mobile-menu-inner { padding: 8px 20px 18px; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a { padding: 12px 4px; font-size: 15px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.05); }

/* ==== HERO ==== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,.3) 0%, rgba(5,5,5,.5) 50%, var(--bac-black) 100%);
}
.hero-status {
  position: absolute;
  top: 80px;
  right: 16px;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 16px 80px;
  text-align: center;
  width: 100%;
  max-width: 900px;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 18vw, 200px);
  line-height: .85;
  letter-spacing: -0.01em;
  text-shadow: 0 0 40px rgba(0,68,255,.3), 0 0 80px rgba(0,68,255,.15);
}
.hero-subtitle {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(20px, 5vw, 48px);
  letter-spacing: 0.15em;
  margin-top: 8px;
}
.hero-tagline {
  margin-top: 16px;
  font-size: 13px;
  color: var(--bac-gray);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero-cta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
@media (min-width: 600px) { .hero-cta { flex-direction: row; justify-content: center; } }

/* ==== SECTION HEADERS ==== */
.section { position: relative; padding: 56px 0; }
.section-dark { background: var(--bac-black); }
.section-surface { background: var(--bac-surface); }
.section-night { background: var(--bac-blue-night); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

.section-header { text-align: center; margin-bottom: 28px; }
.section-header .icon { font-size: 28px; margin-bottom: 6px; display: block; }
.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 7vw, 56px);
  letter-spacing: 0.04em;
}
.section-header .sub {
  margin-top: 6px;
  color: var(--bac-blue-light);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ==== PRODUCT CARDS (Burgers & Crousty) ==== */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) { .product-grid { grid-template-columns: 1fr 1fr; gap: 18px; } }

.product-card {
  display: flex;
  gap: 14px;
  padding: 12px;
  background: var(--bac-dark);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  align-items: center;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.product-card:hover {
  border-color: rgba(0,68,255,.4);
  box-shadow: 0 0 20px rgba(0,68,255,.12);
  transform: translateY(-2px);
}
.product-card .img-wrap {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}
@media (min-width: 600px) { .product-card .img-wrap { width: 130px; height: 130px; } }
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.product-card:hover img { transform: scale(1.06); }

.product-card .body { flex: 1; min-width: 0; }
.product-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.product-card p {
  font-size: 12px;
  color: var(--bac-gray);
  line-height: 1.45;
  margin-bottom: 10px;
}
.product-card .price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.product-card .price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--bac-blue-light);
}
.add-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  background: var(--bac-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 6px;
  text-transform: uppercase;
  transition: background .2s, transform .2s;
}
.add-btn:hover { background: var(--bac-blue-light); }
.add-btn:active { transform: scale(.96); }
.add-btn svg { width: 14px; height: 14px; }

/* ==== Simple list rows (sides / drinks / options) ==== */
.list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 720px) { .list-grid { grid-template-columns: 1fr 1fr; column-gap: 28px; } }
.list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 6px;
  border-bottom: 1px dashed rgba(255,255,255,.08);
}
.list-row .name {
  font-size: 14px;
  font-weight: 500;
}
.list-row .desc {
  display: block;
  font-size: 11px;
  color: var(--bac-gray);
  margin-top: 2px;
}
.list-row .right { display: flex; align-items: center; gap: 10px; }
.list-row .price-sm {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--bac-blue-light);
}
.add-btn-sm {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bac-blue);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  transition: background .2s, transform .15s;
}
.add-btn-sm:hover { background: var(--bac-blue-light); }
.add-btn-sm:active { transform: scale(.9); }

/* ==== Menus combo ==== */
.menus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .menus-grid { grid-template-columns: 1fr 1fr 1fr; } }

.menu-card {
  background: var(--bac-dark);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.menu-card:hover { border-color: rgba(0,68,255,.4); box-shadow: 0 0 24px rgba(0,68,255,.15); transform: translateY(-3px); }
.menu-card .img { aspect-ratio: 4/3; overflow: hidden; }
.menu-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.menu-card:hover .img img { transform: scale(1.05); }
.menu-card .info { padding: 18px; }
.menu-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.04em; }
.menu-card .menu-desc { font-size: 13px; color: var(--bac-gray); margin: 6px 0 14px; }
.menu-card .menu-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.menu-card .menu-price { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--bac-blue-light); }

/* ==== Zone (map / sectors) ==== */
.zone-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) { .zone-grid { grid-template-columns: 1fr 1fr; } }

.zone-map {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0,68,255,.2);
}
.zone-map img { width: 100%; height: 100%; object-fit: cover; }
.radar {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bac-blue);
  box-shadow: 0 0 0 0 rgba(0,68,255,.6);
  animation: radar 1.8s infinite;
}
@keyframes radar {
  0% { box-shadow: 0 0 0 0 rgba(0,68,255,.6); }
  70% { box-shadow: 0 0 0 28px rgba(0,68,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,68,255,0); }
}
.sectors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sector-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  background: rgba(255,255,255,.04);
  border-radius: 6px;
  font-size: 13px;
  transition: background .2s;
}
.sector-pill:hover { background: rgba(0,68,255,.12); }
.sector-pill::before { content: '📍'; font-size: 12px; }

.zone-bottom { text-align: center; margin-top: 28px; color: var(--bac-blue-light); font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 0.06em; }

/* ==== Testimonials marquee ==== */
.marquee { overflow: hidden; padding: 24px 0; }
.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  width: max-content;
  animation: scroll 40s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.testimonial { display: inline-flex; align-items: center; gap: 12px; font-size: 15px; }
.testimonial .author { color: var(--bac-gray); font-weight: 500; font-size: 13px; }
.testimonial::after { content: '///'; color: var(--bac-blue); margin-left: 16px; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==== Footer ==== */
footer { background: var(--bac-black); padding: 56px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.footer-col h4 { font-family: 'Bebas Neue', sans-serif; font-size: 18px; margin-bottom: 14px; letter-spacing: 0.04em; }
.footer-col p, .footer-col a { font-size: 14px; color: var(--bac-gray); line-height: 1.7; transition: color .2s; }
.footer-col a:hover { color: var(--bac-blue-light); }
.brand-tags { margin-top: 10px; color: var(--bac-gray); font-size: 12px; line-height: 1.7; }
.social { display: flex; gap: 14px; margin-top: 4px; }
.social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s;
}
.social a:hover { border-color: var(--bac-blue); background: rgba(0,68,255,.15); color: var(--bac-blue-light); }
.social svg { width: 18px; height: 18px; }

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column; gap: 8px;
  align-items: center; justify-content: space-between;
  text-align: center;
}
@media (min-width: 720px) { .footer-bottom { flex-direction: row; text-align: left; } }
.footer-bottom small { color: var(--bac-gray); font-size: 12px; }
.footer-bottom .slogan { font-family: 'Bebas Neue', sans-serif; color: var(--bac-blue-light); letter-spacing: 0.08em; }

/* ==== Floating WhatsApp ==== */
.fab-wa {
  position: fixed;
  bottom: 80px;
  right: 16px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 80;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform .2s;
}
.fab-wa:hover { transform: scale(1.08); }
.fab-wa svg { width: 28px; height: 28px; fill: #fff; }

/* ==== Mobile command bar ==== */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(5,5,5,.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0,68,255,.3);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 85;
  box-shadow: 0 -4px 20px rgba(0,0,0,.4);
}
@media (min-width: 1024px) { .mobile-bar { display: none; } }
.mobile-bar .total-info { flex: 1; }
.mobile-bar .total-info .lbl { font-size: 10px; color: var(--bac-gray); letter-spacing: 0.08em; text-transform: uppercase; }
.mobile-bar .total-info .amount { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--bac-blue-light); }
.mobile-bar .neon-btn { padding: 12px 18px; font-size: 13px; }

/* ==== CART DRAWER ==== */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(5,5,5,.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: 100%;
  max-width: 460px;
  background: var(--bac-surface);
  border-left: 1px solid rgba(0,68,255,.2);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
}
.drawer.open { transform: translateX(0); }

.drawer-head {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.drawer-head h3 { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 0.04em; }
.drawer-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, transform .25s;
}
.drawer-close:hover { background: rgba(0,68,255,.2); transform: rotate(90deg); }
.drawer-close svg { width: 18px; height: 18px; }

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}
.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--bac-gray);
}
.cart-empty .ico { font-size: 48px; margin-bottom: 12px; }
.cart-empty p { font-size: 14px; line-height: 1.6; }

.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255,255,255,.08);
}
.cart-item .ci-info { flex: 1; min-width: 0; }
.cart-item .ci-name { font-size: 14px; font-weight: 600; }
.cart-item .ci-price { font-size: 12px; color: var(--bac-gray); margin-top: 2px; }
.cart-item .ci-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.qty-btn {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--bac-dark);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  transition: background .15s;
}
.qty-btn:hover { background: var(--bac-blue); }
.qty-val { min-width: 22px; text-align: center; font-weight: 600; font-size: 14px; }
.ci-subtotal {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--bac-blue-light);
  align-self: flex-start;
}
.ci-remove {
  margin-left: 4px;
  color: var(--bac-gray);
  font-size: 12px;
  text-decoration: underline;
  transition: color .15s;
}
.ci-remove:hover { color: #ff5555; }

.drawer-form { margin-top: 24px; }
.drawer-form h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  color: #fff;
}
.field { margin-bottom: 12px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bac-gray);
  margin-bottom: 5px;
  font-weight: 500;
}
.field input, .field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bac-dark);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  color: #fff;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus {
  border-color: var(--bac-blue);
  box-shadow: 0 0 0 3px rgba(0,68,255,.15);
}
.field textarea { resize: vertical; min-height: 70px; }
.field .err { display: none; margin-top: 4px; color: #ff6b6b; font-size: 11px; }
.field.invalid .err { display: block; }
.field.invalid input, .field.invalid textarea { border-color: #ff6b6b; }

.drawer-foot {
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: var(--bac-surface);
}
.total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.total-row .label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--bac-gray);
  letter-spacing: 0.06em;
}
.total-row .amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: var(--bac-blue-light);
}
.wa-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 15px;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
  transition: background .2s, transform .15s;
  box-shadow: 0 0 18px rgba(37,211,102,.35);
}
.wa-btn:hover { background: #1da851; }
.wa-btn:active { transform: scale(.98); }
.wa-btn svg { width: 20px; height: 20px; fill: #fff; }
.wa-btn[disabled] { opacity: .5; cursor: not-allowed; box-shadow: none; }

.payment-options { display: flex; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.payment-options label {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  background: var(--bac-dark);
  font-size: 12px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.payment-options input { accent-color: var(--bac-blue); }
.payment-options label:has(input:checked) {
  border-color: var(--bac-blue);
  background: rgba(0,68,255,.12);
}

/* Tiny toast */
.toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bac-blue);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  box-shadow: 0 0 20px rgba(0,68,255,.5);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Padding bottom on body to clear the mobile bar */
@media (max-width: 1023px) {
  body { padding-bottom: 70px; }
  .fab-wa { bottom: 84px; }
}

/* Anim fade in on load (hero) */
.fade-up { opacity: 0; transform: translateY(20px); animation: fadeUp .8s ease forwards; }
.fade-up.d1 { animation-delay: .15s; }
.fade-up.d2 { animation-delay: .3s; }
.fade-up.d3 { animation-delay: .45s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
