/* ============================================================
   TOPPIK.MA — Style System
   Author: Antigravity
   Stack: Vanilla CSS, mobile-first, Google Fonts (Inter)
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&display=swap');

/* ── CSS Custom Properties (Design Tokens) ────────────────── */
:root {
  --white:      #FFFFFF;
  --charcoal:   #1A1A1A;
  --muted:      #6B6B6B;
  --accent:     #E8503A;
  --accent-dark:#C73F2B;
  --border:     #E5E5E5;
  --bar-bg:     #000000;
  --light-bg:   #F7F7F7;
  --star:       #F5A623;

  --font:       'Inter', system-ui, -apple-system, sans-serif;
  --radius:     6px;
  --radius-lg:  12px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,.12);
  --transition: .2s ease;

  --nav-h:      64px;
  --bar-h:      40px;
  --total-top:  calc(var(--nav-h) + var(--bar-h));
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── Typography Helpers ───────────────────────────────────── */
.label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--charcoal);
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin: .75rem auto 0;
  line-height: 1.65;
}

/* ── Layout Utility ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

/* ═══════════════════════════════════════════════════════════
   1. ANNOUNCEMENT BAR
═══════════════════════════════════════════════════════════ */
#announcement-bar {
  background: var(--bar-bg);
  color: var(--white);
  height: var(--bar-h);
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 200;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 0 60px;
}

.marquee-item span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.marquee-item .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   2. HEADER / NAVIGATION
═══════════════════════════════════════════════════════════ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

#site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.site-logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--charcoal);
  flex-shrink: 0;
}

.site-logo span {
  color: var(--accent);
}

/* Main Nav */
.main-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  gap: 2px;
}

.main-nav a {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}

.main-nav a:hover { color: var(--accent); }
.main-nav a:hover::after { transform: scaleX(1); }

/* Header Icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.icon-btn {
  position: relative;
  width: 42px; height: 42px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: background var(--transition), color var(--transition);
}

.icon-btn:hover { background: var(--light-bg); color: var(--accent); }

.icon-btn svg {
  width: 20px; height: 20px;
  stroke-width: 1.75;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-badge {
  position: absolute;
  top: 5px; right: 5px;
  width: 16px; height: 16px;
  background: var(--accent);
  color: var(--white);
  font-size: .6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mobile hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.hamburger:hover { background: var(--light-bg); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Drawer */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 300;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 40px;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.mobile-nav-list { flex: 1; }

.mobile-nav-list li { border-bottom: 1px solid var(--border); }

.mobile-nav-list a {
  display: block;
  padding: 18px 4px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color var(--transition), padding-left var(--transition);
}

.mobile-nav-list a:hover { color: var(--accent); padding-left: 8px; }

/* ═══════════════════════════════════════════════════════════
   3. HERO SECTION
═══════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #F2EDE8;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Dark gradient overlay for text readability */
.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,8,6,.72) 0%,
    rgba(10,8,6,.4) 55%,
    rgba(10,8,6,.05) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 80px 0;
}

.hero-eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 420px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(232,80,58,.35);
}

.btn-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,80,58,.45);
}

.btn-cta svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--transition);
}

.btn-cta:hover svg { transform: translateX(3px); }

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-stars {
  display: flex;
  gap: 2px;
}

.hero-stars svg {
  width: 14px; height: 14px;
  fill: var(--star);
  stroke: none;
}

.hero-rating-text {
  font-size: .8rem;
  color: rgba(255,255,255,.75);
}

.hero-rating-text strong {
  color: var(--white);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   4. PRODUCT / BUY BOX
═══════════════════════════════════════════════════════════ */
#product {
  padding: 80px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

/* Image side */
.product-images {
  position: relative;
}

.product-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--light-bg);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-main-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: opacity .3s ease, transform .3s ease;
}

.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--accent);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

.product-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.product-thumb {
  width: 64px; height: 64px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition);
  background: var(--light-bg);
  padding: 4px;
}

.product-thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-thumb.active, .product-thumb:hover { border-color: var(--accent); }

/* Details side */
.product-details { }

.product-label-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.product-name {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.product-tagline {
  font-size: .95rem;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Star Rating */
.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.stars {
  display: flex;
  gap: 2px;
}

.stars svg {
  width: 15px; height: 15px;
  fill: var(--star);
  stroke: none;
}

.stars svg.half { fill: url(#half-star); }

.rating-count {
  font-size: .82rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color var(--transition);
}

.rating-count:hover { color: var(--charcoal); }

/* Price */
.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}

.price-current {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--charcoal);
  letter-spacing: -.02em;
}

.price-old {
  font-size: 1.1rem;
  color: var(--muted);
  text-decoration: line-through;
}

.price-save {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  padding: 3px 10px;
  border-radius: 50px;
}

/* Selectors */
.selector-group {
  margin-bottom: 24px;
}

.selector-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.selector-label .selected-val {
  font-weight: 400;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}

/* Shade swatches */
.shade-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.swatch {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  outline: 2px solid var(--border);
  outline-offset: 2px;
}

.swatch:hover { transform: scale(1.15); box-shadow: 0 3px 10px rgba(0,0,0,.2); }
.swatch.active { outline-color: var(--accent); border-color: var(--white); }

/* Size pills */
.size-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.size-pill {
  padding: 9px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
  text-align: center;
  min-width: 80px;
}

.size-pill:hover { border-color: var(--charcoal); }
.size-pill.active { border-color: var(--charcoal); background: var(--charcoal); color: var(--white); }

.size-pill .pill-sub {
  display: block;
  font-size: .65rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 2px;
}

.size-pill.active .pill-sub { color: rgba(255,255,255,.6); }

/* Quantity */
.qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.qty-stepper {
  display: flex;
  align-items: center;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-btn {
  width: 42px; height: 44px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover { background: var(--light-bg); }

.qty-num {
  width: 48px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-left: 2px solid var(--border);
  border-right: 2px solid var(--border);
  height: 44px;
  background: none;
  font-family: inherit;
  -moz-appearance: textfield;
}

.qty-num::-webkit-outer-spin-button,
.qty-num::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Add to Cart Button */
.btn-add-cart {
  width: 100%;
  background: var(--charcoal);
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 17px 32px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(26,26,26,.2);
}

.btn-add-cart:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(232,80,58,.3);
}

.btn-add-cart svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none;
  stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  color: var(--muted);
  font-weight: 500;
}

.trust-item svg {
  width: 15px; height: 15px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   5. HOW IT WORKS
═══════════════════════════════════════════════════════════ */
#how-it-works {
  background: var(--light-bg);
}

.how-header {
  text-align: center;
  margin-bottom: 56px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .3s ease;
}

.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.step-card:hover::before { transform: scaleX(1); }

.step-number {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.step-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(232,80,58,.1), rgba(232,80,58,.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-icon svg {
  width: 28px; height: 28px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.step-desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   6. BEFORE & AFTER
═══════════════════════════════════════════════════════════ */
#before-after {
  text-align: center;
}

.ba-header {
  margin-bottom: 48px;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* ─── Before / After Slider — clip-path approach ─── */
.ba-slider-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 1 / 1;
  user-select: none;
  cursor: ew-resize;
  touch-action: pan-y;
}

/* Both images stack full-size */
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
  max-width: none; /* override global reset */
}

/* After image: clip-path reveals right portion.
   JS updates via style.clipPath = `inset(0 0 0 ${pos}%)`
   At pos=50%: shows right 50% = the "after" side */
.ba-img-after {
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0s; /* instant, dragging handles timing */
}

/* Vertical divider line */
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--white);
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 0 6px rgba(0,0,0,.3);
}

/* Single circle button in the middle of the handle */
.ba-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 14px rgba(0,0,0,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 1rem;
  letter-spacing: -2px;
  font-weight: 700;
}

.ba-labels {
  position: absolute;
  top: 14px; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 14px;
  pointer-events: none;
  z-index: 5;
}

.ba-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(0,0,0,.55);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

/* ═══════════════════════════════════════════════════════════
   7. REVIEWS
═══════════════════════════════════════════════════════════ */
#reviews {
  background: var(--light-bg);
  text-align: center;
}

.reviews-header { margin-bottom: 48px; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 64px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-stars svg { width: 14px; height: 14px; fill: var(--star); stroke: none; }

.review-quote {
  font-size: .95rem;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 20px;
  font-style: italic;
}

.review-quote::before { content: '"'; }
.review-quote::after  { content: '"'; }

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-meta .name {
  font-size: .9rem;
  font-weight: 700;
}

.review-meta .verified {
  font-size: .7rem;
  color: #22A05B;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

/* Press logos "As Seen In" */
.press-section { }

.press-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  text-align: center;
}

.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.press-logo {
  font-size: .9rem;
  font-weight: 700;
  font-style: italic;
  color: #BEBEBE;
  letter-spacing: -.02em;
  transition: color var(--transition);
  white-space: nowrap;
}

.press-logo:hover { color: var(--muted); }

/* ═══════════════════════════════════════════════════════════
   8. FAQ ACCORDION
═══════════════════════════════════════════════════════════ */
#faq {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 20px;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item.open { box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--charcoal);
  background: var(--white);
  transition: background var(--transition), color var(--transition);
}

.faq-question:hover { background: var(--light-bg); }
.faq-item.open .faq-question { color: var(--accent); }

.faq-chevron {
  width: 20px; height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform .3s ease;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 400px; }

/* ═══════════════════════════════════════════════════════════
   9. EMAIL SIGNUP BAND
═══════════════════════════════════════════════════════════ */
#email-signup {
  background: var(--light-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 72px 20px;
}

.signup-icon {
  width: 52px; height: 52px;
  background: rgba(232,80,58,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.signup-icon svg {
  width: 24px; height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.signup-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: 10px;
}

.signup-sub {
  font-size: .92rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}

.signup-input {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.signup-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,80,58,.12);
}

.btn-signup {
  padding: 14px 32px;
  background: var(--accent);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-signup:hover { background: var(--accent-dark); transform: translateY(-1px); }

.signup-disclaimer {
  font-size: .72rem;
  color: var(--muted);
  margin-top: 12px;
}

/* ═══════════════════════════════════════════════════════════
   10. FOOTER
═══════════════════════════════════════════════════════════ */
#site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.75);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .site-logo {
  color: var(--white);
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.65;
  max-width: 260px;
}

.footer-contact {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact a {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.footer-contact a:hover { color: var(--accent); }
.footer-contact a svg {
  width: 15px; height: 15px;
  stroke: currentColor; fill: none;
  stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

.footer-col h4 {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col li a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}

.footer-col li a:hover { color: var(--accent); }

/* Social Icons */
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.social-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.social-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-bottom p {
  font-size: .75rem;
  color: rgba(255,255,255,.4);
}

.payment-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.payment-icon {
  height: 24px;
  padding: 3px 10px;
  background: rgba(255,255,255,.1);
  border-radius: 4px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════
   CART DRAWER
═══════════════════════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  backdrop-filter: blur(2px);
}

.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--white);
  z-index: 500;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
}

.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.cart-header h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.01em;
}

.cart-close {
  width: 36px; height: 36px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal);
  transition: background var(--transition);
}

.cart-close:hover { background: var(--light-bg); }
.cart-close svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}

.cart-empty svg {
  width: 52px; height: 52px;
  stroke: var(--border);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin: 0 auto 16px;
}

.cart-empty p { font-size: .9rem; }

.cart-item {
  display: flex;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-img {
  width: 72px; height: 72px;
  border-radius: var(--radius);
  background: var(--light-bg);
  object-fit: contain;
  padding: 4px;
  flex-shrink: 0;
}

.cart-item-info { flex: 1; }
.cart-item-name { font-size: .9rem; font-weight: 600; margin-bottom: 4px; }
.cart-item-variant { font-size: .78rem; color: var(--muted); margin-bottom: 10px; }

.cart-item-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.cart-qty-btn {
  width: 28px; height: 28px;
  font-size: 1rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}

.cart-qty-btn:hover { background: var(--light-bg); }
.cart-qty-val { width: 32px; text-align: center; font-size: .85rem; font-weight: 600; border-left: 1px solid var(--border); border-right: 1px solid var(--border); }

.cart-item-price { font-size: .95rem; font-weight: 700; }

.cart-remove {
  font-size: .72rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.cart-remove:hover { color: var(--accent); }

.cart-footer {
  border-top: 1px solid var(--border);
  padding: 24px;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.cart-subtotal .label { color: var(--muted); font-size: .8rem; }
.cart-subtotal .amount { font-size: 1.2rem; font-weight: 900; letter-spacing: -.02em; }

.btn-checkout {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 16px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--transition), transform var(--transition);
  margin-bottom: 10px;
}

.btn-checkout:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-checkout svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.cart-policy {
  text-align: center;
  font-size: .72rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════
   MOBILE STICKY ADD-TO-CART BAR
═══════════════════════════════════════════════════════════ */
#mobile-sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 150;
  box-shadow: 0 -4px 24px rgba(0,0,0,.1);
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}

#mobile-sticky-bar.visible { transform: translateY(0); }

.sticky-bar-info { flex: 1; }
.sticky-bar-info .name { font-size: .82rem; font-weight: 700; line-height: 1.2; }
.sticky-bar-info .price { font-size: .78rem; color: var(--accent); font-weight: 700; }

.sticky-bar-btn {
  background: var(--accent);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background var(--transition);
}

.sticky-bar-btn:hover { background: var(--accent-dark); }

/* ═══════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
═══════════════════════════════════════════════════════════ */
#whatsapp-btn {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 140;
  width: 56px; height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s ease, box-shadow .2s ease;
}

#whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
}

#whatsapp-btn svg {
  width: 28px; height: 28px;
  fill: var(--white);
}

/* On mobile, push whatsapp up above sticky bar */
@media (max-width: 767px) {
  #whatsapp-btn { bottom: 84px; }
}

/* ═══════════════════════════════════════════════════════════
   TABLET — 768px+
═══════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  :root { --nav-h: 68px; }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ba-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .signup-form {
    flex-direction: row;
  }

  .signup-input { flex: 1; }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  #mobile-sticky-bar { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   DESKTOP — 1024px+
═══════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .main-nav { display: block; }
  .hamburger { display: none; }

  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
  }

  /* Sticky product image on desktop */
  .product-images-sticky {
    position: sticky;
    top: calc(var(--nav-h) + 24px);
  }
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS & UTILITIES
═══════════════════════════════════════════════════════════ */

/* Fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* Divider */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0 auto;
}

/* Scroll to top link hidden until needed */

/* ══════════════════════════════════════════════════════
   PRODUCT CATALOG GRID
══════════════════════════════════════════════════════ */

#product {
  padding: 80px 0 60px;
  background: var(--bg);
}

.catalog-header {
  text-align: center;
  margin-bottom: 52px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

/* ── Product Card ── */
.pcard {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}

.pcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.35);
}

/* Featured card highlight */
.pcard-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent), 0 12px 40px rgba(229,80,58,.18);
}

/* Top badge */
.pcard-badge-top {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 2;
}

/* Image wrapper */
.pcard-img-wrap {
  background: #f5f5f7;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pcard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.pcard:hover .pcard-img {
  transform: scale(1.04);
}

/* Placeholder */
.pcard-img-placeholder {
  background: #1a1a2e;
}

.pcard-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px;
  color: var(--muted);
  text-align: center;
}

.pcard-placeholder-inner svg {
  width: 44px;
  height: 44px;
  opacity: .4;
}

.pcard-placeholder-inner p {
  font-size: .78rem;
  opacity: .6;
}

/* Body */
.pcard-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.pcard-category {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin: 0;
}

.pcard-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
}

.pcard-desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* Includes list */
.pcard-includes {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pcard-includes li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--muted);
}

.pcard-includes li svg {
  width: 13px;
  height: 13px;
  stroke: #4ade80;
  flex-shrink: 0;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Footer: price + button */
.pcard-footer {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border);
}

.pcard-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pcard-price span {
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
}

.pcard-old-price {
  font-size: .75rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: line-through;
  margin-left: 4px;
}

/* Add button */
.pcard-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: var(--surface);
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.pcard-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.pcard-btn:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.04);
}

.pcard-btn-featured {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.pcard-btn-featured:hover {
  background: #c73f2b;
  border-color: #c73f2b;
}

/* Trust bar below grid */
.catalog-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  padding: 22px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.catalog-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
}

.catalog-trust .trust-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-trust {
    gap: 18px;
    padding: 18px 20px;
  }
}

/* ══════════════════════════════════════════════════════
   ORDER CONFIRMATION MODAL
══════════════════════════════════════════════════════ */

/* Overlay */
.order-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  z-index: 1200;
  animation: omFadeIn .25s ease;
}

.order-modal-overlay.open { display: block; }

@keyframes omFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Modal box */
.order-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  width: min(520px, calc(100vw - 32px));
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  z-index: 1300;
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
  animation: omSlideIn .3s cubic-bezier(.34,1.56,.64,1);
}

.order-modal.open {
  display: block;
}

@keyframes omSlideIn {
  from { opacity: 0; transform: translate(-50%, -44%); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}

.order-modal-inner {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #fff;
}

/* Header */
.order-modal-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.order-modal-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.order-modal-icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.order-modal-header > div:nth-child(2) {
  flex: 1;
}

.order-modal-header h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 2px;
}

.order-modal-header p {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  margin: 0;
}

.order-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background .15s, color .15s;
  flex-shrink: 0;
}

.order-modal-close:hover {
  background: var(--border);
  color: var(--text);
}

.order-modal-close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

/* Order summary strip */
.order-modal-summary {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: .82rem;
  color: #fff;
}

.order-summary-item .name {
  flex: 1;
  color: #fff;
}

.order-summary-item .qty {
  font-size: .72rem;
  background: rgba(255,255,255,.15);
  color: #fff;
  padding: 2px 7px;
  border-radius: 99px;
}

.order-summary-item .price {
  font-weight: 700;
  color: #fff;
}

.order-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.2);
  font-size: .9rem;
  font-weight: 800;
  color: #fff;
}

/* Form */
.order-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.order-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.order-field label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
}

.order-field .required {
  color: var(--accent);
}

.order-field input {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: #fff;
  font-size: .9rem;
  font-family: var(--font);
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
}

.order-field input::placeholder {
  color: rgba(255,255,255,.4);
}

.order-field input:focus {
  border-color: var(--accent);
}

.order-field input.invalid {
  border-color: #e53e3e;
}

.order-field-error {
  font-size: .74rem;
  color: #e53e3e;
  display: none;
}

.order-field-error.visible {
  display: block;
}

.order-field-hint {
  font-size: .74rem;
  color: #4ade80;
  min-height: 16px;
}

/* Address row with GPS button */
.address-input-wrap {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.address-input-wrap input {
  flex: 1;
}

.gps-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 14px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, border-color .2s, color .2s;
  flex-shrink: 0;
}

.gps-btn svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.gps-btn:hover {
  background: rgba(37,211,102,.15);
  border-color: #25d366;
  color: #25d366;
}

.gps-btn.loading {
  pointer-events: none;
  opacity: .6;
}

/* Submit button */
.order-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: .95rem;
  font-weight: 800;
  font-family: var(--font);
  cursor: pointer;
  transition: background .2s, transform .15s;
  letter-spacing: .02em;
}

.order-submit-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  flex-shrink: 0;
}

.order-submit-btn:hover {
  background: #1da851;
  transform: translateY(-1px);
}

.order-submit-btn:active {
  transform: scale(.98);
}

/* Cart checkout button — WhatsApp green tint */
.btn-checkout {
  background: #25d366 !important;
}

.btn-checkout:hover {
  background: #1da851 !important;
}

.btn-checkout svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .order-modal-inner {
    padding: 20px 18px 24px;
  }
}
