/* ============================================================
   SkyJet Water Rocket — Premium Kid-Friendly Brand
   ============================================================ */

:root {
  /* Brand palette — sky + sun + grass */
  --sky-700: #0369a1;
  --sky-600: #0284c7;
  --sky-500: #0ea5e9;
  --sky-400: #38bdf8;
  --sky-300: #7dd3fc;
  --sky-100: #e0f2fe;
  --sun-500: #f59e0b;
  --sun-400: #fbbf24;
  --sun-300: #fcd34d;
  --grass-500: #22c55e;
  --coral-500: #ef4444;
  --coral-600: #dc2626;
  --ink-950: #0c1d2e;
  --ink-900: #112540;
  --ink-700: #1f3a63;

  --bg: #f7fbff;
  --bg-soft: #eef6fd;
  --card: #ffffff;
  --text: #0c1d2e;
  --text-soft: #475569;
  --muted: #64748b;
  --border: #dbeafe;
  --success: #16a34a;

  --shadow-sm: 0 4px 14px rgba(12, 29, 46, 0.06);
  --shadow-md: 0 12px 30px rgba(12, 29, 46, 0.1);
  --shadow-lg: 0 24px 60px rgba(12, 29, 46, 0.15);
  --shadow-coral: 0 14px 36px rgba(239, 68, 68, 0.4);
  --shadow-sun: 0 14px 36px rgba(245, 158, 11, 0.4);

  --gradient-sky: linear-gradient(135deg, #0ea5e9 0%, #0369a1 100%);
  --gradient-sun: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  --gradient-coral: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  --gradient-fun: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #f472b6 100%);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--sun-400); color: var(--ink-950); }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Tajawal', 'Cairo', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  direction: rtl;
  font-feature-settings: "kern", "liga";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.icon { width: 22px; height: 22px; flex-shrink: 0; stroke-width: 2; }
.icon-lg { width: 32px; height: 32px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-coral);
  color: #fff;
  box-shadow: var(--shadow-coral);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); }
.btn-primary:hover::before { transform: translateX(100%); }
.btn-ghost {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--sun-500);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.eyebrow .dot {
  width: 8px; height: 8px; background: var(--sun-500); border-radius: 50%;
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.section-title {
  text-align: center;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--ink-950);
}
.section-title .accent {
  background: var(--gradient-sky);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-title .sun-accent {
  background: var(--gradient-sun);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-sub {
  text-align: center;
  color: var(--text-soft);
  font-size: 17px;
  max-width: 680px;
  margin: 0 auto 56px;
}

section { padding: 80px 0; position: relative; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* ============================================================
   Top bar + Header
   ============================================================ */
.topbar {
  background: var(--ink-950);
  color: #cfd9e6;
  padding: 9px 0;
  font-size: 13px;
  text-align: center;
  font-weight: 500;
}
.topbar .container { display: flex; justify-content: center; flex-wrap: wrap; gap: 22px; }
.topbar span { display: inline-flex; align-items: center; gap: 6px; }
.topbar svg { width: 14px; height: 14px; color: var(--sun-400); }

.header {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  transition: padding 0.2s ease, box-shadow 0.2s ease;
}
.header.scrolled { padding: 8px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--ink-950);
  text-decoration: none;
}
.logo-mark {
  width: 40px; height: 40px;
  background: var(--gradient-sky);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 8px 22px rgba(14, 165, 233, 0.45);
  position: relative;
  overflow: hidden;
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: -4px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.5), transparent 60%);
}
.logo-mark svg { width: 22px; height: 22px; position: relative; z-index: 1; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text small { font-size: 10px; font-weight: 700; color: var(--muted); margin-top: 4px; letter-spacing: 0.06em; }

.header-actions { display: flex; align-items: center; gap: 12px; }

/* Language switcher */
.lang-switch {
  display: inline-flex;
  background: var(--bg-soft);
  border-radius: 999px;
  padding: 3px;
  border: 1px solid var(--border);
}
.lang-switch button {
  appearance: none;
  border: none;
  background: transparent;
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 12px;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: 0.2s;
}
.lang-switch button:hover { color: var(--ink-950); }
.lang-switch button.active {
  background: var(--ink-950);
  color: #fff;
  box-shadow: 0 2px 6px rgba(12, 29, 46, 0.2);
}

/* LTR adjustments for French */
html[dir="ltr"] body { direction: ltr; }
html[dir="ltr"] .topbar .container,
html[dir="ltr"] .header .container { direction: ltr; }
html[dir="ltr"] .field input,
html[dir="ltr"] .field select,
html[dir="ltr"] .field textarea { padding: 22px 16px 8px 16px; text-align: left; }
html[dir="ltr"] .field label { left: 16px; right: auto; }
html[dir="ltr"] .field-phone input { padding-left: 16px; padding-right: 70px; direction: ltr; text-align: left; }
html[dir="ltr"] .phone-prefix { right: 14px; left: auto; }
html[dir="ltr"] .field select {
  background-position: right 16px center;
  padding-right: 40px;
  padding-left: 16px;
}
html[dir="ltr"] .field input:focus ~ label,
html[dir="ltr"] .field input:not(:placeholder-shown) ~ label,
html[dir="ltr"] .field select:focus ~ label,
html[dir="ltr"] .field select:valid ~ label,
html[dir="ltr"] .field textarea:focus ~ label,
html[dir="ltr"] .field textarea:not(:placeholder-shown) ~ label { left: 16px; right: auto; }
html[dir="ltr"] .address-toggle > span { text-align: left; }
html[dir="ltr"] .checkout-total { border-left: none; border-right: 1px solid rgba(255,255,255,0.12); }

.btn-order-top {
  background: var(--gradient-coral);
  color: #fff;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 6px 18px rgba(239, 68, 68, 0.35);
}
.btn-order-top:hover { transform: translateY(-1px); }
.btn-order-top svg { width: 16px; height: 16px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(180deg, #38bdf8 0%, #0ea5e9 60%, #0284c7 100%);
  color: #fff;
  padding: 70px 0 90px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 85% 0%, rgba(252, 211, 77, 0.4), transparent 60%),
    radial-gradient(600px 400px at 10% 100%, rgba(34, 197, 94, 0.35), transparent 60%);
  z-index: -1;
}

/* Floating clouds */
.cloud {
  position: absolute;
  background: rgba(255,255,255,0.85);
  border-radius: 60px;
  filter: blur(0.5px);
  z-index: -1;
}
.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
}
.cloud-1 { width: 80px; height: 30px; top: 12%; right: 10%; animation: drift 16s linear infinite; }
.cloud-1::before { width: 40px; height: 40px; top: -20px; right: 12px; }
.cloud-1::after { width: 30px; height: 30px; top: -14px; right: 44px; }
.cloud-2 { width: 110px; height: 35px; top: 30%; left: 6%; animation: drift 22s linear infinite reverse; }
.cloud-2::before { width: 50px; height: 50px; top: -25px; left: 14px; }
.cloud-2::after { width: 40px; height: 40px; top: -20px; left: 56px; }
.cloud-3 { width: 70px; height: 26px; top: 60%; right: 18%; animation: drift 18s linear infinite; animation-delay: 6s; }
.cloud-3::before { width: 36px; height: 36px; top: -18px; right: 10px; }

@keyframes drift {
  0% { transform: translateX(0); }
  50% { transform: translateX(-30px); }
  100% { transform: translateX(0); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(34px, 6vw, 60px);
  font-weight: 900;
  margin-bottom: 22px;
  color: #fff;
  text-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.hero-text h1 .grad {
  background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}
.hero-text .subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.95);
  margin-bottom: 28px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-features {
  list-style: none;
  margin: 26px 0 32px;
  display: grid;
  gap: 12px;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 16px;
  color: rgba(255,255,255,0.95);
}
.hero-features li .check {
  width: 28px; height: 28px;
  background: rgba(252, 211, 77, 0.95);
  color: var(--ink-950);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(252, 211, 77, 0.5);
}
.hero-features li .check svg { width: 16px; height: 16px; stroke-width: 3; }

.price-card {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 28px 0;
  padding: 18px 26px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  backdrop-filter: blur(14px);
}
.price-now {
  font-family: 'Cairo', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.price-now span { font-size: 18px; color: rgba(255,255,255,0.85); font-weight: 600; margin-right: 4px; }
.price-meta { display: flex; flex-direction: column; gap: 4px; }
.price-old { font-size: 18px; color: rgba(255,255,255,0.7); text-decoration: line-through; }
.price-save {
  background: var(--gradient-sun);
  color: var(--ink-950);
  font-weight: 800; padding: 4px 12px; border-radius: 999px; font-size: 12px;
  align-self: flex-start;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.35);
}

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-rating {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.hero-rating .stars { display: flex; gap: 2px; }
.hero-rating .stars svg { width: 18px; height: 18px; color: var(--sun-300); fill: var(--sun-300); }
.hero-rating .label { color: rgba(255,255,255,0.92); font-size: 14px; }
.hero-rating .label strong { color: #fff; font-weight: 800; }
.hero-rating .avatars { display: flex; }
.hero-rating .avatars .avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid #0ea5e9;
  margin-right: -10px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 13px;
  font-family: 'Cairo', sans-serif;
}

.hero-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  perspective: 1200px;
}
.hero-image {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35), 0 0 0 6px rgba(255,255,255,0.15);
  position: relative;
  background: #fff;
  transform: rotate(-2deg);
  transition: transform 0.5s ease;
  animation: float-img 6s ease-in-out infinite;
}
.hero-image:hover { transform: rotate(0); }
.hero-image img { width: 100%; display: block; }

@keyframes float-img {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-10px); }
}

.float-chip {
  position: absolute;
  background: rgba(255,255,255,0.96);
  color: var(--ink-950);
  padding: 12px 16px;
  border-radius: 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700;
  box-shadow: 0 14px 36px rgba(0,0,0,0.3);
  animation: float-chip 5s ease-in-out infinite;
  z-index: 2;
}
.float-chip svg { color: var(--sky-500); width: 18px; height: 18px; }
.float-chip.top { top: 8%; right: -10%; animation-delay: 0.3s; }
.float-chip.bottom { bottom: 10%; left: -8%; animation-delay: 1.4s; }
.float-chip.mid { top: 50%; right: -12%; animation-delay: 2.5s; }
@keyframes float-chip {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

.badge-promo {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gradient-coral);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 8px 22px rgba(239, 68, 68, 0.5);
  z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  animation: pulse-badge 2s ease-in-out infinite;
}
.badge-promo svg { width: 14px; height: 14px; }
@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* SVG wave divider */
.wave-divider {
  position: relative;
  margin-top: -80px;
  z-index: 1;
}
.wave-divider svg { display: block; width: 100%; height: 80px; }

/* ============================================================
   Color picker
   ============================================================ */
.colors {
  background: #fff;
  padding: 70px 0;
}
.colors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.color-card {
  background: #fff;
  padding: 26px 22px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.color-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--accent-color, var(--sky-500));
}
.color-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-color, var(--sky-500));
  box-shadow: var(--shadow-lg);
}
.color-card .color-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  margin-bottom: 16px;
  background-size: 280%;
  background-repeat: no-repeat;
}
.color-card.yellow { --accent-color: #fbbf24; }
.color-card.yellow .color-img { background-position: 0% 0%; background-image: url('/images/rocket/rocket-collage.jpg'); }
.color-card.white { --accent-color: #64748b; }
.color-card.white .color-img { background-position: 0% 50%; background-image: url('/images/rocket/rocket-collage.jpg'); }
.color-card.red { --accent-color: #ef4444; }
.color-card.red .color-img { background-position: 0% 100%; background-image: url('/images/rocket/rocket-collage.jpg'); }
.color-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink-950);
  margin-bottom: 4px;
}
.color-card p { color: var(--text-soft); font-size: 14px; }

/* ============================================================
   Stats
   ============================================================ */
.stats {
  background: var(--ink-950);
  color: #fff;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 300px at 50% 50%, rgba(14,165,233,0.2), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.stat-item { text-align: center; }
.stat-value {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, #fcd34d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: #cbd5e6; font-size: 14px; font-weight: 500; }

/* ============================================================
   Features
   ============================================================ */
.features {
  background: var(--bg);
  padding: 90px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--card);
  padding: 30px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(14,165,233,0.1), transparent 70%);
  border-radius: 50%;
  transform: translate(40%, -40%);
  transition: transform 0.5s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sky-300);
}
.feature-card:hover::before { transform: translate(20%, -20%) scale(1.5); }
.feature-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.feature-icon.sky { background: var(--gradient-sky); box-shadow: 0 12px 28px rgba(14, 165, 233, 0.4); }
.feature-icon.sun { background: var(--gradient-sun); box-shadow: 0 12px 28px rgba(245, 158, 11, 0.4); }
.feature-icon.coral { background: var(--gradient-coral); box-shadow: 0 12px 28px rgba(239, 68, 68, 0.4); }
.feature-icon svg { width: 30px; height: 30px; }
.feature-card h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--ink-950);
}
.feature-card p { color: var(--text-soft); font-size: 15px; }

/* ============================================================
   How it works
   ============================================================ */
.how {
  background: linear-gradient(180deg, #fff, var(--bg-soft));
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}
.step-card {
  background: #fff;
  padding: 34px 26px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  transition: 0.3s;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num {
  width: 56px; height: 56px;
  background: var(--gradient-sky);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cairo', sans-serif;
  font-size: 24px;
  font-weight: 900;
  margin: 0 auto 18px;
  box-shadow: 0 10px 24px rgba(14,165,233,0.35);
}
.step-card h3 { font-size: 19px; margin-bottom: 8px; color: var(--ink-950); }
.step-card p { color: var(--text-soft); font-size: 15px; }

/* ============================================================
   Showcase
   ============================================================ */
.showcase { background: #fff; }
.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}
.showcase-row:last-child { margin-bottom: 0; }
.showcase-row.reverse { direction: ltr; }
.showcase-row.reverse > * { direction: rtl; }

.showcase-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ink-950);
  aspect-ratio: 4 / 3;
}
.showcase-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.showcase-img-wrap.zoom-1 img { object-position: 80% 30%; transform: scale(1.5); }
.showcase-img-wrap.zoom-2 img { object-position: 20% 80%; transform: scale(1.3); }
.showcase-img-wrap.zoom-3 img { object-position: 60% 90%; transform: scale(1.4); }

.showcase-text .eyebrow { background: rgba(14,165,233,0.12); color: var(--sky-500); }
.showcase-text .eyebrow .dot { background: var(--sky-500); }
.showcase-text h3 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--ink-950);
  margin-bottom: 18px;
}
.showcase-text > p { font-size: 17px; color: var(--text-soft); margin-bottom: 22px; }
.showcase-text ul { list-style: none; }
.showcase-text ul li {
  padding: 11px 0;
  display: flex; align-items: flex-start; gap: 14px;
  border-bottom: 1px dashed var(--border);
  font-size: 15px;
}
.showcase-text ul li:last-child { border-bottom: none; }
.showcase-text ul li .num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--gradient-sky);
  color: #fff;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.showcase-text ul li .num svg { width: 14px; height: 14px; }

/* ============================================================
   Gallery
   ============================================================ */
.gallery { background: var(--bg-soft); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
  aspect-ratio: 1 / 1;
  position: relative;
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gallery-item .img-zoom-1 { object-position: 0% 0%; transform: scale(2); }
.gallery-item .img-zoom-2 { object-position: 0% 50%; transform: scale(2); }
.gallery-item .img-zoom-3 { object-position: 0% 100%; transform: scale(2); }
.gallery-item .img-zoom-4 { object-position: 80% 30%; transform: scale(1.3); }
.gallery-item .img-zoom-5 { object-position: 50% 100%; transform: scale(1.5); }
.gallery-item .img-zoom-6 { object-position: 100% 100%; transform: scale(1.5); }
.gallery-item:hover img { transform: scale(2.4); }
.gallery-item .img-zoom-4:hover { transform: scale(1.55); }
.gallery-item .img-zoom-5:hover { transform: scale(1.75); }
.gallery-item .img-zoom-6:hover { transform: scale(1.75); }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials { background: #fff; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: linear-gradient(180deg, #fff, var(--bg-soft));
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  transition: 0.3s;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial .quote-icon {
  position: absolute;
  top: 22px; left: 22px;
  color: var(--sky-500);
  opacity: 0.15;
}
.testimonial .quote-icon svg { width: 48px; height: 48px; }
.testimonial .stars { display: flex; gap: 2px; margin-bottom: 14px; }
.testimonial .stars svg { width: 18px; height: 18px; color: var(--sun-500); fill: var(--sun-500); }
.testimonial p { font-size: 16px; color: var(--text); margin-bottom: 22px; line-height: 1.75; }
.testimonial .author { display: flex; align-items: center; gap: 12px; }
.testimonial .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-sky);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 16px;
}
.testimonial .author-info .name { font-weight: 800; color: var(--ink-950); }
.testimonial .author-info .city { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.testimonial .author-info .city svg { width: 12px; height: 12px; }

/* ============================================================
   Order section
   ============================================================ */
.order-section {
  background: linear-gradient(135deg, #0c1d2e 0%, #112540 50%, #0369a1 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.order-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(245,158,11,0.2), transparent),
    radial-gradient(700px 400px at 10% 100%, rgba(14,165,233,0.3), transparent);
}
.order-section .container { position: relative; }
.order-section .section-title { color: #fff; }
.order-section .section-title .accent {
  background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.order-section .section-sub { color: #cbd5e6; }

.order-card {
  max-width: 540px;
  margin: 0 auto;
  background: #fff;
  color: var(--text);
  padding: 28px;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.product-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: linear-gradient(135deg, var(--bg-soft), #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 22px;
}
.product-strip img {
  width: 64px; height: 64px;
  object-fit: cover;
  object-position: 5% 0%;
  border-radius: 12px;
  background: var(--bg-soft);
}
.product-strip .product-info { flex: 1; min-width: 0; }
.product-strip h4 { font-size: 15px; font-weight: 800; color: var(--ink-950); margin-bottom: 6px; line-height: 1.3; }
.product-strip .product-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.product-strip .product-tags span {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; color: var(--text-soft); font-weight: 600;
  padding: 2px 8px; background: rgba(14,165,233,0.1); border-radius: 999px;
}
.product-strip .product-tags svg { width: 11px; height: 11px; color: var(--sky-500); }

.qty-control {
  display: flex; align-items: center; gap: 6px;
  padding: 4px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  flex-shrink: 0;
}
.qty-btn {
  width: 30px; height: 30px;
  border: none;
  background: var(--bg-soft);
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink-950);
  font-family: inherit;
  transition: 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--ink-950); color: #fff; }
.qty-btn:active { transform: scale(0.92); }
.qty-btn svg { width: 12px; height: 12px; }
.qty-display {
  min-width: 24px; text-align: center;
  font-family: 'Cairo', sans-serif;
  font-weight: 800; font-size: 15px;
  color: var(--ink-950);
}

/* Color selector inside form */
.color-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.color-option {
  cursor: pointer;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 10px 6px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-950);
  transition: 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: #fff;
}
.color-option:hover { border-color: var(--sky-500); }
.color-option input { display: none; }
.color-option .swatch {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.color-option.yellow .swatch { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.color-option.white .swatch { background: linear-gradient(135deg, #f1f5f9, #94a3b8); }
.color-option.red .swatch { background: linear-gradient(135deg, #ef4444, #b91c1c); }
.color-option.selected { border-color: var(--sky-500); box-shadow: 0 0 0 4px rgba(14,165,233,0.15); }

/* Field (floating label) */
.field {
  position: relative;
  margin-bottom: 12px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 22px 16px 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
  -webkit-appearance: none;
}
.field textarea { padding-top: 26px; resize: vertical; min-height: 70px; line-height: 1.5; }
.field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: 16px center;
  padding-left: 40px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sky-500);
  box-shadow: 0 0 0 4px rgba(14,165,233,0.15);
}
.field label {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--muted);
  pointer-events: none;
  transition: top 0.18s ease, font-size 0.18s ease, color 0.18s ease, transform 0.18s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.field label svg { width: 14px; height: 14px; color: var(--sky-500); }
.field textarea ~ label { top: 22px; transform: none; }
.field input:focus ~ label,
.field input:not(:placeholder-shown) ~ label,
.field select:focus ~ label,
.field select:valid ~ label,
.field textarea:focus ~ label,
.field textarea:not(:placeholder-shown) ~ label {
  top: 9px;
  font-size: 11px;
  font-weight: 700;
  color: var(--sky-500);
  transform: none;
  letter-spacing: 0.02em;
}
.field-phone input { padding-left: 70px; direction: ltr; text-align: left; }
.phone-prefix {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-950);
  background: var(--bg-soft);
  padding: 6px 10px;
  border-radius: 8px;
  pointer-events: none;
  z-index: 1;
}

.address-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 16px;
  margin-bottom: 12px;
  background: var(--bg-soft);
  border: 1.5px dashed var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-900);
  cursor: pointer;
  transition: 0.2s;
}
.address-toggle:hover { border-color: var(--sky-500); background: rgba(14,165,233,0.05); }
.address-toggle > svg:first-child { width: 16px; height: 16px; color: var(--sky-500); flex-shrink: 0; }
.address-toggle > span { flex: 1; text-align: right; }
.address-toggle .chevron { width: 16px; height: 16px; color: var(--muted); transition: transform 0.25s ease; }
.address-toggle.open .chevron { transform: rotate(45deg); }
.address-collapse { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.address-collapse.open { max-height: 200px; }

.checkout-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: stretch;
  padding: 14px;
  margin-top: 18px;
  background: linear-gradient(135deg, var(--ink-950), var(--ink-700));
  border-radius: 16px;
}
.checkout-total {
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 16px;
  color: #fff;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.checkout-total small { font-size: 11px; color: #cbd5e6; font-weight: 500; }
.checkout-total strong {
  font-family: 'Cairo', sans-serif;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 2px;
  line-height: 1;
  white-space: nowrap;
}

.btn-submit {
  width: 100%;
  background: var(--gradient-coral);
  color: #fff;
  padding: 16px 20px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-coral);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  transition: 0.2s;
}
.btn-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-submit:hover { transform: translateY(-2px); }
.btn-submit:hover::before { transform: translateX(100%); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.btn-submit svg { width: 18px; height: 18px; }

.form-trust {
  display: flex; justify-content: center; gap: 18px; flex-wrap: wrap;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px dashed var(--border);
}
.form-trust span {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; color: var(--text-soft);
}
.form-trust svg { width: 14px; height: 14px; color: var(--success); }

.error-msg {
  display: none;
  background: #fee2e2; color: #991b1b;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 14px;
  font-weight: 600;
  font-size: 14px;
  align-items: center; gap: 8px;
}
.error-msg.show { display: flex; }
.error-msg svg { width: 18px; height: 18px; flex-shrink: 0; }

.success-msg {
  display: none;
  text-align: center;
  padding: 36px 28px;
  background: #ecfdf5;
  border: 2px solid var(--success);
  border-radius: 18px;
  color: #065f46;
}
.success-msg .check {
  width: 72px; height: 72px;
  background: var(--success);
  color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  animation: pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.success-msg .check svg { width: 36px; height: 36px; stroke-width: 3; }
@keyframes pop { 0% { transform: scale(0); } 100% { transform: scale(1); } }
.success-msg h3 { font-size: 24px; margin-bottom: 8px; color: #065f46; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: 0.2s;
}
.faq-item:hover, .faq-item.open { border-color: var(--sky-500); }
.faq-q {
  width: 100%;
  text-align: right;
  padding: 20px 24px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: inherit;
  color: var(--ink-950);
  gap: 16px;
}
.faq-q .icon-wrap {
  width: 32px; height: 32px;
  background: var(--bg-soft);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--sky-500);
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.2s ease;
}
.faq-q .icon-wrap svg { width: 18px; height: 18px; }
.faq-item.open .faq-q .icon-wrap { background: var(--sky-500); color: #fff; transform: rotate(45deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; color: var(--text-soft); transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-item.open .faq-a { padding: 0 24px 22px; max-height: 400px; }
.faq-a p { font-size: 15px; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--ink-950);
  color: #cbd5e6;
  padding: 50px 0 24px;
  text-align: center;
}
.footer .logo { color: #fff; justify-content: center; margin-bottom: 14px; }
.footer .logo-text small { color: var(--muted); }
.footer p { font-size: 14px; margin-bottom: 8px; color: #94a3b8; }
.footer .copyright { margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.08); color: var(--muted); font-size: 13px; }

/* Sticky CTA mobile */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 12px; left: 12px; right: 12px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 99;
  align-items: center;
  gap: 12px;
}
.sticky-cta .price-mini { display: flex; flex-direction: column; font-family: 'Cairo', sans-serif; }
.sticky-cta .price-mini strong { font-size: 19px; color: var(--coral-500); line-height: 1; }
.sticky-cta .price-mini small { font-size: 11px; color: var(--muted); margin-top: 2px; }
.sticky-cta a {
  flex: 1; text-align: center;
  background: var(--gradient-coral); color: #fff;
  padding: 13px; border-radius: 12px;
  font-weight: 800; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.sticky-cta a svg { width: 16px; height: 16px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 968px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .colors-grid { grid-template-columns: 1fr; gap: 16px; }
  .steps-grid { grid-template-columns: 1fr; }
  .showcase-row { grid-template-columns: 1fr; gap: 30px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .float-chip.mid { display: none; }
}

@media (max-width: 640px) {
  section { padding: 60px 0; }
  .hero { padding: 50px 0 60px; }
  .features-grid { grid-template-columns: 1fr; }
  .order-card { padding: 22px 18px; }
  .price-now { font-size: 36px; }
  .btn-order-top span { display: none; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 80px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .topbar .container { gap: 14px; font-size: 12px; }
  .topbar span:nth-child(3) { display: none; }
  .float-chip { display: none; }
  .product-strip { gap: 10px; padding: 12px; }
  .product-strip img { width: 56px; height: 56px; }
  .product-strip h4 { font-size: 14px; }
  .checkout-strip { grid-template-columns: 1fr; gap: 10px; padding: 12px; }
  .checkout-total { padding: 0; border-left: none; flex-direction: row; justify-content: space-between; align-items: center; }
}
