/* ============================================================
   Best Overseas Products : Kit Sneaker Care
   $0 stack: Google Fonts (Inter, Tajawal) + Font Awesome Free
   Mobile-first, RTL-ready.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --ink: #0f1115;
  --ink-soft: #1b1f27;
  --kick-blue: #2A6E9C;
  --kick-blue-dark: #1f5478;
  --sneaker-white: #F5F6F8;
  --earth-brown: #8B5E3C;
  --wa: #25D366;
  --wa-dark: #1da851;

  --success-green: #2e7d32;
  --warning-amber: #FFC107;
  --error-red: #d93025;

  --text-dark: #1f2933;
  --text-muted: #5b6672;
  --border-light: #e2e6ea;

  --space-1: 8px;  --space-2: 16px; --space-3: 24px;
  --space-4: 32px; --space-5: 40px; --space-6: 48px; --space-8: 64px;

  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1140px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-ar: 'Tajawal', 'Inter', sans-serif;

  --shadow: 0 4px 20px rgba(15, 17, 21, 0.07);
  --shadow-lg: 0 14px 44px rgba(15, 17, 21, 0.13);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 76px; }
body {
  font-family: var(--font-sans);
  font-size: 16px; line-height: 1.65;
  color: var(--text-dark); background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--kick-blue); outline-offset: 2px; border-radius: 4px; }

/* CRITICAL: the language switcher toggles the [hidden] attribute. Several classes
   below set an explicit `display`, which would otherwise beat the browser's
   default `[hidden]{display:none}` and leak all three languages at once.
   This rule must win: keep it here and keep !important. */
[hidden] { display: none !important; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--space-3); }
.section { padding: var(--space-8) 0; }
.bg-soft { background: var(--sneaker-white); }

/* ---------- Before / After gallery ---------- */
.before-after-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.before-after-card { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius); padding: var(--space-3); box-shadow: var(--shadow); }
.before-after-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.before-after-pair figure { margin: 0; }
.before-after-pair img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 8px; display: block; }
.before-after-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; text-align: center; padding: 4px; border-radius: 6px 6px 0 0; }
.label-avant { background: #FADBD8; color: #E74C3C; }
.label-apres { background: #D5F5E3; color: #27AE60; }
.before-after-client { font-size: 0.85rem; color: var(--text-muted); text-align: center; margin-top: 10px; }
@media (max-width: 600px) {
  .before-after-grid { grid-template-columns: 1fr; }
}
.text-center { text-align: center; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.22; color: var(--ink); font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 2.75rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.55rem, 3.6vw, 2.05rem); margin-bottom: var(--space-3); letter-spacing: -0.01em; }
h3 { font-size: 1.2rem; }
h4 { font-size: 1.02rem; }
.lead { font-size: 1.08rem; color: var(--text-muted); }
h2 + .lead.text-center { max-width: 62ch; margin: calc(var(--space-2) * -1) auto var(--space-4); }
.eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--kick-blue); margin-bottom: var(--space-2);
}
[dir="rtl"] .eyebrow { letter-spacing: normal; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 var(--space-4); border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.98rem; transition: all .18s ease;
  text-align: center; line-height: 1.2;
}
.btn i { font-size: 1.05em; }
.btn-primary { background: var(--kick-blue); color: #fff; }
.btn-primary:hover { background: var(--kick-blue-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--kick-blue); border: 2px solid var(--kick-blue); }
.btn-outline:hover { background: var(--kick-blue); color: #fff; }
.btn-whatsapp { background: var(--wa); color: #fff; }
.btn-whatsapp:hover { background: var(--wa-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-block { width: 100%; }
.btn-lg { min-height: 54px; padding: 0 var(--space-5); font-size: 1.03rem; }

/* ---------- Announcement ---------- */
.announce {
  background: var(--ink); color: #fff; font-size: 0.84rem;
  text-align: center; padding: 10px var(--space-2); line-height: 1.45;
}

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-light);
}
.header-inner { display: flex; align-items: center; gap: var(--space-3); height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand .logo-mark {
  width: 44px; height: 44px; border-radius: 10px; object-fit: cover;
  background: var(--ink); flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-size: 0.95rem; font-weight: 700; color: var(--ink); white-space: nowrap; }
.brand-text em { font-style: normal; font-size: 0.76rem; color: var(--text-muted); }
.nav { display: flex; align-items: center; gap: var(--space-3); margin-inline-start: auto; }
.nav a { font-size: 0.93rem; color: var(--text-muted); font-weight: 500; transition: color .18s; white-space: nowrap; }
.nav a:hover { color: var(--kick-blue); }
.nav .nav-cta {
  background: var(--kick-blue); color: #fff; padding: 9px 18px; border-radius: 999px; font-weight: 600;
}
.nav .nav-cta:hover { background: var(--kick-blue-dark); color: #fff; }
.lang-switch { display: flex; gap: 3px; background: var(--sneaker-white); border-radius: 999px; padding: 4px; flex-shrink: 0; }
.lang-switch button {
  padding: 7px 13px; border-radius: 999px; font-size: 0.8rem;
  font-weight: 600; color: var(--text-muted); transition: all .18s;
}
.lang-switch button.active { background: var(--kick-blue); color: #fff; }
.nav-toggle { display: none; font-size: 1.35rem; color: var(--ink); padding: 8px; }

/* ---------- Hero ---------- */
.hero { padding: var(--space-8) 0; background: linear-gradient(160deg, #eef3f7 0%, #f8fafb 60%, #fff 100%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--space-6); align-items: center; }
.hero-copy h1 { margin-bottom: var(--space-3); }
.hero-copy .lead { margin-bottom: var(--space-3); max-width: 34em; }
.hero-price {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px var(--space-2);
  margin-bottom: var(--space-3);
}
.hp-amount { font-size: 2.5rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em;
  unicode-bidi: isolate; direction: ltr; }
.hp-amount .cur { font-size: 1.1rem; font-weight: 700; color: var(--text-muted); }
.hp-meta { font-size: 0.95rem; color: var(--text-muted); font-weight: 500; }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.hero-media { position: relative; }
.hero-media img {
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  width: 100%; aspect-ratio: 1/1; object-fit: cover; background: var(--sneaker-white);
}

/* ---------- Benefits strip ---------- */
.benefits-strip { padding: var(--space-6) 0; }
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.benefit { text-align: center; }
.benefit-media {
  border-radius: var(--radius); overflow: hidden; margin-bottom: 14px;
  box-shadow: var(--shadow-lg); background: var(--sneaker-white);
}
.benefit-media img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  transition: transform 0.35s ease;
}
.benefit:hover .benefit-media img { transform: scale(1.04); }
.benefit i {
  font-size: 1.4rem; color: var(--kick-blue); margin-bottom: 12px; display: inline-grid;
  place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--sneaker-white);
}
.benefit h3 { font-size: 1.05rem; margin-bottom: 6px; }
.benefit p { font-size: 0.93rem; color: var(--text-muted); }

/* ---------- Demarcation (machine vs hand) ---------- */
.demarcation { padding-top: 0; }
.demarc-card {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch;
  border: 1px solid var(--border-light); border-radius: var(--radius); overflow: hidden; background: #fff;
}
.demarc-side { padding: var(--space-4); }
.demarc-them { background: var(--sneaker-white); }
.demarc-us { background: #f2f8fc; }
.demarc-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.07em; color: var(--text-muted); background: #fff;
  padding: 5px 11px; border-radius: 999px; border: 1px solid var(--border-light); margin-bottom: var(--space-2);
}
.demarc-tag-us { color: #fff; background: var(--kick-blue); border-color: var(--kick-blue); }
[dir="rtl"] .demarc-tag { letter-spacing: normal; }
.demarc-what { font-size: 1.3rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.demarc-us .demarc-what strong { color: var(--kick-blue); }
.demarc-detail { font-size: 0.94rem; color: var(--text-muted); }
.demarc-vs {
  display: grid; place-items: center; padding: 0 var(--space-2);
  font-weight: 800; font-size: 0.85rem; color: var(--text-muted);
  background: #fff; border-inline: 1px solid var(--border-light);
}

/* ---------- Steps ---------- */
.steps-flow {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: var(--space-3); align-items: center;
}
.step-card {
  position: relative; text-align: center; background: #fff;
  border: 1px solid var(--border-light); border-radius: var(--radius);
  padding: var(--space-4) var(--space-3) var(--space-4);
  box-shadow: var(--shadow-lg);
}
.step-icon {
  width: 64px; height: 64px; margin: 0 auto var(--space-2); border-radius: 18px;
  background: linear-gradient(135deg, var(--kick-blue), #2563eb);
  color: #fff; display: grid; place-items: center; font-size: 1.6rem;
}
.step-num {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 26px; border-radius: 50%; background: var(--ink, #111);
  color: #fff; font-size: 0.85rem; font-weight: 700; display: grid; place-items: center;
}
.step-arrow { color: var(--kick-blue); font-size: 1.5rem; opacity: 0.6; }
.step-card h4 { margin-bottom: 8px; margin-top: 2px; }
.step-card p { font-size: 0.93rem; color: var(--text-muted); }

@media (max-width: 900px) {
  .steps-flow { grid-template-columns: 1fr; gap: var(--space-4); }
  .step-arrow { transform: rotate(90deg); justify-self: center; }
}

/* ---------- Offer extras (Kit Pro add-ons) ---------- */
.offer-extras {
  display: grid; grid-template-columns: repeat(2, minmax(0, 420px));
  gap: var(--space-4); justify-content: center; margin-top: var(--space-6);
}
.extra-card {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  overflow: hidden; text-align: center; padding-bottom: var(--space-4);
}
.extra-card img {

  width: 100%; aspect-ratio: 1/1; object-fit: contain; display: block; margin-bottom: var(--space-3); background: #faf9f7;

}
.extra-card h4 { margin-bottom: 6px; }
.extra-card p { font-size: 0.93rem; color: var(--text-muted); padding: 0 var(--space-4); }

@media (max-width: 760px) {
  .offer-extras { grid-template-columns: 1fr; }
}

/* ---------- Kit grid ---------- */
.kit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
.kit-item {
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
}
.kit-media { aspect-ratio: 1/1; background: #faf9f7; }
.kit-media img { width: 100%; height: 100%; object-fit: contain; }
.kit-media-card { display: grid; place-items: center; padding: var(--space-3); }
.mini-card {
  background: var(--ink); color: #fff; border-radius: 10px; padding: 20px 18px;
  display: grid; gap: 3px; transform: rotate(-4deg); box-shadow: var(--shadow);
  font-weight: 800; letter-spacing: 0.02em; line-height: 1.25; text-align: left; font-size: 0.86rem;
}
.mini-card .mc-2 { color: #E8663A; }
.kit-body { padding: var(--space-3); position: relative; }
.kit-body .qty {
  position: absolute; top: -14px; inset-inline-end: var(--space-3);
  background: var(--kick-blue); color: #fff; font-weight: 700; font-size: 0.8rem;
  padding: 4px 10px; border-radius: 999px; unicode-bidi: isolate; direction: ltr;
}
.kit-body h3 { font-size: 1.02rem; margin-bottom: 8px; }
.kit-body p { font-size: 0.9rem; color: var(--text-muted); }

/* ---------- Offers ---------- */
.offers { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); max-width: 880px; margin: 0 auto; }
.offer {
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius);
  padding: var(--space-4); display: flex; flex-direction: column;
}
.offer.featured { border: 2px solid var(--kick-blue); box-shadow: var(--shadow); }
.offer-head { margin-bottom: var(--space-3); }
.offer-badge {
  display: inline-block; background: var(--kick-blue); color: #fff; font-size: 0.72rem;
  font-weight: 700; padding: 5px 12px; border-radius: 999px; margin-bottom: var(--space-2);
}
.offer-badge-soft { background: var(--sneaker-white); color: var(--text-muted); }
.offer-head h3 { font-size: 1.3rem; margin-bottom: 8px; }
.offer-price {
  font-size: 2.3rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em;
  unicode-bidi: isolate; direction: ltr;
}
[dir="rtl"] .offer-price { text-align: right; }
.offer-price .cur { font-size: 1rem; font-weight: 700; color: var(--text-muted); }
.price-anchor { text-decoration: line-through; color: var(--text-muted); font-size: 0.85em; margin-bottom: 2px; }
.price-context { font-size: 0.9em; color: var(--kick-blue); margin-top: 4px; font-weight: 500; }
.badge-recommended { display: inline-block; background: var(--kick-blue); color: #fff; padding: 4px 12px; border-radius: 20px; font-size: 0.8em; font-weight: 700; margin-inline-start: 8px; margin-bottom: var(--space-2); }
[dir="rtl"] .price-anchor, [dir="rtl"] .price-context { text-align: right; }
.offer-list { display: grid; gap: 11px; margin-bottom: var(--space-4); flex: 1; }
.offer-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.94rem; }
.offer-list i { margin-top: 4px; flex-shrink: 0; font-size: 0.85rem; }
.offer-list .fa-check { color: var(--success-green); }
.offer-list .fa-plus { color: var(--kick-blue); }
.offer-list .fa-circle-info { color: var(--text-muted); }
/* ---------- Order section ---------- */
.order-section { background: linear-gradient(160deg, #f7f9fb 0%, #eef3f7 100%); }
.order-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-6); align-items: start; }
.order-intro h2 { margin-bottom: var(--space-2); }
.order-intro .lead { margin-bottom: var(--space-4); }
.order-perks { display: grid; gap: 14px; margin-bottom: var(--space-4); }
.order-perks li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: var(--text-dark); }
.order-perks i { color: var(--success-green); margin-top: 4px; flex-shrink: 0; }
.order-alt {
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius);
  padding: var(--space-3); display: grid; gap: 12px; font-size: 0.94rem; color: var(--text-muted);
}

.order-form {
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius);
  padding: var(--space-4); box-shadow: var(--shadow); display: grid; gap: var(--space-3);
}
.field { display: grid; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.field label { font-size: 0.88rem; font-weight: 600; color: var(--text-dark); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 12px 14px;
  border: 1px solid var(--border-light); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; color: var(--text-dark); background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: auto; resize: vertical; line-height: 1.5; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--kick-blue); box-shadow: 0 0 0 3px rgba(42,110,156,0.14);
}
.field .err { font-size: 0.82rem; color: var(--error-red); min-height: 0; }
.field.invalid input, .field.invalid textarea { border-color: var(--error-red); }
.field.invalid .err { min-height: 1.2em; }
.order-total {
  display: flex; align-items: center; min-height: 48px; padding: 12px 14px;
  border-radius: var(--radius-sm); background: var(--sneaker-white);
  font-size: 1.2rem; font-weight: 700; color: var(--ink);
  /* keep "349 MAD" in that order even under RTL */
  unicode-bidi: isolate; direction: ltr;
}
[dir="rtl"] .order-total { justify-content: flex-end; }
/* prices are Latin-numeral + currency: isolate them from the RTL run */
.product-price { unicode-bidi: isolate; }
[dir="rtl"] .product-price { direction: ltr; text-align: right; }
.order-trust { text-align: center; font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; margin-bottom: var(--space-3); display: flex; flex-wrap: wrap; gap: 4px 10px; justify-content: center; }
.order-trust i { color: var(--success-green); margin-inline: 2px; font-size: 0.78rem; }

.pay-note {
  display: flex; gap: 12px; align-items: flex-start;
  background: #eef7f0; border: 1px solid #cfe8d6; border-radius: var(--radius-sm);
  padding: 14px; font-size: 0.9rem; color: #1f4d2c;
}
.pay-note i { color: var(--success-green); margin-top: 3px; flex-shrink: 0; }
.form-hint { font-size: 0.84rem; color: var(--text-muted); text-align: center; }
.form-success {
  display: flex; gap: 12px; align-items: flex-start;
  background: #eef7f0; border: 1px solid #cfe8d6; border-radius: var(--radius-sm);
  padding: 14px; font-size: 0.92rem; color: #1f4d2c; font-weight: 500;
}
.form-success i { color: var(--success-green); margin-top: 3px; flex-shrink: 0; }

/* ---------- Post-order thank-you overlay (covers the order form area, not full screen) ---------- */
.thank-you-overlay { display: none; position: relative; background: #fff; border: 2px solid #27AE60; border-radius: 12px; padding: 32px; text-align: center; margin-top: 16px; }
.thank-you-overlay.visible { display: block; }
.ty-check { color: #27AE60; font-size: 3rem; display: block; margin-bottom: 12px; }
.ty-title { font-size: 1.3rem; color: #1f4d2c; margin-bottom: 8px; }
.ty-sub { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 18px; }
.ty-label { font-size: 0.92rem; font-weight: 600; color: var(--ink); margin: 18px 0 10px; }
.ty-share { margin-bottom: 4px; }
.ty-upsell { font-size: 0.9rem; color: var(--text-muted); margin-top: 18px; background: #f6fbf8; border: 1px solid #d8efe1; border-radius: 8px; padding: 12px; text-align: start; }
.ty-social { display: flex; gap: 14px; justify-content: center; margin-bottom: 20px; }
.ty-social a { color: #27AE60; font-size: 1.5rem; transition: transform .15s; }
.ty-social a:hover { transform: translateY(-2px); }
.ty-dismiss { margin-top: 4px; }
[dir="rtl"] .ty-upsell { text-align: right; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border-light); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; background: #fff; }
.faq-q {
  width: 100%; text-align: start; padding: 16px var(--space-3);
  font-size: 1rem; font-weight: 600; color: var(--text-dark);
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-2);
}
.faq-q i { transition: transform .22s; color: var(--kick-blue); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; padding: 0 var(--space-3); }
.faq-item.open .faq-a { max-height: 320px; padding-bottom: 16px; }
.faq-a p { font-size: 0.95rem; color: var(--text-muted); }

/* ---------- Final CTA ---------- */
.final-cta { background: var(--ink); color: #fff; text-align: center; }
.final-cta h2 { color: #fff; }
.final-cta .lead { color: rgba(255,255,255,0.78); margin-bottom: var(--space-4); }
.cta-row { display: flex; flex-wrap: wrap; gap: var(--space-2); justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-soft); color: #b9c1cb; padding: var(--space-6) 0 var(--space-4); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr; gap: var(--space-4); }
.footer h4 { color: #fff; font-size: 0.98rem; margin-bottom: 14px; }
.footer a { color: #b9c1cb; font-size: 0.9rem; display: block; padding: 5px 0; transition: color .18s; }
.footer a:hover { color: #fff; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; }
.footer-logo { width: 150px; margin-bottom: var(--space-2); border-radius: 8px; }
.footer .socials { display: flex; gap: 10px; margin-top: var(--space-2); }
.footer .socials a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.09);
  display: grid; place-items: center; padding: 0; font-size: 1.05rem;
}
.footer .socials a:hover { background: var(--kick-blue); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); margin-top: var(--space-4);
  padding-top: var(--space-3); text-align: center; font-size: 0.84rem;
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; z-index: 70; bottom: 22px; inset-inline-end: 22px;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: #fff; display: grid; place-items: center;
  font-size: 1.7rem; box-shadow: 0 6px 22px rgba(37,211,102,0.42);
  transition: transform .18s, background .18s;
}
.wa-float:hover { background: var(--wa-dark); transform: scale(1.07); }

/* ---------- RTL ---------- */
[dir="rtl"] body { font-family: var(--font-ar); }
[dir="rtl"] .lang-switch { direction: ltr; }
[dir="rtl"] .order-perks i,
[dir="rtl"] .pay-note i,
[dir="rtl"] .form-success i { margin-top: 5px; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .nav { gap: var(--space-2); }
  .nav a { font-size: 0.87rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
}
@media (max-width: 900px) {
  .hero-grid, .order-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 420px; }
  .kit-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .benefits { grid-template-columns: 1fr; gap: var(--space-3); }
  .demarc-card { grid-template-columns: 1fr; }
  .demarc-vs { padding: 10px 0; border-inline: none; border-block: 1px solid var(--border-light); }
  
}
@media (max-width: 860px) {
  .nav {
    display: none; position: absolute; top: 72px; inset-inline: 0;
    background: #fff; padding: var(--space-3); gap: var(--space-1);
    border-bottom: 1px solid var(--border-light); box-shadow: var(--shadow);
    flex-direction: column; align-items: stretch; margin-inline-start: 0;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 4px; font-size: 1rem; }
  .nav .nav-cta { text-align: center; margin-top: 6px; }
  /* Keep brand + lang switch + burger on one row inside the viewport.
     The brand must be allowed to shrink, otherwise the burger is pushed off-screen. */
  .header-inner { gap: 8px; flex-wrap: nowrap; }
  .brand { margin-inline-end: auto; min-width: 0; flex: 0 1 auto; overflow: hidden; }
  .brand-text { min-width: 0; }
  .brand-text strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .brand-text em { display: none; }
  .lang-switch { margin-inline-start: 0; flex-shrink: 0; }
  .lang-switch button { padding: 7px 9px; font-size: 0.74rem; }
  .nav-toggle { display: block; margin-inline-start: 0; flex-shrink: 0; padding: 8px 4px; }
}
@media (max-width: 600px) {
  .section { padding: var(--space-6) 0; }
  .kit-grid, .steps, .offers { grid-template-columns: 1fr; }
  .offers { max-width: 420px; }
  
  
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn, .cta-row .btn { width: 100%; }
  .cta-row { flex-direction: column; }
  .field-row { grid-template-columns: 1fr; }
  .order-form { padding: var(--space-3); }
  .footer-grid { grid-template-columns: 1fr; }
  .wa-float { width: 52px; height: 52px; font-size: 1.5rem; bottom: 16px; inset-inline-end: 16px; }
  .brand .logo-mark { width: 40px; height: 40px; }
  .brand-text strong { font-size: 0.86rem; }
  .hp-amount { font-size: 2.1rem; }
}

/* ---------- Reviews ---------- */
/* ---------- Reviews carousel (3-up slider) ---------- */
.reviews-carousel { position: relative; max-width: 1080px; margin: 2rem auto 0; }
.reviews-viewport { position: relative; overflow: hidden; }
.reviews-track { display: flex; gap: var(--space-4); transition: transform .5s ease; will-change: transform; direction: ltr; }
.reviews-track > .review-card {
  flex: 0 0 calc((100% - 2 * var(--space-4)) / 3);
  max-width: calc((100% - 2 * var(--space-4)) / 3);
}
.rev-nav {
  position: absolute; top: 42%; transform: translateY(-50%); z-index: 3;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border-light); background: #fff; color: var(--kick-blue);
  box-shadow: var(--shadow-lg); cursor: pointer; display: grid; place-items: center; font-size: 1rem;
  transition: background .2s, color .2s;
}
.rev-nav:hover, .rev-nav:focus-visible { background: var(--kick-blue); color: #fff; outline: none; }
.rev-prev { left: -10px; }
.rev-next { right: -10px; }
.rev-dots { display: flex; justify-content: center; gap: 8px; margin-top: 1.5rem; flex-wrap: wrap; }
.rev-dot {
  width: 9px; height: 9px; border-radius: 50%; border: none;
  background: #cbd5e1; cursor: pointer; padding: 0; transition: background .2s, transform .2s;
}
.rev-dot.active { background: var(--kick-blue); transform: scale(1.3); }
@media (max-width: 760px) {
  .reviews-carousel { max-width: 100%; }
  .reviews-track > .review-card { flex: 0 0 100%; max-width: 100%; }
  .rev-prev { left: 4px; } .rev-next { right: 4px; }
}
.review-card {
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: var(--space-4);
  display: flex; flex-direction: column; gap: 14px;
}
.review-stars { color: #f5b301; font-size: 0.9rem; letter-spacing: 2px; }
.review-text { font-size: 0.95rem; line-height: 1.55; flex: 1; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--kick-blue), #2563eb); color: #fff;
  display: grid; place-items: center; font-weight: 700;
}
.review-author small { color: var(--text-muted); }

@media (max-width: 900px) {
  .reviews-kpi { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Reviews KPI trust strip ---------- */
.reviews-kpi { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); margin: 2rem 0 2.5rem; }
.kpi { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 1.25rem 1rem; text-align: center; }
.kpi-num { display: block; font-size: 2rem; font-weight: 800; color: var(--kick-blue); line-height: 1.1; letter-spacing: -0.5px; }
.kpi-label { display: block; margin-top: 8px; font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }
@media (max-width: 900px) { .reviews-kpi { grid-template-columns: repeat(2, 1fr); } }

/* Honest placeholder shown while the reviews carousel is empty (no real reviews yet). */
.reviews-placeholder { text-align: center; color: var(--text-muted); font-size: 1.05rem; margin: 1.5rem 0 0; }

/* Reviews carousel is hidden until real reviews are added. The slider JS in js/app.js
   adds the .reviews-active class to .reviews-carousel as soon as real .review-card
   elements exist in .reviews-track, which reveals it again. All carousel CSS and the
   JS stay fully wired up for that moment. */
.reviews-carousel { display: none; }
.reviews-carousel.reviews-active { display: block; }

/* ---------- Hero gallery ---------- */
.gallery { display: flex; flex-direction: column; gap: 12px; }
.gallery-stage { position: relative; border-radius: var(--radius); overflow: hidden; outline: none; background: var(--sneaker-white); box-shadow: var(--shadow-lg); }
.gallery-stage:focus-visible { box-shadow: 0 0 0 3px rgba(37,99,235,0.4); }
#galleryMain { transition: opacity 0.15s ease; display: block; width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.92); color: var(--ink, #111);
  display: grid; place-items: center; font-size: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18); transition: background 0.2s ease, transform 0.2s ease;
}
.gallery-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.gallery-arrow:active { transform: translateY(-50%) scale(0.96); }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }
html[dir="rtl"] .gallery-prev { left: auto; right: 12px; }
html[dir="rtl"] .gallery-next { right: auto; left: 12px; }
.gallery-dots {
  position: absolute; bottom: 12px; left: 0; right: 0; z-index: 3;
  display: flex; gap: 7px; justify-content: center;
}
.gallery-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.65);
  box-shadow: 0 1px 3px rgba(0,0,0,0.25); transition: background 0.2s ease, width 0.2s ease;
}
.gallery-dot.active { background: #fff; width: 22px; border-radius: 5px; }
.gallery-thumbs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.gallery-thumbs .thumb {
  width: 64px; height: 64px; padding: 0; border: 2px solid var(--border-light);
  border-radius: 12px; overflow: hidden; cursor: pointer; background: #fff;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.gallery-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumbs .thumb:hover { transform: translateY(-2px); }
.gallery-thumbs .thumb.active { border-color: var(--kick-blue); }

/* ---------- Hero stats + trust badges ---------- */
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3);
  list-style: none; padding: 0; margin: var(--space-4) 0 0;
}
.hero-stats li {
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-sm, 12px);
  padding: 12px 10px; text-align: center; box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.06));
}
.hero-stats strong { display: block; font-size: 1.5rem; color: var(--kick-blue); line-height: 1.15; margin-bottom: 2px; }
.hero-stats span { font-size: 0.78rem; color: var(--text-muted); line-height: 1.3; }
.trust-badges {
  display: flex; flex-wrap: wrap; gap: 10px 18px;
  list-style: none; padding: 0; margin: var(--space-3) 0 0;
}
.trust-badges li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); }
.trust-badges i { color: var(--kick-blue); }

/* ---------- Sticky mobile order bar ---------- */
.sticky-order {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  background: #fff; border-top: 1px solid var(--border-light);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 24px rgba(0,0,0,0.12);
}
.sticky-order .so-price { display: flex; flex-direction: column; line-height: 1.2; }
.sticky-order .so-price strong { font-size: 1.25rem; }
.sticky-order .so-price small { color: var(--text-muted); }
.sticky-order .btn { flex: none; }

@media (max-width: 860px) {
  .sticky-order:not([hidden]) { display: flex; }
  .wa-float { bottom: 84px; }
  body.has-sticky { padding-bottom: 72px; }
}
@media (max-width: 480px) {
  .gallery-arrow { width: 36px; height: 36px; font-size: 0.85rem; }
  .gallery-prev { left: 8px; } .gallery-next { right: 8px; }
  html[dir="rtl"] .gallery-prev { left: auto; right: 8px; }
  html[dir="rtl"] .gallery-next { right: auto; left: 8px; }
  .gallery-dots { bottom: 8px; gap: 5px; }
  .gallery-dot { width: 6px; height: 6px; }
  .gallery-dot.active { width: 16px; }
  .gallery-thumbs { gap: 8px; }
  .gallery-thumbs .thumb { width: 52px; height: 52px; border-radius: 10px; }
  .hero-stats { gap: 8px; margin-top: var(--space-3); }
  .hero-stats li { padding: 10px 6px; }
  .hero-stats strong { font-size: 1.25rem; }
  .hero-stats span { font-size: 0.72rem; }
  .trust-badges { gap: 8px 12px; }
  .trust-badges li { font-size: 0.8rem; }
}
@media (max-width: 360px) {
  .gallery-thumbs .thumb { width: 46px; height: 46px; }
}
