/* =============================================
   SECRET HAIR VITAMIN — LANDING PAGE CSS
   Colors: Product Brand Pink/Red/Dark-Red
   ============================================= */

/* ——— Google Font + Reset ——— */
/* Fonts loaded async via HTML preload */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:       #e91e8c;
  --pink-light: #f472b6;
  --pink-pale:  #fce4f0;
  --pink-ultra: #fff0f8;
  --red:        #c0392b;
  --red-deep:   #8b1a1a;
  --dark:       #1a0a12;
  --dark-2:     #2d0f1f;
  --white:      #ffffff;
  --off-white:  #fdf7fb;
  --gray:       #6b7280;
  --gray-light: #f3f4f6;

  --grad-main:  linear-gradient(135deg, #e91e8c 0%, #c0392b 100%);
  --grad-light: linear-gradient(135deg, #f472b6 0%, #e91e8c 60%, #c0392b 100%);
  --grad-dark:  linear-gradient(135deg, #2d0f1f 0%, #8b1a1a 100%);
  --grad-glow:  radial-gradient(ellipse at center, rgba(233,30,140,0.25) 0%, transparent 70%);

  --shadow-sm:  0 2px 8px rgba(233,30,140,0.15);
  --shadow-md:  0 8px 30px rgba(233,30,140,0.25);
  --shadow-lg:  0 20px 60px rgba(233,30,140,0.35);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 50px;

  --font: 'Cairo', 'Tajawal', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--dark);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ——— Content Visibility — تسريع الرندر ——— */
.problems-sec { content-visibility: auto; contain-intrinsic-size: 0 500px; }
.ingred-sec   { content-visibility: auto; contain-intrinsic-size: 0 700px; }
.howto-sec    { content-visibility: auto; contain-intrinsic-size: 0 500px; }
.reviews-sec  { content-visibility: auto; contain-intrinsic-size: 0 800px; }
.trust-sec    { content-visibility: auto; contain-intrinsic-size: 0 300px; }
.faq-sec      { content-visibility: auto; contain-intrinsic-size: 0 600px; }

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

/* ——— SECTION COMMON ——— */
.sec-tag {
  display: inline-block;
  background: var(--pink-pale);
  color: var(--pink);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
  border: 1px solid rgba(233,30,140,0.2);
}

.sec-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 40px;
  line-height: 1.4;
}

.brand-gradient {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-gradient-light {
  background: linear-gradient(135deg, #ff6ec7, #ff3860);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ——— BUTTONS ——— */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-main);
  color: #fff;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-main:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--pink);
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--pink);
  cursor: pointer;
  transition: all 0.25s;
}
.btn-ghost:hover {
  background: var(--pink);
  color: #fff;
}

.btn-xl { font-size: 1.25rem; padding: 20px 48px; }

.pulse-anim {
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(233,30,140,0.5), var(--shadow-md); }
  50%       { box-shadow: 0 0 0 14px rgba(233,30,140,0), var(--shadow-lg); }
}

.float-anim {
  animation: floatUp 3.5s ease-in-out infinite;
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* ==============================
   ANNOUNCEMENT BAR
   ============================== */
.announce-bar {
  background: var(--grad-main);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 1000;
  /* اختفاء سلس عند التمرير */
  max-height: 60px;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
  opacity: 1;
}
.announce-bar.bar-hidden {
  max-height: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.announce-timer {
  background: rgba(255,255,255,0.2);
  padding: 2px 12px;
  border-radius: 20px;
  font-weight: 800;
}

/* ==============================
   HEADER
   ============================== */
.site-header {
  position: sticky;
  top: 8px;
  z-index: 999;
  /* هيدر عائم في المنتصف بعرض نصفي */
  display: flex;
  justify-content: center;
  background: transparent;
  border-bottom: none;
  padding: 0;
  box-shadow: none;
  pointer-events: none;
}
.header-inner {
  pointer-events: all;
  width: min(600px, 92vw);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 60px;
  padding: 10px 20px 10px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow:
    0 8px 32px rgba(233,30,140,0.18),
    0 0 0 1.5px rgba(233,30,140,0.1);
  transition: box-shadow 0.3s;
}
.header-inner:hover {
  box-shadow:
    0 12px 40px rgba(233,30,140,0.26),
    0 0 0 2px rgba(233,30,140,0.18);
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  outline: none;
  border: none;
}
.logo-img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: none;
  box-shadow: none;
  background: transparent;
}
/* لوغو مخمل في الهيدر — عنابي + وردي */
.makhmal-logo {
  width: auto;
  height: 70px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border: none;
  outline: none;
  filter:
    sepia(1)
    saturate(10)
    hue-rotate(305deg)
    brightness(0.68)
    contrast(1.2)
    drop-shadow(0 2px 14px rgba(200,20,80,0.55));
  transition: filter 0.35s, transform 0.35s;
}
.makhmal-logo:hover {
  filter:
    sepia(1)
    saturate(12)
    hue-rotate(300deg)
    brightness(0.78)
    contrast(1.2)
    drop-shadow(0 4px 22px rgba(233,30,140,0.7));
  transform: scale(1.05);
}
.logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.logo-text em {
  font-style: normal;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.header-btn {
  background: var(--grad-main);
  color: #fff;
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}
.header-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ==============================
   HERO
   ============================== */
.hero {
  min-height: 92vh;
  background: linear-gradient(160deg, #fff0f8 0%, #fce4f0 40%, #fff 100%);
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  pointer-events: none;
}
.blob1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #e91e8c, #c0392b);
  top: -150px; left: -100px;
}
.blob2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #f472b6, #e91e8c);
  bottom: -100px; right: -80px;
}
.hero-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #c8073a 0%, #e91e8c 40%, #ff4500 80%, #c8073a 100%);
  background-size: 200% 200%;
  animation: ribbonShimmer 3s ease infinite, ribbonPulse 2s ease-in-out infinite;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  padding: 11px 26px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  box-shadow:
    0 0 0 3px rgba(233,30,140,0.25),
    0 0 0 6px rgba(233,30,140,0.1),
    0 8px 30px rgba(200,7,58,0.5),
    0 4px 12px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  border: 1.5px solid rgba(255,200,200,0.4);
}
.hero-ribbon::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: ribbonSweep 2.5s ease-in-out infinite;
}

@keyframes ribbonShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes ribbonPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(233,30,140,0.25), 0 0 0 6px rgba(233,30,140,0.1), 0 8px 30px rgba(200,7,58,0.5), 0 4px 12px rgba(0,0,0,0.2); }
  50%       { box-shadow: 0 0 0 5px rgba(233,30,140,0.35), 0 0 0 10px rgba(233,30,140,0.12), 0 12px 40px rgba(200,7,58,0.65), 0 4px 12px rgba(0,0,0,0.2); }
}
@keyframes ribbonSweep {
  0%   { left: -100%; }
  60%  { left: 150%; }
  100% { left: 150%; }
}
.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-nums {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}
.hnum { text-align: center; }
.hnum-val {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hnum-lbl {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 600;
}
.hnum-sep {
  width: 1px;
  height: 40px;
  background: rgba(233,30,140,0.2);
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* Product wrap */
.hero-product-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-glow-ring {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: var(--grad-glow);
  filter: blur(30px);
}
/* Hero product frame — organic blob shape */
.hero-product-frame {
  width: 460px;
  height: 460px;
  border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow:
    0 24px 60px rgba(233,30,140,0.4),
    0 0 0 6px rgba(233,30,140,0.1),
    0 0 0 14px rgba(233,30,140,0.05);
  transition: border-radius 0.8s ease, box-shadow 0.3s;
  flex-shrink: 0;
}
.hero-product-frame:hover {
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  box-shadow:
    0 32px 80px rgba(233,30,140,0.5),
    0 0 0 8px rgba(233,30,140,0.15),
    0 0 0 18px rgba(233,30,140,0.07);
}
.hero-product {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-cap-bubble {
  position: absolute;
  background: #fff;
  color: var(--pink);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  z-index: 3;
  border: 1.5px solid var(--pink-pale);
  white-space: nowrap;
}
.bub1 { top: 20%; right: -10px; animation: floatUp 3s ease-in-out infinite; }
.bub2 { top: 55%; left: -20px; animation: floatUp 3.8s ease-in-out infinite 0.5s; }
.bub3 { bottom: 12%; right: 0; animation: floatUp 4.2s ease-in-out infinite 1s; }

.hero-discount-badge {
  position: absolute;
  top: 50%;
  right: -46px;
  transform: translateY(-50%);
  background: var(--grad-main);
  color: #fff;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(233,30,140,0.5), var(--shadow-md);
  z-index: 4;
  animation: rotBadge 4s linear infinite;
}
@keyframes rotBadge {
  0%,100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(1.08) rotate(5deg); }
}
.disc-pct { font-size: 1.3rem; font-weight: 900; line-height: 1; }
.disc-lbl { font-size: 0.65rem; font-weight: 700; }

/* ==============================
   PROBLEM SECTION
   ============================== */
.problems-sec {
  padding: 80px 0;
  background: var(--white);
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.prob-card {
  background: #fff;
  border: 1.5px solid rgba(233,30,140,0.1);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.prob-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(233,30,140,0.3);
}
.prob-icon { font-size: 2.5rem; margin-bottom: 14px; }
.prob-card h3 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.prob-card p  { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }
.bridge {
  display: flex;
  align-items: center;
  gap: 20px;
}
.bridge-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
}
.bridge-pill {
  background: var(--grad-main);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

/* ==============================
   PRODUCT INTRO
   ============================== */
.prod-intro {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--pink-ultra) 0%, #fff 100%);
}
.prod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.prod-img-col {
  position: relative;
  display: flex;
  justify-content: center;
}
.prod-badge-top {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--grad-main);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: var(--radius-xl);
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

.prod-img-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--grad-glow);
  filter: blur(40px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* Product intro frame — soft rounded square */
.prod-img-frame {
  width: 320px;
  height: 320px;
  border-radius: 40px 20px 40px 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow:
    0 20px 60px rgba(233,30,140,0.3),
    0 0 0 5px rgba(233,30,140,0.08),
    0 0 0 12px rgba(233,30,140,0.04);
  transition: border-radius 0.6s ease, box-shadow 0.3s;
  animation: floatUp 4s ease-in-out infinite;
}
.prod-img-frame:hover {
  border-radius: 20px 40px 20px 40px;
  box-shadow:
    0 32px 80px rgba(233,30,140,0.4),
    0 0 0 6px rgba(233,30,140,0.12),
    0 0 0 14px rgba(233,30,140,0.06);
}
.prod-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.prod-img-frame:hover .prod-main-img {
  transform: scale(1.06);
}
.prod-text-col h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 16px;
}
.prod-desc {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 28px;
}
.prod-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.feat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}
.feat-row span:first-child { font-size: 1.1rem; flex-shrink: 0; }

/* ==============================
   BENEFITS
   ============================== */
.benefits-sec {
  padding: 80px 0;
  background: var(--white);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ben-card {
  background: #fff;
  border: 1.5px solid rgba(233,30,140,0.1);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.ben-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-light);
  opacity: 0;
  transition: opacity 0.3s;
}
.ben-card:hover::before { opacity: 1; }
.ben-card:hover { color: #fff; transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.ben-card:hover * { color: #fff !important; }
.ben-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  position: relative;
  z-index: 1;
  transition: background 0.3s;
}
.ben-card:hover .ben-icon-wrap { background: rgba(255,255,255,0.2); }
.ben-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.ben-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ==============================
   INGREDIENTS
   ============================== */
.ingred-sec {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, var(--pink-ultra) 100%);
  position: relative;
  overflow: hidden;
}
.ingred-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(233,30,140,0.08), transparent 70%);
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  pointer-events: none;
}
.ingred-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ingred-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ingred-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1.5px solid rgba(233,30,140,0.1);
  transition: transform 0.25s, box-shadow 0.25s;
}
.ingred-card:hover { transform: translateX(-6px); box-shadow: var(--shadow-md); }
.ingred-icon {
  font-size: 2.4rem;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--pink-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ingred-info h3 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.ingred-info p  { font-size: 0.85rem; color: var(--gray); line-height: 1.6; margin-bottom: 8px; }
.ingred-label {
  display: inline-block;
  background: var(--pink-pale);
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 30px;
}
.vit-row { display: flex; gap: 8px; margin-top: 8px; }
.vit-pill {
  background: var(--grad-main);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 30px;
}
.ingred-product-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ingred-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--grad-glow);
  filter: blur(40px);
}
/* Ingredients image frame — elegant circle */
.ingred-img-frame {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border: 5px solid rgba(255,255,255,0.8);
  box-shadow:
    0 20px 60px rgba(233,30,140,0.3),
    0 0 0 10px rgba(233,30,140,0.08);
  transition: box-shadow 0.3s, transform 0.3s;
}
.ingred-img-frame:hover {
  box-shadow:
    0 28px 80px rgba(233,30,140,0.4),
    0 0 0 12px rgba(233,30,140,0.12);
  transform: scale(1.04);
}
.ingred-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.ingred-img-frame:hover .ingred-product-img {
  transform: scale(1.08);
}
.ingred-badge-float {
  position: absolute;
  bottom: 20px;
  left: 0;
  background: var(--grad-main);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  z-index: 3;
  animation: floatUp 3s ease-in-out infinite;
}

/* ==============================
   HOW TO USE
   ============================== */
.howto-sec {
  padding: 80px 0;
  background: #fff;
}
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 40px;
}
.step-card {
  flex: 1;
  background: var(--pink-ultra);
  border: 1.5px solid rgba(233,30,140,0.12);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num {
  position: absolute;
  top: -16px;
  right: 50%;
  transform: translateX(50%);
  width: 34px;
  height: 34px;
  background: var(--grad-main);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}
.step-emoji { font-size: 2.2rem; margin-bottom: 12px; margin-top: 6px; }
.step-card h3 { font-size: 0.95rem; font-weight: 800; margin-bottom: 8px; color: var(--dark); }
.step-card p  { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }
.step-arrow {
  font-size: 1.8rem;
  color: var(--pink);
  margin-top: 60px;
  flex-shrink: 0;
}
.tip-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, #fce4f0, #fff0f8);
  border: 1.5px solid rgba(233,30,140,0.2);
  border-radius: var(--radius-md);
  padding: 24px 28px;
}
.tip-box span:first-child { font-size: 1.6rem; flex-shrink: 0; }
.tip-box p { font-size: 0.95rem; color: var(--dark); line-height: 1.7; }

/* ==============================
   RESULTS SECTION
   ============================== */
.results-sec {
  padding-bottom: 70px;
  background:
    radial-gradient(ellipse at 10% 0%,   rgba(233,30,140,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(192,57,43, 0.08) 0%, transparent 50%),
    linear-gradient(160deg, #fff0f8 0%, #fce4f0 45%, #fff8fb 100%);
  position: relative;
  overflow: hidden;
}
.results-sec::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(233,30,140,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.results-sec::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(192,57,43,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.results-header {
  background: var(--grad-main);
  text-align: center;
  padding: 36px 24px 32px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.results-header h2 {
  color: #fff;
  font-size: clamp(1.3rem, 4vw, 2rem);
  font-weight: 900;
  line-height: 1.4;
  margin: 0;
}
.results-header h2 span {
  color: #ffe0f0;
  font-size: clamp(1.5rem, 5vw, 2.4rem);
}

.result-card {
  background: #fff;
  border-radius: 20px;
  margin: 28px auto;
  max-width: 680px;
  box-shadow:
    0 8px 32px rgba(233,30,140,0.12),
    0 0 0 1.5px rgba(233,30,140,0.08);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.result-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 48px rgba(233,30,140,0.18),
    0 0 0 1.5px rgba(233,30,140,0.15);
}

.result-info {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 22px 16px;
  background: #fdf0f3;
  border-bottom: 1.5px solid #f5c6ce;
  direction: rtl;
}
.result-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  line-height: 1;
}
.result-info strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #8b1020;
  margin-bottom: 6px;
}
.result-info p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

/* Single full-width result image */
.result-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 16px 16px;
}
.result-photo-wrap img {
  width: 100%;
  display: block;
  height: auto;
  min-height: 240px;
  max-height: 380px;
  object-fit: contain;
  object-position: center center;
  background: #fdf0f8;
  transition: transform 0.5s ease;
}
.result-card:hover .result-photo-wrap img {
  transform: scale(1.04);
}
.rp-overlay {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.rp-ol {
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  border-radius: 30px;
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.rp-ol.before { background: rgba(80,15,20,0.82); }
.rp-ol.after  { background: rgba(200,30,70,0.82); }

@media (max-width: 640px) {
  .result-photo-wrap img { min-height: 180px; max-height: 300px; }
  .rp-ol { font-size: 0.75rem; padding: 5px 13px; }
}

/* إلغاء أي override خاص على الصورة الثالثة */
.result-card:nth-child(3) .result-photo-wrap img {
  object-position: center center;
}

/* ==============================
   TRANSFORMATION
   ============================== */
.transform-sec {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--pink-ultra), #fff);
}
/* Before/After entry wrapper */
.ba-entry {
  margin-bottom: 40px;
}
.ba-entry:last-of-type { margin-bottom: 0; }

.ba-entry-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
}
.ba-entry-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--grad-main);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.ba-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(233,30,140,0.25),
    0 0 0 2px rgba(233,30,140,0.12);
  transition: transform 0.3s, box-shadow 0.3s;
}
.ba-wrap:hover {
  transform: translateY(-4px);
  box-shadow:
    0 40px 100px rgba(233,30,140,0.3),
    0 0 0 2px rgba(233,30,140,0.2);
}
.ba-img {
  width: 100%;
  height: 420px;
  min-height: 300px;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

/* خط فاصل في المنتصف */
.ba-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0)   0%,
    rgba(255,255,255,0.9) 20%,
    rgba(255,255,255,0.9) 80%,
    rgba(255,255,255,0)   100%);
  z-index: 2;
  pointer-events: none;
}
.ba-labels {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  pointer-events: none;
}
.ba-tag {
  position: absolute;
  bottom: 0;
  width: 50%;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.ba-before {
  left: 0;
  background: rgba(100,30,30,0.78);
}
.ba-after {
  right: 0;
  background: rgba(233,30,140,0.78);
}
.ba-big { font-size: 1.3rem; font-weight: 900; }

.timeline-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.tl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 200px;
}
.tl-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--grad-main);
  box-shadow: 0 0 0 5px rgba(233,30,140,0.15);
  flex-shrink: 0;
}
.tl-text {
  text-align: center;
}
.tl-text strong { font-size: 0.9rem; color: var(--pink); display: block; margin-bottom: 4px; }
.tl-text p  { font-size: 0.82rem; color: var(--gray); }
.tl-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--red));
  max-width: 80px;
  margin-bottom: 50px;
}

/* ==============================
   REVIEWS
   ============================== */
.reviews-sec {
  padding: 80px 0;
  background: var(--white);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rev-card {
  background: #fff;
  border: 1.5px solid rgba(233,30,140,0.1);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.rev-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.rev-featured {
  border-color: var(--pink);
  background: linear-gradient(160deg, #fff0f8, #fff);
  box-shadow: var(--shadow-sm);
}
.rev-top-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--grad-main);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 30px;
}
.rev-stars { font-size: 1rem; margin-bottom: 14px; }
.rev-card p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.rev-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.rev-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad-main);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.rev-name  { display: block; font-weight: 800; font-size: 0.9rem; color: var(--dark); }
.rev-loc   { display: block; font-size: 0.78rem; color: var(--gray); }
.rev-verified {
  font-size: 0.78rem;
  color: #16a34a;
  font-weight: 600;
}

/* ==============================
   ORDER SECTION
   ============================== */
.order-sec {
  padding: 80px 0;
  background: var(--grad-dark);
  position: relative;
  overflow: hidden;
}
.order-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(233,30,140,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.order-sec .sec-tag {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.order-title { color: #fff; }
.order-title .brand-gradient-light {
  background: linear-gradient(135deg, #ff9ee0, #ff6ec7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Countdown */
.countdown-box {
  text-align: center;
  margin-bottom: 50px;
}
.cd-label {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 600;
}
.cd-timer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.cd-block {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  text-align: center;
  min-width: 80px;
}
.cd-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.cd-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.7); font-weight: 600; }
.cd-sep { font-size: 2rem; color: var(--pink-light); font-weight: 900; }

/* Packages */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.pkg-card {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.25s;
}
.pkg-card:hover { transform: translateY(-6px); }
.pkg-featured {
  border-color: var(--pink);
  background: rgba(233,30,140,0.15);
  transform: scale(1.04);
  position: relative;
}
.pkg-featured:hover { transform: scale(1.04) translateY(-6px); }
.pkg-best {
  background: var(--grad-main);
  color: #fff;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px;
}
.pkg-header {
  padding: 20px 20px 0;
  text-align: center;
}
.pkg-header h3 { color: #fff; font-size: 1.1rem; font-weight: 800; }
.pkg-qty { color: rgba(255,255,255,0.6); font-size: 0.82rem; margin-top: 4px; }
.pkg-body {
  padding: 20px;
  text-align: center;
}
.pkg-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 3px solid rgba(255,255,255,0.2);
  box-shadow:
    0 12px 36px rgba(233,30,140,0.5),
    0 0 0 6px rgba(233,30,140,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
  /* ✅ CLS fix: always reserve exact space */
  aspect-ratio: 1 / 1;
  contain: size layout style;
}
.pkg-card:hover .pkg-img {
  transform: scale(1.08) translateY(-4px);
  box-shadow:
    0 20px 50px rgba(233,30,140,0.6),
    0 0 0 8px rgba(233,30,140,0.15);
}
.pkg-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}
.price-old {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.45);
  text-decoration: line-through;
}
.price-new {
  font-size: 2.1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}
.pkg-save {
  background: rgba(233,30,140,0.3);
  color: #f472b6;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 8px;
}
.pkg-bonus {
  color: #fbbf24;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 6px;
}

/* ===== صندوق وصف الهدية داخل الباقة ===== */
.pkg-gift-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(255,215,0,0.12), rgba(255,140,0,0.08));
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 10px;
  padding: 10px 12px;
  margin-top: 10px;
}
.gift-emoji { font-size: 1.6rem; flex-shrink: 0; }
.gift-thumb {
  width: 44px; height: 44px; border-radius: 8px;
  object-fit: cover; flex-shrink: 0;
}
.gift-box-name {
  font-size: 0.82rem; font-weight: 900;
  color: #fbbf24; margin-bottom: 2px;
}
.gift-box-desc {
  font-size: 0.75rem; color: rgba(255,255,255,0.75);
  line-height: 1.4;
}
.btn-pkg {
  display: block;
  text-align: center;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
  transition: background 0.25s;
}
.btn-pkg:hover { background: rgba(255,255,255,0.25); }
.btn-pkg-featured {
  background: var(--grad-main);
}
.btn-pkg-featured:hover { opacity: 0.9; }

/* Order Form */
.order-form-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.order-form-box h3 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-grp {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-grp.full { grid-column: 1 / -1; }
.form-grp label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
}
.form-grp input,
.form-grp select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-grp input:focus,
.form-grp select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(233,30,140,0.1);
}

/* ---- خانة العنوان المدمجة ---- */
.addr-combined {
  display: flex;
  align-items: center;
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius-sm);
  background: var(--off-white);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.addr-combined:focus-within {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(233,30,140,0.1);
}
.addr-combined select,
.addr-combined input {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--dark);
  flex-shrink: 0;
}
.addr-combined select { width: 130px; }
.addr-combined input  { width: 120px; }
.addr-combined input.addr-full { flex: 1; width: auto; }
.addr-sep {
  display: block;
  width: 1px;
  height: 28px;
  background: #d1d5db;
  flex-shrink: 0;
  align-self: center;
}

@media (max-width: 640px) {
  .addr-combined { flex-wrap: wrap; }
  .addr-combined select,
  .addr-combined input  { width: 100%; padding: 11px 14px; }
  .addr-combined input.addr-full { width: 100%; }
  .addr-sep { display: none; }
}

/* ===== شريط الندرة (باقي + مشترين) ===== */
.urgency-bar {
  /* ── عائم في المنتصف مستقل عن الأطراف ── */
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100vw - 32px);
  z-index: 9990;

  /* ── صف واحد مرتب ── */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 6px;

  /* ── تصميم كبسولة فاخرة ── */
  background: linear-gradient(135deg, #1a0508 0%, #3d0e18 50%, #1a0508 100%);
  background-size: 200% 200%;
  animation: urgencyShimmer 4s ease infinite, urgencySlideUp 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
  border-radius: 60px;
  border: 1.5px solid rgba(233,30,140,0.4);
  box-shadow:
    0 8px 32px rgba(200,7,58,0.45),
    0 2px 12px rgba(0,0,0,0.35),
    0 0 0 4px rgba(200,7,58,0.12);
  padding: 8px 18px 8px 14px;
  white-space: nowrap;
}

@keyframes urgencyShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes urgencySlideUp {
  from { transform: translateX(-50%) translateY(120%); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0);    opacity: 1; }
}

/* إخفاء عند الضغط */
.urgency-bar.hidden { display: none; }

/* زر الإغلاق */
.urgency-close {
  position: relative;
  left: auto; top: auto;
  transform: none;
  background: rgba(255,255,255,0.12);
  border: none; color: #fff; cursor: pointer;
  width: 22px; height: 22px; border-radius: 50%;
  font-size: 0.7rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
  order: 99;
  margin-left: 4px;
}
.urgency-close:hover { background: rgba(255,255,255,0.2); }

/* زر الطلب داخل الشريط */
.urgency-cta {
  background: linear-gradient(135deg, #e91e8c, #c0392b);
  color: #fff;
  text-decoration: none;
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 900;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(233,30,140,0.4);
}
.urgency-cta:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(233,30,140,0.6);
}

@media (max-width: 480px) {
  .urgency-bar   { padding: 7px 12px; gap: 4px; border-radius: 40px; font-size: 0.78rem; }
  .urgency-item  { font-size: 0.76rem; padding: 2px 6px; gap: 4px; }
  .urgency-item strong { font-size: 0.95rem; }
  .urgency-cta   { padding: 6px 12px; font-size: 0.78rem; }
  .urgency-divider { display: none; }
}

/* مسافة سفلية لمنع الـ bar من إخفاء المحتوى */
body { padding-bottom: 60px; }

.urgency-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 2px 10px;
}
.urgency-item strong { font-size: 1.15rem; }
.stock-item  strong { color: #ff6b6b; }
.buyers-item strong { color: #4ade80; }
.urgency-divider {
  width: 1px; height: 28px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.urgency-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: dotPulse 1.4s ease-in-out infinite;
}
.red-dot   { background: #ff4444; box-shadow: 0 0 6px #ff4444; }
.green-dot { background: #22c55e; box-shadow: 0 0 6px #22c55e; }
@keyframes dotPulse {
  0%,100% { transform: scale(1);   opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.7; }
}

/* ===== شريط المشترين (فوق زر الطلب) ===== */
.buyers-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1.5px solid #86efac;
  border-radius: 12px;
  padding: 11px 18px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #15803d;
  text-align: center;
}
.buyers-avatars { font-size: 1.2rem; letter-spacing: -4px; }
.buyers-bar strong { color: #166534; font-size: 1.05rem; }
.live-badge {
  background: #dc2626;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  animation: livePulse 2s ease infinite;
}
@keyframes livePulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.6; }
}

.pay-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #15803d;
  margin: 20px 0;
}
.btn-submit {
  width: 100%;
  background: var(--grad-main);
  color: #fff;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.15rem;
  padding: 18px;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.form-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 600;
}

/* ==============================
   TRUST / GUARANTEES
   ============================== */
.trust-sec {
  padding: 60px 0;
  background: var(--pink-pale);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  text-align: center;
  padding: 28px 16px;
}
.trust-icon { font-size: 2.5rem; margin-bottom: 14px; }
.trust-item h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; color: var(--dark); }
.trust-item p  { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* ==============================
   FAQ
   ============================== */
.faq-sec {
  padding: 80px 0;
  background: #fff;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1.5px solid rgba(233,30,140,0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.25s;
}
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--pink); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  text-align: right;
  gap: 12px;
}
.faq-q:hover { background: var(--pink-ultra); }
.faq-ico {
  font-size: 1.4rem;
  color: var(--pink);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-weight: 300;
}
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ==============================
   FINAL CTA
   ============================== */
.final-cta {
  padding: 80px 24px;
  background: var(--grad-main);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.final-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 2;
}
/* ===== كادر الصورة النهائية ===== */
.final-product-wrap {
  position: relative;
  flex-shrink: 0;
  width: 380px;
  height: 380px;
}
.final-product-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,30,140,0.35) 0%, transparent 70%);
  filter: blur(20px);
  animation: finalGlowPulse 3s ease-in-out infinite;
}
@keyframes finalGlowPulse {
  0%,100% { opacity: 0.6; transform: scale(1);   }
  50%      { opacity: 1;   transform: scale(1.08); }
}
.final-product {
  width: 380px;
  height: 380px;
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.35),
    0 0 0 6px rgba(255,255,255,0.12),
    0 0 0 14px rgba(255,255,255,0.05);
  animation: finalFloat 4s ease-in-out infinite, finalBorderAnim 8s ease infinite;
  transition: box-shadow 0.3s;
}
@keyframes finalFloat {
  0%,100% { transform: translateY(0);    }
  50%      { transform: translateY(-10px); }
}
@keyframes finalBorderAnim {
  0%,100% { border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%; }
  50%      { border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%; }
}
.final-text h2 { font-size: 2rem; font-weight: 900; color: #fff; margin-bottom: 12px; }
.final-text p  { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 24px; }
.final-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.final-badges span {
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-xl.btn-main {
  background: #fff;
  color: var(--pink);
  font-size: 1.1rem;
  padding: 18px 40px;
}
.btn-xl.btn-main:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }

/* ==============================
   FOOTER
   ============================== */
.footer {
  background: linear-gradient(180deg, #6b0e24 0%, #4a0818 100%);
  padding: 40px 0;
  color: rgba(255,255,255,0.85);
}
.footer-inner { text-align: center; }
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  text-decoration: none;
}
.footer-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
  filter: brightness(1.2);
}

/* لوغو مخمل في الفوتر */
.makhmal-footer-logo {
  width: auto;
  height: 120px;
  object-fit: contain;
  background: transparent;
  border: none;
  box-shadow: none;
  filter: drop-shadow(0 4px 18px rgba(200,40,100,0.35));
  transition: filter 0.35s, transform 0.35s;
}
.makhmal-footer-logo:hover {
  filter: drop-shadow(0 6px 28px rgba(220,50,120,0.6)) brightness(1.1);
  transform: scale(1.04);
}

.footer-logo span { font-size: 1.1rem; font-weight: 800; color: #fff; }
.footer-tagline { font-size: 0.9rem; margin-bottom: 20px; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--pink-light); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ==============================
   MODAL
   ============================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal-overlay.show { display: flex; }
.modal-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  max-width: 440px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.modal-icon-big { font-size: 3.5rem; margin-bottom: 20px; }
.modal-box h3 { font-size: 1.5rem; font-weight: 900; color: var(--dark); margin-bottom: 12px; }
.modal-box p  { color: var(--gray); font-size: 0.95rem; margin-bottom: 8px; }
.modal-sub    { color: var(--pink); font-weight: 700; margin-bottom: 28px !important; }


/* ================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ================================================ */
@media (max-width: 1024px) {

  /* Hero */
  .hero              { padding: 90px 20px 50px; min-height: auto; }
  .hero-layout       { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero-text h1      { font-size: 2rem; }
  .hero-sub          { font-size: 0.97rem; }
  .hero-nums         { justify-content: center; }
  .hero-btns         { justify-content: center; }
  .hero-product-wrap { order: -1; justify-content: center; }
  .hero-product-frame {
    width: 280px;
    height: 280px;
  }
  .hero-discount-badge {
    right: -36px;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
  }
  .hero-glow-ring { width: 260px; height: 260px; }

  /* Product intro */
  .prod-grid     { grid-template-columns: 1fr; text-align: center; }
  .prod-img-col  { order: 1; justify-content: center; }
  .prod-text-col { order: 2; }
  .prod-img-frame { width: 260px; height: 260px; margin: 0 auto; }
  .prod-img-glow { width: 240px; height: 240px; }
  .feat-row      { justify-content: flex-start; }

  /* Ingredients */
  .ingred-layout      { grid-template-columns: 1fr; }
  .ingred-product-col { display: none; }

  /* Grids */
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid  { grid-template-columns: 1fr 1fr; }
  .trust-grid    { grid-template-columns: repeat(2, 1fr); }

  /* Packages */
  .pkg-grid     { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pkg-featured { transform: none; }
  .pkg-featured:hover { transform: translateY(-6px); }

  /* Final CTA */
  .final-inner   { flex-direction: column; text-align: center; gap: 30px; }
  .final-badges  { justify-content: center; }
  .final-product-wrap { width: 300px; height: 300px; }
  .final-product { width: 300px; height: 300px; }
}

/* ================================================
   RESPONSIVE — MOBILE (max-width: 640px)
   ================================================ */
@media (max-width: 640px) {

  /* ---- Typography ---- */
  .sec-title  { font-size: 1.45rem; margin-bottom: 28px; }
  .sec-tag    { font-size: 0.78rem; padding: 5px 14px; }

  /* ---- Announcement bar ---- */
  .announce-bar   { padding: 8px 12px; font-size: 0.78rem; }
  .announce-timer { display: none; }

  /* ---- Header ---- */
  .logo-text  { font-size: 0.95rem; }
  .header-btn { font-size: 0.78rem; padding: 8px 16px; }

  /* ---- Hero ---- */
  .hero           { padding: 70px 16px 40px; }
  .hero-text h1   { font-size: 1.65rem; line-height: 1.35; }
  .hero-sub       { font-size: 0.9rem; margin-bottom: 20px; }
  .hero-nums      { gap: 12px; margin-bottom: 24px; }
  .hnum-val       { font-size: 1.3rem; }
  .hnum-lbl       { font-size: 0.72rem; }
  .hero-btns      { flex-direction: column; align-items: center; gap: 12px; }
  .btn-main       { width: 100%; justify-content: center; font-size: 0.97rem; padding: 15px 24px; }
  .btn-ghost      { width: 100%; justify-content: center; font-size: 0.92rem; padding: 13px 24px; }

  /* Hero image — على الجوال */
  .hero-product-frame {
    width: min(360px, 88vw);
    height: min(360px, 88vw);
  }
  .hero-glow-ring { width: min(340px, 85vw); height: min(340px, 85vw); }
  .hero-cap-bubble { font-size: 0.72rem; padding: 5px 10px; }
  .bub1 { right: 0px; top: 10%; }
  .bub2 { left: 0px; top: 52%; }
  .bub3 { bottom: 5%; right: 0px; }
  .hero-discount-badge {
    width: 62px; height: 62px;
    right: -28px;
    top: 50%;
    transform: translateY(-50%);
  }
  .disc-pct { font-size: 1.1rem; }

  /* ---- Product intro ---- */
  .prod-intro { padding: 50px 0; }
  .prod-img-frame {
    width: min(320px, 85vw);
    height: min(320px, 85vw);
    border-radius: 30px 15px 30px 15px;
  }
  .prod-img-glow { width: min(300px, 80vw); height: min(300px, 80vw); }
  .prod-desc    { font-size: 0.92rem; }
  .prod-features { gap: 10px; margin-bottom: 24px; }
  .feat-row      { font-size: 0.88rem; }

  /* ---- Problems ---- */
  .problems-sec  { padding: 50px 0; }
  .problems-grid { grid-template-columns: 1fr; gap: 14px; }
  .prob-card     { padding: 22px 16px; }
  .bridge-pill   { font-size: 0.88rem; padding: 10px 20px; }

  /* ---- Benefits ---- */
  .benefits-sec  { padding: 50px 0; }
  .benefits-grid { grid-template-columns: 1fr; gap: 14px; }
  .ben-card      { padding: 24px 18px; }
  .ben-icon-wrap { width: 58px; height: 58px; font-size: 1.7rem; }

  /* ---- Ingredients ---- */
  .ingred-sec    { padding: 50px 0; }
  .ingred-layout { grid-template-columns: 1fr; }
  .ingred-product-col { display: none; }
  .ingred-card   { padding: 16px; gap: 12px; }
  .ingred-icon   { width: 46px; height: 46px; font-size: 1.8rem; }

  /* ---- How to use ---- */
  .howto-sec    { padding: 50px 0; }
  .steps-row    { flex-direction: column; gap: 32px; align-items: center; }
  .step-card    { width: 100%; max-width: 320px; }
  .step-arrow   { transform: rotate(90deg); margin: 0 auto; font-size: 1.4rem; }

  /* ---- Before / After ---- */
  .transform-sec { padding: 50px 0; }
  .ba-wrap       { border-radius: 18px; }
  .ba-img        { height: 60vw !important; min-height: 220px !important; max-height: 380px !important; object-position: center 8% !important; }
  .ba-tag        { padding: 7px 6px; font-size: 0.72rem; }
  .ba-big        { font-size: 0.85rem; }
  .timeline-row  { flex-direction: column; align-items: flex-start; gap: 0; padding: 0 16px; }
  .tl-item       { flex-direction: row; align-items: center; gap: 14px; width: 100%; padding: 12px 0; }
  .tl-line       { width: 2px; height: 32px; margin: 0 9px; }
  .tl-text       { text-align: right; }

  /* ---- Reviews ---- */
  .reviews-sec  { padding: 50px 0; }
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .rev-card     { padding: 22px 18px; }

  /* ---- Order Section ---- */
  .order-sec    { padding: 50px 0; }
  .cd-block     { min-width: 60px; padding: 10px 14px; }
  .cd-num       { font-size: 1.7rem; }
  .cd-sep       { font-size: 1.6rem; }
  .pkg-grid     { grid-template-columns: 1fr; gap: 14px; }
  .pkg-img      { width: 110px; height: 110px; }

  /* Order Form */
  .order-form-box { padding: 28px 16px; margin: 0 4px; }
  .order-form-box h3 { font-size: 1.2rem; margin-bottom: 22px; }
  .form-row     { grid-template-columns: 1fr; gap: 14px; }
  .form-grp input,
  .form-grp select { font-size: 0.9rem; padding: 11px 14px; }
  .btn-submit   { font-size: 1rem; padding: 16px; }
  .form-trust   { flex-direction: column; align-items: center; gap: 8px; font-size: 0.78rem; }

  /* ---- Trust ---- */
  .trust-sec    { padding: 40px 0; }
  .trust-grid   { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-item   { padding: 20px 10px; }
  .trust-icon   { font-size: 2rem; }

  /* ---- FAQ ---- */
  .faq-sec      { padding: 50px 0; }
  .faq-q        { font-size: 0.9rem; padding: 16px 18px; }
  .faq-a p      { padding: 0 18px 16px; font-size: 0.88rem; }

  /* ---- Final CTA ---- */
  .final-cta    { padding: 50px 16px; }
  .final-product { width: 130px; }
  .final-text h2 { font-size: 1.3rem; }
  .final-badges  { gap: 10px; }
  .final-badges span { font-size: 0.78rem; padding: 6px 12px; }
  .btn-xl        { font-size: 1rem; padding: 16px 28px; width: 100%; justify-content: center; }

  /* ---- Footer ---- */
  .footer       { padding: 30px 0; }
  .footer-links { gap: 14px; }
  .footer-links a { font-size: 0.8rem; }

  /* ---- Modal ---- */
  .modal-box    { padding: 32px 20px; }
  .modal-box h3 { font-size: 1.2rem; }
}

/* ================================================
   RESPONSIVE — SMALL MOBILE (max-width: 380px)
   ================================================ */
@media (max-width: 380px) {
  .hero-text h1    { font-size: 1.4rem; }
  .hero-product-frame { width: 220px; height: 220px; }
  .hero-cap-bubble { display: none; }
  .trust-grid      { grid-template-columns: 1fr; }
  .cd-timer        { gap: 6px; }
  .cd-block        { min-width: 52px; padding: 8px 10px; }
  .cd-num          { font-size: 1.4rem; }
}

/* ================================================
   🔝 زر الرجوع — رحلة من الأسفل → الوسط → الأعلى
   ================================================ */
#scroll-journey-btn {
  position: fixed;
  bottom: 80px;
  left: 20px;
  width: auto;
  min-width: 64px;
  height: 64px;
  border-radius: 50px;
  background: var(--grad-main);
  color: #fff;
  border: 3px solid rgba(255,255,255,0.35);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0 18px;
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow:
    0 8px 28px rgba(233,30,140,0.5),
    0 2px 8px rgba(0,0,0,0.25),
    0 0 0 4px rgba(233,30,140,0.15);
  z-index: 9999;
  opacity: 0;
  transform: translateX(-80px) scale(0.8);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
#scroll-journey-btn.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}
#scroll-journey-btn:hover {
  transform: translateX(4px) scale(1.06);
  box-shadow:
    0 12px 36px rgba(233,30,140,0.65),
    0 0 0 6px rgba(233,30,140,0.2);
}
#scroll-journey-btn .btn-arrow { font-size: 1.4rem; line-height: 1; }
#scroll-journey-btn .btn-step  { font-size: 0.6rem; font-weight: 700; opacity: 0.9; line-height: 1; letter-spacing: 0.5px; }

/* حالة الخطوة الأولى (الوسط) */
#scroll-journey-btn.step-mid {
  background: linear-gradient(135deg, #e91e8c, #c2185b);
}
#scroll-journey-btn.step-mid .btn-arrow::before { content: '⬆'; }
#scroll-journey-btn:not(.step-mid) .btn-arrow::before { content: '⬆⬆'; }

/* Shake animation for required fields */@keyframes shake{0%,100%{transform:translateX(0)}20%,60%{transform:translateX(-8px)}40%,80%{transform:translateX(8px)}}
