/* ========== المتغيرات الأساسية ========== */
:root {
  --navy: #0f1b3d;
  --navy-2: #1a2b5c;
  --navy-3: #243875;
  --gold: #7c828d;
  --gold-2: #9ba0a8;
  --gold-3: #5a5f68;
  --cream: #f4f3f0;
  --cream-2: #faf9f7;
  --beige: #e4e2dd;
  --ink: #0a0e1a;
  --ink-2: #2a2f3e;
  --muted: #6b7080;
  --line: #e0ded8;
  --green: #25d366;
  --shadow-sm: 0 2px 8px rgba(15, 27, 61, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 27, 61, 0.10);
  --shadow-lg: 0 20px 50px rgba(15, 27, 61, 0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --container: 1200px;
}

/* ========== Reset ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cairo', 'Tajawal', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }
ul { list-style: none; }

/* ========== Layout ========== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: 820px; }

/* ========== Top Bar ========== */
.top-bar {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-2) 50%, var(--navy) 100%);
  color: #fff;
  overflow: hidden;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
}
.top-bar__track {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  animation: scroll-rtl 30s linear infinite;
  width: max-content;
}
.top-bar__track span { display: inline-block; }
@keyframes scroll-rtl {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* ========== Header ========== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.5px;
}
.logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 8px;
  font-size: 18px;
}
.logo__text { color: var(--navy); }
.logo__text span { color: var(--gold); }
.nav { display: flex; gap: 28px; }
.nav a {
  font-weight: 600;
  color: var(--ink-2);
  transition: color 0.2s;
  font-size: 15px;
}
.nav a:hover { color: var(--navy); }
.header__cta { padding: 10px 18px; font-size: 14px; }

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  font-family: inherit;
}
.btn--primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 8px 20px rgba(15, 27, 61, 0.25);
}
.btn--primary:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 27, 61, 0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover {
  background: var(--navy);
  color: #fff;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: var(--navy);
  border-color: var(--gold-3);
  box-shadow: 0 8px 20px rgba(212, 168, 87, 0.35);
  font-weight: 800;
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 168, 87, 0.5);
}
.btn--whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #20bd5a 100%);
  color: #fff;
  border-color: #1da851;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  font-weight: 800;
}
.btn--whatsapp:hover {
  background: linear-gradient(135deg, #20bd5a 0%, #1da851 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
}
.btn--whatsapp .btn__wa-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}
.btn--xl { padding: 16px 30px; font-size: 16px; }
.btn--block { width: 100%; }
.btn__icon { font-size: 1.15em; }

/* ========== Hero ========== */
.hero {
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 87, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(15, 27, 61, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: var(--navy);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(212, 168, 87, 0.3);
}
.hero__title { line-height: 1.1; margin-bottom: 20px; }
.hero__title-top {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 6px;
}
.hero__title-big {
  display: block;
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1px;
}
.hero__title-accent {
  display: block;
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-3) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 4px;
}
.hero__sub {
  font-size: 17px;
  color: var(--ink-2);
  margin-bottom: 28px;
  font-weight: 500;
  line-height: 1.7;
}
.hero__content {
  grid-column: 1;
}
.hero__bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: grid;
  gap: 12px;
}
.hero__bullet-list li {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.hero__bullet-list li strong {
  color: var(--navy);
  font-weight: 800;
}

.price-box {
  background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.price-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(212, 168, 87, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.price-box__old {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--muted);
  position: relative;
  z-index: 1;
}
.price-box__save {
  background: #d62828;
  color: #fff;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
}
.price-box__main {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.price-box__amount {
  font-size: 64px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -2px;
}
.price-box__currency {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-2);
}
.price-box__hint {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.hero__actions .btn { flex: 1; min-width: 220px; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
}
.trust-row__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
}
.trust-row__icon { font-size: 18px; }

.hero__visual {
  grid-column: 2;
  position: relative;
}
.hero__visual-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, var(--beige) 100%);
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: transform 0.5s ease;
}
.hero__visual-card:hover { transform: rotate(0deg) scale(1.02); }
.hero__visual-card img {
  width: 100%;
  height: auto;
  display: block;
}
.hero__visual-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 90px;
  height: 90px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transform: rotate(8deg);
}
.hero__visual-tag-num {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}
.hero__visual-tag-text {
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  color: #fff;
}
.hero__visual-stamp {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transform: rotate(-4deg);
}

/* ========== Trust Bar ========== */
.trust-bar {
  background: var(--navy);
  color: #fff;
  padding: 32px 0;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-bar__icon {
  font-size: 32px;
  width: 56px;
  height: 56px;
  background: rgba(212, 168, 87, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-bar__item strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 2px;
}
.trust-bar__item span {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* ========== Section Head ========== */
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.section-head__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--gold-3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  background: rgba(212, 168, 87, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
}
.section-head__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.section-head__sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

/* ========== Features ========== */
.features {
  padding: 80px 0;
  background: var(--cream-2);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: #fff;
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.feature__icon {
  font-size: 36px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--gold);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* ========== Colors ========== */
.colors {
  padding: 80px 0;
  background: #fff;
}
.colors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.color-card {
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}
.color-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

/* بطاقات الألوان المُلوّنة */
.color-card--gray {
  background: linear-gradient(160deg, #ffffff 0%, #e8ebf0 60%, #c9d0db 100%);
  border-color: #d1d6e0;
}
.color-card--gray:hover { border-color: #6b7080; }
.color-card--gray .color-card__body h3 { color: #3a4151; }
.color-card--black {
  background: linear-gradient(160deg, #2a2a2a 0%, #0a0a0a 60%, #1a1a1a 100%);
  border-color: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.color-card--black .color-card__image {
  background: linear-gradient(180deg, #f5f5f5 0%, #d4d4d4 100%);
}
.color-card--black .color-card__body h3 { color: #fff; }
.color-card--black .color-card__body p { color: rgba(255,255,255,0.85); }
.color-card--black::after {
  content: '✨ الأكثر أناقة';
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: var(--navy);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(212, 168, 87, 0.4);
}
.color-card--navy {
  background: linear-gradient(160deg, #2a3f5f 0%, #0f1f3d 60%, #1a2b4a 100%);
  border-color: #0a1a33;
  box-shadow: 0 10px 30px rgba(15, 27, 61, 0.3);
}
.color-card--navy .color-card__image {
  background: linear-gradient(180deg, #f0f3f7 0%, #d4dae3 100%);
}
.color-card--navy .color-card__body h3 { color: #fff; }
.color-card--navy .color-card__body p { color: rgba(255,255,255,0.85); }
.color-card__image {
  aspect-ratio: 4/5; /* 4:5 ratio باش يوافق الصور */
  overflow: hidden;
  background: #fff;
}
.color-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.color-card:hover .color-card__image img { transform: scale(1.05); }
.color-card__body { padding: 22px 24px; }
.color-card__body h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.color-card__body p {
  font-size: 14px;
  color: var(--muted);
}

.detail-card {
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 50px;
  color: #fff;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.detail-card::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 168, 87, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.detail-card__header {
  text-align: center;
  position: relative;
  z-index: 1;
}
.detail-card__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.detail-card__header h3 {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
}
.detail-card__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 12px auto 0;
}
.detail-card__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}
.detail-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  border-right: 4px solid var(--gold);
}
.detail-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-right-color: var(--gold-2);
}
.detail-item__icon {
  font-size: 28px;
  width: 54px;
  height: 54px;
  background: rgba(212, 168, 87, 0.1);
  border: 1px solid rgba(212, 168, 87, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.detail-item__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.detail-item__content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-2);
}
.detail-item__content p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

/* ========== Order Form ========== */
.order {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
}
.order--top {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.order--top::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 87, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.order--top::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.order--top .section-head__eyebrow { color: var(--gold-2); background: rgba(212, 168, 87, 0.2); }
.order--top .section-head__title { color: #fff; }
.order--top .section-head__sub { color: rgba(255,255,255,0.8); }
.order__head { text-align: center; margin-bottom: 50px; position: relative; z-index: 1; }

/* ========== Tabs (Two Options) ========== */
.order-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}
.order-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  color: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
  text-align: right;
  position: relative;
  backdrop-filter: blur(10px);
}
.order-tab:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(212, 168, 87, 0.5);
  transform: translateY(-2px);
}
.order-tab.active {
  background: #fff;
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.order-tab__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 211, 102, 0.2);
  border-radius: 14px;
  flex-shrink: 0;
  color: #4ade80;
}
.order-tab.active .order-tab__icon {
  background: #25d366;
  color: #fff;
}
.order-tab__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.order-tab__body strong {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}
.order-tab__body span {
  font-size: 12.5px;
  opacity: 0.8;
  line-height: 1.3;
}
.order-tab__check {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
  opacity: 0.4;
}
.order-tab.active .order-tab__check {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  opacity: 1;
}

/* ========== Panel Containers ========== */
.order-panel {
  display: none;
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  animation: fadeIn 0.35s ease;
}
.order-panel--active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== WhatsApp Panel ========== */
.wa-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.wa-panel__preview {
  background: #efeae3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.wa-panel__preview-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #075e54;
  color: #fff;
}
.wa-panel__avatar {
  width: 42px;
  height: 42px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.wa-panel__preview-header strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}
.wa-panel__preview-header span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}
.wa-panel__bubble {
  position: relative;
  background: #dcf8c6;
  margin: 16px 18px 18px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #303030;
  box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
  border-top-right-radius: 0;
}
.wa-panel__bubble p { margin-bottom: 6px; }
.wa-panel__bubble p:last-of-type { margin-bottom: 0; }
.wa-panel__bubble strong { font-weight: 700; }
.wa-panel__time {
  display: block;
  text-align: left;
  font-size: 11px;
  color: #888;
  margin-top: 6px;
}
.size-inline {
  display: inline-flex;
  gap: 4px;
  margin: 0 4px;
  vertical-align: middle;
}
.size-inline span {
  display: inline-block;
  background: #25d366;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
}
.wa-panel__action h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 18px;
}
.wa-panel__action ul {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}
.wa-panel__action li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.wa-panel__hint {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin-top: 14px;
}

/* ========== Size Header with Guide Button ========== */
.size-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 12px;
}
.size-header .order-form__label { margin-bottom: 0; }
.size-guide-btn {
  background: var(--cream-2);
  border: 2px solid var(--line);
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  white-space: nowrap;
}
.size-guide-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* ========== Size Cards with CM info ========== */
.size-card {
  cursor: pointer;
  position: relative;
}
.size-card input { position: absolute; opacity: 0; pointer-events: none; }
.size-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  height: 64px;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream-2);
  transition: all 0.2s ease;
  padding: 4px;
}
.size-card__size {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: var(--ink-2) !important;
  line-height: 1;
}
.size-card__cm {
  font-size: 11px !important;
  font-weight: 600 !important;
  color: var(--muted) !important;
  line-height: 1;
}
.size-card:hover .size-card__inner { border-color: var(--navy); }
.size-card input:checked + .size-card__inner {
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: 0 4px 12px rgba(15, 27, 61, 0.3);
}
.size-card input:checked + .size-card__inner .size-card__size,
.size-card input:checked + .size-card__inner .size-card__cm {
  color: var(--gold) !important;
}

/* ========== Size Guide Modal ========== */
.size-guide-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.25s ease;
}
.size-guide-modal.active { display: flex; }
.size-guide-modal__content {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  max-width: 480px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.size-guide-modal__close {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--cream-2);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 300;
  color: var(--ink-2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.2s;
}
.size-guide-modal__close:hover {
  background: var(--gold);
  color: var(--navy);
}
.size-guide-modal__content h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.size-guide-modal__sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.size-guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.size-guide-table th,
.size-guide-table td {
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.size-guide-table th {
  background: var(--navy);
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  border: none;
}
.size-guide-table th:first-child { border-top-right-radius: 8px; }
.size-guide-table th:last-child { border-top-left-radius: 8px; }
.size-guide-table tr:hover td { background: var(--cream-2); }
.size-guide-table td:first-child { font-size: 16px; }
.size-guide-modal__tip {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(212, 168, 87, 0.1);
  border-right: 3px solid var(--gold);
  border-radius: 8px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
}

/* ========== Form Featured (البارز) ========== */
.order-form--featured {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 3px solid var(--gold);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}
.order-form--featured::before {
  content: '⭐ الطريقة المُوصى بها';
  position: absolute;
  top: -16px;
  right: 30px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: var(--navy);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(212, 168, 87, 0.4);
  white-space: nowrap;
}

.btn--submit-form {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%) !important;
  border-color: var(--navy) !important;
  color: #fff !important;
  font-size: 17px !important;
  font-weight: 900 !important;
  padding: 18px 24px !important;
  box-shadow: 0 8px 20px rgba(15, 27, 61, 0.35) !important;
}
.btn--submit-form:hover {
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy-3) 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 28px rgba(15, 27, 61, 0.45) !important;
}

/* ========== Order Success Message ========== */
.order-success {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  border: 3px solid #4ade80;
  position: relative;
  z-index: 1;
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes successPop {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}
.order-success__icon {
  font-size: 80px;
  margin-bottom: 16px;
  animation: bounce 0.8s ease infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.order-success h3 {
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}
.order-success > p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.order-success__details {
  background: var(--cream-2);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 28px;
  text-align: right;
}
.order-success__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14.5px;
}
.order-success__row:last-child { border-bottom: none; }
.order-success__row span { color: var(--muted); }
.order-success__row strong { color: var(--navy); font-weight: 800; }
.order-success__row--total {
  margin-top: 8px;
  padding-top: 14px !important;
  border-top: 2px solid var(--gold) !important;
  border-bottom: none !important;
  font-size: 18px !important;
}
.order-success__row--total strong { color: var(--gold-3); font-size: 22px; }
.order-success__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ========== WhatsApp Fallback (الخيار الثانوي) ========== */
.wa-fallback {
  max-width: 720px;
  margin: 40px auto 0;
  position: relative;
  z-index: 1;
}
.wa-fallback__divider {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.wa-fallback__divider::before,
.wa-fallback__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.wa-fallback__divider span {
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 700;
}
.wa-fallback__content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.wa-fallback__content h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}
.wa-fallback__content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ========== Color Card Badge & Price ========== */
.color-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(212, 168, 87, 0.4);
}
.color-card__price {
  display: inline-block;
  margin-top: 10px;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}
.color-card--black .color-card__price { background: var(--gold); color: var(--navy); }
.color-card--navy .color-card__price { background: var(--gold); color: var(--navy); }
.order__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 30px;
  align-items: start;
}
.order-form {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.order-form__row { margin-bottom: 18px; }
.order-form__row--note textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 16px; /* 16px minimum باش iOS ما يعملش زووم */
  resize: vertical;
  font-family: inherit;
  transition: border-color 0.2s;
}
.order-form__row--note textarea:focus { outline: none; border-color: var(--navy); }
.order-form__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.order-form__label span { color: #d62828; }
.order-form input[type="text"],
.order-form input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 16px; /* 16px minimum باش iOS ما يعملش زووم أوتوماتيكي */
  transition: border-color 0.2s;
  background: var(--cream-2);
  font-family: inherit;
  min-height: 48px; /* مساحة كافية للمس */
}
.order-form input[type="text"]:focus,
.order-form input[type="tel"]:focus {
  outline: none;
  border-color: var(--navy);
  background: #fff;
}
.order-form__group { margin-bottom: 20px; }
.option-grid { display: grid; gap: 12px; }
.option-card {
  display: block;
  cursor: pointer;
}
.option-card input { position: absolute; opacity: 0; pointer-events: none; }
.option-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream-2);
  transition: all 0.2s ease;
  position: relative;
}
.option-card input:checked + .option-card__body {
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(15, 27, 61, 0.08);
}
.option-card__body strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}
.option-card__body span { font-size: 14px; color: var(--muted); }
.option-card__body em {
  position: absolute;
  top: 18px;
  left: 20px;
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-3);
  background: rgba(212, 168, 87, 0.15);
  padding: 2px 10px;
  border-radius: 999px;
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
}
.size-card {
  cursor: pointer;
  position: relative;
}
.size-card input { position: absolute; opacity: 0; pointer-events: none; }
.size-card__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 800;
  color: var(--ink-2);
  background: var(--cream-2);
  transition: all 0.2s ease;
  min-width: 48px; /* Touch target 48px minimum */
}
.size-card:hover .size-card__inner { border-color: var(--navy); }
.size-card input:checked + .size-card__inner {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--gold);
}

.order-form__summary {
  background: var(--cream-2);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 24px 0;
}
.order-form__summary > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 15px;
  color: var(--ink-2);
}
.order-form__summary > div strong { font-weight: 800; }
.order-form__summary .free { color: #1a7f37; }
.order-form__total {
  border-top: 1px dashed var(--line);
  margin-top: 8px;
  padding-top: 14px !important;
  font-size: 18px !important;
}
.order-form__total strong {
  font-size: 24px;
  color: var(--navy);
}
.order-form__fine {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

.order-aside { display: grid; gap: 20px; position: sticky; top: 90px; }
.order-aside__card,
.order-aside__urgency,
.order-aside__contact {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.order-aside__card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.order-aside__card ul { display: grid; gap: 10px; }
.order-aside__card li {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 6px;
}
.order-aside__urgency {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border: 2px solid #ffc1c1;
  display: flex;
  align-items: center;
  gap: 14px;
}
.order-aside__urgency-icon {
  font-size: 28px;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.order-aside__urgency strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #c1272d;
  margin-bottom: 2px;
}
.order-aside__urgency span { font-size: 13px; color: var(--ink-2); }
.order-aside__contact p {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 12px;
  font-weight: 600;
}
.order-aside__contact .btn { width: 100%; }

/* ========== Reviews ========== */
.reviews {
  padding: 80px 0;
  background: #fff;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.review {
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.review__stars {
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.review p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.review__author strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
}
.review__author span { font-size: 12px; color: var(--muted); }

/* ========== FAQ ========== */
.faq {
  padding: 80px 0;
  background: var(--cream-2);
}
.faq__list {
  display: grid;
  gap: 12px;
}
.faq__item {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 0.2s ease;
}
.faq__item[open] { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  width: 30px;
  height: 30px;
  background: var(--cream-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq__item[open] summary::after { content: '−'; transform: rotate(180deg); }
.faq__item p {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.7;
}

/* ========== Final CTA ========== */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 50%, var(--navy-3) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before,
.final-cta::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 87, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.final-cta::before { top: -200px; right: -200px; }
.final-cta::after { bottom: -200px; left: -200px; }
.final-cta__inner { position: relative; z-index: 1; }
.final-cta h2 {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.final-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  font-weight: 500;
}
.final-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.final-cta__actions .btn { min-width: 240px; }

@media (max-width: 768px) {
  .final-cta__actions { flex-direction: column; align-items: stretch; }
  .final-cta__actions .btn { width: 100%; min-width: 0; }
}

/* ========== Footer ========== */
.footer {
  background: #050913;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer__col p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 14px;
}
.logo--footer { color: #fff; }
.logo--footer .logo__mark { background: var(--gold); color: var(--navy); }
.logo--footer .logo__text { color: #fff; }
.footer__col h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 18px;
}
.footer__col ul { display: grid; gap: 10px; }
.footer__col li { font-size: 14px; }
.footer__col a:hover { color: var(--gold); }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s;
}
.socials a:hover { background: var(--gold); color: var(--navy); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
}
.footer__bottom p { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ========== Float WhatsApp ========== */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 60px;
  height: 60px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: transform 0.3s ease;
}
.float-whatsapp:hover { transform: scale(1.1); }
.float-whatsapp svg { width: 30px; height: 30px; }
.float-whatsapp__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ========== Responsive ========== */

/* تابلت */
@media (max-width: 1024px) {
  .hero__grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px;
  }
  .hero__visual {
    order: -1 !important;
  }
  .hero__content {
    order: 1 !important;
  }
  .hero__visual-card { max-width: 500px; margin: 0 auto; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .colors__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .order__grid { grid-template-columns: 1fr; }
  .order-aside { position: static; }
  .detail-card { padding: 40px 30px; }
  .detail-card__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .nav { display: none; }
}

/* موبايل كبير */
@media (max-width: 768px) {
  html { font-size: 15px; }
  body { font-size: 15px; line-height: 1.65; }
  .container { padding: 0 18px; }
  .hero { padding: 32px 0 50px; }
  .hero__title-big { font-size: 36px; letter-spacing: -0.5px; }
  .hero__title-accent { font-size: 26px; }
  .hero__title-top { font-size: 18px; }
  .hero__sub { font-size: 15px; margin-bottom: 22px; }
  .badge { font-size: 12px; padding: 5px 14px; margin-bottom: 16px; }
  .price-box { padding: 20px; margin-bottom: 22px; }
  .price-box__amount { font-size: 52px; }
  .price-box__currency { font-size: 18px; }
  .price-box__old { font-size: 13px; flex-wrap: wrap; gap: 8px; }
  .price-box__hint { font-size: 13px; }
  .hero__actions { gap: 10px; margin-bottom: 24px; }
  .hero__actions .btn { min-width: 100%; width: 100%; }
  .trust-row { grid-template-columns: 1fr; gap: 10px; padding-top: 18px; }
  .trust-row__item { font-size: 13px; }
  .trust-row__icon { font-size: 16px; }
  .hero__visual-tag { width: 70px; height: 70px; }
  .hero__visual-tag-num { font-size: 26px; }
  .hero__visual-tag-text { font-size: 9px; }
  .hero__visual-stamp { font-size: 11px; padding: 6px 12px; }

  /* Trust bar */
  .trust-bar { padding: 24px 0; }
  .trust-bar__grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .trust-bar__item { gap: 10px; }
  .trust-bar__icon { width: 46px; height: 46px; font-size: 22px; border-radius: 12px; }
  .trust-bar__item strong { font-size: 14px; }
  .trust-bar__item span { font-size: 12px; }

  /* Sections common */
  .features, .colors, .order, .reviews, .faq, .final-cta { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head__title { font-size: 26px; margin-bottom: 10px; }
  .section-head__sub { font-size: 14px; }
  .section-head__eyebrow { font-size: 11px; padding: 5px 12px; }

  /* Features */
  .features__grid { grid-template-columns: 1fr; gap: 14px; }
  .feature { padding: 24px 22px; }
  .feature__icon { width: 54px; height: 54px; font-size: 28px; border-radius: 14px; margin-bottom: 14px; }
  .feature h3 { font-size: 17px; }
  .feature p { font-size: 14px; }

  /* Colors */
  .colors__grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
  .color-card__body { padding: 18px 20px; }
  .color-card__body h3 { font-size: 17px; }

  /* Detail card */
  .detail-card { padding: 30px 20px; gap: 24px; border-radius: var(--radius-lg); margin-bottom: 40px; }
  .detail-card__header h3 { font-size: 24px; }
  .detail-card__subtitle { font-size: 14px; margin-top: 8px; }
  .detail-card__grid { grid-template-columns: 1fr; gap: 16px; }
  .detail-item { padding: 18px; gap: 12px; }
  .detail-item__icon { width: 44px; height: 44px; font-size: 22px; }
  .detail-item__content h4 { font-size: 16px; }
  .detail-item__content p { font-size: 13px; }
  .detail-card__eyebrow { font-size: 11px; }

  /* Order form */
  .order__head { margin-bottom: 32px; }
  .order--top .section-head__title { font-size: 24px; }
  .order-tabs { grid-template-columns: 1fr; gap: 10px; margin-bottom: 24px; }
  .order-tab { padding: 16px 18px; }
  .order-tab__icon { width: 44px; height: 44px; }
  .order-tab__body strong { font-size: 15px; }
  .order-tab__body span { font-size: 12px; }
  .wa-panel { grid-template-columns: 1fr; gap: 20px; }
  .wa-panel__preview { max-width: 360px; margin: 0 auto; width: 100%; }
  .wa-panel__action h3 { font-size: 20px; }
  .wa-panel__action li { font-size: 14px; }
  .size-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .size-guide-btn { align-self: flex-start; }
  .size-card__inner { height: 56px; }
  .size-card__size { font-size: 16px !important; }
  .size-card__cm { font-size: 10px !important; }
  .size-guide-modal__content { padding: 24px 20px; }
  .size-guide-modal__content h3 { font-size: 19px; }
  .size-guide-table { font-size: 13px; }
  .size-guide-table th, .size-guide-table td { padding: 10px 6px; }
  .order-form { padding: 22px; border-radius: var(--radius-lg); }
  /* Form featured */
  .order-form--featured::before { font-size: 11px; padding: 5px 14px; right: 20px; }
  .btn--submit-form { font-size: 15px !important; padding: 16px 18px !important; }
  /* Success */
  .order-success { padding: 32px 22px; border-radius: var(--radius-lg); }
  .order-success__icon { font-size: 60px; margin-bottom: 12px; }
  .order-success h3 { font-size: 22px; }
  .order-success > p { font-size: 14px; margin-bottom: 22px; }
  .order-success__details { padding: 16px; margin-bottom: 22px; }
  .order-success__row { font-size: 13.5px; }
  .order-success__row--total strong { font-size: 18px; }
  .order-success__actions { grid-template-columns: 1fr; }
  /* WA fallback */
  .wa-fallback { margin-top: 30px; }
  .wa-fallback__content { padding: 20px; }
  .wa-fallback__content h4 { font-size: 16px; }
  .wa-fallback__content p { font-size: 13px; }
  .order-form__row { margin-bottom: 14px; }
  .order-form__label { font-size: 13px; margin-bottom: 6px; }
  .order-form input[type="text"],
  .order-form input[type="tel"] { padding: 13px 14px; font-size: 15px; }
  .order-form__row--note textarea { padding: 12px 14px; font-size: 14px; }
  .option-card__body { padding: 16px 18px; }
  .option-card__body strong { font-size: 15px; }
  .option-card__body span { font-size: 13px; }
  .option-card__body em { font-size: 11px; padding: 2px 8px; top: 14px; left: 14px; }
  .size-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .size-card__inner { height: 50px; font-size: 14px; border-radius: 12px; }
  .order-form__summary { padding: 16px; margin: 20px 0; }
  .order-form__summary > div { font-size: 14px; padding: 6px 0; }
  .order-form__total strong { font-size: 20px; }
  .order-form__fine { font-size: 11px; }

  /* Order aside */
  .order-aside { gap: 14px; }
  .order-aside__card, .order-aside__urgency, .order-aside__contact { padding: 20px; }
  .order-aside__card h3 { font-size: 16px; }
  .order-aside__card li { font-size: 13px; }
  .order-aside__urgency-icon { width: 44px; height: 44px; font-size: 22px; }
  .order-aside__urgency strong { font-size: 14px; }
  .order-aside__urgency span { font-size: 12px; }

  /* Reviews */
  .reviews__grid { grid-template-columns: 1fr; gap: 14px; }
  .review { padding: 22px 20px; }
  .review p { font-size: 14px; }
  .review__stars { font-size: 15px; }

  /* FAQ */
  .faq__item summary { padding: 16px 20px; font-size: 15px; }
  .faq__item p { padding: 0 20px 18px; font-size: 14px; }

  /* Final CTA */
  .final-cta { padding: 56px 0; }
  .final-cta h2 { font-size: 28px; }
  .final-cta p { font-size: 15px; margin-bottom: 24px; }

  /* Footer */
  .footer { padding: 48px 0 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer__col h4 { font-size: 15px; margin-bottom: 14px; }
  .footer__col li { font-size: 13px; }
  .footer__col p { font-size: 13px; }
  .socials a { width: 38px; height: 38px; font-size: 16px; }
  .footer__bottom { padding: 20px 0; }
  .footer__bottom p { font-size: 12px; }

  /* Top bar */
  .top-bar { font-size: 12px; padding: 7px 0; }

  /* Header */
  .header__inner { height: 62px; gap: 10px; }
  .logo { font-size: 16px; gap: 6px; }
  .logo__mark { width: 32px; height: 32px; font-size: 15px; border-radius: 7px; }
  .header__cta { padding: 9px 14px; font-size: 12.5px; }
  .header__cta .btn__icon { font-size: 1em; }

  /* Float WhatsApp */
  .float-whatsapp { width: 56px; height: 56px; bottom: 18px; left: 18px; box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5); }
  .float-whatsapp svg { width: 28px; height: 28px; }
}

/* موبايل صغير */
@media (max-width: 480px) {
  html { font-size: 14px; }
  .container { padding: 0 14px; }
  .hero { padding: 24px 0 40px; }
  .hero__title-big { font-size: 30px; }
  .hero__title-accent { font-size: 22px; }
  .hero__title-top { font-size: 16px; }
  .price-box { padding: 18px; }
  .price-box__amount { font-size: 44px; }
  .price-box__currency { font-size: 16px; }
  .section-head__title { font-size: 22px; }
  .features, .colors, .order, .reviews, .faq, .final-cta { padding: 44px 0; }
  .order-form { padding: 18px; }
  .detail-card { padding: 22px 14px; gap: 20px; }
  .size-card__inner { height: 46px; font-size: 13px; }
  .final-cta h2 { font-size: 24px; }
  .btn--xl { padding: 14px 22px; font-size: 15px; }
  .hero__visual-tag { width: 60px; height: 60px; top: 16px; right: 16px; }
  .hero__visual-tag-num { font-size: 22px; }
  .hero__visual-tag-text { font-size: 8px; }
  .hero__visual-stamp { bottom: 16px; left: 16px; font-size: 10px; padding: 5px 10px; }
  .float-whatsapp { width: 52px; height: 52px; bottom: 14px; left: 14px; }
  .float-whatsapp svg { width: 26px; height: 26px; }
}

/* موبايل صغير جداً */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .hero__title-big { font-size: 26px; }
  .price-box__amount { font-size: 38px; }
  .size-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .size-card__inner { height: 42px; }
  .size-card__size { font-size: 11px !important; }
  .size-card__cm { font-size: 8px !important; }
  .btn--xl { padding: 12px 18px; font-size: 14px; }
}

/* ضمان جميع الصور responsive */
img { max-width: 100%; height: auto; }

/* تحسينات اللمس للموبايل */
@media (hover: none) and (pointer: coarse) {
  .btn:active { transform: scale(0.97); }
  .feature:active,
  .color-card:active,
  .review:active { transform: scale(0.98); }
  /* منع hover effects على اللمس */
  .feature:hover,
  .color-card:hover,
  .review:hover { transform: none; }
}

/* ========== شريط CTA ثابت فأسفل الموبايل ========== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  padding: 14px 18px;
  align-items: center;
  gap: 12px;
  box-shadow: 0 -4px 25px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  font-family: inherit;
  border-top: 2px solid #4ade80;
  transition: transform 0.2s ease, background 0.3s ease;
  animation: stickyPulse 2.5s infinite;
}
.mobile-sticky-cta:active {
  transform: scale(0.98);
}
@keyframes stickyPulse {
  0% { box-shadow: 0 -4px 25px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 -4px 30px rgba(37, 211, 102, 0.7); }
  100% { box-shadow: 0 -4px 25px rgba(37, 211, 102, 0.35); }
}
.mobile-sticky-cta__icon {
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}
.mobile-sticky-cta__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: right;
}
.mobile-sticky-cta__text strong {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2px;
}
.mobile-sticky-cta__text span {
  font-size: 12px;
  opacity: 0.9;
  font-weight: 500;
}
.mobile-sticky-cta__arrow {
  font-size: 20px;
  font-weight: 900;
  flex-shrink: 0;
  animation: arrow-bounce 1.5s ease-in-out infinite;
}
@keyframes arrow-bounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-4px); }
}

@media (max-width: 768px) {
  .mobile-sticky-cta { display: flex; }
  /* مساحة إلافية فأسفل الصفحة باش الشريط ما يغطّيش المحتوى */
  body { padding-bottom: 76px; }
  /* إخفاء الزر العائم فالموبايل لأن الشريط الجديد كيكفي */
  .float-whatsapp { display: none; }
}

/* ========== Checkout Page Refinement (Low Friction) ========== */
.main-checkout-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  padding: 40px 20px;
  align-items: start;
}

.header__cta-minimal {
  font-size: 15px;
  color: var(--navy);
}

.header__cta-minimal strong {
  color: var(--gold-3);
  font-size: 16px;
}

.gallery-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.main-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
  border: 1px solid var(--line);
}

.main-image-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: opacity 0.2s ease;
}

.thumbnails-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.thumb-img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.thumb-img:hover, .thumb-img.active {
  border-color: var(--navy);
  transform: scale(1.03);
}

.checkout-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checkout-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.3;
}

.price-box--compact {
  padding: 15px;
  margin-bottom: 0;
  background: var(--cream-2);
  border: 1px dashed var(--gold);
}

.trust-bar-minimal {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  margin: 20px auto 40px;
  font-weight: 700;
  color: var(--navy);
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
}

.trust-bar-minimal div {
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 992px) {
  .main-checkout-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px 10px;
  }
  .header__cta-minimal {
    font-size: 13px;
    text-align: center;
  }
}
/* ==================================================
   تحسينات التحويل — عناصر جديدة
   ================================================== */

/* --- إثبات اجتماعي + نجوم --- */
.stars { color: #f5a623; letter-spacing: 1px; font-size: 15px; }
.social-proof {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px; margin-bottom: 14px;
}
.social-proof__stars { display: flex; align-items: center; gap: 6px; font-size: 14px; color: var(--ink-2); }
.social-proof__stars strong { color: var(--ink); }
.social-proof__count { color: var(--muted); font-size: 13px; }
.social-proof__live {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; color: #1f8f4e; font-weight: 700;
  background: #eafaf0; padding: 5px 10px; border-radius: 999px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #25d366;
  box-shadow: 0 0 0 0 rgba(37,211,102,.6); animation: pulseDot 1.6s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
  70% { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* --- عدّاد تنازلي --- */
.countdown {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  background: linear-gradient(135deg, #fff4e6, #ffe9d1);
  border: 1px solid #ffd9a8; border-radius: var(--radius-md);
  padding: 12px 16px; margin: 14px 0;
}
.countdown__label { font-weight: 800; color: #b5541a; font-size: 14px; }
.countdown__timer { display: flex; align-items: center; gap: 6px; }
.countdown__unit {
  display: flex; flex-direction: column; align-items: center;
  background: var(--navy); color: #fff; border-radius: 8px;
  padding: 6px 10px; min-width: 46px;
}
.countdown__unit b { font-size: 20px; line-height: 1; font-variant-numeric: tabular-nums; }
.countdown__unit small { font-size: 10px; opacity: .8; margin-top: 3px; }
.countdown__sep { font-weight: 800; color: var(--navy); font-size: 18px; }

/* --- عروض الباقات (Bundle) --- */
.offers { margin: 16px 0 4px; }
.offers__title { font-weight: 800; color: var(--ink); margin-bottom: 10px; font-size: 15px; }
.offer-card { display: block; position: relative; cursor: pointer; margin-bottom: 10px; }
.offer-card input { position: absolute; opacity: 0; pointer-events: none; }
.offer-card__inner {
  display: flex; align-items: center; gap: 12px;
  border: 2px solid var(--line); border-radius: var(--radius-md);
  padding: 14px 14px; background: #fff; transition: all .18s ease;
}
.offer-card__radio {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid var(--line); flex: 0 0 auto; position: relative; transition: all .18s;
}
.offer-card__info { flex: 1; display: flex; flex-direction: column; }
.offer-card__name { font-weight: 800; color: var(--ink); font-size: 15px; }
.offer-card__sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.offer-card__price { font-size: 14px; color: var(--muted); white-space: nowrap; }
.offer-card__price b { font-size: 20px; color: var(--navy); }
.offer-card input:checked + .offer-card__inner {
  border-color: var(--navy); background: #f6f8ff;
  box-shadow: 0 6px 18px rgba(15,27,61,.12);
}
.offer-card input:checked + .offer-card__inner .offer-card__radio {
  border-color: var(--navy); background: var(--navy);
  box-shadow: inset 0 0 0 4px #fff;
}
.offer-card__badge {
  position: absolute; top: -9px; right: 14px; z-index: 2;
  background: #1f8f4e; color: #fff; font-size: 11px; font-weight: 800;
  padding: 3px 10px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.offer-card__badge--gold { background: #b5541a; }
.offer-card--best .offer-card__inner { border-color: #cfe8d8; }

/* --- شريط طمأنة تحت زر الطلب --- */
.checkout-reassure {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  margin-top: 12px; font-size: 12.5px; color: var(--muted); font-weight: 600;
}

/* --- أقسام عامة --- */
.section { padding: 54px 0; }
.section--reviews { background: var(--cream-2); }
.section--guarantee { padding: 40px 0; }
.section--faq { background: var(--cream-2); }
.container--narrow { max-width: 760px; }
.section__title { text-align: center; font-size: 28px; font-weight: 900; color: var(--navy); margin: 0 0 6px; }
.section__title span { color: #b5541a; }
.section__sub { text-align: center; color: var(--muted); margin: 0 0 30px; font-size: 15px; }

/* --- الفوائد --- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px 20px; text-align: center; box-shadow: var(--shadow-sm);
}
.feature__icon { font-size: 34px; margin-bottom: 10px; }
.feature h3 { margin: 0 0 6px; font-size: 17px; color: var(--navy); font-weight: 800; }
.feature p { margin: 0; color: var(--ink-2); font-size: 14px; line-height: 1.7; }

/* --- ملخص التقييمات --- */
.reviews-summary {
  display: flex; align-items: center; gap: 30px; flex-wrap: wrap; justify-content: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px 26px; margin-bottom: 26px; box-shadow: var(--shadow-sm);
}
.reviews-summary__score { text-align: center; display: flex; flex-direction: column; gap: 4px; }
.reviews-summary__score strong { font-size: 46px; line-height: 1; color: var(--navy); }
.reviews-summary__count { font-size: 12.5px; color: var(--muted); }
.reviews-summary__bars { flex: 1; min-width: 240px; display: flex; flex-direction: column; gap: 6px; }
.rbar { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--muted); }
.rbar span { width: 26px; }
.rbar i { flex: 1; height: 8px; background: var(--beige); border-radius: 999px; overflow: hidden; }
.rbar i b { display: block; height: 100%; background: #f5a623; border-radius: 999px; }
.rbar em { width: 34px; text-align: left; font-style: normal; }

/* --- بطاقات الآراء --- */
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 20px; box-shadow: var(--shadow-sm);
}
.review-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.review-card__avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: 0 0 auto;
  background: var(--navy); color: #fff; display: flex; align-items: center;
  justify-content: center; font-weight: 800; font-size: 17px;
}
.review-card__head strong { display: block; color: var(--ink); font-size: 15px; }
.review-card__meta { font-size: 12px; color: var(--muted); }
.review-card p { margin: 8px 0 0; color: var(--ink-2); font-size: 14px; line-height: 1.8; }

/* --- الضمان --- */
.guarantee-box {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff; border-radius: var(--radius-xl); padding: 30px 34px;
}
.guarantee-box__icon { font-size: 54px; flex: 0 0 auto; }
.guarantee-box__text h3 { margin: 0 0 8px; font-size: 21px; font-weight: 800; }
.guarantee-box__text p { margin: 0; font-size: 15px; line-height: 1.8; color: rgba(255,255,255,.9); }
.guarantee-box__text strong { color: #ffd9a8; }

/* --- FAQ --- */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq__item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 4px 18px; box-shadow: var(--shadow-sm);
}
.faq__item summary {
  cursor: pointer; padding: 14px 0; font-weight: 800; color: var(--navy);
  font-size: 15.5px; list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-size: 22px; color: #b5541a; font-weight: 700; }
.faq__item[open] summary::after { content: '−'; }
.faq__item p { margin: 0 0 14px; color: var(--ink-2); font-size: 14px; line-height: 1.8; }

/* --- ريسبونسيف --- */
@media (max-width: 768px) {
  .features { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .section { padding: 40px 0; }
  .section__title { font-size: 23px; }
  .countdown { justify-content: center; }
  .guarantee-box { padding: 24px; text-align: center; justify-content: center; }
  .guarantee-box__text { text-align: center; }
}

/* --- قسم تفاصيل المنتج (صور توضيحية) --- */
.product-details { display: flex; flex-direction: column; gap: 18px; }
.product-details img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  background: #fff;
}
