/* ==========================================================================
   VARIABLES GLOBALES (Thème, Couleurs & Constantes)
   ========================================================================== */
:root {
  /* Arrière-plans & Surfaçage */
  --bg: #FFFFFF;
  --panel: #FAF8FE;
  --panel-2: #F3EEFC;
  --line: #E9E3F5;
  
  /* Couleurs de Texte */
  --text: #110C24;
  --muted: #5C5575;
  
  /* Palette Violet / Glamour (Brand Identity) */
  --violet-primary: #6C4CD8;
  --violet-deep: #3A1C93;
  --violet-glow: #8B5CF6;
  --glam-pink: #D946EF;
  
  /* Dégradés & Ombres réutilisables */
  --glam-gradient: linear-gradient(135deg, #7C3AED 0%, #D946EF 100%);
  --glam-shadow: 0 12px 30px -5px rgba(124, 58, 237, 0.45);
  
  /* Layout Constantes */
  --radius: 18px;
  --maxw: 1140px;
}

/* ==========================================================================
   RESET CSS & STYLES DE BASE
   ========================================================================== */
* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html { 
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { 
  color: inherit; 
  text-decoration: none; 
}

img { 
  max-width: 100%; 
  display: block; 
  height: auto; 
}

.wrap { 
  max-width: var(--maxw); 
  margin: 0 auto; 
  padding: 0 28px; 
}

/* ==========================================================================
   COMPOSANTS DE TYPOGRAPHIE & TITRES
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet-primary);
  background: rgba(108, 76, 216, 0.08);
  backdrop-filter: blur(8px);
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(108, 76, 216, 0.2);
}

.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--glam-pink);
  box-shadow: 0 0 10px var(--glam-pink);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(217, 70, 239, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(217, 70, 239, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(217, 70, 239, 0); }
}

h1, h2, h3 { 
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 900;
  line-height: 1.18;
  color: var(--text);
  position: relative;
  display: inline-block;
}

.gradient-text {
  background: linear-gradient(135deg, #0F0A1C 20%, var(--violet-primary) 60%, var(--glam-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-underline {
  position: relative;
  display: inline-block;
}
.title-underline::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--glam-gradient);
  border-radius: 10px;
}

h3 { 
  font-size: 21px; 
  font-weight: 800; 
  color: var(--text); 
}

/* ==========================================================================
   NAVIGATION (HEADER)
   ========================================================================== */
header {
  position: sticky; 
  top: 0; 
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  height: 78px; 
}

.logo { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  font-weight: 800; 
  font-size: 20px; 
}

.logo-mark {
  width: 38px; 
  height: 38px; 
  border-radius: 12px;
  background: var(--glam-gradient);
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 17px; 
  color: #fff; 
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

#navList { 
  display: flex; 
  gap: 8px; 
  list-style: none; 
}

#navList a {
  font-size: 14.5px; 
  color: var(--text); 
  font-weight: 600;
  padding: 9px 16px; 
  border-radius: 100px; 
  transition: all 0.2s ease;
}

#navList a:hover { 
  background-color: var(--panel-2); 
  color: var(--violet-primary); 
}

.nav-actions { display: flex; align-items: center; gap: 16px; }
.menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }

@media (max-width: 768px) {
  #navList {
    position: fixed; top: 78px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 24px 28px; gap: 12px; transform: translateY(-150%); transition: transform .25s ease;
  }
  #navList.open { transform: translateY(0); }
  .menu-toggle { display: block; }
  .nav-actions .btn:not(.menu-toggle) { display: none; }
}

/* ==========================================================================
   BOUTONS ET ACTIONS
   ========================================================================== */
.btn {
  font-family: 'Plus Jakarta Sans', sans-serif; 
  font-weight: 700; 
  font-size: 14px;
  padding: 12px 24px; 
  border-radius: 100px; 
  border: 1px solid var(--violet-primary);
  color: var(--violet-primary); 
  background: transparent; 
  cursor: pointer; 
  transition: all .25s ease;
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  gap: 8px;
}

.btn:hover { 
  background: var(--panel-2); 
  color: var(--violet-primary); 
}

.btn-solid { 
  background: var(--violet-primary); 
  color: #fff; 
  border-color: var(--violet-primary); 
}

.btn-solid:hover { 
  background: var(--violet-deep); 
  border-color: var(--violet-deep); 
}

.btn-glam {
  background: var(--glam-gradient) !important;
  color: #FFFFFF !important;
  border: none !important;
  box-shadow: var(--glam-shadow);
  font-weight: 800 !important;
  font-size: 15px !important;
  padding: 14px 28px !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.btn-glam:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 36px -5px rgba(124, 58, 237, 0.6);
  color: #FFF !important;
}

/* ==========================================================================
   SECTION HERO & SECTIONS GÉNÉRIQUES
   ========================================================================== */
.hero { padding: 90px 0 80px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
@media (max-width:900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { font-size: clamp(38px, 5vw, 58px); font-weight: 900; line-height: 1.1; margin-bottom: 22px; }
.hero h1 .accent { background: var(--glam-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p.lede { color: var(--muted); font-size: 17px; margin-bottom: 32px; max-width: 520px; font-weight: 500; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.stat-row { display: flex; gap: 36px; flex-wrap: wrap; }
.stat .num { font-size: 26px; font-weight: 900; color: var(--violet-deep); }
.stat .label { font-size: 13px; color: var(--muted); font-weight: 600; }

.hero-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 24px; padding: 36px;
  box-shadow: 0 24px 60px -30px rgba(108,76,216,0.2);
}
.hero-card .kicker { font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--violet-primary); margin-bottom: 8px; }
.hero-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 20px; }
.mini-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.mini-badge { font-size: 12px; font-weight: 700; color: var(--violet-deep); background: var(--panel-2); padding: 6px 12px; border-radius: 100px; }
.hero-card .divider-soft { height: 1px; background: var(--line); margin: 20px 0; }
.hero-card .row { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--muted); margin-bottom: 8px; }

section { padding: 80px 0; }
.section-head { max-width: 700px; margin-bottom: 52px; }
.divider { border: none; border-top: 1px solid var(--line); }

.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width:860px) { .cards3 { grid-template-columns: 1fr; } }

.card { 
  background: var(--panel); 
  border: 1px solid var(--line); 
  border-radius: var(--radius); 
  padding: 32px 26px; 
  transition: transform .25s, box-shadow .25s; 
}
.card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 20px 40px -20px rgba(108,76,216,0.25); 
  border-color: rgba(108,76,216,0.3); 
}
.card .icon { 
  width: 46px; 
  height: 46px; 
  border-radius: 14px; 
  background: var(--panel-2); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 22px; 
  color: var(--violet-deep); 
  margin-bottom: 18px; 
}
.card p { color: var(--muted); font-size: 14.5px; margin-top: 8px; }

.levels { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 36px; }
.level-chip { font-size: 13px; font-weight: 700; padding: 8px 16px; border: 1px solid var(--line); border-radius: 100px; color: var(--violet-deep); background: var(--panel); }

/* ==========================================================================
   SECTION À PROPOS, TARIFS & CONTACT
   ========================================================================== */
.about-grid { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 50px; align-items: start; }
@media (max-width:860px) { .about-grid { grid-template-columns: 1fr; } }

.photo-frame { aspect-ratio: 4/5; background: var(--panel-2); border: 1px solid var(--line); border-radius: 24px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 13.5px; text-align: center; padding: 20px; }
.about-copy p { color: var(--muted); margin-bottom: 16px; }
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 24px 0; }
.tag { font-size: 12.5px; font-weight: 700; color: var(--violet-deep); background: var(--panel-2); padding: 6px 14px; border-radius: 100px; }

.price-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width:860px) { .price-wrap { grid-template-columns: 1fr; } }

.price-card { 
  background: linear-gradient(160deg, #1A1230, #0F0A1C); 
  border-radius: 24px; 
  padding: 44px; 
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
}
.price-tag { font-size: 54px; font-weight: 900; margin-bottom: 6px; letter-spacing: -0.04em; }
.price-tag span { font-size: 16px; font-weight: 500; opacity: 0.8; }
.price-list { list-style: none; margin: 24px 0 32px; }
.price-list li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 14.5px; color: #E2E8F0; }
.price-list li::before { content: '✓'; color: var(--glam-pink); font-weight: 800; }

.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: start; }
@media (max-width:860px) { .contact-grid { grid-template-columns: 1fr; } }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 6px; }
.field input, .field select, .field textarea { 
  width: 100%; background: var(--panel); border: 1px solid var(--line); 
  border-radius: 12px; padding: 14px 16px; color: var(--text); 
  font-family: inherit; font-size: 14.5px; transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--violet-primary); }
.field textarea { min-height: 120px; resize: vertical; }

.top-banner { padding: 24px 0 0; }
.banner-frame { position: relative; width: 100%; aspect-ratio: 1600 / 420; border-radius: 24px; overflow: hidden; background: linear-gradient(135deg, var(--panel-2), #EAE2FB); }
.banner-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--violet-deep); text-align: center; padding: 20px; border: 2px dashed rgba(108,76,216,0.3); border-radius: 24px; }

/* ==========================================================================
   CARROUSEL D'AVIS
   ========================================================================== */
.reviews-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

.reviews-carousel-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 20px 10px 30px 10px;
  width: 100%;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.reviews-carousel-wrapper:active {
  cursor: grabbing;
}

.reviews-carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.review-card-slide {
  width: calc((100vw - 220px) / 3);
  max-width: 360px;
  min-width: 280px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  user-select: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card-slide:hover {
  box-shadow: 0 8px 25px rgba(76, 29, 149, 0.08);
}

.review-author-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: var(--text);
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.review-stars-gold {
  color: #f59e0b;
  font-size: 1.05rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.review-quote {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--violet-deep);
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 14px rgba(46, 16, 101, 0.3);
  transition: all 0.2s ease;
}

.slider-arrow:hover {
  background: var(--violet-primary);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 18px rgba(76, 29, 149, 0.4);
}

.arrow-left { left: -22px; }
.arrow-right { right: -22px; }

@media (max-width: 992px) {
  .review-card-slide { width: calc((100vw - 120px) / 2); }
}

@media (max-width: 640px) {
  .review-card-slide { width: calc(100vw - 80px); }
  .arrow-left { left: -10px; }
  .arrow-right { right: -10px; }
}

/* ==========================================================================
   NOS ENGAGEMENTS
   ========================================================================== */
.engagements-dynamic-wrap {
  position: relative;
  background: #0f172a;
  border-radius: 24px;
  padding: 32px 28px;
  overflow: hidden;
  color: #ffffff;
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.3);
}

.engagements-bg-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, rgba(192, 132, 252, 0.05) 40%, transparent 70%);
  animation: rotateGlow 12s linear infinite;
  pointer-events: none;
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.eng-title {
  position: relative;
  z-index: 2;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.eng-cards-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eng-card-ultra {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.eng-card-ultra:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(192, 132, 252, 0.5);
  box-shadow: 0 10px 25px -5px rgba(124, 58, 237, 0.4);
}

.eng-badge-pulse {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 6px;
  height: 6px;
  background: #c084fc;
  border-radius: 50%;
  box-shadow: 0 0 10px #c084fc;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

.eng-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--glam-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
  transition: transform 0.3s ease;
}

.eng-card-ultra:hover .eng-icon-box {
  transform: rotate(6deg) scale(1.1);
}

.eng-icon-box svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.eng-text-box h4 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.eng-text-box p {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 2px;
  font-weight: 500;
}

/* ==========================================================================
   BOUTONS FLOATTANTS CORRIGÉS (WhatsApp Vert vs Avis Violet)
   ========================================================================== */

/* 1. Bouton WhatsApp (Vert, affiché par défaut en bas à droite) */
.whatsapp-exact-pill {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  background-color: #00E676 !important;
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 12px 20px !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  box-shadow: 0 8px 20px rgba(0, 230, 118, 0.4) !important;
  z-index: 9999 !important;
  text-decoration: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.whatsapp-exact-pill:hover { 
  transform: translateY(-2px) scale(1.04) !important;
  background-color: #00c865 !important;
}

.whatsapp-exact-pill svg { 
  width: 22px !important; 
  height: 22px !important; 
  fill: #FFFFFF !important; 
}

/* État MASQUÉ pour WhatsApp (activé par JS ou CSS) */
.whatsapp-exact-pill.is-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(20px) scale(0.8) !important;
  pointer-events: none !important;
}


/* 2. Bouton "Laisser un avis" (VIOLET GLAMOUR - Masqué par défaut) */
.floating-review-btn {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 9999 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(20px) scale(0.8) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  pointer-events: none !important;
}

.floating-review-btn a,
.floating-review-btn .btn-glam,
.floating-review-btn .btn {
  background: var(--glam-gradient) !important;
  color: #FFFFFF !important;
  border: none !important;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.5) !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  padding: 12px 22px !important;
  border-radius: 100px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
}

.floating-review-btn a:hover,
.floating-review-btn .btn-glam:hover {
  transform: translateY(-2px) scale(1.04) !important;
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.7) !important;
}

/* État VISIBLE pour le bouton Avis (Violet) */
.floating-review-btn.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
  pointer-events: auto !important;
}

/* ==========================================================================
   BANDEAU DE COOKIES
   ========================================================================== */
#cookieBanner,
.cookie-banner {
  position: fixed !important;
  bottom: -250px;
  left: 25px !important;
  max-width: 420px !important;
  width: calc(100% - 50px) !important;
  background-color: #ffffff !important;
  border: 1px solid rgba(108, 76, 216, 0.2) !important;
  border-radius: 16px !important;
  padding: 22px !important;
  box-shadow: 0 12px 35px rgba(17, 12, 36, 0.15) !important;
  z-index: 999999 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  box-sizing: border-box !important;
  transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

#cookieBanner.show,
.cookie-banner.show {
  bottom: 25px !important;
}

.cookie-title,
#cookieBanner h3 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  color: var(--text) !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

#cookieBanner p {
  font-size: 0.88rem !important;
  color: var(--muted) !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

.cookie-buttons,
.cookie-btns {
  display: flex !important;
  gap: 10px !important;
  margin-top: 6px !important;
}

#acceptCookies,
#denyCookies,
.cookie-btn,
.cookie-btn-accept,
.cookie-btn-deny {
  flex: 1 !important;
  padding: 10px 16px !important;
  border-radius: 10px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  text-align: center !important;
  transition: all 0.2s ease !important;
  border: none !important;
}

/* Bouton Accepter (Violet foncé) */
#acceptCookies,
.cookie-btn-accept {
  background-color: var(--violet-deep) !important;
  color: #ffffff !important;
}

#acceptCookies:hover,
.cookie-btn-accept:hover {
  background-color: var(--violet-primary) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(108, 76, 216, 0.3) !important;
}

/* Bouton Refuser (Violet pastel) */
#denyCookies,
.cookie-btn-deny {
  background-color: var(--panel-2) !important;
  color: var(--violet-deep) !important;
  border: 1px solid var(--line) !important;
}

#denyCookies:hover,
.cookie-btn-deny:hover {
  background-color: #e9d5ff !important;
}

@media (max-width: 480px) {
  #cookieBanner,
  .cookie-banner {
    left: 15px !important;
    right: 15px !important;
    bottom: -250px;
    max-width: none !important;
    width: auto !important;
  }
  #cookieBanner.show,
  .cookie-banner.show {
    bottom: 15px !important;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer.exact-footer {
  background-color: #12091F;
  color: #FFFFFF;
  padding: 60px 0 30px;
  position: relative;
}

.footer-grid-4 {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 860px) {
  .footer-grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid-4 { grid-template-columns: 1fr; }
}

.footer-brand-title {
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.footer-brand-sub {
  color: #A3A1AB;
  font-size: 14px;
  font-weight: 500;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #A855F7;
  margin-bottom: 18px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a, .footer-links p {
  color: #E2E8F0;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--glam-pink); }

.social-circle-list { display: flex; gap: 12px; }
.social-circle {
  width: 40px; 
  height: 40px; 
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex; 
  align-items: center; 
  justify-content: center;
  color: #FFF; 
  transition: background 0.2s, transform 0.2s;
}
.social-circle:hover {
  background: var(--violet-primary);
  transform: translateY(-2px);
}
.social-circle svg { width: 18px; height: 18px; fill: currentColor; }

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #8B859E;
  font-size: 13px;
}

/* ==========================================================================
   BOUTONS FLOTTANTS (Base commune)
   ========================================================================== */
.floating-btn {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  z-index: 9999 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 8px 22px 8px 10px !important; /* Marge ajustée pour équilibrer le cercle */
  border-radius: 100px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  text-decoration: none !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* 🟢 Style WhatsApp : Fond Vert + Cercle Blanc */
.btn-whatsapp {
  background-color: #00E676 !important;
  color: #FFFFFF !important;
  box-shadow: 0 8px 20px rgba(0, 230, 118, 0.35) !important;
}

.btn-whatsapp:hover {
  background-color: #00c865 !important;
  transform: translateY(-2px) scale(1.04) !important;
}

/* Le cercle blanc intérieur */
.whatsapp-icon-circle {
  width: 32px !important;
  height: 32px !important;
  background-color: #FFFFFF !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

/* Le logo vert à l'intérieur du cercle */
.whatsapp-svg {
  width: 22px !important;
  height: 22px !important;
  fill: #00E676 !important;
}

/* 🟣 Style Avis : Violet Glamour */
.btn-review {
  padding: 12px 22px !important; /* Rétablissement du padding normal pour l'avis */
  background: linear-gradient(135deg, #7C3AED 0%, #D946EF 100%) !important;
  color: #FFFFFF !important;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.5) !important;
}

.btn-review:hover {
  transform: translateY(-2px) scale(1.04) !important;
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.7) !important;
}

/* ==========================================================================
   GESTION DES ÉTATS CACHÉ / VISIBLE (JS)
   ========================================================================== */
.floating-btn.is-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(20px) scale(0.8) !important;
  pointer-events: none !important;
}

.floating-btn.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
  pointer-events: auto !important;
}