/* =========================================================
   RawasiShop — IPL Landing Page
   لوحة ألوان نسائية أنيقة: وردي + ذهبي + كريمي
   ========================================================= */

:root {
  --rose: #d6447a;
  --rose-deep: #b22e62;
  --rose-soft: #ff7eb0;
  --pink-bg: #fff5f8;
  --pink-bg-2: #ffe9f1;
  --gold: #c9a24a;
  --gold-light: #e7c878;
  --cream: #fffaf6;
  --plum: #3a1f2e;
  --ink: #4a3340;
  --muted: #8a6e7c;
  --white: #ffffff;
  --line: #f3d7e1;

  --grad-rose: linear-gradient(135deg, #ff7eb0 0%, #d6447a 100%);
  --grad-gold: linear-gradient(135deg, #e7c878 0%, #c9a24a 100%);
  --grad-soft: linear-gradient(180deg, #fff5f8 0%, #ffe9f1 100%);

  --shadow-sm: 0 4px 14px rgba(214, 68, 122, 0.10);
  --shadow-md: 0 12px 34px rgba(214, 68, 122, 0.16);
  --shadow-lg: 0 24px 60px rgba(178, 46, 98, 0.22);

  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1180px;

  --font-head: 'El Messiri', 'Tajawal', sans-serif;
  --font-body: 'Tajawal', sans-serif;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.narrow { max-width: 820px; }
.center { text-align: center; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--plum); line-height: 1.3; font-weight: 700; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 14px 28px; border-radius: 50px; cursor: pointer; border: none;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--grad-rose); color: #fff; box-shadow: 0 10px 24px rgba(214,68,122,.35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(214,68,122,.45); }
.btn-light { background: #fff; color: var(--rose); box-shadow: var(--shadow-md); }
.btn-light:hover { transform: translateY(-3px); }
.btn-lg { padding: 17px 38px; font-size: 1.08rem; }
.btn-block { width: 100%; }
.btn-header { padding: 11px 24px; }

/* ---------- Announcement bar ---------- */
.announcement-bar {
  background: var(--grad-gold); color: #4a3300; text-align: center;
  font-size: .9rem; font-weight: 600; padding: 9px 0; letter-spacing: .2px;
}
.announcement-bar .container { overflow: hidden; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line); transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 18px; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 12px; background: var(--grad-rose); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1.4rem;
  display: grid; place-items: center; box-shadow: 0 6px 14px rgba(214,68,122,.35);
}
.logo-text { font-family: var(--font-head); font-size: 1.4rem; color: var(--plum); font-weight: 600; }
.logo-text strong { color: var(--rose); }
.logo-light .logo-text { color: #fff; }

.main-nav { display: flex; gap: 26px; }
.main-nav a { font-weight: 500; color: var(--ink); position: relative; transition: color .2s; }
.main-nav a::after {
  content: ''; position: absolute; bottom: -6px; right: 0; width: 0; height: 2px;
  background: var(--rose); transition: width .25s ease;
}
.main-nav a:hover { color: var(--rose); }
.main-nav a:hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--plum); border-radius: 3px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--grad-soft); padding: 60px 0 120px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 85% 10%, rgba(255,126,176,.25), transparent 60%),
    radial-gradient(500px 380px at 5% 80%, rgba(231,200,120,.22), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.hero-badge {
  display: inline-block; background: #fff; color: var(--rose); font-weight: 700; font-size: .85rem;
  padding: 8px 18px; border-radius: 50px; box-shadow: var(--shadow-sm); margin-bottom: 22px;
  border: 1px solid var(--line);
}
.hero-title { font-size: clamp(2rem, 4.4vw, 3.3rem); margin-bottom: 18px; }
.hero-title .grad-text {
  display: block;
  background: var(--grad-rose); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: 1.12rem; color: var(--ink); max-width: 540px; margin-bottom: 22px; }
.hero-points { display: grid; gap: 8px; margin-bottom: 30px; }
.hero-points li { font-weight: 500; color: var(--plum); }

.hero-cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-price { display: flex; flex-direction: column; line-height: 1.2; }
.price-old { color: var(--muted); text-decoration: line-through; font-size: .95rem; }
.price-new { color: var(--rose-deep); font-weight: 800; font-size: 1.6rem; font-family: var(--font-head); }

.hero-trust { display: flex; align-items: center; gap: 10px; color: var(--ink); }
.hero-trust span:first-child { font-size: 1rem; letter-spacing: 2px; }
.trust-text strong { color: var(--rose-deep); }

/* Hero visual */
.hero-visual { display: grid; place-items: center; }
.product-stage { position: relative; width: 100%; max-width: 380px; aspect-ratio: 1; display: grid; place-items: center; }
.glow {
  position: absolute; inset: 8%; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,126,176,.55), rgba(255,126,176,0) 65%);
  filter: blur(6px); animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.06); opacity: 1; } }
.product-card {
  position: relative; z-index: 2; width: 86%; aspect-ratio: 1;
  background: radial-gradient(circle at 50% 45%, #fff 0%, #fff5f8 100%);
  border-radius: 32px; box-shadow: var(--shadow-lg);
  display: grid; place-items: center; padding: 16px; border: 1px solid var(--line);
}
.device-illustration { width: 100%; height: 100%; object-fit: contain; animation: floaty 5s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.product-flash {
  position: absolute; bottom: 16px; background: var(--grad-gold); color: #4a3300;
  font-size: .75rem; font-weight: 700; padding: 5px 14px; border-radius: 30px;
}
.float-tag {
  position: absolute; z-index: 3; background: #fff; color: var(--plum); font-weight: 700; font-size: .82rem;
  padding: 9px 15px; border-radius: 14px; box-shadow: var(--shadow-md); border: 1px solid var(--line);
  animation: floaty 6s ease-in-out infinite;
}
.tag-1 { top: 6%; right: -4%; animation-delay: .3s; }
.tag-2 { top: 44%; left: -8%; animation-delay: .9s; }
.tag-3 { bottom: 8%; right: 2%; animation-delay: 1.4s; }

.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; }
.hero-wave svg { width: 100%; height: 70px; }

/* ---------- Trust strip ---------- */
.trust-strip { background: #fff; padding: 26px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-item { display: flex; align-items: center; gap: 12px; justify-content: center; }
.ti-ico { font-size: 1.8rem; }
.trust-item strong { display: block; color: var(--plum); font-size: .98rem; }
.trust-item small { color: var(--muted); }

/* ---------- Generic section ---------- */
.section { padding: 80px 0; }
.eyebrow {
  display: inline-block; color: var(--rose); font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; font-size: .82rem; margin-bottom: 12px;
}
.section-title { font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin-bottom: 14px; }
.lead { font-size: 1.12rem; color: var(--ink); }
.center .lead { margin-inline: auto; max-width: 640px; }

/* ---------- Problem ---------- */
.problem { background: var(--cream); }

/* ---------- Features ---------- */
.features { background: var(--pink-bg); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 46px; }
.feature-card {
  background: #fff; border-radius: var(--radius); padding: 32px 26px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); transition: transform .3s ease, box-shadow .3s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-ico {
  width: 60px; height: 60px; border-radius: 16px; background: var(--pink-bg-2);
  display: grid; place-items: center; font-size: 1.7rem; margin-bottom: 18px;
}
.feature-card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.feature-card p { color: var(--muted); }

/* ---------- How ---------- */
.how { background: var(--cream); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 46px; }
.step-card {
  position: relative; background: var(--grad-soft); border-radius: var(--radius); padding: 40px 26px 30px;
  text-align: center; border: 1px solid var(--line);
}
.step-num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--grad-rose); color: #fff;
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 700;
  display: grid; place-items: center; margin: 0 auto 16px; box-shadow: 0 8px 18px rgba(214,68,122,.35);
}
.step-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step-card p { color: var(--muted); }

/* ---------- Results ---------- */
.results { background: var(--pink-bg); }
.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.result-stats { display: flex; gap: 28px; margin: 26px 0; flex-wrap: wrap; }
.stat strong { display: block; font-family: var(--font-head); font-size: 1.9rem; color: var(--rose-deep); }
.stat span { color: var(--muted); font-size: .9rem; }

.ba-card {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; height: 320px;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
}
.ba-before { background: linear-gradient(135deg, #cdb6c0, #a98a98); }
.ba-after { background: var(--grad-rose); }
.ba-before, .ba-after { display: grid; place-items: center; }
.ba-before span, .ba-after span {
  color: #fff; font-family: var(--font-head); font-size: 1.5rem; font-weight: 700;
  background: rgba(0,0,0,.18); padding: 6px 22px; border-radius: 30px;
}
.ba-divider {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 54px; height: 54px; border-radius: 50%; background: #fff; color: var(--rose);
  display: grid; place-items: center; font-weight: 800; box-shadow: var(--shadow-md);
}

/* ---------- Reviews ---------- */
.reviews { background: var(--cream); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 46px; }
.review-card {
  background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.stars { letter-spacing: 2px; margin-bottom: 12px; font-size: .9rem; }
.review-card p { color: var(--ink); margin-bottom: 18px; font-size: 1.02rem; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--grad-rose); color: #fff;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
}
.reviewer strong { display: block; color: var(--plum); }
.reviewer small { color: var(--muted); }

/* ---------- Order ---------- */
.order { background: var(--grad-soft); }
.order-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }

.offer-box {
  background: #fff; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md);
  border: 2px solid var(--line); position: relative;
}
.offer-badge {
  display: inline-block; background: var(--grad-rose); color: #fff; font-weight: 700; font-size: .85rem;
  padding: 7px 18px; border-radius: 30px; margin-bottom: 16px;
}
.offer-box h2 { font-size: 1.7rem; margin-bottom: 16px; }
.offer-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.op-old { color: var(--muted); text-decoration: line-through; font-size: 1.1rem; }
.op-new { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--rose-deep); }
.op-new small { font-size: 1rem; font-weight: 600; }
.op-save { width: 100%; color: var(--gold); font-weight: 700; font-size: .9rem; }

.offer-includes { display: grid; gap: 10px; margin-bottom: 24px; }
.offer-includes li { color: var(--plum); font-weight: 500; }

.countdown { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.cd-box {
  background: var(--plum); color: #fff; border-radius: 12px; padding: 10px 4px; text-align: center;
  min-width: 64px;
}
.cd-box strong { display: block; font-family: var(--font-head); font-size: 1.6rem; line-height: 1; }
.cd-box small { font-size: .72rem; opacity: .8; }
.cd-sep { font-size: 1.4rem; font-weight: 700; color: var(--plum); }
.stock-warn { color: var(--rose-deep); font-weight: 600; font-size: .95rem; }
.stock-warn strong { font-size: 1.05rem; }

/* Order form */
.order-form {
  background: #fff; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.order-form h3 { font-size: 1.35rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; color: var(--plum); margin-bottom: 6px; font-size: .95rem; }
.field input, .field select {
  width: 100%; padding: 13px 16px; border: 1.6px solid var(--line); border-radius: 12px;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--rose); box-shadow: 0 0 0 4px rgba(214,68,122,.12); background: #fff;
}
.field input.invalid { border-color: #e23a5e; }
.err { display: block; color: #e23a5e; font-size: .82rem; margin-top: 5px; min-height: 1em; }

.order-total {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--pink-bg); padding: 16px 18px; border-radius: 12px; margin: 8px 0 18px;
}
.order-total strong { font-family: var(--font-head); font-size: 1.4rem; color: var(--rose-deep); }
.form-note { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 14px; }

/* ---------- FAQ ---------- */
.faq { background: var(--cream); }
.faq-list { margin-top: 36px; display: grid; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 4px 22px;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer; font-family: var(--font-head); font-weight: 600; color: var(--plum);
  font-size: 1.08rem; padding: 16px 0; 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: '+'; color: var(--rose); font-size: 1.6rem; font-weight: 400; transition: transform .25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); padding-bottom: 18px; }

/* ---------- Final CTA ---------- */
.final-cta { background: var(--grad-rose); color: #fff; padding: 70px 0; text-align: center; }
.final-cta h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 12px; }
.final-cta p { font-size: 1.12rem; opacity: .95; margin-bottom: 28px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--plum); color: #e8d4dd; padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand p { margin-top: 16px; max-width: 360px; color: #c9aebb; }
.footer-col h4 { color: #fff; margin-bottom: 16px; font-size: 1.1rem; }
.footer-col a { display: block; color: #c9aebb; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--rose-soft); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; text-align: center; font-size: .88rem; color: #b894a4; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed; bottom: 24px; left: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37,211,102,.45);
  transition: transform .25s; animation: wa-pulse 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 200; background: rgba(58,31,46,.55); backdrop-filter: blur(4px);
  display: none; place-items: center; padding: 20px;
}
.modal.show { display: grid; animation: fade .3s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  background: #fff; border-radius: var(--radius-lg); padding: 44px 34px; max-width: 420px; width: 100%;
  text-align: center; box-shadow: var(--shadow-lg); animation: pop .35s ease;
}
@keyframes pop { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-ico { font-size: 3.2rem; margin-bottom: 10px; }
.modal-box h3 { font-size: 1.5rem; margin-bottom: 10px; }
.modal-box p { color: var(--ink); margin-bottom: 24px; }

/* ---------- Before/After photo ---------- */
.ba-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.ba-photo img { width: 100%; display: block; }
.ba-label {
  position: absolute; top: 14px; color: #fff; font-family: var(--font-head); font-weight: 700;
  background: rgba(58,31,46,.55); padding: 5px 16px; border-radius: 30px; font-size: .95rem; backdrop-filter: blur(2px);
}
.ba-label-before { right: 14px; }
.ba-label-after { left: 14px; background: rgba(214,68,122,.75); }
.ba-divider {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 50px; height: 50px; border-radius: 50%; background: #fff; color: var(--rose);
  display: grid; place-items: center; font-weight: 800; font-size: 1.4rem; box-shadow: var(--shadow-md);
}
.ba-note { color: var(--muted); font-size: .82rem; margin-top: 12px; text-align: center; }

/* ---------- Rating summary ---------- */
.rating-summary {
  display: flex; gap: 36px; align-items: center; justify-content: center; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 34px; box-shadow: var(--shadow-sm); margin: 36px auto 10px; max-width: 720px;
}
.rs-score { text-align: center; }
.rs-score strong { font-family: var(--font-head); font-size: 3rem; color: var(--rose-deep); line-height: 1; }
.rs-stars { letter-spacing: 2px; margin: 4px 0; }
.rs-score small { color: var(--muted); }
.rs-bars { flex: 1; min-width: 220px; display: grid; gap: 7px; }
.rs-row { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: var(--muted); }
.rs-row > span:first-child { width: 56px; }
.rs-bar { flex: 1; height: 8px; background: var(--pink-bg-2); border-radius: 5px; overflow: hidden; }
.rs-bar i { display: block; height: 100%; background: var(--grad-gold); border-radius: 5px; }

.review-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.verified { color: #2e9e5b; font-size: .78rem; font-weight: 700; }

/* ---------- Compare table ---------- */
.compare { background: var(--pink-bg); }
.compare-wrap { overflow-x: auto; margin-top: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.compare-table { width: 100%; border-collapse: collapse; background: #fff; min-width: 560px; }
.compare-table th, .compare-table td { padding: 16px 14px; text-align: center; border-bottom: 1px solid var(--line); }
.compare-table th { font-family: var(--font-head); color: var(--plum); font-size: .98rem; background: var(--cream); }
.compare-table td:first-child, .compare-table th:first-child { text-align: right; font-weight: 600; color: var(--ink); }
.compare-table .col-best { background: linear-gradient(180deg, #fff0f6, #ffe3ee); color: var(--rose-deep); font-weight: 700; }
.compare-table th.col-best { background: var(--grad-rose); color: #fff; }
.compare-table tr:last-child td { border-bottom: none; }

/* ---------- Guarantee ---------- */
.guarantee { background: var(--cream); }
.guarantee-box {
  display: flex; gap: 34px; align-items: center; background: #fff; border: 2px dashed var(--rose-soft);
  border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm);
}
.guarantee-seal {
  position: relative; flex-shrink: 0; width: 110px; height: 110px; border-radius: 50%;
  background: var(--grad-gold); display: grid; place-items: center; font-size: 3rem; color: #fff;
  box-shadow: 0 10px 24px rgba(201,162,74,.4);
}
.guarantee-seal span {
  position: absolute; bottom: -6px; background: var(--rose-deep); color: #fff; font-family: var(--font-head);
  font-weight: 700; font-size: .9rem; padding: 2px 12px; border-radius: 20px;
}
.guarantee-text h2 { font-size: 1.6rem; margin-bottom: 10px; }
.guarantee-text p { color: var(--ink); margin-bottom: 16px; }
.guarantee-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.guarantee-badges span {
  background: var(--pink-bg); color: var(--plum); font-weight: 600; font-size: .85rem;
  padding: 8px 14px; border-radius: 30px; border: 1px solid var(--line);
}

/* ---------- Live viewers ---------- */
.live-viewers { color: var(--ink); font-size: .9rem; margin-top: 8px; }
.live-viewers strong { color: var(--rose-deep); }

/* ---------- Bundles ---------- */
.bundles { display: grid; gap: 12px; }
.bundle { position: relative; cursor: pointer; display: block; }
.bundle input { position: absolute; opacity: 0; pointer-events: none; }
.bundle-inner {
  display: block; border: 2px solid var(--line); border-radius: 14px; padding: 14px 16px 14px 48px;
  background: var(--cream); transition: border-color .2s, background .2s, box-shadow .2s; position: relative;
}
.bundle-inner::before {
  content: ''; position: absolute; top: 50%; right: 16px; transform: translateY(-50%);
  width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--rose-soft); background: #fff;
}
.bundle input:checked + .bundle-inner {
  border-color: var(--rose); background: #fff; box-shadow: 0 0 0 4px rgba(214,68,122,.12);
}
.bundle input:checked + .bundle-inner::before { background: var(--rose); box-shadow: inset 0 0 0 3px #fff; }
.bundle-inner { padding-right: 48px; padding-left: 16px; }
.bundle-title { display: block; font-family: var(--font-head); font-weight: 700; color: var(--plum); font-size: 1.05rem; }
.bundle-price { display: inline-block; color: var(--rose-deep); font-weight: 800; font-size: 1.15rem; }
.bundle-sub { display: block; color: var(--gold); font-weight: 600; font-size: .82rem; margin-top: 2px; }
.bundle-tag {
  position: absolute; top: -10px; left: 14px; z-index: 2; background: var(--grad-rose); color: #fff;
  font-size: .72rem; font-weight: 700; padding: 3px 12px; border-radius: 20px;
}
.bundle-tag.tag-gold { background: var(--grad-gold); color: #4a3300; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(178,46,98,.14); padding: 10px 16px;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  transform: translateY(100%); transition: transform .35s ease;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-price { line-height: 1.1; }
.sc-old { display: block; color: var(--muted); text-decoration: line-through; font-size: .8rem; }
.sc-new { font-family: var(--font-head); font-weight: 800; color: var(--rose-deep); font-size: 1.3rem; }
.sticky-cta .btn { flex-shrink: 0; }

/* ---------- Social proof toast ---------- */
.social-toast {
  position: fixed; bottom: 22px; right: 22px; z-index: 92;
  display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow-md); max-width: 300px;
  transform: translateX(120%); transition: transform .5s cubic-bezier(.2,.8,.2,1); opacity: 0;
}
.social-toast.show { transform: translateX(0); opacity: 1; }
.st-ico {
  width: 40px; height: 40px; border-radius: 50%; background: var(--pink-bg-2);
  display: grid; place-items: center; font-size: 1.2rem; flex-shrink: 0;
}
.st-body { font-size: .88rem; color: var(--plum); line-height: 1.3; }
.st-body strong { color: var(--rose-deep); }
.st-body small { display: block; color: var(--muted); font-size: .78rem; margin-top: 2px; }

/* ---------- Exit-intent popup ---------- */
.exit-box { position: relative; max-width: 440px; }
.exit-close {
  position: absolute; top: 12px; left: 16px; background: none; border: none; font-size: 1.8rem;
  color: var(--muted); cursor: pointer; line-height: 1;
}
.exit-close:hover { color: var(--rose); }
.exit-gift { font-size: 3rem; margin-bottom: 6px; animation: floaty 3s ease-in-out infinite; }
.exit-box h3 { font-size: 1.55rem; margin-bottom: 8px; }
.exit-box > p { color: var(--ink); margin-bottom: 18px; }
.coupon {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  border: 2px dashed var(--rose); border-radius: 14px; padding: 14px; margin-bottom: 12px;
  background: var(--pink-bg);
}
.coupon-label { font-size: .78rem; color: var(--muted); font-weight: 600; }
.coupon-code {
  font-family: var(--font-head); font-weight: 700; font-size: 1.8rem; color: var(--rose-deep); letter-spacing: 2px;
}
.coupon.copied { background: #e9f9ef; border-color: #2e9e5b; }
.exit-note { color: var(--muted); font-size: .82rem; margin-bottom: 18px; }
.exit-decline {
  display: block; width: 100%; margin-top: 12px; background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: .85rem; text-decoration: underline;
}
.exit-decline:hover { color: var(--rose); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 2; }
  .hero-visual { order: 1; }
  .hero-sub, .center .lead { margin-inline: auto; }
  .hero-points { display: inline-grid; text-align: right; }
  .hero-cta, .hero-trust { justify-content: center; }
  .results-grid, .order-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute; top: 72px; right: 0; left: 0;
    background: #fff; flex-direction: column; gap: 0; padding: 8px 22px 18px;
    box-shadow: var(--shadow-md); border-bottom: 1px solid var(--line);
    clip-path: inset(0 0 100% 0); transition: clip-path .3s ease;
  }
  .main-nav.open { clip-path: inset(0 0 0 0); }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .main-nav a::after { display: none; }
  .btn-header { display: none; }
  .nav-toggle { display: flex; }
  .features-grid, .steps-grid, .reviews-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }

  .guarantee-box { flex-direction: column; text-align: center; }
  .guarantee-badges { justify-content: center; }

  /* إظهار شريط الطلب الثابت ورفع العناصر العائمة فوقه */
  .sticky-cta { display: flex; }
  .whatsapp-float { bottom: 80px; }
  .social-toast { bottom: 82px; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .announcement-bar { font-size: .76rem; }
  .offer-box, .order-form { padding: 26px 20px; }
  .result-stats { gap: 18px; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 78px; left: 16px; }
  .rating-summary { padding: 22px; gap: 20px; }
  .social-toast { max-width: 240px; padding: 10px 12px; right: 12px; }
  .sticky-cta .btn { padding: 12px 18px; font-size: .95rem; }
}
