/* ============================================================
   NYRIX — Air Wallet Pro · Landing de Vente
   Identité héritée : noir #0A0A0C · accent cuivre #E8632C
   Typo : Archivo Expanded (display) + Satoshi (texte)
   Mobile-first · FR / EN / AR (RTL) · Devise MAD
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  --bg-dark: #0A0A0C;
  --bg-surface: #16161A;
  --bg-surface-2: #1C1C22;
  --text-primary: #F4F4F6;
  --text-secondary: #C9CCD1;
  --text-muted: #8A8D94;
  --accent: #E8632C;
  --accent-light: #F0884E;
  --accent-deep: #C24A18;
  --border: rgba(201, 204, 209, 0.10);
  --border-strong: rgba(201, 204, 209, 0.18);
  --maxw: 1240px;
  --radius: 18px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

body {
  font-family: 'Satoshi', 'Manrope', system-ui, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.rtl { direction: rtl; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo', sans-serif;
  font-variation-settings: 'wdth' 125;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
body.rtl h1, body.rtl h2, body.rtl h3, body.rtl h4 {
  font-family: 'Satoshi', sans-serif;
  font-variation-settings: normal;
  letter-spacing: -0.01em;
  text-transform: none;
  font-weight: 900;
}

p { color: var(--text-secondary); }
a { text-decoration: none; color: inherit; transition: color .3s ease; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: 1.25rem; }

/* ---------- Carbon-fiber texture utility ---------- */
.carbon-bg {
  background-color: #0A0A0C;
  background-image:
    linear-gradient(27deg,  rgba(22,22,26,0.55) 5px, transparent 5px),
    linear-gradient(207deg, rgba(22,22,26,0.55) 5px, transparent 5px),
    linear-gradient(27deg,  rgba(10,10,12,0.85) 5px, transparent 5px),
    linear-gradient(207deg, rgba(10,10,12,0.85) 5px, transparent 5px);
  background-size: 20px 20px;
  background-position: 0 5px, 10px 0, 0 10px, 10px 5px;
}

/* ---------- Interactive copper shine (cursor follow) ---------- */
.shine { position: relative; }
.shine::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  border-radius: inherit; opacity: 0; transition: opacity .4s ease;
  background: radial-gradient(220px circle at var(--mx,50%) var(--my,0%),
    rgba(240,136,78,0.24) 0%, rgba(232,99,44,0.13) 34%, transparent 60%);
  mix-blend-mode: screen; z-index: 2;
}
.shine:hover::after { opacity: 1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1.05rem 2.1rem; border-radius: 50px; border: 1px solid transparent;
  font-family: 'Satoshi', sans-serif; font-weight: 700; font-size: 1rem;
  letter-spacing: .2px; cursor: pointer; transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn-accent {
  background: linear-gradient(135deg, #E8632C 0%, #F0884E 100%);
  color: #0A0A0C; box-shadow: 0 14px 34px rgba(232,99,44,0.30);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 20px 46px rgba(232,99,44,0.45); }
.btn-outline { background: transparent; color: var(--text-primary); border: 1px solid var(--border-strong); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-lg { padding: 1.2rem 2.6rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ============================================================
   ANNOUNCEMENT MARQUEE
   ============================================================ */
.announce {
  background: linear-gradient(90deg, var(--accent-deep), var(--accent) 50%, var(--accent-deep));
  color: #0A0A0C; overflow: hidden; position: relative; z-index: 1001;
  border-bottom: 1px solid rgba(0,0,0,0.25);
}
.announce-track {
  display: flex; width: max-content;
  animation: marquee 32s linear infinite;
}
body.rtl .announce-track { animation-direction: reverse; }
.announce:hover .announce-track { animation-play-state: paused; }
.announce-group { display: flex; align-items: center; flex-shrink: 0; }
.announce-item {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .62rem 1.6rem; font-size: .82rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; white-space: nowrap;
}
.announce-item svg { width: 15px; height: 15px; flex-shrink: 0; }
.announce-sep { width: 5px; height: 5px; border-radius: 50%; background: rgba(10,10,12,0.55); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .announce-track { animation: none; } }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(10,10,12,0.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.navbar-content { max-width: var(--maxw); margin-inline: auto; padding: .85rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.navbar-logo { display: flex; align-items: center; cursor: pointer; }
.navbar-logo img { height: 30px; width: auto; filter: brightness(0) invert(1); }
.navbar-center { display: flex; align-items: center; gap: 2.2rem; }
.navbar-center a { font-size: .88rem; color: var(--text-secondary); font-weight: 600; position: relative; }
.navbar-center a::after { content: ''; position: absolute; bottom: -5px; inset-inline-start: 0; width: 0; height: 2px; background: var(--accent); transition: width .3s ease; }
.navbar-center a:hover { color: var(--text-primary); }
.navbar-center a:hover::after { width: 100%; }
.navbar-right { display: flex; align-items: center; gap: 1rem; }
.navbar-icon { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-secondary); transition: color .3s ease; position: relative; }
.navbar-icon:hover { color: var(--accent); }
.cart-badge { position: absolute; top: -5px; inset-inline-end: -5px; background: var(--accent); color: #0A0A0C; min-width: 18px; height: 18px; border-radius: 50%; font-size: .7rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }

.language-selector { position: relative; }
.lang-button { padding: .45rem .9rem; background: rgba(201,204,209,0.08); border: 1px solid var(--border); border-radius: 50px; color: var(--text-secondary); cursor: pointer; font-size: .82rem; font-weight: 600; font-family: inherit; transition: all .3s ease; display: flex; align-items: center; gap: .4rem; }
.lang-button:hover { border-color: var(--accent); color: var(--accent); }
.lang-dropdown { position: absolute; top: 100%; inset-inline-end: 0; background: rgba(10,10,12,0.97); border: 1px solid var(--border); border-radius: 10px; margin-top: .5rem; min-width: 150px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all .25s ease; z-index: 10; backdrop-filter: blur(12px); overflow: hidden; }
.language-selector:hover .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-option { padding: .65rem 1.1rem; color: var(--text-secondary); cursor: pointer; font-size: .88rem; transition: all .25s ease; border-bottom: 1px solid var(--border); }
.lang-option:last-child { border-bottom: none; }
.lang-option:hover { background: rgba(232,99,44,0.1); color: var(--accent); }
.lang-option.active { color: var(--accent); }

@media (max-width: 860px) { .navbar-center { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: clamp(2.5rem,6vw,5rem) 0 clamp(3rem,6vw,5.5rem);
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(232,99,44,0.10) 0%, transparent 52%),
    radial-gradient(140% 120% at 60% 0%, rgba(22,22,26,0.7) 0%, rgba(10,10,12,1) 62%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3.5rem); align-items: center; }
.hero-copy { max-width: 560px; }
.hero-flag { display: inline-flex; align-items: center; gap: .5rem; padding: .4rem .9rem .4rem .55rem;
  border: 1px solid var(--border-strong); border-radius: 50px; background: rgba(232,99,44,0.06);
  font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 1.4rem; }
.hero-flag .dot { width: 16px; height: 16px; border-radius: 50%; background: linear-gradient(135deg,#E8632C,#F0884E); display: inline-flex; align-items: center; justify-content: center; }
.hero-flag .dot svg { width: 10px; height: 10px; color: #0A0A0C; }
.hero h1 { font-size: clamp(2.3rem, 7vw, 4.1rem); margin-bottom: 1.2rem;
  background: linear-gradient(100deg, #F4F4F6 0%, #C9CCD1 32%, #FFFFFF 50%, #C9CCD1 68%, #F4F4F6 100%);
  background-size: 220% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero h1 .em { color: var(--accent); -webkit-text-fill-color: var(--accent); }
.hero-sub { font-size: clamp(1rem,2.4vw,1.18rem); color: var(--text-secondary); max-width: 46ch; margin-bottom: 1.8rem; }

.price-block { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.price-now { font-family: 'Archivo', sans-serif; font-variation-settings: 'wdth' 125; font-weight: 800; font-size: clamp(2rem,5vw,2.6rem); color: var(--text-primary); line-height: 1; }
.price-was { font-size: 1.1rem; color: var(--text-muted); text-decoration: line-through; }
.price-badge { background: linear-gradient(135deg,#E8632C,#F0884E); color: #0A0A0C; padding: .35rem .8rem; border-radius: 50px; font-weight: 800; font-size: .85rem; letter-spacing: .02em; }

.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.hero-cta .btn { flex: 1 1 auto; min-width: min(200px, 100%); }

.hero-trust { display: flex; flex-wrap: wrap; gap: .7rem 1.4rem; }
.hero-trust div { display: flex; align-items: center; gap: .45rem; font-size: .82rem; color: var(--text-secondary); }
.hero-trust svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

.hero-stage { position: relative; display: flex; align-items: center; justify-content: center; min-height: 360px; }
.hero-stage .glow { position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,99,44,0.30) 0%, rgba(232,99,44,0.10) 38%, transparent 68%); filter: blur(6px); }
.hero-stage img { position: relative; z-index: 1; width: min(92%, 460px); object-fit: contain;
  filter: drop-shadow(0 36px 60px rgba(0,0,0,0.6)) drop-shadow(0 12px 40px rgba(232,99,44,0.28));
  animation: floatY 5s ease-in-out infinite; }
.hero-stage .badge-float { position: absolute; z-index: 3; background: rgba(16,16,20,0.85); backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong); border-radius: 14px; padding: .7rem .9rem; display: flex; align-items: center; gap: .6rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
.hero-stage .badge-float .bf-ic { width: 30px; height: 30px; border-radius: 8px; background: rgba(232,99,44,0.12); border: 1px solid rgba(232,99,44,0.3); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.hero-stage .badge-float .bf-ic svg { width: 16px; height: 16px; }
.hero-stage .badge-float b { display: block; font-size: .82rem; color: var(--text-primary); white-space: nowrap; }
.hero-stage .badge-float span { font-size: .7rem; color: var(--text-muted); white-space: nowrap; }
.hero-stage .bf-1 { top: 8%; inset-inline-start: -2%; animation: floatY 5s ease-in-out infinite .4s; }
.hero-stage .bf-2 { bottom: 10%; inset-inline-end: -2%; animation: floatY 5s ease-in-out infinite 1.1s; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { order: -1; min-height: 300px; }
  .hero-copy { max-width: none; }
  .hero-stage .bf-1 { inset-inline-start: 2%; }
  .hero-stage .bf-2 { inset-inline-end: 2%; }
}

/* ============================================================
   VIDEO 16:9
   ============================================================ */
.video-sec { padding: clamp(2rem,5vw,4rem) 0; }
.video-head { text-align: center; margin-bottom: 2rem; }
.eyebrow { font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: .7rem; }
body.rtl .eyebrow { letter-spacing: .05em; }
.video-head h2 { font-size: clamp(1.7rem,4.5vw,2.6rem); }
.video-frame { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border-strong); box-shadow: 0 30px 70px rgba(0,0,0,0.5), inset 0 1px 0 rgba(201,204,209,0.05);
  background-color: #0C0C10;
  background-image:
    radial-gradient(120% 100% at 50% 0%, rgba(232,99,44,0.14) 0%, transparent 50%),
    radial-gradient(100% 100% at 50% 120%, #000 0%, transparent 55%),
    linear-gradient(27deg, rgba(22,22,26,0.7) 6px, transparent 6px),
    linear-gradient(207deg, rgba(22,22,26,0.7) 6px, transparent 6px),
    linear-gradient(27deg, rgba(10,10,12,0.9) 6px, transparent 6px),
    linear-gradient(207deg, rgba(10,10,12,0.9) 6px, transparent 6px);
  background-size: 100% 100%, 100% 100%, 26px 26px, 26px 26px, 26px 26px, 26px 26px;
  background-position: 0 0, 0 0, 0 6px, 13px 0, 0 13px, 13px 6px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.video-frame .play {
  width: clamp(72px, 9vw, 104px); aspect-ratio: 1; border-radius: 50%;
  background: linear-gradient(135deg,#E8632C,#F0884E); color: #0A0A0C;
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 2;
  box-shadow: 0 16px 50px rgba(232,99,44,0.5); transition: transform .3s var(--ease);
}
.video-frame .play svg { width: 38%; height: 38%; margin-inline-start: 8%; }
.video-frame:hover .play { transform: scale(1.08); }
.video-frame .play::before, .video-frame .play::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(232,99,44,0.5);
}
@media (prefers-reduced-motion: no-preference) {
  .video-frame .play::before { animation: ring 2.6s ease-out infinite; }
  .video-frame .play::after { animation: ring 2.6s ease-out infinite 1.3s; }
}
@keyframes ring { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.9); opacity: 0; } }
.video-frame .v-label { position: absolute; bottom: 1rem; inset-inline-start: 1.1rem; z-index: 2; font-size: .8rem; font-weight: 600; color: var(--text-secondary); background: rgba(10,10,12,0.6); padding: .35rem .8rem; border-radius: 50px; border: 1px solid var(--border); backdrop-filter: blur(6px); }

/* ============================================================
   BENEFITS — alternating image + text
   ============================================================ */
.benefits { padding: clamp(2.5rem,6vw,5rem) 0; }
.benefits-intro { text-align: center; max-width: 640px; margin: 0 auto clamp(2.5rem,5vw,4rem); }
.benefits-intro h2 { font-size: clamp(1.8rem,5vw,3rem); margin-bottom: 1rem; }
.benefits-intro p { font-size: 1.05rem; }

.brow { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,4rem); align-items: center; margin-bottom: clamp(3rem,6vw,5rem); }
.brow:last-child { margin-bottom: 0; }
.brow:nth-child(even) .brow-visual { order: 2; }
.brow-num { font-family: 'Archivo', sans-serif; font-variation-settings: 'wdth' 125; font-weight: 800; font-size: .9rem; color: var(--accent); letter-spacing: .1em; margin-bottom: .8rem; }
.brow-text h3 { font-size: clamp(1.4rem,3.4vw,2rem); margin-bottom: .9rem; }
.brow-text p { font-size: 1.02rem; line-height: 1.75; margin-bottom: 1.2rem; }
.brow-chips { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip { font-size: .8rem; font-weight: 600; color: var(--text-secondary); padding: .42rem .85rem; border: 1px solid var(--border); border-radius: 50px; background: rgba(22,22,26,0.5); }
.chip strong { color: var(--accent); font-weight: 700; }

.brow-visual { position: relative; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 24px 50px rgba(0,0,0,0.4), inset 0 1px 0 rgba(201,204,209,0.05); }
.brow-visual::before { content: ''; position: absolute; width: 72%; height: 72%; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,99,44,0.22) 0%, transparent 66%); filter: blur(8px); }
.brow-visual img { position: relative; z-index: 1; width: 78%; height: 82%; object-fit: contain;
  -webkit-mask-image: radial-gradient(ellipse 72% 72% at 50% 50%, #000 58%, transparent 86%);
  mask-image: radial-gradient(ellipse 72% 72% at 50% 50%, #000 58%, transparent 86%); }

@media (max-width: 820px) {
  .brow { grid-template-columns: 1fr; gap: 1.4rem; }
  .brow:nth-child(even) .brow-visual { order: 0; }
  .brow-visual { aspect-ratio: 16/11; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-sec { padding: clamp(2.5rem,6vw,5rem) 0; }
.gallery-head { text-align: center; margin-bottom: 2.5rem; }
.gallery-head h2 { font-size: clamp(1.8rem,5vw,2.8rem); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gtile { position: relative; aspect-ratio: 1; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: border-color .3s ease, transform .3s var(--ease); }
.gtile:hover { border-color: rgba(232,99,44,0.5); transform: translateY(-4px); }
.gtile::before { content: ''; position: absolute; width: 70%; height: 70%; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,99,44,0.16) 0%, transparent 66%); filter: blur(8px); }
.gtile img { position: relative; z-index: 1; width: 84%; height: 84%; object-fit: contain;
  -webkit-mask-image: radial-gradient(ellipse 72% 72% at 50% 50%, #000 56%, transparent 86%);
  mask-image: radial-gradient(ellipse 72% 72% at 50% 50%, #000 56%, transparent 86%);
  transition: transform .4s var(--ease); }
.gtile:hover img { transform: scale(1.07); }
.gtile.wide { grid-column: span 2; aspect-ratio: 2/1; }
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gtile.wide { grid-column: span 2; aspect-ratio: 16/9; }
}

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.proof { padding: clamp(2.5rem,6vw,5rem) 0; background: linear-gradient(180deg, rgba(22,22,26,0.4), rgba(10,10,12,0)); border-block: 1px solid var(--border); }
.proof-top { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem 2.5rem; align-items: center; margin-bottom: 2.5rem; flex-wrap: wrap; }
.proof-score { display: flex; align-items: center; gap: 1rem; }
.proof-score .big { font-family: 'Archivo', sans-serif; font-variation-settings: 'wdth' 125; font-weight: 800; font-size: 3rem; line-height: 1; }
.stars { color: var(--accent); letter-spacing: 2px; }
.proof-score .sub { font-size: .85rem; color: var(--text-secondary); }
.proof-badges { display: flex; flex-wrap: wrap; gap: .7rem; }
.pbadge { display: flex; align-items: center; gap: .5rem; padding: .55rem 1rem; border: 1px solid var(--border); border-radius: 50px; font-size: .82rem; font-weight: 600; color: var(--text-secondary); background: rgba(22,22,26,0.5); }
.pbadge svg { width: 16px; height: 16px; color: var(--accent); }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.review { padding: 1.6rem; border-radius: 16px; border: 1px solid var(--border); background: rgba(22,22,26,0.55); }
.review .stars { font-size: .9rem; margin-bottom: .8rem; }
.review p { color: var(--text-primary); font-size: .96rem; line-height: 1.7; margin-bottom: 1.1rem; }
.review-author { display: flex; align-items: center; gap: .7rem; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg,#E8632C,#F0884E); color: #0A0A0C; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .85rem; flex-shrink: 0; }
.review-author strong { display: block; font-size: .86rem; }
.review-author span { font-size: .74rem; color: var(--accent); }
@media (max-width: 820px) { .reviews { grid-template-columns: 1fr; } .proof-top { grid-template-columns: 1fr; } }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { padding: clamp(3rem,7vw,6rem) 0; }
.final-stage { position: relative; border-radius: 28px; overflow: hidden; padding: clamp(2.8rem,6vw,5rem) 1.5rem; text-align: center;
  border: 1px solid rgba(232,99,44,0.2);
  background-color: #0C0C10;
  background-image:
    radial-gradient(120% 90% at 50% -10%, rgba(232,99,44,0.20) 0%, transparent 46%),
    radial-gradient(100% 100% at 50% 120%, #000 0%, transparent 55%),
    linear-gradient(27deg, rgba(22,22,26,0.7) 6px, transparent 6px),
    linear-gradient(207deg, rgba(22,22,26,0.7) 6px, transparent 6px),
    linear-gradient(27deg, rgba(10,10,12,0.9) 6px, transparent 6px),
    linear-gradient(207deg, rgba(10,10,12,0.9) 6px, transparent 6px);
  background-size: 100% 100%, 100% 100%, 26px 26px, 26px 26px, 26px 26px, 26px 26px;
  background-position: 0 0, 0 0, 0 6px, 13px 0, 0 13px, 13px 6px;
  box-shadow: inset 0 1px 0 rgba(201,204,209,0.05), inset 0 0 140px rgba(0,0,0,0.8);
}
.final-stage h2 { font-size: clamp(2rem,6vw,3.6rem); margin-bottom: 1rem;
  background: linear-gradient(100deg, #F4F4F6 0%, #C9CCD1 32%, #FFFFFF 50%, #C9CCD1 68%, #F4F4F6 100%);
  background-size: 220% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.final-stage h2 .em { color: var(--accent); -webkit-text-fill-color: var(--accent); }
.final-stage p { font-size: 1.08rem; max-width: 50ch; margin: 0 auto 1.4rem; }
.final-price { display: inline-flex; align-items: center; gap: .8rem; margin-bottom: 1.8rem; }
.final-price .now { font-family: 'Archivo', sans-serif; font-variation-settings: 'wdth' 125; font-weight: 800; font-size: 1.9rem; }
.final-price .was { color: var(--text-muted); text-decoration: line-through; font-size: 1.05rem; }
.final-price .badge { background: linear-gradient(135deg,#E8632C,#F0884E); color: #0A0A0C; padding: .3rem .7rem; border-radius: 50px; font-weight: 800; font-size: .8rem; }
.final-stage .btn { position: relative; z-index: 2; }
.final-note { margin-top: 1.2rem; font-size: .82rem; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }
.final-note span { display: inline-flex; align-items: center; gap: .4rem; }
.final-note svg { width: 15px; height: 15px; color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 3.5rem 0 2rem; border-top: 1px solid rgba(232,99,44,0.15); }
.footer-content { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-logo img { height: 26px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; max-width: 34ch; }
.footer-section h4 { font-family: 'Satoshi', sans-serif; font-variation-settings: normal; text-transform: none; font-size: .95rem; font-weight: 700; margin-bottom: 1.1rem; }
.footer-section li { margin-bottom: .65rem; }
.footer-section a { color: var(--text-secondary); font-size: .86rem; }
.footer-section a:hover { color: var(--accent); }
.footer-divider { border-top: 1px solid var(--border); padding-top: 1.8rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-divider p { font-size: .8rem; color: var(--text-muted); }
@media (max-width: 760px) { .footer-content { grid-template-columns: 1fr 1fr; gap: 2rem; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 460px) { .footer-content { grid-template-columns: 1fr; } }

/* ============================================================
   STICKY MOBILE BUY BAR
   ============================================================ */
.sticky-buy {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 950;
  background: rgba(12,12,16,0.96); backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-strong); padding: .7rem 1rem;
  display: flex; align-items: center; gap: 1rem;
  transform: translateY(130%); transition: transform .4s var(--ease);
  padding-bottom: max(.7rem, env(safe-area-inset-bottom));
}
.sticky-buy.show { transform: translateY(0); }
.sticky-buy .sb-info { flex: 1; min-width: 0; }
.sticky-buy .sb-info strong { display: block; font-size: .86rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-buy .sb-info .sb-price { font-size: .9rem; }
.sticky-buy .sb-info .sb-price .now { color: var(--accent); font-weight: 800; }
.sticky-buy .sb-info .sb-price .was { color: var(--text-muted); text-decoration: line-through; font-size: .78rem; margin-inline-start: .4rem; }
.sticky-buy .btn { padding: .85rem 1.6rem; }
@media (min-width: 901px) { .sticky-buy { display: none; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
}

/* ============================================================
   TEXT MOTION
   Hero copy rises in on load · headings shimmer · section text
   staggers in on scroll. All gated behind reduced-motion.
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {

  /* Hero: staggered rise on load — base state is VISIBLE; the
     hidden start is applied by JS (.anim-pre) and removed on the
     next frame, so no-JS / print always shows the text. */
  .hero-copy > * { transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .hero-copy.anim-pre > * { opacity: 0; transform: translateY(22px); }
  .hero-copy > *:nth-child(1) { transition-delay: .05s; }
  .hero-copy > *:nth-child(2) { transition-delay: .15s; }
  .hero-copy > *:nth-child(3) { transition-delay: .25s; }
  .hero-copy > *:nth-child(4) { transition-delay: .35s; }
  .hero-copy > *:nth-child(5) { transition-delay: .45s; }
  .hero-copy > *:nth-child(6) { transition-delay: .55s; }

  /* Headings shimmer (decorative, doesn't affect visibility) */
  .hero h1 { animation: textShine 7s ease-in-out 1.4s infinite; }
  .final-stage.in h2 { animation: textShine 7s ease-in-out .4s infinite; }

  /* Section text: stagger children of revealed blocks */
  .benefits-intro.reveal > *,
  .video-head.reveal > *,
  .gallery-head.reveal > *,
  .brow.reveal .brow-text > *,
  .final-stage.reveal > * {
    opacity: 0; transform: translateY(16px);
    transition: opacity .55s ease, transform .55s var(--ease);
  }
  .benefits-intro.reveal.in > *,
  .video-head.reveal.in > *,
  .gallery-head.reveal.in > *,
  .brow.reveal.in .brow-text > *,
  .final-stage.reveal.in > * {
    opacity: 1; transform: none;
  }
  /* stagger steps */
  .benefits-intro.reveal.in > *:nth-child(1),
  .video-head.reveal.in > *:nth-child(1),
  .gallery-head.reveal.in > *:nth-child(1),
  .brow.reveal.in .brow-text > *:nth-child(1),
  .final-stage.reveal.in > *:nth-child(1) { transition-delay: .05s; }
  .benefits-intro.reveal.in > *:nth-child(2),
  .video-head.reveal.in > *:nth-child(2),
  .gallery-head.reveal.in > *:nth-child(2),
  .brow.reveal.in .brow-text > *:nth-child(2),
  .final-stage.reveal.in > *:nth-child(2) { transition-delay: .15s; }
  .benefits-intro.reveal.in > *:nth-child(3),
  .gallery-head.reveal.in > *:nth-child(3),
  .brow.reveal.in .brow-text > *:nth-child(3),
  .final-stage.reveal.in > *:nth-child(3) { transition-delay: .25s; }
  .brow.reveal.in .brow-text > *:nth-child(4),
  .final-stage.reveal.in > *:nth-child(4) { transition-delay: .35s; }
  .final-stage.reveal.in > *:nth-child(5) { transition-delay: .45s; }
  .final-stage.reveal.in > *:nth-child(6) { transition-delay: .55s; }
}

@keyframes textRise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes textShine {
  0%, 100% { background-position: 0% center; }
  50%      { background-position: 100% center; }
}

/* ===========================================================================
   Self-hosted fonts (no CDN) — alias 'Archivo' → theme's 'Archivo Expanded'.
   vente.css lives in assets/css/, fonts in assets/fonts/ → ../fonts/.
   =========================================================================== */
@font-face{font-family:'Satoshi';font-style:normal;font-weight:300 900;font-display:swap;src:url('../fonts/satoshi-variable.woff2') format('woff2');}
@font-face{font-family:'Archivo';font-style:normal;font-weight:600;font-display:swap;src:url('../fonts/archivo-expanded-600.woff2') format('woff2');}
@font-face{font-family:'Archivo';font-style:normal;font-weight:700;font-display:swap;src:url('../fonts/archivo-expanded-700.woff2') format('woff2');}
@font-face{font-family:'Archivo';font-style:normal;font-weight:800;font-display:swap;src:url('../fonts/archivo-expanded-800.woff2') format('woff2');}
@font-face{font-family:'Tajawal';font-style:normal;font-weight:700;font-display:swap;src:url('../fonts/tajawal-700-arabic.woff2') format('woff2');}
@font-face{font-family:'Tajawal';font-style:normal;font-weight:800;font-display:swap;src:url('../fonts/tajawal-800-arabic.woff2') format('woff2');}
/* Arabic (RTL): self-hosted Tajawal, Latin falls back to Satoshi. */
body.rtl, body.rtl h1, body.rtl h2, body.rtl h3, body.rtl h4 { font-family: 'Tajawal','Satoshi',sans-serif; }
/* Real hero video fills the 16:9 frame. */
.video-frame .v-video { width:100%; height:100%; object-fit:cover; display:block; }
/* WooCommerce appends a "view cart" link after AJAX — hidden on this landing. */
a.added_to_cart { display:none !important; }

/* ===========================================================================
   Upsell / cross-sell popup (shown after the main product is added via AJAX).
   =========================================================================== */
.upsell-overlay {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center; padding: 1.25rem;
  background: rgba(7, 7, 9, 0.78); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity .28s ease, visibility .28s ease;
}
.upsell-overlay.open { opacity: 1; visibility: visible; }
body.upsell-lock { overflow: hidden; }
.upsell-modal {
  position: relative; width: 100%; max-width: 640px; max-height: 92vh; overflow-y: auto;
  background: var(--bg-surface); border: 1px solid var(--border-strong); border-radius: var(--radius);
  padding: 2.2rem 1.6rem 1.6rem; text-align: center;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .9);
  transform: translateY(14px) scale(.98); transition: transform .28s var(--ease);
}
.upsell-overlay.open .upsell-modal { transform: none; }
.upsell-close {
  position: absolute; top: .8rem; inset-inline-end: .9rem;
  width: 38px; height: 38px; border: none; border-radius: 50%;
  background: rgba(201, 204, 209, .08); color: var(--text-secondary);
  font-size: 1.6rem; line-height: 1; cursor: pointer; font-family: inherit;
  display: flex; align-items: center; justify-content: center; transition: all .25s ease;
}
.upsell-close:hover { color: var(--text-primary); background: rgba(201, 204, 209, .18); }
.upsell-check {
  width: 48px; height: 48px; margin: 0 auto .7rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(232, 99, 44, .14); color: var(--accent); font-size: 1.35rem; font-weight: 700;
}
.upsell-modal h3 {
  font-family: 'Archivo', sans-serif; font-variation-settings: 'wdth' 125; font-weight: 800;
  font-size: clamp(1.3rem, 3.2vw, 1.7rem); margin: .2rem 0 .5rem;
}
body.rtl .upsell-modal h3 { font-family: 'Tajawal', sans-serif; }
.upsell-intro { color: var(--text-secondary); font-size: .95rem; max-width: 46ch; margin: 0 auto 1.4rem; }
.upsell-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.4rem; }
@media (max-width: 520px) { .upsell-grid { grid-template-columns: 1fr; } }
.upsell-card {
  border: 1px solid var(--border); border-radius: 14px; padding: 1rem; background: var(--bg-surface-2);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.uc-img { width: 100%; aspect-ratio: 1; border-radius: 10px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.uc-img img { width: 100%; height: 100%; object-fit: cover; }
.uc-name { font-weight: 700; font-size: .95rem; line-height: 1.3; }
.uc-price { font-family: 'Archivo', sans-serif; font-variation-settings: 'wdth' 125; font-weight: 800; color: var(--accent); font-size: 1.05rem; }
.uc-add { width: 100%; margin-top: .3rem; }
.upsell-checkout { width: 100%; }
.upsell-skip {
  display: block; width: 100%; margin-top: .85rem; padding: .4rem;
  background: none; border: none; color: var(--text-muted); font-size: .85rem; cursor: pointer; font-family: inherit;
}
.upsell-skip:hover { color: var(--text-secondary); }
@media (prefers-reduced-motion: reduce) {
  .upsell-overlay, .upsell-modal { transition: none; }
  .upsell-overlay.open .upsell-modal { transform: none; }
}
