/* ==========================================================================
   ILNET TELECOM — Couche « WOW » (styles)
   Intro cinématique, mascotte BIT, particules, micro-interactions.
   ========================================================================== */

/* ------------------------------------------------------------------ INTRO */
body.wow-locked { overflow: hidden; }

.wow-intro {
  position: fixed; inset: 0; z-index: 99990;
  background: #0A0601;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease .35s;
}
.wow-intro.closing { opacity: 0; pointer-events: none; }

.wow-rain { position: absolute; inset: 0; opacity: .55; }

/* scène : carte du Tchad + terminal NOC côte à côte */
.wow-scene {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(18px, 4vw, 54px);
  width: min(1020px, 94vw);
  transition: transform .55s cubic-bezier(.6, -0.3, .8, .6), opacity .45s ease;
}
.wow-intro.warping .wow-scene { transform: scale(3); opacity: 0; pointer-events: none; }

.wow-map {
  flex: 0 0 auto;
  width: clamp(180px, 26vw, 260px);
  animation: wowTermIn .5s cubic-bezier(.2, 1.4, .4, 1) both;
}
.wow-map svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 0 24px rgba(229, 115, 1, .25)); }

.wow-map-outline {
  fill: rgba(229, 115, 1, .05);
  stroke: #E57301; stroke-width: 2; stroke-linejoin: round;
  transition: stroke-dashoffset 1.3s ease .15s, fill 1s ease 1.4s;
}
.wow-map-outline.draw { stroke-dashoffset: 0 !important; fill: rgba(229, 115, 1, .10); }

.wow-link {
  stroke: #FFB870; stroke-width: 1.2; stroke-dasharray: 4 3;
  opacity: 0;
}
.wow-link.on { opacity: .85; animation: wowLinkFlow .5s linear infinite; }
@keyframes wowLinkFlow { to { stroke-dashoffset: -7; } }

.wow-city { opacity: 0; transition: opacity .3s ease; }
.wow-city.on { opacity: 1; }
.wow-city .dot { fill: #FFC27A; }
.wow-city.hub .dot { fill: #fff; }
.wow-city .halo { fill: none; stroke: #E57301; stroke-width: 1; opacity: 0; }
.wow-city.on .halo { animation: wowCityPing 1.6s ease-out infinite; }
.wow-city.hub.on .halo { stroke: #5EE0FF; animation-duration: 1.1s; }
@keyframes wowCityPing { 0% { opacity: .9; transform: scale(.4); } 100% { opacity: 0; transform: scale(2.4); } }
.wow-city { transform-box: fill-box; transform-origin: center; }
.wow-city text {
  font: 700 8px/1 'Archivo', monospace; letter-spacing: .5px;
  fill: #E9D6BE;
}
.wow-city.hub text { fill: #5EE0FF; font-size: 8.6px; }

.wow-cover {
  margin-top: 12px; text-align: center;
  font: 800 10.5px/1 'Archivo', monospace; letter-spacing: 2.5px; color: #E9D6BE;
  display: flex; align-items: center; justify-content: center; gap: 9px;
}
.wow-cover b { color: #FFC27A; min-width: 42px; text-align: left; font-size: 14px; }
.wow-cover .bars { display: inline-flex; align-items: flex-end; gap: 2.5px; height: 15px; }
.wow-cover .bars i {
  width: 4px; background: rgba(233, 214, 190, .18); border-radius: 1.5px;
  transition: background .25s ease;
}
.wow-cover .bars i:nth-child(1) { height: 4px; } .wow-cover .bars i:nth-child(2) { height: 7px; }
.wow-cover .bars i:nth-child(3) { height: 9.5px; } .wow-cover .bars i:nth-child(4) { height: 12px; }
.wow-cover .bars i:nth-child(5) { height: 15px; }
.wow-cover .bars i.on { background: #58C97B; box-shadow: 0 0 6px rgba(88, 201, 123, .7); }

.wow-term {
  position: relative;
  flex: 0 1 auto;
  width: min(560px, 92vw);
  background: rgba(16, 10, 3, .92);
  border: 1px solid rgba(229, 115, 1, .35);
  border-radius: 14px;
  box-shadow: 0 0 60px rgba(229, 115, 1, .25), 0 30px 80px rgba(0, 0, 0, .6);
  overflow: hidden;
  animation: wowTermIn .5s cubic-bezier(.2, 1.4, .4, 1) both;
  transition: transform .55s cubic-bezier(.6, -0.3, .8, .6), opacity .45s ease;
}
@keyframes wowTermIn { from { transform: scale(.86) translateY(26px); opacity: 0; } }

.wow-term-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 14px;
  background: rgba(229, 115, 1, .10);
  border-bottom: 1px solid rgba(229, 115, 1, .22);
}
.wow-term-bar i { width: 11px; height: 11px; border-radius: 50%; background: #E85D5D; }
.wow-term-bar i:nth-child(2) { background: #F5C445; }
.wow-term-bar i:nth-child(3) { background: #58C97B; }
.wow-term-bar span { margin-left: 8px; font: 500 11px/1 monospace; color: rgba(255, 194, 122, .6); letter-spacing: .4px; }

.wow-term-body { padding: 16px 18px 20px; min-height: 252px; }
.wow-term-out { margin: 0; font: 500 12.5px/1.85 'Consolas', 'Menlo', monospace; white-space: pre-wrap; word-break: break-word; }
.wow-term-out .cmd { color: #FFC27A; }
.wow-term-out .ok { color: rgba(94, 224, 255, .85); }
.wow-caret {
  display: inline-block; width: 9px; height: 15px; margin-left: 3px;
  background: #E57301; vertical-align: text-bottom;
  animation: wowBlink .75s steps(1) infinite;
}
@keyframes wowBlink { 50% { opacity: 0; } }

/* explosion warp */
.wow-warp {
  position: absolute; inset: 0; z-index: 3; pointer-events: none; opacity: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 194, 122, .9) 0%, rgba(229, 115, 1, .5) 18%, transparent 42%),
    repeating-conic-gradient(from 0deg at 50% 50%, rgba(255, 184, 112, .16) 0deg 2deg, transparent 2deg 9deg);
}
.wow-intro.warping .wow-warp { animation: wowWarp 1s cubic-bezier(.2, .8, .3, 1) .28s both; }
@keyframes wowWarp {
  0% { opacity: 0; transform: scale(.2) rotate(0deg); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: scale(3.4) rotate(40deg); }
}

/* marque + glitch */
.wow-brand {
  position: absolute; z-index: 4; text-align: center;
  opacity: 0; pointer-events: none;
}
.wow-intro.branding .wow-brand { opacity: 1; }
.wow-glitch {
  position: relative;
  font: 900 clamp(34px, 7vw, 72px)/1.05 'Archivo', sans-serif;
  letter-spacing: 2px; color: #fff;
}
.wow-glitch b { color: #E57301; }
.wow-intro.branding .wow-glitch { animation: wowGlitchPop .55s cubic-bezier(.2, 1.6, .4, 1) both; }
@keyframes wowGlitchPop { from { transform: scale(.4); filter: blur(10px); opacity: 0; } }
.wow-glitch::before, .wow-glitch::after {
  content: attr(data-text);
  position: absolute; inset: 0; overflow: hidden; color: #fff;
}
.wow-intro.branding .wow-glitch::before {
  text-shadow: -3px 0 #5EE0FF; clip-path: inset(18% 0 52% 0);
  animation: wowGlitchA .8s steps(2) .3s 3;
}
.wow-intro.branding .wow-glitch::after {
  text-shadow: 3px 0 #E57301; clip-path: inset(58% 0 12% 0);
  animation: wowGlitchB .7s steps(2) .35s 3;
}
@keyframes wowGlitchA { 0% { transform: translateX(-5px); } 50% { transform: translateX(4px); clip-path: inset(40% 0 30% 0); } 100% { transform: none; } }
@keyframes wowGlitchB { 0% { transform: translateX(5px); } 50% { transform: translateX(-4px); clip-path: inset(10% 0 70% 0); } 100% { transform: none; } }
.wow-brand-tag {
  margin-top: 14px;
  font: 700 clamp(13px, 1.8vw, 17px)/1.4 'Archivo', sans-serif;
  color: #E9D6BE; letter-spacing: 3px; text-transform: uppercase;
  animation: wowTagIn .6s ease .5s both;
}
@keyframes wowTagIn { from { opacity: 0; transform: translateY(14px); letter-spacing: 9px; } }

/* les trois couleurs du Tchad se déploient sous la signature */
.wow-flag {
  display: flex; justify-content: center; gap: 0;
  margin: 18px auto 0; width: min(280px, 60vw); height: 5px;
  border-radius: 3px; overflow: hidden;
}
.wow-flag i { height: 100%; width: 0; }
.wow-flag i:nth-child(1) { background: #002664; }
.wow-flag i:nth-child(2) { background: #FECB00; }
.wow-flag i:nth-child(3) { background: #C60C30; }
.wow-intro.branding .wow-flag i { animation: wowFlagGrow .5s ease both; }
.wow-intro.branding .wow-flag i:nth-child(1) { animation-delay: .55s; }
.wow-intro.branding .wow-flag i:nth-child(2) { animation-delay: .72s; }
.wow-intro.branding .wow-flag i:nth-child(3) { animation-delay: .89s; }
@keyframes wowFlagGrow { from { width: 0; } to { width: 33.34%; } }

.wow-skip {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 5;
  font: 600 11.5px/1 'Archivo', sans-serif; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(233, 214, 190, .55); cursor: pointer;
  animation: wowBlink 1.6s ease infinite;
}
.wow-skip span { color: #E57301; }

/* rideau d'entrée du contenu après l'intro */
body.wow-entered #root { animation: wowPageIn .8s cubic-bezier(.16, 1, .3, 1) both; }
@keyframes wowPageIn { from { transform: translateY(18px) scale(.995); opacity: .2; } }

/* --------------------------------------------------------- MASCOTTE BIT */
.ia-launcher { display: none !important; } /* remplacé par la mascotte */

.wow-buddy {
  position: fixed; right: 18px; bottom: 14px; z-index: 9600;
  cursor: pointer; user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform .35s cubic-bezier(.2, 1.6, .4, 1), opacity .3s ease;
}
body.wow-chat-open .wow-buddy { transform: translateY(180px) scale(.4); opacity: 0; pointer-events: none; }
.wow-buddy:hover .wow-bot, .wow-buddy:focus-visible .wow-bot { animation: wowBuddyJump .55s cubic-bezier(.3, 1.8, .4, 1); }
@keyframes wowBuddyJump { 35% { transform: translateY(-14px) rotate(-4deg); } 70% { transform: translateY(0) rotate(2deg); } }
.wow-buddy.zap .wow-bot { animation: wowBuddyZap .32s ease both; }
@keyframes wowBuddyZap { 40% { transform: scale(1.22) rotate(6deg); filter: brightness(1.5); } 100% { transform: scale(.2); opacity: 0; } }

.wow-bot { position: relative; filter: drop-shadow(0 10px 18px rgba(43, 27, 14, .30)); animation: wowBob 3.2s ease-in-out infinite; }
@keyframes wowBob { 50% { transform: translateY(-7px); } }

.wow-buddy-badge {
  position: absolute; top: 8px; right: -2px;
  background: linear-gradient(135deg, #5EE0FF, #2FA8D8);
  color: #06232E; font: 900 9.5px/1 'Archivo', sans-serif; letter-spacing: .5px;
  padding: 4px 7px; border-radius: 999px;
  box-shadow: 0 3px 10px rgba(47, 168, 216, .5);
  animation: wowBadgePulse 2s ease infinite;
}
@keyframes wowBadgePulse { 50% { transform: scale(1.14); } }

/* animations internes du robot */
.b-antenna-tip { animation: wowAntenna 1.6s ease infinite; transform-origin: 60px 13px; }
@keyframes wowAntenna { 50% { fill: #5EE0FF; r: 7.5; } }
.b-arm-wave { transform-origin: 30px 80px; animation: wowWave 2.6s ease-in-out infinite; }
@keyframes wowWave { 0%, 40%, 100% { transform: rotate(0deg); } 55% { transform: rotate(-26deg); } 70% { transform: rotate(8deg); } 82% { transform: rotate(-18deg); } }
.b-eyes { animation: wowBlinkEyes 4.4s steps(1) infinite; }
@keyframes wowBlinkEyes { 0%, 91%, 100% { transform: scaleY(1); } 93%, 96% { transform: scaleY(.08) translateY(48px); } }
.b-eye { transition: transform .12s linear; }
.b-heart { animation: wowHeart 1.15s ease infinite; transform-origin: 60px 100px; }
@keyframes wowHeart { 25% { transform: scale(1.25); } 45% { transform: scale(.95); } }
.b-head { transform-origin: 60px 60px; animation: wowHead 6s ease-in-out infinite; }
@keyframes wowHead { 0%, 100% { transform: rotate(0); } 30% { transform: rotate(-3deg); } 60% { transform: rotate(2.5deg); } }

/* bulle de dialogue */
.wow-bubble {
  position: absolute; right: 12px; bottom: 128px;
  width: max-content; max-width: 240px;
  background: #fff; color: #2B1B0E;
  border: 1.5px solid #F0DDC8;
  font: 600 12.5px/1.55 'Archivo', sans-serif;
  padding: 11px 14px; border-radius: 16px 16px 4px 16px;
  box-shadow: 0 14px 34px rgba(43, 27, 14, .18);
  opacity: 0; transform: translateY(12px) scale(.85); transform-origin: bottom right;
  transition: opacity .3s ease, transform .35s cubic-bezier(.2, 1.5, .4, 1);
  pointer-events: none;
}
.wow-bubble b { color: #E57301; }
.wow-bubble.show { opacity: 1; transform: none; }
.wow-bubble .tail {
  position: absolute; right: 16px; bottom: -7px;
  width: 12px; height: 12px; background: #fff;
  border-right: 1.5px solid #F0DDC8; border-bottom: 1.5px solid #F0DDC8;
  transform: rotate(45deg);
}

/* décale le panier pour laisser la place à BIT et à sa bulle */
.bz-cart-fab { bottom: 215px !important; }

/* le bouton WhatsApp passe à gauche, au-dessus du « retour en haut » */
.whatsapp-float { right: auto !important; left: 22px !important; bottom: 84px !important; }

/* --------------------------------------------------------- PARTICULES */
.wow-net { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.hero > *:not(.wow-net) { position: relative; z-index: 1; }

/* --------------------------------------------------- MICRO-INTERACTIONS */
.wow-mag { transition: transform .18s ease-out, box-shadow .25s ease; will-change: transform; }

.wow-ripple {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 255, .5) 0%, rgba(255, 255, 255, 0) 65%);
  animation: wowRip .6s ease-out both;
}
@keyframes wowRip { from { transform: scale(0); opacity: 1; } to { transform: scale(1); opacity: 0; } }

.wow-comet {
  position: fixed; top: 0; left: 0; z-index: 99999;
  width: 8px; height: 8px; border-radius: 50%;
  background: #E57301;
  box-shadow: 0 0 12px 3px rgba(229, 115, 1, .45);
  pointer-events: none; opacity: .75;
  transition: width .2s ease, height .2s ease, opacity .2s ease;
}
.wow-comet.grow { width: 30px; height: 30px; opacity: .18; margin: -11px 0 0 -11px; }

/* titres lettre par lettre */
.wow-ch { display: inline-block; opacity: 0; transform: translateY(.55em) rotate(6deg); transition: opacity .4s ease, transform .5s cubic-bezier(.2, 1.4, .4, 1); }
.wow-title-in .wow-ch { opacity: 1; transform: none; }

/* dégradé animé sur les kickers */
.kicker { position: relative; }
.section-head .kicker::after {
  content: ''; display: block; margin: 8px auto 0; height: 3px; width: 44px; border-radius: 3px;
  background: linear-gradient(90deg, #E57301, #FFB870, #E57301);
  background-size: 200% 100%;
  animation: wowGradSlide 2.4s linear infinite;
}
@keyframes wowGradSlide { to { background-position: -200% 0; } }

/* lueur douce derrière les stats */
.stat-card { transition: transform .25s ease, box-shadow .3s ease; }
.stat-card:hover { box-shadow: 0 18px 44px rgba(229, 115, 1, .18); }

/* -------------------------------------------------------- MODE HACKER */
body.wow-hacker { filter: hue-rotate(95deg) saturate(1.3); }
body.wow-hacker::after {
  content: 'MODE HACKER — sudo rm -rf /problemes_de_connexion';
  position: fixed; bottom: 8px; left: 12px; z-index: 100001;
  font: 700 11px/1 monospace; color: #58C97B;
  text-shadow: 0 0 8px rgba(88, 201, 123, .8);
  animation: wowBlink 1s steps(1) infinite;
}

/* ----------------------------------------------- PAGE SIMULATEURS (2 col) */
html { scroll-behavior: smooth; }
#debit, #eligibilite, #forfait, #entreprise, #devises { scroll-margin-top: 130px; }

.sim-wrap { max-width: 1180px; margin: 0 auto; padding: 6px 22px 34px; }

a.pz-chip { text-decoration: none; cursor: pointer; transition: transform .2s ease, box-shadow .25s ease; }
a.pz-chip:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(229, 115, 1, .18); }

.sim-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(26px, 4.5vw, 60px); align-items: center;
  padding: 44px 0;
}
.sim-row + .sim-row { border-top: 1px dashed #EBD9C4; }
.sim-row.rev .sim-pitch { order: 2; }
.sim-row.rev .sim-panel { order: 1; }

.sim-pitch { position: relative; }
.sim-pitch .sim-num {
  position: absolute; top: -34px; left: -12px; z-index: 0;
  font: 900 110px/1 'Archivo', sans-serif;
  color: transparent;
  -webkit-text-stroke: 2px rgba(229, 115, 1, .18);
  pointer-events: none; user-select: none;
}
.sim-pitch .kicker { position: relative; }
.sim-pitch h2 {
  position: relative;
  font: 900 clamp(24px, 2.9vw, 38px)/1.16 'Archivo', sans-serif;
  color: #2B1B0E; margin: 10px 0 14px;
}
.sim-pitch h2 em { font-style: normal; color: #E57301; }
.sim-pitch .punch {
  font: 500 15.5px/1.7 'Archivo', sans-serif; color: #59422C; margin: 0 0 16px;
}
.sim-pitch .punch b { color: #2B1B0E; }

.sim-facts { display: flex; flex-wrap: wrap; gap: 10px 26px; margin: 0 0 20px; padding: 0; list-style: none; }
.sim-facts li { display: flex; flex-direction: column; }
.sim-facts .v { font: 900 24px/1.1 'Archivo', sans-serif; color: #E57301; }
.sim-facts .l { font: 700 10.5px/1.4 'Archivo', sans-serif; letter-spacing: 1.4px; text-transform: uppercase; color: #8A6A4C; }

.sim-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.sim-cta .ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font: 800 13px/1 'Archivo', sans-serif;
  color: #E57301; border: 1.6px solid #E57301; border-radius: 999px;
  padding: 14px 22px; text-decoration: none;
  transition: background .25s ease, color .25s ease, transform .2s ease;
}
.sim-cta .ghost:hover { background: #E57301; color: #fff; transform: translateY(-2px); }

.sim-panel {
  background: #fff; border: 1px solid #F0DDC8; border-radius: 24px;
  padding: clamp(18px, 2.6vw, 30px);
  box-shadow: 0 26px 64px rgba(43, 27, 14, .10);
}
.sim-panel .en-calc, .sim-panel .bz-fx-panel, .sim-panel .en-eligibility {
  box-shadow: none; border: none; margin: 0; max-width: none;
}

.sim-band {
  background: linear-gradient(120deg, #2B1B0E, #4A2A0C 55%, #7A4004);
  border-radius: 26px; margin: 10px 0 30px;
  padding: clamp(28px, 4.5vw, 52px); text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.sim-band::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 184, 112, .22), transparent 55%);
}
.sim-band h2 { position: relative; font: 900 clamp(24px, 3.2vw, 40px)/1.2 'Archivo', sans-serif; margin: 0 0 10px; }
.sim-band p { position: relative; font: 500 15.5px/1.65 'Archivo', sans-serif; color: #E9D6BE; margin: 0 auto 22px; max-width: 640px; }
.sim-band .cta-band-btn { position: relative; }

@media (max-width: 920px) {
  .sim-row { grid-template-columns: 1fr; gap: 20px; padding: 34px 0; }
  .sim-row.rev .sim-pitch { order: 0; }
  .sim-row.rev .sim-panel { order: 1; }
  .sim-pitch .sim-num { font-size: 78px; top: -22px; }
}

/* ------------------------------------------------ DURCISSEMENT RESPONSIVE */
body { overflow-x: clip; }
img, svg, video { max-width: 100%; }
.navbar.nav2 { flex-wrap: nowrap; }
@media (max-width: 640px) {
  .pz-chips { gap: 8px; }
  .en-speed { grid-template-columns: 1fr !important; }
}

/* --------------------------------------------- TIROIR DE NAVIGATION (≤1440) */
.wow-nav-ov {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(23, 12, 3, .55);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.wow-nav-ov.show { opacity: 1; pointer-events: auto; }
.wow-nav-head { display: none; }

@media (max-width: 1099px) {
  /* pas de flou d'arrière-plan sur mobile : rendu lourd et illisible sur téléphones */
  .wow-nav-ov { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(23, 12, 3, .45); }
  .navbar, .navbar.nav2 { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .navbar.nav2 .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0; left: auto;
    height: 100dvh; max-height: none;
    width: min(400px, calc(100vw - 40px));
    margin: 0; border-radius: 24px 0 0 24px; border: none;
    padding: 14px 16px 28px;
    box-shadow: -30px 0 90px rgba(43, 27, 14, .35);
    overflow-y: auto; overflow-x: hidden;
    gap: 2px; z-index: 10000; background: #fff;
    transform: translateX(24px); opacity: 0; transition: transform .3s cubic-bezier(.2, 1, .3, 1), opacity .25s ease;
    display: flex;
    pointer-events: none;
  }
  .navbar.nav2 .nav-links.open { transform: none; opacity: 1; pointer-events: auto; z-index: 10001; background: #fff; }

  .wow-nav-head {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 6px 4px 12px;
    border-bottom: 1.5px solid #F0DDC8; margin-bottom: 8px;
  }
  .wow-nav-head span {
    font: 900 15px/1 'Archivo', sans-serif; color: #2B1B0E;
    letter-spacing: 2.5px; text-transform: uppercase;
  }
  .wow-nav-head span::after { content: ' ILNET'; color: #E57301; }
  .wow-nav-head .x {
    width: 40px; height: 40px; border: none; border-radius: 50%;
    background: #FFF3E2; color: #E57301; font-size: 22px; line-height: 1;
    cursor: pointer; transition: transform .2s ease, background .2s ease;
  }
  .wow-nav-head .x:hover { background: #E57301; color: #fff; transform: rotate(90deg); }

  /* items uniformes, plus de quinconce ni de scroll horizontal */
  .navbar.nav2 .nav-links > * { width: 100%; margin: 0; box-sizing: border-box; }
  .navbar.nav2 .nav-links .n2-item {
    width: 100%; box-sizing: border-box;
    flex-direction: row; justify-content: flex-start; gap: 12px;
    padding: 10px 12px; border-radius: 14px; font-size: 14px;
    transition: background .2s ease;
  }
  .navbar.nav2 .nav-links .n2-item:hover,
  .navbar.nav2 .nav-links a.activePage { background: #FFF3E2; }
  .navbar.nav2 .nav-links a { border-bottom: none; padding-bottom: 10px; }
  .navbar.nav2 .dropdown { width: 100%; }
  .navbar.nav2 .dropdown-content { position: static; transform: none; width: 100%; box-sizing: border-box; padding-left: 58px; }
  .navbar.nav2 .dropdown-content a { border-bottom: none; padding: 9px 0; font-size: 13.5px; }

  .navbar.nav2 .n2-mobile-cta {
    flex-direction: column; align-items: stretch; gap: 10px;
    margin-top: 14px; padding-top: 14px; border-top: 1.5px solid #F0DDC8;
  }
  .navbar.nav2 .n2-mobile-cta a { text-align: center; justify-content: center; display: inline-flex; align-items: center; }

  /* le tiroir prend la main : la navbar (et son tiroir) passe AU-DESSUS de l'overlay */
  body.nav-open { overflow: hidden; }
  body.nav-open .navbar, body.nav-open .navbar.nav2 { z-index: 10002; }
  body.nav-open .wow-buddy, body.nav-open .bz-cart-fab,
  body.nav-open .whatsapp-float, body.nav-open .en-top-btn,
  body.nav-open .wow-comet { opacity: 0 !important; pointer-events: none !important; }
}

/* ------------------------------------------------------- ACCESSIBILITÉ */
@media (prefers-reduced-motion: reduce) {
  .wow-intro, .wow-comet, .wow-net { display: none !important; }
  .wow-bot, .b-antenna-tip, .b-arm-wave, .b-eyes, .b-heart, .b-head { animation: none !important; }
  .wow-ch { opacity: 1 !important; transform: none !important; }
}

@media (max-width: 640px) {
  .wow-comet { display: none; }
  .wow-buddy { right: 10px; bottom: 10px; }
  .wow-bot svg { width: 74px; height: 92px; }
  .wow-bubble { bottom: 104px; max-width: 190px; }
  .bz-cart-fab { bottom: 175px !important; }
  .wow-scene { flex-direction: column; gap: 14px; }
  .wow-map { width: min(46vw, 175px); }
  .wow-cover { margin-top: 6px; font-size: 9px; letter-spacing: 1.6px; }
  .wow-term-body { min-height: 196px; }
  .wow-term-out { font-size: 10.5px; }
}

@media (max-height: 640px) and (min-width: 641px) {
  .wow-map { width: clamp(150px, 22vh, 200px); }
  .wow-term-body { min-height: 190px; }
}
