/* ============================================================
   AquaPro — Premium Brand Stylesheet
   Modern Arabic typography + glass morphism + scroll animations
   ============================================================ */

:root {
  /* Brand palette */
  --navy-950: #0a1628;
  --navy-900: #0d1f3c;
  --navy-800: #142a4f;
  --navy-700: #1e3a6b;
  --aqua-500: #00b4d8;
  --aqua-400: #22d3ee;
  --aqua-300: #67e8f9;
  --coral-500: #ff5e3a;
  --coral-400: #ff7849;
  --coral-600: #e8482a;
  --gold: #fbbf24;

  /* Surface */
  --bg: #f7f9fc;
  --bg-soft: #eef3fa;
  --card: #ffffff;
  --text: #0e1726;
  --text-soft: #4a5567;
  --muted: #7a8597;
  --border: #e6ecf4;
  --success: #16a34a;

  /* Effects */
  --shadow-sm: 0 4px 14px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 12px 30px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 24px 60px rgba(10, 22, 40, 0.14);
  --shadow-coral: 0 14px 36px rgba(255, 94, 58, 0.35);
  --gradient-brand: linear-gradient(135deg, #0d1f3c 0%, #1e3a6b 60%, #00b4d8 100%);
  --gradient-coral: linear-gradient(135deg, #ff7849 0%, #ff5e3a 100%);
  --gradient-aqua: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--aqua-400); color: var(--navy-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", "calt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============================================================
   Reusable Utilities
   ============================================================ */
.icon { width: 22px; height: 22px; flex-shrink: 0; stroke-width: 2; }
.icon-lg { width: 32px; height: 32px; }
.icon-xl { width: 44px; height: 44px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-family: inherit;
  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.3) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(255, 94, 58, 0.45); }
.btn-primary:hover::before { transform: translateX(100%); }

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); }

.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border: 2px solid var(--navy-900);
}
.btn-outline:hover { background: var(--navy-900); color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 180, 216, 0.12);
  color: var(--aqua-500);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.eyebrow .dot {
  width: 8px; height: 8px; background: var(--aqua-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.4); opacity: 0.5; }
}

.section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--navy-950);
}
.section-title .accent {
  background: var(--gradient-aqua);
  -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: 90px 0; position: relative; }

/* Scroll animation */
.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; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   Top announcement bar
   ============================================================ */
.topbar {
  background: var(--navy-950);
  color: #cfd9e6;
  padding: 9px 0;
  font-size: 13px;
  text-align: center;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.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(--aqua-400); }

/* ============================================================
   Header
   ============================================================ */
.header {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  transition: padding 0.2s ease;
}
.header.scrolled { padding: 10px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.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(--navy-950);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--gradient-aqua);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 180, 216, 0.4);
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text small { font-size: 10px; font-weight: 600; color: var(--muted); margin-top: 3px; letter-spacing: 0.04em; }

.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(255, 94, 58, 0.3);
  transition: transform 0.2s ease;
}
.btn-order-top:hover { transform: translateY(-1px); }
.btn-order-top svg { width: 16px; height: 16px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background: var(--navy-950);
  color: #fff;
  padding: 80px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(0, 180, 216, 0.25), transparent 60%),
    radial-gradient(700px 400px at 15% 90%, rgba(255, 94, 58, 0.18), transparent 60%),
    radial-gradient(500px 300px at 50% 50%, rgba(34, 211, 238, 0.1), transparent 60%);
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at center, #000 30%, transparent 75%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text h1 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  margin-bottom: 22px;
  color: #fff;
}
.hero-text h1 .grad {
  background: linear-gradient(135deg, #22d3ee 0%, #67e8f9 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-text .subtitle {
  font-size: 18px;
  color: #a8b3c8;
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-features {
  list-style: none;
  margin: 28px 0 32px;
  display: grid;
  gap: 14px;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 16px;
  color: #d6dceb;
}
.hero-features li .check {
  width: 28px; height: 28px;
  background: rgba(34, 211, 238, 0.15);
  color: var(--aqua-300);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-features li .check svg { width: 16px; height: 16px; }

.price-card {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 30px 0;
  padding: 18px 26px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}
.price-now {
  font-family: 'Cairo', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.price-now span { font-size: 18px; color: #a8b3c8; font-weight: 600; margin-right: 4px; }
.price-meta { display: flex; flex-direction: column; gap: 4px; }
.price-old { font-size: 17px; color: #a8b3c8; text-decoration: line-through; }
.price-save {
  background: var(--gradient-coral);
  color: #fff;
  font-weight: 700; padding: 4px 12px; border-radius: 999px; font-size: 12px;
  display: inline-block;
  align-self: flex-start;
}

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

.hero-rating {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.1);
  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(--gold); fill: var(--gold); }
.hero-rating strong { color: #fff; font-weight: 800; }
.hero-rating .label { color: #a8b3c8; font-size: 14px; }
.hero-rating .avatars { display: flex; }
.hero-rating .avatars .avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--navy-950);
  margin-right: -10px;
  background: var(--gradient-aqua);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 13px;
  font-family: 'Cairo', sans-serif;
}

/* Hero image */
.hero-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.hero-image {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(10, 22, 40, 0.8));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.08);
  animation: float 6s ease-in-out infinite;
}
.hero-image img { width: 100%; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Floating chips around image */
.float-chip {
  position: absolute;
  background: rgba(255,255,255,0.95);
  color: var(--navy-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.25);
  backdrop-filter: blur(10px);
  animation: float-chip 5s ease-in-out infinite;
}
.float-chip svg { color: var(--aqua-500); }
.float-chip.top {
  top: 8%; left: -12%;
  animation-delay: 0.5s;
}
.float-chip.bottom {
  bottom: 12%; right: -8%;
  animation-delay: 1.2s;
}
.float-chip.mid {
  top: 50%; right: -10%;
  animation-delay: 2s;
}
@keyframes float-chip {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

.badge-promo {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--gradient-coral);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(255,94,58,0.5);
  z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
}
.badge-promo svg { width: 14px; height: 14px; }

/* ============================================================
   Trust bar (logos / strip)
   ============================================================ */
.trust {
  background: #fff;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--bg-soft), #fff);
  border: 1px solid var(--border);
  color: var(--aqua-500);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.trust-text strong { display: block; font-weight: 800; font-size: 15px; color: var(--navy-950); }
.trust-text span { font-size: 13px; color: var(--muted); }

/* ============================================================
   Stats counter
   ============================================================ */
.stats {
  background: var(--navy-950);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 300px at 20% 50%, rgba(0,180,216,0.15), transparent),
    radial-gradient(600px 300px at 80% 50%, rgba(255,94,58,0.1), 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(32px, 4vw, 48px);
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #67e8f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: #a8b3c8; font-size: 14px; font-weight: 500; }

/* ============================================================
   Features
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--card);
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(0,180,216,0.08), 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: rgba(0,180,216,0.3);
}
.feature-card:hover::before { transform: translate(20%, -20%) scale(1.5); }
.feature-icon {
  width: 64px; height: 64px;
  background: var(--gradient-aqua);
  color: #fff;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 12px 28px rgba(0, 180, 216, 0.35);
  position: relative;
  z-index: 1;
}
.feature-icon svg { width: 30px; height: 30px; }
.feature-card h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--navy-950);
}
.feature-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: 80px;
}
.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(--navy-950);
}
.showcase-img-wrap img { width: 100%; }
.showcase-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,22,40,0.4));
  pointer-events: none;
}

.showcase-text .eyebrow { background: rgba(255,94,58,0.1); color: var(--coral-500); }
.showcase-text .eyebrow .dot { background: var(--coral-500); }
.showcase-text h3 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--navy-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: 12px 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: linear-gradient(135deg, var(--aqua-500), var(--navy-700));
  color: #fff;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 13px;
}

/* ============================================================
   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::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,22,40,0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }

/* ============================================================
   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 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial .quote-icon {
  position: absolute;
  top: 22px; left: 22px;
  color: var(--aqua-500);
  opacity: 0.15;
}
.testimonial .quote-icon svg { width: 48px; height: 48px; }
.testimonial .stars {
  display: flex; gap: 2px; margin-bottom: 14px;
  color: var(--gold);
}
.testimonial .stars svg { width: 18px; height: 18px; fill: var(--gold); }
.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-aqua);
  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(--navy-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
   ============================================================ */
.order-section {
  background: var(--gradient-brand);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.order-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(800px 400px at 90% 0%, rgba(255,94,58,0.2), transparent),
    radial-gradient(600px 400px at 10% 100%, rgba(0,180,216,0.25), transparent);
}
.order-section .container { position: relative; }
.order-section .section-title { color: #fff; }
.order-section .section-title .accent {
  background: linear-gradient(135deg, #fbbf24 0%, #ff7849 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.3);
}

/* Compact product strip */
.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;
  border-radius: 12px;
  flex-shrink: 0;
}
.product-strip .product-info { flex: 1; min-width: 0; }
.product-strip h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy-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(0, 180, 216, 0.08);
  border-radius: 999px;
}
.product-strip .product-tags svg {
  width: 11px; height: 11px;
  color: var(--aqua-500);
}

/* Quantity control */
.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(--navy-950);
  font-family: inherit;
  transition: 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--navy-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(--navy-950);
}

/* ===== Floating-label fields ===== */
.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 ease, box-shadow 0.15s ease;
  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='%237a8597' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%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(--aqua-500);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.12);
}
.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;
  background: transparent;
}
.field label svg {
  width: 14px; height: 14px;
  color: var(--aqua-500);
  transition: color 0.18s ease;
}
.field textarea ~ label { top: 22px; transform: none; }

/* Floating: when input has value or is focused */
.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(--aqua-500);
  transform: none;
  letter-spacing: 0.02em;
}
.field input:focus ~ label svg,
.field select:focus ~ label svg,
.field textarea:focus ~ label svg { color: var(--aqua-500); }

/* Phone prefix */
.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(--navy-950);
  background: var(--bg-soft);
  padding: 6px 10px;
  border-radius: 8px;
  letter-spacing: 0.02em;
  pointer-events: none;
  z-index: 1;
}

/* Address expander */
.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(--navy-900);
  cursor: pointer;
  transition: 0.2s;
}
.address-toggle:hover { border-color: var(--aqua-500); background: rgba(0,180,216,0.06); }
.address-toggle > svg:first-child { width: 16px; height: 16px; color: var(--aqua-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 (total + CTA) */
.checkout-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: stretch;
  padding: 14px;
  margin-top: 18px;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  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: #cfd9e6;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.checkout-total strong {
  font-family: 'Cairo', sans-serif;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #fbbf24 0%, #ff7849 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;
  transition: 0.2s;
  box-shadow: var(--shadow-coral);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}
.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); box-shadow: 0 22px 50px rgba(255, 94, 58, 0.5); }
.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 micro-bar */
.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);
}

.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; }

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

/* ============================================================
   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: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover { border-color: var(--aqua-500); box-shadow: var(--shadow-sm); }
.faq-item.open { border-color: var(--aqua-500); box-shadow: var(--shadow-md); }
.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(--navy-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(--aqua-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(--aqua-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(--navy-950);
  color: #cfd9e6;
  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: #a8b3c8; }
.footer .socials { display: flex; justify-content: center; gap: 12px; margin: 20px 0; }
.footer .socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease;
}
.footer .socials a:hover { background: var(--aqua-500); }
.footer .socials svg { width: 18px; height: 18px; }
.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.95);
  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; }
  .showcase-row { grid-template-columns: 1fr; gap: 30px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .float-chip.top { left: -4%; }
  .float-chip.bottom { right: -2%; }
  .float-chip.mid { display: none; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .hero { padding: 50px 0 70px; }
  .features-grid { grid-template-columns: 1fr; }
  .order-card { padding: 22px 18px; border-radius: 22px; }
  .price-now { font-size: 34px; }
  .btn-order-top { padding: 9px 14px; font-size: 13px; }
  .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; }
  .checkout-total strong { font-size: 22px; }
  .form-trust { gap: 12px; }
  .form-trust span { font-size: 11px; }
}
