/* ═══════════════════════════════════════════════════════════════
   WAF FORME — CSS HEADER & FOOTER
═══════════════════════════════════════════════════════════════ */

/* ── Header Top Bar ── */
.waf-header-top {
  background: rgba(13,11,11,0.98);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 8px 0;
  transition: all 0.3s ease;
}
.waf-header-top-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 52px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.waf-header-top-left { display: flex; align-items: center; gap: 20px; }

/* Liens top bar */
.waf-top-tel,
.waf-top-email {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 0.7rem; font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-decoration: none; letter-spacing: 0.04em;
  transition: color 0.18s;
}
.waf-top-tel:hover, .waf-top-email:hover { color: var(--waf-nude, #e5cebb); }
.waf-top-tel svg, .waf-top-email svg { flex-shrink: 0; opacity: 0.7; }

.waf-top-address {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}
.waf-top-address svg { flex-shrink: 0; opacity: 0.5; }

/* Réseaux sociaux top bar */
.waf-header-top-right a {
  display: inline-flex; align-items: center;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.18s;
}
.waf-header-top-right a:hover { color: var(--waf-nude, #e5cebb); }
.waf-header-top-right a svg { display: block; }
.waf-header-top-right { display: flex; align-items: center; gap: 12px; }

.waf-top-item {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 500;
  color: rgba(255,255,255,0.38); text-decoration: none;
  transition: color 0.2s; letter-spacing: 0.04em;
}
.waf-top-item:hover { color: var(--waf-nude); }
.waf-top-item svg { flex-shrink: 0; opacity: 0.6; }
.waf-top-address { display: none; }

.waf-top-badge {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-body); font-size: 0.62rem; font-weight: 600;
  color: rgba(255,255,255,0.35); letter-spacing: 0.06em;
}

.waf-top-social {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4); transition: all 0.2s;
}
.waf-top-social:hover { background: rgba(255,255,255,0.12); color: white; }

/* ── Navigation Principale ── */
.waf-nav {
  position: sticky; top: 0; z-index: 500;
  height: 68px; background: rgba(13,11,11,0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all 0.3s ease;
}
.waf-header.scrolled .waf-header-top { display: none; }
.waf-nav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  background: rgba(13,11,11,0.99);
}

.waf-nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 32px;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

/* Logo */
.waf-nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.waf-nav-logo img { height: 40px; width: auto; }
.waf-logo-text { display: flex; align-items: baseline; gap: 4px; }
.waf-logo-waf {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 900;
  color: white; letter-spacing: -0.02em; text-transform: uppercase;
}
.waf-logo-forme {
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 300;
  color: var(--waf-nude); letter-spacing: 0.2em; text-transform: uppercase;
}

/* Menu links */
.waf-nav-links { display: flex; gap: clamp(12px, 1.8vw, 24px); align-items: center; flex: 1; justify-content: center; }

/* Menu mobile — caché sur desktop */
.waf-nav-menu {
  display: contents; /* Invisible sur desktop — les liens restent dans le flux normal */
}
.waf-nav-mobile-cta { display: none; } /* Caché sur desktop */
.waf-nav-links li { position: relative; }
.waf-nav-links a {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s;
  padding: 4px 0; display: block;
}
.waf-nav-links a:hover,
.waf-nav-links .current-menu-item > a,
.waf-nav-links .current_page_item > a { color: var(--waf-nude); }

/* ══════════════════════════════════════
   SOUS-MENUS DESKTOP — 3 niveaux
══════════════════════════════════════ */

/* Tous les li parents = contexte de positionnement */
.waf-nav-links li.menu-item-has-children {
  position: relative;
}

/* Style commun à tous les sous-menus */
.waf-nav-links ul {
  display: block;
  position: absolute;
  background: rgba(20,17,17,0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 8px;
  min-width: 200px;
  z-index: 500;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

/* ── Niveau 1 : sous le lien parent ── */
.waf-nav-links > li > ul {
  top: calc(100% + 4px);
  left: -12px;
  transform: translateY(4px);
}

/* ── Niveau 2+ : à droite du parent ── */
.waf-nav-links ul ul {
  top: -8px;
  left: calc(100% + 4px);
  transform: translateX(-4px) translateY(0);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

/* Ouvert */
.waf-nav-links li.menu-item-has-children:hover > ul {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.waf-nav-links > li.menu-item-has-children:hover > ul {
  transform: translateY(0);
}
.waf-nav-links ul li.menu-item-has-children:hover > ul {
  transform: translateX(0) translateY(0);
}

/* Délai fermeture 80ms */
.waf-nav-links li.menu-item-has-children:not(:hover) > ul {
  transition-delay: 80ms;
}

/* Indicateur flèche niveau 2 */
.waf-nav-links ul li.menu-item-has-children > a::after {
  content: '›';
  float: right;
  margin-left: 8px;
  opacity: 0.5;
  font-size: 1rem;
}
.waf-nav-links ul li a {
  display: block; padding: 9px 14px; border-radius: 8px;
  font-size: 0.72rem; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55); transition: all 0.15s;
  white-space: nowrap;
}
.waf-nav-links ul li a:hover {
  background: rgba(255,255,255,0.07);
  color: var(--waf-nude);
  padding-left: 18px;
}
/* Cacher l'arrow HTML du walker — on utilise le ::after CSS à la place */
.waf-nav-links .waf-nav-arrow { display: none; }
/* Indicateur flèche sur les liens parent */
.waf-nav-links > li > a.has-children::after {
  content: '›';
  display: inline-block;
  margin-left: 5px;
  font-size: 0.9rem;
  opacity: 0.4;
  transform: rotate(90deg);
  transition: transform 0.2s, opacity 0.2s;
  vertical-align: middle;
}
.waf-nav-links > li:hover > a.has-children::after {
  transform: rotate(270deg);
  opacity: 0.8;
}
/* Cacher la flèche HTML du walker — déjà gérée en CSS */
.waf-nav-links .waf-nav-arrow { display: none; }

/* Nav right */
.waf-nav-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.waf-nav-link-sec {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s;
}
.waf-nav-link-sec:hover { color: var(--waf-nude); }

/* Burger */
.waf-nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; outline: none;
}
.waf-nav-burger span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.6); transition: all 0.3s ease;
}
.waf-nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.waf-nav-burger.open span:nth-child(2) { opacity: 0; }
.waf-nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Overlay mobile */
.waf-nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 498;
  background: rgba(13,11,11,0.7); backdrop-filter: blur(4px);
}
.waf-nav-overlay.open { display: block; }

/* ── MODAL ── */
.waf-modal-eyebrow {
  font-family: var(--font-body); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--waf-accent); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.waf-modal-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--waf-accent); }
.waf-modal-title {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.02em; line-height: 0.95;
  color: white; margin-bottom: 12px;
}
.waf-modal-title em { color: var(--waf-accent); font-style: italic; font-weight: 300; }
.waf-modal-desc {
  font-family: var(--font-body); font-size: 0.82rem;
  color: rgba(255,255,255,0.38); line-height: 1.7; margin-bottom: 28px;
}
.waf-form-legal {
  font-family: var(--font-body); font-size: 0.62rem;
  color: rgba(255,255,255,0.2); text-align: center; margin-top: 12px; line-height: 1.6;
}
.waf-form-success { text-align: center; padding: 20px 0; }
.waf-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(82,168,112,0.15); border: 1px solid rgba(82,168,112,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--waf-zen); margin: 0 auto 20px;
}
.waf-form-success h3 {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 800;
  color: white; text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 8px;
}
.waf-form-success p { font-family: var(--font-body); font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* ── FOOTER ── */
.waf-footer { background: var(--waf-black); border-top: 1px solid rgba(255,255,255,0.05); }

.waf-footer-top { padding: 80px 0 60px; }
.waf-footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 52px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 60px;
}
.waf-footer-logo img { height: 38px; width: auto; margin-bottom: 16px; }
.waf-logo-text--footer .waf-logo-waf { font-size: 1.4rem; }
.waf-logo-text--footer .waf-logo-forme { font-size: 0.75rem; }

.waf-footer-tagline {
  font-family: var(--font-body); font-size: 0.8rem;
  color: rgba(255,255,255,0.35); line-height: 1.7; margin-bottom: 20px;
}
.waf-footer-tagline em { color: var(--waf-accent); font-style: normal; }

.waf-footer-socials { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.waf-footer-social {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.06em; color: rgba(255,255,255,0.32); text-decoration: none;
  transition: color 0.2s;
}
.waf-footer-social:hover { color: var(--waf-nude); }
.waf-footer-social svg { opacity: 0.6; }

.waf-footer-rating {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.65rem;
  color: rgba(255,255,255,0.25); letter-spacing: 0.06em;
}
.waf-footer-stars { color: var(--waf-accent); font-size: 0.7rem; letter-spacing: 1px; }

.waf-footer-col-title {
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 20px;
}
.waf-footer-nav { display: flex; flex-direction: column; gap: 10px; }
.waf-footer-nav a {
  font-family: var(--font-body); font-size: 0.82rem;
  color: rgba(255,255,255,0.42); text-decoration: none; transition: color 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.waf-footer-nav a::before { content: '—'; font-size: 0.6rem; color: var(--waf-accent); opacity: 0.6; }
.waf-footer-nav a:hover { color: var(--waf-nude); }

.waf-footer-hours { display: flex; flex-direction: column; gap: 8px; }
.waf-footer-hour-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.waf-footer-hour-row:last-child { border-bottom: none; }
.waf-footer-hour-day { font-family: var(--font-body); font-size: 0.72rem; color: rgba(255,255,255,0.45); font-weight: 500; }
.waf-footer-hour-time { font-family: var(--font-body); font-size: 0.68rem; color: rgba(255,255,255,0.25); }

.waf-footer-contact { display: flex; flex-direction: column; gap: 10px; }
.waf-footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--font-body); font-size: 0.8rem;
  color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s;
  line-height: 1.5;
}
.waf-footer-contact-item:hover { color: var(--waf-nude); }
.waf-footer-contact-item svg { flex-shrink: 0; margin-top: 2px; opacity: 0.5; }

/* Footer bottom */
.waf-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
}
.waf-footer-bottom-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 52px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.waf-footer-legal {
  font-family: var(--font-body); font-size: 0.65rem;
  color: rgba(255,255,255,0.18); display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.waf-footer-legal strong { color: rgba(255,255,255,0.3); }
.waf-footer-legal a { color: rgba(255,255,255,0.22); text-decoration: none; transition: color 0.2s; }
.waf-footer-legal a:hover { color: rgba(255,255,255,0.5); }
.waf-footer-made { font-family: var(--font-body); font-size: 0.62rem; color: rgba(255,255,255,0.14); letter-spacing: 0.06em; }

/* ── RESPONSIVE HEADER/FOOTER ── */
@media (max-width: 1100px) {
  .waf-footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .waf-top-address { display: none !important; }
}
@media (max-width: 900px) {
  .waf-header-top-left { gap: 12px; }
  .waf-nav-inner { padding: 0 24px; }
  /* ── Menu mobile fullscreen ── */
  .waf-nav-menu {
    display: none !important;
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    background: #0d0b0b !important;
    z-index: 9999 !important;
    overflow-y: auto !important;
    flex-direction: column !important;
    opacity: 0;
    transition: opacity 0.25s ease;
  }
  .waf-nav-menu.open {
    display: flex !important;
    opacity: 1;
  }

  /* Nav links mobile */
  .waf-nav-links {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    text-align: left;
    padding: 80px 32px 16px;
    width: 100%;
  }

  /* Liens niveau 0 */
  .waf-nav-links > li > a {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: rgba(255,255,255,0.85);
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.18s;
  }
  .waf-nav-links > li > a:hover,
  .waf-nav-links > li > a:focus { color: #c4835a; }

  /* Masquer la flèche CSS sur mobile — remplacée par le JS toggle */
  .waf-nav-links > li > a.has-children::after { display: none; }

  /* Sous-menus mobiles — accordéon */
  .waf-nav-links ul {
    display: none !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 4px 0 8px 16px !important;
    pointer-events: auto !important;
    transition: none !important;
  }
  .waf-nav-links ul.mobile-open {
    display: block !important;
  }
  .waf-nav-links ul li a {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: color 0.15s;
  }
  .waf-nav-links ul li a:hover { color: #c4835a; }
  /* Niveau 3 */
  .waf-nav-links ul ul { padding-left: 12px !important; }
  .waf-nav-links ul ul li a { font-size: 0.82rem; color: rgba(255,255,255,0.3); }

  /* Chevron toggle mobile */
  .waf-mobile-toggle {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: none; cursor: pointer;
    color: rgba(255,255,255,0.5);
    font-size: 1rem; flex-shrink: 0;
    transition: background 0.18s, transform 0.2s;
    margin-left: 12px;
  }
  .waf-mobile-toggle.open {
    background: rgba(196,131,90,0.15);
    color: #c4835a;
    transform: rotate(180deg);
  }
  /* Idem niveau 2 */
  .waf-nav-links ul li .waf-mobile-toggle { width: 22px; height: 22px; font-size: 0.8rem; }

  /* CTA mobile */
  .waf-nav-mobile-cta {
    margin-top: auto;
    padding: 24px 32px 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .waf-nav-mobile-cta .waf-btn-primary {
    justify-content: center;
    padding: 16px 24px;
    font-size: 0.82rem;
  }
  .waf-nav-mobile-tel {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.1em; text-align: center;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.18s;
  }
  .waf-nav-mobile-tel:hover { color: #c4835a; }

  .waf-nav-burger { display: flex; }
  .waf-nav-link-sec { display: none; }
  .waf-nav-right .waf-btn-primary { display: none; }
  .waf-header-top { display: none; }
}
@media (max-width: 640px) {
  .waf-footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .waf-footer-top { padding: 52px 0 40px; }
  .waf-footer-inner { padding: 0 20px; }
  .waf-footer-bottom-inner { padding: 0 20px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .waf-footer-legal { flex-direction: column; gap: 6px; }
}

/* ── Modal essai : layout formulaire ── */
.waf-modal-essai-inner { max-width: 540px; }
.waf-modal-header { margin-bottom: 28px; }
.waf-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.waf-form-legal {
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 0.62rem;
  color: rgba(255,255,255,0.22);
  margin-top: 14px;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 480px) {
  .waf-form-row { grid-template-columns: 1fr; }
  .waf-modal-essai-inner { padding: 32px 20px; }
}

/* ═══════════════════════════════════
   MODAL ESSAI — formulaire 2 étapes
═══════════════════════════════════ */
.waf-modal-essai-wrap { max-width: 600px; }

.waf-essai-step-label {
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: .62rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}

/* Grille choix cours */
.waf-essai-cours-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.waf-essai-cours-card {
  position: relative; cursor: pointer;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 16px 14px;
  display: flex; flex-direction: column; gap: 4px;
  transition: all .2s;
}
.waf-essai-cours-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.16);
}
.waf-essai-cours-card input[type="radio"] {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.waf-essai-cours-card:has(input:checked) {
  background: rgba(196,131,90,.12);
  border-color: var(--waf-accent, #c4835a);
}
.waf-essai-cours-emoji { font-size: 1.4rem; margin-bottom: 4px; }
.waf-essai-cours-name {
  font-family: 'League Spartan', sans-serif;
  font-size: .9rem; font-weight: 800; text-transform: uppercase;
  color: white; letter-spacing: .02em;
}
.waf-essai-cours-desc {
  font-family: 'Poppins', sans-serif;
  font-size: .62rem; color: rgba(255,255,255,.3); line-height: 1.4;
}

/* Bouton next désactivé */
#waf-essai-next:disabled {
  opacity: .35; cursor: not-allowed; transform: none;
}
#waf-essai-next:disabled:hover { transform: none; }

@media (max-width: 480px) {
  .waf-essai-cours-grid { grid-template-columns: 1fr; }
  .waf-modal-essai-wrap { max-width: 100%; }
}

/* ── Modal overlay — CACHÉE par défaut, ouverte avec .waf-open ── */
.waf-modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(13,11,11,0.88);
  backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
  padding: 20px;
}
.waf-modal-overlay.waf-open {
  display: flex;
}

/* ── Modal iframe essai ── */
.waf-modal--iframe {
  width: min(860px, 96vw);
  max-width: 860px;
  height: min(90vh, 820px);
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
  
  flex-direction: column;
}
.waf-modal--iframe .waf-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
}
.waf-essai-iframe {
  width: 100%;
  flex: 1;
  border: none;
  border-radius: 16px;
  display: block;
  background: #0d0b0b;
}
@media (max-width: 640px) {
  .waf-modal--iframe {
    width: 100vw;
    height: 100dvh;
    border-radius: 0;
    margin: 0;
  }
  .waf-essai-iframe { border-radius: 0; }
}

/* ── Logo image fichier ── */
.waf-logo-img {
  height: 42px; width: auto; display: block;
  object-fit: contain; object-position: left center;
}
.waf-logo-img--footer {
  height: 36px;
  opacity: 0.9;
  filter: brightness(0) invert(1); /* blanc sur fond sombre */
}

/* ══════════════════════════════════════════════════
   BANDEAU PROMO — Marquee + Compte à rebours
══════════════════════════════════════════════════ */
.waf-promo-bar {
  position: relative;
  z-index: 501;
  padding: 0 60px;
  overflow: hidden;
  height: 44px;
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  max-width: 100vw;
}

/* Bouton fermer */
.waf-promo-close {
  position: absolute; left: 0; top: 0; height: 100%;
  padding: 0 14px;
  background: rgba(0,0,0,0.12); border: none;
  cursor: pointer; font-size: 0.7rem;
  color: inherit; opacity: 0.6;
  transition: opacity 0.18s;
  z-index: 2;
}
.waf-promo-close:hover { opacity: 1; }

.waf-promo-inner {
  display: flex; align-items: center; gap: 20px;
  width: 100%; overflow: hidden;
}

/* Compte à rebours */
.waf-promo-countdown {
  display: flex; align-items: center; gap: 4px;
  flex-shrink: 0;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.82rem; font-weight: 800;
}
.waf-cd-block {
  display: flex; flex-direction: column;
  align-items: center; gap: 0;
}
.waf-cd-num {
  font-size: 1rem; font-weight: 900; line-height: 1;
  min-width: 22px; text-align: center;
}
.waf-cd-lbl {
  font-size: 0.5rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0.65;
}
.waf-cd-sep {
  font-size: 0.9rem; font-weight: 900;
  opacity: 0.5; margin-bottom: 6px;
}

/* Marquee */
.waf-promo-marquee-wrap {
  flex: 1;
  overflow: hidden !important;
  min-width: 0;
  max-width: 100%;
  contain: paint;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.waf-promo-marquee-track {
  display: inline-flex; gap: 32px;
  white-space: nowrap;
  animation: waf-promo-scroll 25s linear infinite;
  will-change: transform;
}
.waf-promo-marquee-track span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.06em; flex-shrink: 0;
}
.waf-promo-sep { opacity: 0.4; }
@keyframes waf-promo-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Bouton CTA promo */
.waf-promo-btn {
  flex-shrink: 0;
  font-family: 'League Spartan', sans-serif;
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 3px;
  text-decoration: none; white-space: nowrap;
  transition: opacity 0.18s;
}
.waf-promo-btn:hover { opacity: 0.85; }

@media (max-width: 640px) {
  .waf-promo-bar { padding: 0 40px; height: 40px; }
  .waf-promo-countdown { display: none; }
  .waf-promo-btn { display: none; }
}
