﻿/* ================================================
   BM DIGITAL AGENCY — Stylesheet v2
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ---- Variables ---- */
:root {
  /* Palette BM Digital — Violet Final */
  --violet:       #7C2FFF;
  --violet-dark:  #5a1fd4;
  --violet-light: #9B63FF;
  --green-neon:   #7EFF4B;
  --black:        #000000;
  --white:        #FFFFFF;
  --bg:           #FFFFFF;
  --text:         #000000;
  --text-muted:   #555555;
  --whatsapp:     #25D366;
  --card-bg:      #FFFFFF;

  /* Aliases rétro-compatibles */
  --primary:      #7C2FFF;
  --primary-dark: #5a1fd4;
  --primary-light:#9B63FF;
  --accent:       #7EFF4B;
  --bg-dark:      #000000;
  --bg-light:     #F5F0FF;
  --bg-card:      #FFFFFF;
  --text-dark:    #000000;
  --text-light:   #FFFFFF;

  --font-title: 'Playfair Display', serif;
  --font-body:  'DM Sans', sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-pill: 50px;
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm:     0 2px 12px rgba(124, 47, 255, 0.10);
  --shadow-md:     0 4px 24px rgba(124, 47, 255, 0.18);
  --shadow-lg:     0 8px 40px rgba(124, 47, 255, 0.28);
  --shadow-accent: 0 8px 32px rgba(124, 47, 255, 0.35);
  --glow-violet:   0 0 30px rgba(124, 47, 255, 0.45);
  --glow-green:    0 0 20px rgba(126, 255, 75, 0.4);
  --glow:          0 0 30px rgba(124, 47, 255, 0.45);
  --glow-purple:   0 0 30px rgba(124, 47, 255, 0.45);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--bg-light); color: var(--text-dark); line-height: 1.65; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); border: none; }


/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #030812;
  border-bottom: 1px solid rgba(14, 204, 237, 0.15);
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 20px rgba(3, 8, 18, 0.5);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.nav-logo .logo-bm {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 900;
  color: #0ECCED;
  line-height: 1;
}

.nav-logo .logo-sub {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Nav links — centrés absolument */
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0ECCED;
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover { color: #0ECCED; }
.nav-links a.active { color: #0ECCED; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Nav CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #025EC4;
  border: 2px solid #025EC4;
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
  flex-shrink: 0;
  text-decoration: none;
}

.nav-cta svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: #0ECCED;
  border-color: #0ECCED;
  color: #030812;
  transform: translateY(-1px);
  box-shadow: var(--glow);
}

.nav-cta:hover svg {
  fill: #030812;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: var(--transition);
}

/* ================================================
   BUTTONS (global)
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn-gold {
  background: #025EC4;
  color: #fff;
}
.btn-gold:hover {
  background: #0ECCED;
  color: #030812;
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

.btn-wa {
  background: var(--whatsapp);
  color: var(--text-light);
}
.btn-wa:hover {
  background: #20b85a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.42);
}

.btn-outline-white {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--text-light);
}

.btn-outline-gold {
  background: transparent;
  color: #025EC4;
  border: 2px solid #025EC4;
}
.btn-outline-gold:hover {
  background: #025EC4;
  color: #fff;
}

.btn-sm { padding: 10px 22px; font-size: 0.85rem; min-height: 44px; }
.btn-full { width: 100%; justify-content: center; }

/* ================================================
   HERO
   ================================================ */
/* ================================
   HERO SECTION — REFONTE COMPLÈTE
================================ */

.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #030812;
}

/* Image de fond */
.hero-bg,
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroZoom 10s ease-out forwards;
  filter: blur(3px);
  transform: scale(1.08);
  z-index: 0;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.03); }
}

/* Overlay renforcé pour masquer les textes de l'image */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(3, 8, 18, 0.96) 0%,
    rgba(2, 7, 100, 0.85) 50%,
    rgba(3, 8, 18, 0.96) 100%
  );
  z-index: 1;
}

/* Vagues 3D hero */
#wave-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Assure que le contenu hero passe AU DESSUS des effets canvas */
.hero-inner,
.hero-content,
.hero-left,
.hero-right,
[class*="hero-container"] {
  position: relative;
  z-index: 3;
}

/* Contenu principal */
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1150px;
  margin: 0 auto;
  width: 100%;
  padding: 10px 40px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: center;
}

/* ---- GAUCHE ---- */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Badge */
.hero-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(126,255,75,0.12) !important;
  border: 1px solid rgba(126,255,75,0.35) !important;
  color: #7EFF4B !important;
  padding: 6px 16px !important;
  border-radius: 50px !important;
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  margin-bottom: 6px !important;
  width: fit-content;
}

.badge-dot {
  width: 6px !important;
  height: 6px !important;
  background: #7EFF4B !important;
  border-radius: 50% !important;
  box-shadow: 0 0 8px #7EFF4B !important;
  animation: pulse-dot 1.8s infinite !important;
  flex-shrink: 0 !important;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(126,255,75,0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(126,255,75,0); }
}

/* Titre H1 */
.hero-h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem) !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  line-height: 1.1 !important;
  margin: 0 0 4px !important;
}

.hero-highlight {
  font-family: 'Playfair Display', serif !important;
  font-style: italic !important;
  font-size: clamp(2.2rem, 4vw, 3.4rem) !important;
  background: linear-gradient(135deg, #9B63FF, #7C2FFF) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Ligne décorative */
.hero-line {
  width: 50px !important;
  height: 3px !important;
  background: linear-gradient(90deg, #7C2FFF, transparent) !important;
  border-radius: 2px !important;
  margin: 6px 0 !important;
  display: block !important;
}

/* Sous-titre */
.hero-p {
  font-size: 0.95rem !important;
  color: rgba(255,255,255,0.65) !important;
  line-height: 1.6 !important;
  margin: 0 0 6px !important;
}

/* Particules hero */
#hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}

/* Typewriter */
.typewriter-wrap {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

.typewriter {
  font-style: italic !important;
  font-weight: 600 !important;
  color: #9B63FF !important;
  letter-spacing: 0.3px;
}

.typewriter-cursor {
  color: #7C2FFF !important;
  animation: blink 1s infinite !important;
  margin-left: 1px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Boutons */
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hbtn-primary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: linear-gradient(135deg, #7C2FFF, #9B63FF) !important;
  color: white !important;
  padding: 14px 30px !important;
  border-radius: 50px !important;
  font-size: 0.90rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.3s !important;
  box-shadow: 0 8px 24px rgba(124,47,255,0.35), 0 0 0 1px rgba(255,255,255,0.08) !important;
  margin-top: 6px !important;
  width: fit-content !important;
}

.hbtn-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 32px rgba(124,47,255,0.50) !important;
  color: white !important;
}

.hbtn-primary svg {
  transition: transform 0.2s !important;
}

.hbtn-primary:hover svg {
  transform: translateX(4px) !important;
}


/* ---- DROITE : Stats ---- */
.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hstat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(14, 204, 237, 0.12);
  border-radius: 16px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hstat-card:hover {
  transform: translateY(-4px);
  background: rgba(2, 94, 196, 0.15);
  border-color: rgba(14, 204, 237, 0.35);
  box-shadow: var(--glow);
}

.hstat-accent {
  background: rgba(2, 94, 196, 0.12);
  border-color: rgba(2, 94, 196, 0.3);
}

.hstat-green {
  background: rgba(14, 204, 237, 0.08);
  border-color: rgba(14, 204, 237, 0.25);
}

.hstat-icon {
  font-size: 1.6rem;
}

.hstat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.hstat-label {
  display: block;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(14, 204, 237, 0.3);
  border-radius: 20px;
  position: relative;
}

.scroll-dot::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #0ECCED;
  border-radius: 2px;
  animation: scroll-anim 1.8s infinite;
}

@keyframes scroll-anim {
  0%   { top: 5px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

/* Responsive hero */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 100px 24px 60px;
  }
  .hero-right {
    grid-template-columns: repeat(4, 1fr);
  }
  .hstat-card { padding: 14px 10px; }
  .hstat-num  { font-size: 1.2rem; }
}

@media (max-width: 600px) {
  .hero-right { grid-template-columns: repeat(2, 1fr); }
  .hero-h1    { font-size: 2.2rem; }
  .hero-btns     { flex-direction: column; }
  .hbtn-primary  { justify-content: center; }
}

/* ================================================
   HERO SMALL — pages internes (products, order)
   ================================================ */
.hero-small {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-small-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 20px;
}

/* Overlay renforcé pour pages internes */
.hero-small .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(3, 8, 18, 0.92) 0%,
    rgba(2, 7, 100, 0.82) 40%,
    rgba(2, 7, 100, 0.78) 60%,
    rgba(3, 8, 18, 0.95) 100%
  );
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* Effet flou identique à index.html */
.hero-small .hero-bg,
.hero-small .hero-bg-image {
  filter: blur(3px);
  transform: scale(1.08);
  background-size: cover;
  background-position: center;
}

/* Titre centré */
.hero-small .hero-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  margin: 0;
}

.hero-small .hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  max-width: 500px;
  margin: 0;
  line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.breadcrumb a {
  color: #0ECCED;
  text-decoration: none;
  transition: opacity 0.2s;
}

.breadcrumb a:hover { opacity: 0.8; }

.breadcrumb span:last-child { color: rgba(255, 255, 255, 0.8); }

/* Animation zoom identique à index.html */
.hero-small .hero-bg-image {
  animation: heroZoom 8s ease-out forwards;
}

@media (max-width: 768px) {
  .hero-small { min-height: 320px; }
  .hero-small .hero-title { font-size: 1.8rem; }
}

/* ================================================
   SECTION BASE
   ================================================ */
section { padding: 96px 40px; }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-head {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: rgba(2, 94, 196, 0.10);
  color: #025EC4;
  border: 1px solid rgba(2, 94, 196, 0.25);
  border-radius: var(--radius-pill);
  padding: 6px 18px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-title.light { color: var(--text-light); }

.section-sub {
  font-size: 1.05rem;
  color: #6B7280;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-sub.light { color: rgba(255,255,255,0.55); }

/* ================================================
   SERVICES CARDS
   ================================================ */
.services-section { background: var(--bg-light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 40px 32px 36px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #025EC4, #0ECCED);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.service-card:hover::before { opacity: 1; }

.card-emoji {
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.card-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-desc {
  font-size: 0.9rem;
  color: #6B7280;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.tag {
  background: rgba(2, 94, 196, 0.08);
  color: #043780;
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  align-self: flex-start;
  padding: 12px 24px;
  min-height: 48px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--accent);
}

.card-btn:hover {
  background: #025EC4;
  color: #fff;
  gap: 10px;
}

/* ================================================
   WHY US
   ================================================ */
.why-us { background: var(--primary); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(14, 204, 237, 0.10);
  border-radius: var(--radius-md);
  padding: 44px 32px;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(2, 94, 196, 0.12);
  border-color: rgba(14, 204, 237, 0.3);
  transform: translateY(-4px);
}

.why-icon {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 18px;
}

.why-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
}

.why-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact-section { background: var(--bg-light); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid transparent;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.contact-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 16px;
}

.contact-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.contact-value {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.3;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: #030812;
  padding: 72px 40px 32px;
  color: rgba(255,255,255,0.7);
  border-top: 1px solid rgba(14, 204, 237, 0.10);
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-logo-wrap .f-logo-bm {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 900;
  color: #0ECCED;
  line-height: 1;
}

.footer-logo-wrap .f-logo-sub {
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-slogan {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.45);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.f-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--text-light);
}

.f-social:hover {
  background: #025EC4;
  color: #fff;
}

.footer-col-title {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: #0ECCED;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(14, 204, 237, 0.10);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-links a:hover {
  color: #0ECCED;
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.6);
}

.footer-contact-item .ico { flex-shrink: 0; }

.footer-contact-item a {
  color: var(--whatsapp);
  font-weight: 600;
  transition: var(--transition);
}

.footer-contact-item a:hover { color: #20b85a; }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(14, 204, 237, 0.10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: #0ECCED; }

/* ================================================
   FLOATING WHATSAPP
   ================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 62px;
  height: 62px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 36px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: pulse-whatsapp 2.5s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: #fff;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  animation: none;
  box-shadow: 0 12px 44px rgba(37,211,102,0.6);
}

@keyframes pulse-whatsapp {
  0%,100% { box-shadow: 0 8px 36px rgba(37,211,102,0.45); transform: scale(1); }
  50%      { box-shadow: 0 8px 52px rgba(37,211,102,0.7); transform: scale(1.06); }
}

/* ================================================
   PRODUCTS PAGE
   ================================================ */
.page-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #043780 100%);
  padding: 60px 40px;
  text-align: center;
}

.page-banner-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-light);
  margin-bottom: 12px;
}

.page-banner-sub {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.f-btn {
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(4, 55, 128, 0.25);
  background: var(--card-bg);
  color: #043780;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.f-btn:hover, .f-btn.active {
  border-color: #025EC4;
  background: #025EC4;
  color: #fff;
  box-shadow: 0 4px 15px rgba(2, 94, 196, 0.35);
}

@keyframes fadeInCard {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid transparent;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.pc-image {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.6rem;
  position: relative;
}

.pc-img-1  { background: linear-gradient(135deg, #667eea, #764ba2); }
.pc-img-2  { background: linear-gradient(135deg, #f093fb, #f5576c); }
.pc-img-3  { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.pc-img-4  { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.pc-img-5  { background: linear-gradient(135deg, #fa709a, #fee140); }
.pc-img-6  { background: linear-gradient(135deg, #0D1B2A, #1a3a5c); }
.pc-img-7  { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }
.pc-img-8  { background: linear-gradient(135deg, #ffecd2, #fcb69f); }
.pc-img-9  { background: linear-gradient(135deg, #c2e9fb, #a1c4fd); }
.pc-img-10 { background: linear-gradient(135deg, #d4fc79, #96e6a1); }
.pc-img-11 { background: linear-gradient(135deg, #f6d365, #fda085); }
.pc-img-12 { background: linear-gradient(135deg, #89f7fe, #66a6ff); }

.pc-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #025EC4;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pc-body { padding: 24px; }

.pc-cat {
  font-size: 0.73rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pc-name {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.pc-desc {
  font-size: 0.86rem;
  color: #6B7280;
  line-height: 1.55;
  margin-bottom: 18px;
}

.pc-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 18px;
}

.pc-from { font-size: 0.75rem; color: #9CA3AF; }

.pc-amount {
  font-family: var(--font-title);
  font-size: 1.55rem;
  font-weight: 700;
  color: #0ECCED;
}

.pc-currency { font-size: 0.8rem; color: #9CA3AF; }

/* ================================================
   ORDER PAGE
   ================================================ */
.order-section { background: var(--bg-light); padding: 80px 40px 100px; min-height: 60vh; }

.order-wrap { max-width: 780px; margin: 0 auto; }

.order-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}

.ostep {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ostep-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.ostep-num.done { background: #025EC4; color: #fff; }
.ostep-num.pending { background: #E5E7EB; color: #9CA3AF; }

.ostep-label { font-size: 0.85rem; font-weight: 600; }
.ostep-label.done { color: var(--text-dark); }
.ostep-label.pending { color: #9CA3AF; }

.ostep-line { width: 64px; height: 2px; margin: 0 8px; }
.ostep-line.done { background: var(--accent); }
.ostep-line.pending { background: #E5E7EB; }

.order-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 52px;
  box-shadow: var(--shadow-md);
}

.order-head {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(4, 55, 128, 0.12);
}

.order-head h2 {
  font-family: var(--font-title);
  font-size: 1.9rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.order-head p { font-size: 0.9rem; color: #6B7280; }
.order-head p span { color: var(--accent); font-weight: 700; }

/* Form */
.form-group { margin-bottom: 24px; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group label .req { color: var(--accent); }

.form-input {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid rgba(4, 55, 128, 0.25);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #030812;
  background: #fff;
  transition: var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: #025EC4;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(2, 94, 196, 0.15);
}

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%236B7280' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

textarea.form-input { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-sep {
  position: relative;
  text-align: center;
  margin: 32px 0;
}

.form-sep::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(4, 55, 128, 0.15);
}

.form-sep span {
  position: relative;
  background: var(--card-bg);
  padding: 0 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #9CA3AF;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Payment options */
.payment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }

.pay-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 2px solid rgba(4, 55, 128, 0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.pay-option:hover { border-color: #025EC4; }

.pay-option input[type="radio"] { accent-color: #025EC4; width: 18px; height: 18px; flex-shrink: 0; }

.pay-name { font-size: 0.875rem; font-weight: 600; color: var(--text-dark); display: block; }
.pay-sub  { font-size: 0.75rem; color: #9CA3AF; }

/* Order summary */
.order-summary {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 22px;
  margin-bottom: 28px;
  border: 1px solid rgba(4, 55, 128, 0.12);
}

.summary-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  font-size: 0.875rem;
  color: #6B7280;
  border-bottom: 1px solid rgba(4, 55, 128, 0.10);
}

.summary-row:last-child {
  border-bottom: none;
  padding-top: 14px;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.order-note {
  text-align: center;
  font-size: 0.8rem;
  color: #9CA3AF;
  margin-top: 14px;
  line-height: 1.6;
}

/* Info trio */
.info-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.info-trio-item {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.info-trio-icon { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.info-trio-title { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.info-trio-sub { font-size: 0.76rem; color: #9CA3AF; }

/* ================================================
   ANIMATIONS
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left  { opacity: 0; transform: translateX(-28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity: 0; transform: translateX(28px);  transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }
.d6 { transition-delay: 0.6s; }

/* ================================================
   RESPONSIVE — TABLET (≤1024px)
   ================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* ================================================
   RESPONSIVE — MOBILE (≤768px)
   ================================================ */
@media (max-width: 768px) {
  section { padding: 72px 20px; }
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 10px 14px; }
  .nav-toggle { display: flex; }

  /* Mobile menu open */
  .nav-links {
    position: static !important;
    transform: none !important;
  }

  .navbar.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #030812;
    padding: 20px;
    gap: 20px;
    text-align: center;
    border-top: 1px solid rgba(14,204,237,0.10);
    box-shadow: 0 8px 32px rgba(3,8,18,0.5);
  }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .order-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr; }
  .info-trio { grid-template-columns: 1fr; }

}

@media (max-width: 480px) {
  .section-title { font-size: 1.75rem; }
  .order-steps { gap: 0; overflow-x: auto; padding-bottom: 4px; }
  .ostep-line { width: 36px; }
  .whatsapp-float { bottom: 20px; right: 14px; }
}

/* ================================================
   PRODUCTS PAGE v2 — additions
   ================================================ */

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: #0ECCED; transition: var(--transition); }
.breadcrumb a:hover { color: var(--accent-light); opacity: 0.8; }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }
.breadcrumb .current { color: #0ECCED; font-weight: 600; }

/* ---- Hero small ---- */
.hero-sm {
  background: linear-gradient(160deg, var(--primary) 0%, #043780 100%);
  padding: 72px 40px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-sm::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(14,204,237,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-sm-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 12px;
  position: relative;
}
.hero-sm-sub {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}

/* ---- Sticky filter bar ---- */
.filter-sticky-wrap {
  position: sticky;
  top: 72px; /* navbar height (announce bar already scrolled) */
  z-index: 900;
  background: var(--bg-light);
  border-bottom: 1px solid rgba(4,55,128,0.12);
  padding: 16px 40px;
  box-shadow: 0 4px 16px rgba(2,7,100,0.08);
}
.filter-sticky-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-sticky-inner .f-btn {
  padding: 8px 20px;
  font-size: 0.82rem;
}

/* ---- Promo banner ---- */
.promo-banner {
  background: linear-gradient(135deg, #020764 0%, #043780 100%);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 40px;
  border-radius: var(--radius-md);
}
.promo-banner-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.promo-banner-text span { color: var(--accent); font-weight: 700; }

/* ================================
   CARTE PRODUIT v2 (pc2)
================================ */
.pc2 {
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid rgba(2, 94, 196, 0.10);
  box-shadow: 0 2px 12px rgba(2, 7, 100, 0.07);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.pc2:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(2, 94, 196, 0.15);
  border-color: rgba(2, 94, 196, 0.25);
}

/* Image placeholder */
.pc2-img {
  height: 155px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  position: relative;
  flex-shrink: 0;
}
/* Gradient variants */
.g-purple-pink  { background: linear-gradient(135deg, #7B2FF7 0%, #F107A3 100%); }
.g-black-red    { background: linear-gradient(135deg, #1a1a1a 0%, #C0392B 100%); }
.g-blue         { background: linear-gradient(135deg, #1565C0 0%, #42A5F5 100%); }
.g-purple       { background: linear-gradient(135deg, #6A0572 0%, #AB47BC 100%); }
.g-black        { background: linear-gradient(135deg, #212121 0%, #424242 100%); }
.g-red          { background: linear-gradient(135deg, #B71C1C 0%, #E53935 100%); }
.g-blue-office  { background: linear-gradient(135deg, #1E3A5F 0%, #2196F3 100%); }
.g-red-black    { background: linear-gradient(135deg, #1a0000 0%, #E50914 100%); }
.g-green-dark   { background: linear-gradient(135deg, #0a1f0a 0%, #1B5E20 100%); }
.g-black-gold   { background: linear-gradient(135deg, #1a1200 0%, #F9A825 100%); }
.g-sky-blue     { background: linear-gradient(135deg, #0277BD 0%, #80DEEA 100%); }
.g-gold         { background: linear-gradient(135deg, #F57F17 0%, #FFD54F 100%); }
.g-pink-purple  { background: linear-gradient(135deg, #AD1457 0%, #7B1FA2 100%); }
.g-blue-violet  { background: linear-gradient(135deg, #1A237E 0%, #7E57C2 100%); }
.g-blue-ads     { background: linear-gradient(135deg, #0D47A1 0%, #1976D2 100%); }

/* Badge */
.pc2-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  backdrop-filter: blur(4px);
  z-index: 2;
}
.badge-gold   { background: #025EC4;         color: #fff; }
.badge-red    { background: #E53935;         color: #fff; }
.badge-green  { background: var(--whatsapp); color: #fff; }
.badge-blue   { background: #0ECCED;         color: #030812; }
.badge-dark   { background: #020764;         color: #0ECCED; border: 1px solid rgba(14,204,237,0.3); }

/* Body */
.pc2-body {
  padding: 12px 14px 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.pc2-cat {
  font-size: 0.60rem;
  color: #025EC4;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pc2-name {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: #030812;
  margin-bottom: 5px;
  line-height: 1.3;
}
.pc2-desc {
  font-size: 0.74rem;
  color: #64748b;
  line-height: 1.45;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pc2-features {
  margin-bottom: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pc2-features li {
  font-size: 0.71rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 5px;
}
.pc2-price {
  margin-bottom: 10px;
}
.pc2-price-label {
  font-size: 0.65rem;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 2px;
}
.pc2-price-value {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 800;
  color: #030812;
  line-height: 1.1;
}

/* WhatsApp order button */
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  background: #25D366;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  margin-top: auto;
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: #FFFFFF;
  text-decoration: none;
}
.btn-whatsapp svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: #fff; /* currentColor inheritance */
}

/* Card dual buttons */
.card-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  padding: 10px 14px 14px;
}
.btn-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 9px 6px;
  background: #025EC4;
  color: white !important;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-detail:hover {
  background: #020764;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(2, 94, 196, 0.35);
  color: white !important;
}
.btn-whatsapp-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 9px 6px;
  border-radius: 8px;
  background: #25D366;
  color: white !important;
  border: none;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-whatsapp-card:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  color: white !important;
}
.btn-whatsapp-card svg,
.btn-whatsapp-card img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .card-buttons { grid-template-columns: 1fr 1fr; }
  .btn-detail, .btn-whatsapp-card { font-size: 0.72rem; padding: 8px 6px; }
}

/* Products section */
.products-section-v2 {
  padding: 0 40px 96px;
  background: var(--bg-light);
}
.products-inner-v2 {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
}
.products-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Card hide/show */
.pc2.hidden {
  display: none;
}
.pc2.fade-out {
  opacity: 0;
  transform: scale(0.96);
}


/* ---- Responsive additions ---- */
@media (max-width: 1100px) {
  .products-grid-v2 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .products-grid-v2 { grid-template-columns: repeat(3, 1fr); }
  .promo-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .hero-sm { padding: 56px 20px 44px; }
  .filter-sticky-wrap { padding: 12px 20px; top: 72px; }
  .products-section-v2 { padding: 0 20px 72px; }
  .products-grid-v2 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .promo-banner { padding: 20px; margin: 0 0 32px; border-radius: var(--radius-sm); }
}
@media (max-width: 420px) {
  .products-grid-v2 { grid-template-columns: 1fr; }
}

/* ================================================
   PRODUCT CARD — clickable (detail page link)
   ================================================ */
.pc2[data-detail-id] { cursor: pointer; }

/* ================================================
   PRODUCT DETAIL PAGE
   ================================================ */
.detail-section {
  background: var(--bg-light);
  padding: 60px 0 80px;
}

.detail-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 50px;
  align-items: start;
}

/* Image produit */
.detail-image {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.detail-emoji { font-size: 80px; line-height: 1; }

/* Bloc commande sticky */
.detail-order-box {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  position: sticky;
  top: 100px;
}

.detail-price {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 800;
  color: #030812;
  margin-bottom: 20px;
}

/* Options */
.options-label {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 12px;
  font-weight: 600;
}

.options-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.option-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.9rem;
  font-family: var(--font-body);
}

.option-btn:hover,
.option-btn.active {
  border-color: var(--accent);
  background: rgba(2,94,196,0.06);
}

.opt-quantite { font-weight: 600; color: var(--text-dark); }
.opt-prix { color: #030812; font-weight: 800; }

/* Bouton commander grand */
.btn-commander-big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  border-radius: 12px;
  margin-bottom: 16px;
  text-decoration: none;
  font-weight: 700;
  background: #25D366;
  color: #fff;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-commander-big:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  color: #fff;
  text-decoration: none;
}

/* Garanties */
.detail-guarantees {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8rem;
  color: #666;
  padding-top: 4px;
}

/* Blocs info droite */
.detail-block {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

/* Bloc header produit dans détail */
.detail-block-hero {
  border-left: 4px solid var(--accent);
}

.detail-product-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.detail-categorie-tag {
  background: rgba(2,94,196,0.08);
  border: 1px solid rgba(2,94,196,0.25);
  color: var(--accent);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-badge-tag {
  background: var(--primary);
  color: white;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
}

.detail-product-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem !important;
  font-weight: 700;
  color: var(--text-dark) !important;
  margin-bottom: 12px !important;
  line-height: 1.2;
}

.detail-product-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

.detail-block h2 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.detail-block p {
  color: #444;
  line-height: 1.75;
  font-size: 0.95rem;
}

/* Avantages */
.detail-avantages {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-avantages li {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
  padding-left: 4px;
}

/* FAQ accordéon */
.faq-item { border-bottom: 1px solid rgba(4,55,128,0.10); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  font-family: var(--font-body);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 8px;
}

.faq-answer {
  display: none;
  padding: 0 0 14px;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

.faq-item.open .faq-answer { display: block; }

/* Produits similaires */
.similar-products {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.similar-card {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  padding: 10px;
  border-radius: 10px;
  transition: background 0.2s;
}

.similar-card:hover { background: rgba(2,94,196,0.05); }

.similar-image {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.similar-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.similar-info strong { font-size: 0.9rem; color: var(--text-dark); }
.similar-info span { font-size: 0.8rem; color: var(--accent); font-weight: 600; }

/* Grille logiciels inclus */
.logiciels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.logiciel-item {
  background: var(--bg-light);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 500;
  border-left: 3px solid var(--accent);
}

@media (max-width: 768px) {
  .logiciels-grid { grid-template-columns: 1fr; }
}

/* RESPONSIVE detail */
@media (max-width: 900px) {
  .detail-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 24px;
  }
  .detail-order-box { position: static; }
  .detail-image { height: 220px; }
}

@media (max-width: 480px) {
  .detail-section { padding: 40px 0 60px; }
  .detail-block { padding: 20px; }
  .detail-order-box { padding: 20px; }
  .detail-price { font-size: 1.4rem; }
}

/* ================================================
   PRIX — PALETTE BLEUE CYAN
   ================================================ */
[class*="prix"],
[class*="price"],
.card-price,
.prix,
.price {
  color: #0ECCED !important;
  font-weight: 700;
}

/* Prix produits similaires */
.similar-info span { color: #0ECCED; font-weight: 600; }

/* Prix barré */
[class*="prix-barre"],
[style*="line-through"] {
  color: rgba(14, 204, 237, 0.4) !important;
}

/* ================================
   BLOC PRIX
================================ */
hr.price-divider {
  display: none;
}
.price-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  margin-top: 8px;
  border-top: 1px solid rgba(2, 94, 196, 0.08);
}
.price-amount {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #030812;
  line-height: 1;
}
.price-badge {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #025EC4;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 0.62rem;
  font-weight: 600;
  white-space: nowrap;
}
.pc2:hover .price-amount { color: #020764; }
.pc2:hover .price-badge  { background: #DBEAFE; border-color: #025EC4; }
@media (max-width: 480px) {
  .price-amount { font-size: 0.95rem; }
  .price-badge  { font-size: 0.60rem; }
}

/* ================================
   VRAIES IMAGES — Cartes produits
================================ */
.card-img-real {
  width: 100%;
  height: 155px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.card-img-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  display: block;
}
.pc2:hover .card-img-real img {
  transform: scale(1.05);
}
.card-img-real::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(3,8,18,0.20) 100%);
  pointer-events: none;
}
.card-img-real .pc2-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

/* Vraies images — page détail */
.detail-image-real {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
}
.detail-image-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.detail-image-real:hover img { transform: scale(1.04); }

/* Legacy override — keep intact */
.pc2-price-value,
.detail-price,
.opt-prix,
*[class*="tarif"] {
  color: #000000 !important;
  font-weight: 800 !important;
}

/* ================================================
   PRODUCT-CARD — Structure uniforme 2025
   ================================================ */

/* Masquer les listes sur les anciennes cartes */
.pc2 ul, .pc2 li { display: none !important; }

/* Carte principale — hauteur fixe */
.product-card {
  height: 380px;
}

/* Zone image */
.card-top {
  position: relative;
  height: 148px;
  flex-shrink: 0;
  overflow: hidden;
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.product-card:hover .card-img { transform: scale(1.05); }
.card-emoji-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  transition: transform 0.35s;
}
.product-card:hover .card-emoji-bg { transform: scale(1.05); }

/* Badge flottant */
.card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,0.50);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  z-index: 2;
}

/* Zone info */
.card-info {
  padding: 10px 12px 6px;
  flex: 1;
  overflow: hidden;
}
.card-cat {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  color: #025EC4;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 3px;
}
.card-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #030812;
  margin: 0 0 4px;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-sub {
  font-size: 0.71rem;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Zone prix */
.card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 12px;
  border-top: 1px solid rgba(2,94,196,0.08);
  border-bottom: 1px solid rgba(2,94,196,0.08);
  flex-shrink: 0;
}

/* Bouton Commander WA dans carte */
.card-buttons .btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 4px;
  background: #25D366;
  color: white !important;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.card-buttons .btn-wa:hover {
  background: #1ebe5a;
  color: white !important;
  transform: none;
  box-shadow: none;
}

/* Responsive hauteur carte */
@media (max-width: 768px) {
  .product-card { height: 360px; }
}
@media (max-width: 420px) {
  .product-card { height: auto; }
}

/* ---- Correction — Supprimer espace blanc sous les boutons ---- */
.card-buttons { padding: 8px 10px 10px !important; margin-bottom: 0 !important; }
.card-buttons:last-child { padding-bottom: 10px !important; }
.product-card { overflow: hidden; }

/* ---- Ticker défilant ---- */
.ticker-wrap {
  width: 100%;
  background: linear-gradient(90deg, #020764, #025EC4, #020764);
  border-top: 2px solid rgba(14, 204, 237, 0.5);
  border-bottom: 2px solid rgba(14, 204, 237, 0.5);
  overflow: hidden;
  position: relative;
  padding: 18px 0;
  z-index: 10;
}
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.ticker-wrap::before { left: 0;  background: linear-gradient(90deg,  #020764, transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(-90deg, #020764, transparent); }
.ticker-track { overflow: hidden; width: 100%; }
.ticker-content {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-move 30s linear infinite;
}
.ticker-content:hover { animation-play-state: paused; }
@keyframes ticker-move {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.tick-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1.15rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  color: #FFFFFF;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 0 50px;
  text-shadow: 0 0 20px rgba(14, 204, 237, 0.4);
}
.tick-star {
  color: #0ECCED;
  font-size: 1rem;
  filter: drop-shadow(0 0 6px #0ECCED);
}
.tick-sep {
  color: rgba(14, 204, 237, 0.6);
  font-size: 0.8rem;
}


/* ================================================
   PALETTE FINALE — Violet & Vert Neon
   ================================================ */

/* ---- Body ---- */
body { background: #FFFFFF; color: #000000; }


/* ---- Navbar ---- */
.navbar {
  background: #FFFFFF !important;
  border-bottom: 1px solid rgba(124,47,255,0.12) !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06) !important;
}
.nav-links a { color: #000000 !important; font-weight: 500; }
.nav-links a:hover, .nav-links a.active { color: #7C2FFF !important; }
.nav-links a::after { background: #7C2FFF !important; }
.nav-links a.active::after { width: 100%; }
.nav-logo .logo-bm { color: #7C2FFF !important; }
.nav-logo .logo-sub { color: #555555 !important; }

/* ---- Hero ---- */
.hero { background: #FFFFFF !important; }
.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.92) 0%,
    rgba(124,47,255,0.08) 50%,
    rgba(255,255,255,0.92) 100%
  ) !important;
}
.hero-badge {
  background: rgba(126,255,75,0.10) !important;
  border: 1px solid rgba(126,255,75,0.4) !important;
  color: #000000 !important;
}
.badge-dot { background: #7EFF4B !important; }
.hero-h1 { color: #000000 !important; }
.hero-highlight { color: #7C2FFF !important; font-style: italic; }
.hero-line { background: linear-gradient(90deg, #7C2FFF, transparent) !important; }
.hero-p { color: #555555 !important; }
.hbtn-primary { background: #7C2FFF !important; color: white !important; }
.hbtn-primary:hover { background: #9B63FF !important; box-shadow: var(--glow-violet) !important; }
.hstat-card {
  background: rgba(124,47,255,0.04) !important;
  border: 1px solid rgba(124,47,255,0.12) !important;
}
.hstat-card:hover {
  background: rgba(124,47,255,0.08) !important;
  border-color: rgba(124,47,255,0.3) !important;
  box-shadow: var(--shadow-sm) !important;
}
.hstat-accent { background: rgba(124,47,255,0.08) !important; border-color: rgba(124,47,255,0.2) !important; }
.hstat-green { background: rgba(126,255,75,0.06) !important; border-color: rgba(126,255,75,0.2) !important; }
.hstat-num { color: #7C2FFF !important; }
.hstat-label { color: #555555 !important; }
.scroll-dot { border-color: rgba(124,47,255,0.3) !important; }
.scroll-dot::after { background: #7C2FFF !important; }
.typewriter, .typewriter-cursor { color: #7C2FFF !important; }

/* ---- Bandeau defilant ---- */
.ticker-wrap {
  background: #7C2FFF !important;
  border-top: 2px solid rgba(126,255,75,0.5) !important;
  border-bottom: 2px solid rgba(126,255,75,0.5) !important;
}
.ticker-wrap::before { background: linear-gradient(90deg, #7C2FFF, transparent) !important; }
.ticker-wrap::after  { background: linear-gradient(-90deg, #7C2FFF, transparent) !important; }
.tick-item { color: #FFFFFF !important; text-shadow: 0 0 15px rgba(255,255,255,0.2) !important; }
.tick-star { color: #7EFF4B !important; filter: drop-shadow(0 0 5px #7EFF4B) !important; }
.tick-sep  { color: rgba(126,255,75,0.5) !important; }

/* ---- Sections ---- */
section:nth-child(even), .section-alt { background: #F5F0FF; }
.section-header h2, [class*="section"] h2 { color: #000000; }
.section-header h2 span, [class*="section"] h2 span { color: #7C2FFF; }
.section-header p { color: #555555; }

/* ---- Filtres ---- */
.filter-btn {
  border: 2px solid rgba(124,47,255,0.2) !important;
  color: #000000 !important;
  background: white !important;
}
.filter-btn:hover { border-color: #7C2FFF !important; color: #7C2FFF !important; }
.filter-btn.active {
  background: #7C2FFF !important;
  border-color: #7C2FFF !important;
  color: white !important;
  box-shadow: var(--shadow-sm) !important;
}

/* ---- Cartes produits ---- */
.product-card, .pc2 {
  background: #FFFFFF !important;
  border: 1px solid rgba(124,47,255,0.10) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
}
.product-card:hover, .pc2:hover {
  border-color: #7C2FFF !important;
  box-shadow: var(--shadow-md) !important;
  transform: translateY(-5px) !important;
}
.card-cat { color: #7C2FFF !important; }
.card-title { color: #000000 !important; }
.card-sub { color: #555555 !important; }
.price-amount { color: #000000 !important; font-weight: 800 !important; }
.price-badge {
  background: rgba(124,47,255,0.08) !important;
  border: 1px solid rgba(124,47,255,0.2) !important;
  color: #7C2FFF !important;
}
.card-badge { background: rgba(0,0,0,0.5) !important; backdrop-filter: blur(8px); color: white !important; }
.card-price-row {
  border-top: 1px solid rgba(124,47,255,0.08) !important;
  border-bottom: 1px solid rgba(124,47,255,0.08) !important;
}
[class*="badge-new"], [class*="badge-promo"] {
  background: #7EFF4B !important;
  color: #000000 !important;
}

/* ---- Boutons cartes ---- */
.btn-detail { background: #7C2FFF !important; color: white !important; }
.btn-detail:hover { background: #5a1fd4 !important; box-shadow: var(--shadow-sm) !important; color: white !important; }
.card-buttons .btn-wa { background: #25D366 !important; color: white !important; }
.card-buttons .btn-wa:hover { background: #1ebe5a !important; }

/* ---- Banniere promo ---- */
[class*="promo"], .banner-strip {
  background: linear-gradient(135deg, #7C2FFF, #9B63FF) !important;
  color: white !important;
}
[class*="promo"] a, [class*="promo"] strong { color: #7EFF4B !important; }
[class*="promo"] .btn {
  background: #7EFF4B !important;
  color: #000000 !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
}

/* ---- Page detail ---- */
.detail-order-box { border: 1px solid rgba(124,47,255,0.15) !important; box-shadow: var(--shadow-md) !important; }
.detail-price { color: #7C2FFF !important; }
.option-btn:hover, .option-btn.active { border-color: #7C2FFF !important; background: rgba(124,47,255,0.05) !important; }
.opt-prix { color: #7C2FFF !important; }
.detail-block { border: 1px solid rgba(124,47,255,0.08) !important; }
.detail-block h2 { color: #000000 !important; }
.detail-block-hero { border-left: 4px solid #7C2FFF !important; }
.detail-categorie-tag {
  background: rgba(124,47,255,0.08) !important;
  border-color: rgba(124,47,255,0.2) !important;
  color: #7C2FFF !important;
}
.detail-badge-tag { background: #7C2FFF !important; color: white !important; }
.detail-product-title { color: #000000 !important; }
.faq-icon { color: #7C2FFF !important; }
.faq-question { color: #000000 !important; }
.similar-info strong { color: #000000 !important; }
.similar-info span { color: #7C2FFF !important; }

/* ---- Section sombre ---- */
[class*="why"], section.dark-section {
  background: linear-gradient(135deg, #000000, #1a0040) !important;
  color: white !important;
}
[class*="why"] h2 { color: white !important; }
[class*="why"] [class*="icon"] { color: #7EFF4B !important; }
[class*="why"] p { color: rgba(255,255,255,0.75) !important; }

/* ---- Contact ---- */
[class*="contact"] h2 { color: #000000 !important; }
[class*="contact-card"] { background: white !important; border: 1px solid rgba(124,47,255,0.12) !important; }
[class*="contact"] .btn { background: #7C2FFF !important; color: white !important; border-radius: 50px !important; }
[class*="contact"] .btn:hover { background: #9B63FF !important; }

/* ---- Formulaire ---- */
input, select, textarea {
  border: 2px solid rgba(124,47,255,0.2);
  color: #000000;
  background: white;
}
input:focus, select:focus, textarea:focus {
  border-color: #7C2FFF !important;
  box-shadow: 0 0 0 3px rgba(124,47,255,0.12) !important;
  outline: none;
}
label { color: #000000; font-weight: 600; }

/* ---- Hero pages internes ---- */
.hero-small { background: #FFFFFF !important; }
.hero-small .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.88) 0%,
    rgba(124,47,255,0.06) 50%,
    rgba(255,255,255,0.92) 100%
  ) !important;
}
.hero-small .hero-title { color: #000000 !important; }
.hero-small .hero-subtitle { color: #555555 !important; }
.hero-small .hero-badge {
  background: rgba(126,255,75,0.10) !important;
  border-color: rgba(126,255,75,0.4) !important;
  color: #000000 !important;
}
.breadcrumb a { color: #7C2FFF !important; }

/* ---- Footer ---- */
footer, .footer {
  background: #000000 !important;
  color: rgba(255,255,255,0.7) !important;
  border-top: 1px solid rgba(124,47,255,0.15) !important;
}
footer h3, footer h4, .footer h3, .footer h4 { color: #7C2FFF !important; }
footer a, .footer a { color: rgba(255,255,255,0.6); }
footer a:hover, .footer a:hover { color: #7EFF4B !important; }
.footer-bottom {
  border-top: 1px solid rgba(124,47,255,0.10) !important;
  color: rgba(255,255,255,0.3) !important;
}

/* ---- WhatsApp flottant ---- */
.whatsapp-float { background: #25D366 !important; }


/* ================================================
   REDESIGN 2025 — Navbar + Hero + Ticker + Cards
   ================================================ */

/* ---- NAVBAR REDESIGN ---- */
.navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(124,47,255,0.10) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06) !important;
  height: auto !important;
  padding: 0 !important;
  display: block !important;
  transition: all 0.3s !important;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.98) !important;
  box-shadow: 0 4px 30px rgba(124,47,255,0.12) !important;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  height: 68px;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

/* Logo */
.nav-logo {
  display: flex !important;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  flex-direction: row !important;
  line-height: normal !important;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #7C2FFF, #9B63FF);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: -0.5px;
  box-shadow: 0 4px 15px rgba(124,47,255,0.35);
  font-family: var(--font-body);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-size: 0.88rem;
  font-weight: 800;
  color: #000000 !important;
  letter-spacing: 2px;
  font-family: var(--font-body);
}

.logo-sub {
  font-size: 0.62rem !important;
  font-weight: 500 !important;
  color: #7C2FFF !important;
  letter-spacing: 3px !important;
  font-family: var(--font-body) !important;
}

/* Nav links */
.nav-links {
  display: flex !important;
  align-items: center;
  gap: 8px !important;
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #000000 !important;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.nav-link:hover {
  background: rgba(124,47,255,0.08);
  color: #7C2FFF !important;
}

.nav-link.active {
  background: rgba(124,47,255,0.10);
  color: #7C2FFF !important;
  font-weight: 600;
}

/* Supprimer le soulignement des anciens liens */
.nav-link::after { display: none !important; }

/* Bouton WhatsApp nav */
.nav-wa-btn {
  display: flex !important;
  align-items: center;
  gap: 7px;
  background: #25D366 !important;
  color: white !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
  white-space: nowrap;
}

.nav-wa-btn:hover {
  background: #1ebe5a !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  color: white !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: #000000;
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

/* ---- HERO REDESIGN ---- */
.hero {
  position: relative !important;
  min-height: 78vh !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  background: #000000 !important;
  padding-top: 68px !important;
}

.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.92) 0%,
    rgba(124,47,255,0.15) 50%,
    rgba(0,0,0,0.92) 100%
  ) !important;
}

.hero-inner {
  padding: 40px 40px !important;
  display: block !important;
}

.hero-left {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Stats horizontales */
.hero-stats-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 20px !important;
  margin: 8px 0 !important;
  flex-wrap: nowrap !important;
}

.hero-stat-mini {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 2px !important;
}

.hero-stat-mini strong {
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  line-height: 1 !important;
  -webkit-text-fill-color: #FFFFFF !important;
}

.hero-stat-mini span {
  font-size: 0.60rem !important;
  color: rgba(255,255,255,0.50) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  font-weight: 500 !important;
}

.hero-stat-div {
  width: 1px !important;
  height: 28px !important;
  background: rgba(255,255,255,0.15) !important;
  flex-shrink: 0 !important;
}

.hbtn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white !important;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.3s;
}

.hbtn-whatsapp:hover {
  background: #25D366 !important;
  border-color: #25D366 !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  color: white !important;
}

/* ---- TICKER REDESIGN ---- */
.ticker-wrap {
  background: linear-gradient(
    90deg, #000000 0%, #7C2FFF 30%,
    #9B63FF 50%, #7C2FFF 70%, #000000 100%
  ) !important;
  border-top: 2px solid rgba(126,255,75,0.5) !important;
  border-bottom: 2px solid rgba(126,255,75,0.5) !important;
  padding: 16px 0 !important;
}

.ticker-wrap::before {
  background: linear-gradient(90deg, #000000, transparent) !important;
}
.ticker-wrap::after {
  background: linear-gradient(-90deg, #000000, transparent) !important;
}

.ticker-content {
  animation: ticker-move 28s linear infinite !important;
}

.tick-item {
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  font-family: 'Playfair Display', serif !important;
  color: #FFFFFF !important;
  letter-spacing: 5px !important;
  padding: 0 50px !important;
  text-shadow: 0 0 20px rgba(255,255,255,0.3) !important;
}

.tick-star {
  color: #7EFF4B !important;
  filter: drop-shadow(0 0 8px #7EFF4B) !important;
  font-size: 1.1rem !important;
}

.tick-sep {
  color: rgba(126,255,75,0.6) !important;
  font-size: 0.9rem !important;
}

/* ---- CARDS REDESIGN ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 50px;
}

.product-card {
  background: #FFFFFF !important;
  border-radius: 16px !important;
  border: 1px solid rgba(124,47,255,0.10) !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06) !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1) !important;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 40px rgba(124,47,255,0.18) !important;
  border-color: #7C2FFF !important;
}

.card-cat {
  display: block;
  font-size: 0.58rem !important;
  font-weight: 700 !important;
  color: #7C2FFF !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 3px;
}

.card-title {
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  color: #000000 !important;
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-sub {
  font-size: 0.71rem !important;
  color: #555555 !important;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price-amount {
  color: #000000 !important;
  font-weight: 800 !important;
  font-size: 0.88rem;
}

.price-badge {
  background: rgba(124,47,255,0.08) !important;
  border: 1px solid rgba(124,47,255,0.2) !important;
  color: #7C2FFF !important;
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 20px;
}

.card-price-row {
  border-top: 1px solid rgba(124,47,255,0.08) !important;
  border-bottom: 1px solid rgba(124,47,255,0.08) !important;
}

.btn-detail {
  background: #7C2FFF !important;
  color: white !important;
  border-radius: 8px;
  padding: 9px 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-detail:hover {
  background: #5a1fd4 !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(124,47,255,0.35);
}

/* ---- RESPONSIVE MOBILE ---- */
@media (max-width: 768px) {
  .nav-links {
    display: none !important;
    position: fixed !important;
    top: 68px !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    background: white !important;
    flex-direction: column !important;
    padding: 20px !important;
    border-bottom: 1px solid rgba(124,47,255,0.1) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    gap: 4px !important;
    z-index: 999;
  }

  .nav-links.open { display: flex !important; }
  .nav-hamburger { display: flex !important; }
  .nav-wa-btn { padding: 9px 14px; font-size: 0; }
  .nav-wa-btn svg { font-size: 0; }
  .nav-container { padding: 0 20px; }

  .hero-inner { padding: 30px 20px !important; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .hbtn-primary, .hbtn-whatsapp { justify-content: center; }
  .hero-stats-row { gap: 12px; }
  .hero-stat-mini strong { font-size: 1.1rem; }

  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
    padding: 10px 16px 40px !important;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ================================================
   WHY SECTION — Refonte
   ================================================ */

.why-section {
  background: linear-gradient(135deg, #000000 0%, #1a0040 50%, #000000 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124,47,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.why-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.why-header {
  text-align: center;
  margin-bottom: 50px;
}

.why-badge {
  display: inline-block;
  background: rgba(126,255,75,0.10);
  border: 1px solid rgba(126,255,75,0.3);
  color: #7EFF4B;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.why-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #FFFFFF !important;
  margin-bottom: 12px;
  line-height: 1.2;
}

.why-accent {
  background: linear-gradient(135deg, #7C2FFF, #9B63FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(124,47,255,0.15);
  border-radius: 18px;
  padding: 30px 22px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #7C2FFF, #9B63FF);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.why-card:hover {
  background: rgba(124,47,255,0.10);
  border-color: rgba(124,47,255,0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(124,47,255,0.20);
}

.why-card:hover::before { transform: scaleX(1); }

.why-card-accent {
  background: linear-gradient(135deg, rgba(124,47,255,0.15), rgba(155,99,255,0.08));
  border-color: rgba(124,47,255,0.30);
}

.why-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(124,47,255,0.2), rgba(155,99,255,0.1));
  border: 1px solid rgba(124,47,255,0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.3s;
}

.why-card:hover .why-icon-wrap {
  background: linear-gradient(135deg, #7C2FFF, #9B63FF);
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 8px 25px rgba(124,47,255,0.4);
}

.why-icon { font-size: 1.6rem; }

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.80rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 16px;
}

.why-stat {
  display: inline-block;
  background: linear-gradient(135deg, #7C2FFF, #9B63FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .why-grid { grid-template-columns: 1fr; }
}


/* ================================================
   CONTACT SECTION — Refonte
   ================================================ */

.contact-section {
  background: #F5F0FF;
  padding: 80px 0;
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-badge {
  display: inline-block;
  background: rgba(124,47,255,0.08);
  border: 1px solid rgba(124,47,255,0.2);
  color: #7C2FFF;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #000000 !important;
  margin-bottom: 12px;
}

.contact-accent { color: #7C2FFF; }

.contact-sub {
  font-size: 0.95rem;
  color: #555555;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* Card principale WhatsApp */
.contact-main {
  background: linear-gradient(135deg, #7C2FFF, #9B63FF) !important;
  border-radius: 20px !important;
  padding: 40px 32px !important;
  text-align: center;
  color: white;
  box-shadow: 0 16px 50px rgba(124,47,255,0.35);
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  gap: 12px;
  border: none !important;
}

.contact-icon-big {
  font-size: 3rem;
  margin-bottom: 4px;
}

.contact-main h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: white !important;
}

.contact-main p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
}

.contact-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white !important;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
  margin-top: 4px;
}

.contact-cta-btn:hover {
  background: #1ebe5a !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
  color: white !important;
}

.contact-response {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.70);
  font-weight: 500;
}

/* Cards secondaires */
.contact-cards-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card-small {
  background: #FFFFFF !important;
  border: 1px solid rgba(124,47,255,0.10) !important;
  border-radius: 14px !important;
  padding: 18px 20px !important;
  display: flex !important;
  align-items: center;
  gap: 16px;
  transition: all 0.25s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04) !important;
}

.contact-card-small:hover {
  border-color: #7C2FFF !important;
  box-shadow: 0 6px 20px rgba(124,47,255,0.12) !important;
  transform: translateX(4px);
}

.cs-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(124,47,255,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cs-info strong {
  font-size: 0.80rem;
  font-weight: 700;
  color: #000000;
}

.cs-info a,
.cs-info span {
  font-size: 0.78rem;
  color: #555555;
  text-decoration: none;
  transition: color 0.2s;
}

.cs-info a:hover { color: #7C2FFF; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-main { padding: 30px 24px !important; }
}

/* ================================================
   HERO — Lisibilité texte sur image
   ================================================ */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.75) 40%,
    rgba(0,0,0,0.60) 70%,
    rgba(0,0,0,0.80) 100%
  ) !important;
  z-index: 1;
}

.hero-h1 { color: #FFFFFF !important; }

.hero-highlight {
  background: linear-gradient(135deg, #9B63FF, #7C2FFF) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-style: italic;
  display: block;
}

.hero-p { color: rgba(255,255,255,0.85) !important; }

.hero-badge {
  color: #7EFF4B !important;
  background: rgba(126,255,75,0.12) !important;
  border-color: rgba(126,255,75,0.4) !important;
}

.hero-stat-mini strong { color: #9B63FF !important; }
.hero-stat-mini span   { color: rgba(255,255,255,0.55) !important; }
.hero-stat-divider     { background: rgba(255,255,255,0.15) !important; }

.typewriter        { color: #9B63FF !important; }
.typewriter-cursor { color: #9B63FF !important; }
/* ================================================
   WHY SECTION — Corrections titre + stats
   ================================================ */

.why-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem) !important;
  font-weight: 800;
  color: #FFFFFF !important;
  margin-bottom: 12px;
  line-height: 1.3;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.why-accent {
  display: inline !important;
  background: linear-gradient(135deg, #7C2FFF, #9B63FF) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.why-stat {
  display: block !important;
  font-family: 'Playfair Display', serif;
  font-size: 2rem !important;
  font-weight: 900 !important;
  color: #9B63FF !important;
  -webkit-text-fill-color: #9B63FF !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  line-height: 1;
  margin-top: 8px;
}
/* ================================================
   HERO PAGES INTERNES — Corrections lisibilité
   ================================================ */

.hero-small .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.75) 50%,
    rgba(0,0,0,0.90) 100%
  ) !important;
  backdrop-filter: blur(2px);
}

.hero-small .hero-title,
#detail-product-title,
#product-nom,
.hero-small h1 {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-small .hero-subtitle,
.hero-small p {
  color: rgba(255,255,255,0.80) !important;
}

.hero-small .hero-badge,
#detail-cat-tag {
  color: #7EFF4B !important;
  background: rgba(126,255,75,0.12) !important;
  border-color: rgba(126,255,75,0.4) !important;
}

.breadcrumb a { color: #9B63FF !important; }
.breadcrumb span { color: rgba(255,255,255,0.5) !important; }

.hero-small {
  min-height: 380px !important;
  max-height: 420px !important;
}

.hero-small-content {
  padding: 30px 20px !important;
}
/* ================================================
   PRODUCT-DETAIL — Corrections lisibilite
   ================================================ */

.detail-product-title,
#detail-product-title {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  line-height: 1.3;
}

.detail-price,
#product-prix {
  color: #7C2FFF !important;
  -webkit-text-fill-color: #7C2FFF !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  font-size: 1.8rem !important;
  font-weight: 800 !important;
}

#product-description {
  color: #333333 !important;
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
}

#product-avantages li {
  color: #333333 !important;
  font-size: 0.90rem !important;
}

.faq-question { color: #000000 !important; }
.faq-answer   { color: #555555 !important; }

.detail-section { background: #F5F0FF !important; }

.detail-block {
  background: #FFFFFF !important;
  border: 1px solid rgba(124,47,255,0.10) !important;
}

.detail-order-box { background: #FFFFFF !important; }

.option-btn {
  color: #000000 !important;
  background: #FFFFFF !important;
}

.opt-quantite { color: #000000 !important; }

.opt-prix {
  color: #7C2FFF !important;
  -webkit-text-fill-color: #7C2FFF !important;
}

.detail-guarantees span { color: #555555 !important; }
/* ================================================
   CONTACT — Icones SVG + WA icon
   ================================================ */

.cs-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.contact-card-small:hover .cs-icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

.cs-email {
  background: linear-gradient(135deg, #7C2FFF, #9B63FF);
  box-shadow: 0 4px 12px rgba(124,47,255,0.35);
}

.cs-instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 4px 12px rgba(220,39,67,0.35);
}

.cs-time {
  background: linear-gradient(135deg, #7EFF4B, #3dce00);
  box-shadow: 0 4px 12px rgba(126,255,75,0.35);
}

.cs-location {
  background: linear-gradient(135deg, #FF6B6B, #ee0979);
  box-shadow: 0 4px 12px rgba(238,9,121,0.35);
}

.cs-info strong {
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  color: #000000 !important;
  display: block;
  margin-bottom: 2px;
}

.cs-info a,
.cs-info span {
  font-size: 0.78rem !important;
  color: #555555 !important;
  text-decoration: none;
  transition: color 0.2s;
}

.cs-info a:hover { color: #7C2FFF !important; }

.contact-card-small {
  display: flex !important;
  align-items: center;
  gap: 14px;
  background: #FFFFFF !important;
  border: 1px solid rgba(124,47,255,0.10) !important;
  border-radius: 14px !important;
  padding: 16px 18px !important;
  transition: all 0.25s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
}

.contact-card-small:hover {
  border-color: #7C2FFF !important;
  box-shadow: 0 6px 20px rgba(124,47,255,0.12) !important;
  transform: translateX(5px);
}

/* WA icon anime */
.contact-wa-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
  50%       { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}
/* ================================================
   CARTES PRODUITS — Taille reduite
   ================================================ */

.products-grid {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 12px !important;
  padding: 16px 20px 30px !important;
}

.product-card { border-radius: 12px !important; }

.card-top        { height: 120px !important; }
.card-emoji-bg   { height: 120px !important; font-size: 38px !important; }
.card-img        { height: 120px !important; }

.card-info       { padding: 8px 10px 4px !important; }
.card-cat        { font-size: 0.55rem !important; margin-bottom: 2px !important; }
.card-title      { font-size: 1.05rem !important; font-weight: 800 !important; line-height: 1.3 !important; margin-bottom: 2px !important; }
.card-sub        { font-size: 0.68rem !important; }

.card-price-row  { padding: 6px 10px !important; margin-top: 4px !important; }
.price-amount    { font-size: 0.88rem !important; }
.price-badge     { font-size: 0.55rem !important; padding: 2px 6px !important; }

.card-buttons    { gap: 6px !important; padding: 6px 10px 10px !important; }
.btn-detail,
.btn-wa          { padding: 7px 6px !important; font-size: 0.68rem !important; border-radius: 8px !important; }

@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 12px !important;
  }
}
/* ================================================
   CARTES — Corrections espace vide + grille
   ================================================ */

/* Supprime hauteur fixe */
.product-card {
  height: auto !important;
  min-height: unset !important;
}

/* Supprime flex:1 qui cree l espace vide */
.card-info {
  flex: unset !important;
  padding: 8px 10px 6px !important;
}

.card-info p,
.card-sub {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.card-price-row { margin-top: 0 !important; }

/* 3 colonnes — 14 cartes = 5 lignes propres */
.products-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr !important; }
}
/* ================================================
   CATALOGUE — Header + Filtres + Promo
   ================================================ */

.section-header {
  text-align: center;
  padding: 60px 20px 30px;
  background: #FFFFFF;
}

.catalog-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(124,47,255,0.06);
  border: 1px solid rgba(124,47,255,0.18);
  color: #7C2FFF;
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.catalog-badge-dot {
  width: 5px;
  height: 5px;
  background: #7C2FFF;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.5s infinite;
}

.catalog-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  margin-bottom: 12px;
  line-height: 1.2;
}

.catalog-accent {
  background: linear-gradient(135deg, #7C2FFF, #9B63FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent !important;
  background-clip: text;
}

.catalog-sub {
  font-size: 0.95rem;
  color: #555555 !important;
  margin-bottom: 24px;
}

.catalog-stats {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: #F5F0FF;
  border: 1px solid rgba(124,47,255,0.12);
  border-radius: 50px;
  padding: 10px 28px;
  margin-bottom: 10px;
}

.cat-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.cat-stat strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: #7C2FFF !important;
  -webkit-text-fill-color: #7C2FFF !important;
  line-height: 1;
}

.cat-stat span {
  font-size: 0.62rem;
  color: #888888 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cat-stat-sep {
  color: rgba(124,47,255,0.3);
  font-size: 1.2rem;
}

/* Barre de filtres */
.filters-wrap {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 16px 20px 20px;
  background: #FFFFFF;
  position: sticky;
  top: 68px;
  z-index: 99;
  border-bottom: 1px solid rgba(124,47,255,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.filter-btn,
.f-btn {
  padding: 8px 18px !important;
  border: 1.5px solid rgba(124,47,255,0.20) !important;
  border-radius: 50px !important;
  background: white !important;
  color: #333333 !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  cursor: pointer;
  transition: all 0.2s !important;
  white-space: nowrap;
}

.filter-btn:hover,
.f-btn:hover {
  border-color: #7C2FFF !important;
  color: #7C2FFF !important;
  background: rgba(124,47,255,0.04) !important;
}

.filter-btn.active,
.f-btn.active {
  background: linear-gradient(135deg, #7C2FFF, #9B63FF) !important;
  border-color: transparent !important;
  color: white !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(124,47,255,0.35) !important;
  transform: translateY(-1px);
}

/* Banniere promo */
.promo-banner {
  background: linear-gradient(135deg, #7C2FFF 0%, #9B63FF 100%) !important;
  border-radius: 14px !important;
  margin: 0 0 20px !important;
  padding: 16px 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  box-shadow: 0 6px 24px rgba(124,47,255,0.25) !important;
  border: none !important;
}

.promo-banner-text,
.promo-banner p {
  color: rgba(255,255,255,0.90) !important;
  font-size: 0.88rem !important;
}

.promo-banner span { color: #7EFF4B !important; font-weight: 700; }

.promo-banner .btn,
.promo-banner a {
  background: #7EFF4B !important;
  color: #000000 !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.80rem !important;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.2s;
  flex-shrink: 0;
  border: none !important;
}

.promo-banner a:hover {
  background: #5ecc2a !important;
  transform: translateY(-1px);
}
/* ================================================
   CAROUSEL PREMIUM
   ================================================ */

.carousel-section {
  padding: 40px 0 !important;
  background: #F5F0FF !important;
  overflow: hidden !important;
}

.carousel-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 40px !important;
}

/* Header */
.car-header {
  display: flex !important;
  justify-content: center !important;
  margin-bottom: 32px !important;
}

.car-header-center {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 8px !important;
}

.car-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: rgba(124,47,255,0.08) !important;
  border: 1px solid rgba(124,47,255,0.20) !important;
  color: #7C2FFF !important;
  padding: 5px 16px !important;
  border-radius: 50px !important;
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
}

.car-header-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  color: #000 !important;
  margin: 0 !important;
  line-height: 1.15 !important;
}

.car-header-title span { color: #7C2FFF !important; }

.car-header-sub {
  font-size: 0.82rem !important;
  color: #888 !important;
  margin: 0 !important;
}

.car-discover { display: none !important; }

/* Viewport */
.car-viewport {
  overflow: hidden !important;
}

/* Track */
.car-track {
  display: flex !important;
  gap: 16px !important;
  padding: 12px 4px 20px !important;
  transition: transform 0.55s cubic-bezier(0.25,0.8,0.25,1) !important;
  will-change: transform;
  touch-action: pan-x;
}

/* Slide */
.car-slide {
  flex-shrink: 0 !important;
  width: 240px !important;
  cursor: pointer;
  user-select: none;
}

/* Card wrap */
.car-card-wrap,
.car-slide-center .car-card-wrap,
.car-slide-near .car-card-wrap,
.car-slide-far .car-card-wrap {
  width: 240px !important;
  background: white !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(124,47,255,0.08) !important;
  border: 1px solid rgba(124,47,255,0.07) !important;
  transition: all 0.55s cubic-bezier(0.25,0.8,0.25,1) !important;
}

/* Carte centrale */
.car-slide-center .car-card-wrap {
  transform: scale(1.05) !important;
  box-shadow: 0 16px 48px rgba(124,47,255,0.22) !important;
  border-color: rgba(124,47,255,0.18) !important;
}

/* Carte voisine */
.car-slide-near .car-card-wrap {
  transform: scale(0.95) !important;
  opacity: 0.82 !important;
}

/* Carte lointaine */
.car-slide-far .car-card-wrap {
  transform: scale(0.88) !important;
  opacity: 0.55 !important;
}

/* Image */
.car-img-box {
  position: relative !important;
  height: 150px !important;
  overflow: hidden !important;
}

.car-img-box img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Lien catalogue */
.car-see-all {
  text-align: center !important;
  margin-top: 20px !important;
}

.car-see-all a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: #7C2FFF !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border: 1.5px solid rgba(124,47,255,0.25) !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  transition: all 0.2s !important;
}

.car-see-all a:hover {
  background: rgba(124,47,255,0.06) !important;
  border-color: #7C2FFF !important;
}

/* Overlay dégradé */
.car-img-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.30) 100%) !important;
  z-index: 1 !important;
}

/* Badge sur image */
.car-badge-top {
  position: absolute !important;
  top: 8px !important;
  left: 8px !important;
  z-index: 2 !important;
  background: rgba(0,0,0,0.55) !important;
  backdrop-filter: blur(8px) !important;
  color: white !important;
  font-size: 0.55rem !important;
  font-weight: 700 !important;
  padding: 4px 10px !important;
  border-radius: 20px !important;
}

/* Contenu carte */
.car-content {
  padding: 12px 14px 14px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 5px !important;
}

.car-label {
  font-size: 0.50rem !important;
  font-weight: 700 !important;
  color: #7C2FFF !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
}

.car-card-name {
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  color: #000 !important;
  line-height: 1.25 !important;
  margin: 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

/* Bottom prix + bouton */
.car-bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: 8px !important;
  padding-top: 10px !important;
  border-top: 1px solid rgba(124,47,255,0.08) !important;
  gap: 8px !important;
}

.car-price-block {
  display: flex !important;
  flex-direction: column !important;
  gap: 1px !important;
}

.car-amount {
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  color: #000 !important;
  line-height: 1 !important;
}

.car-period {
  font-size: 0.55rem !important;
  color: #999 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.car-cta {
  display: inline-flex !important;
  align-items: center !important;
  background: linear-gradient(135deg, #7C2FFF, #9B63FF) !important;
  color: white !important;
  padding: 7px 14px !important;
  border-radius: 50px !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  box-shadow: 0 3px 10px rgba(124,47,255,0.25) !important;
  flex-shrink: 0 !important;
  transition: all 0.2s !important;
}

.car-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(124,47,255,0.40) !important;
  color: white !important;
}

/* Navigation */
.carousel-nav, .car-controls {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  margin-top: 20px !important;
}

.car-btn, .car-arrow {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  border: 2px solid rgba(124,47,255,0.20) !important;
  background: white !important;
  color: #7C2FFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  font-size: 0.9rem !important;
  transition: all 0.2s !important;
}

.car-btn:hover, .car-arrow:hover {
  background: #7C2FFF !important;
  color: white !important;
  border-color: #7C2FFF !important;
  box-shadow: 0 4px 14px rgba(124,47,255,0.35) !important;
}

/* Dots */
.car-dots-wrap, .car-dots {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.car-dot {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: rgba(124,47,255,0.20) !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
  border: none !important;
  padding: 0 !important;
}

.car-dot.active {
  background: #7C2FFF !important;
  width: 22px !important;
  border-radius: 4px !important;
}

/* Découvrir */
.car-discover {
  color: #7C2FFF !important;
  font-size: 0.80rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: gap 0.2s !important;
}

.car-discover:hover { gap: 10px !important; color: #5a1fd4 !important; }

/* Mobile */
@media (max-width: 768px) {
  .car-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  .carousel-container { padding: 0 16px !important; }
  .car-slide { width: 200px !important; }
  .car-img-box { height: 120px !important; }
}

/* ================================================
   LOGO IMAGE — Navbar + Footer
   ================================================ */

/* Reset nav-logo pour image */
.nav-logo {
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;
  gap: 0 !important;
}

.nav-logo-img {
  height: 52px !important;
  width: auto !important;
  max-width: 180px;
  object-fit: contain;
  display: block !important;
  transition: all 0.3s;
  filter: drop-shadow(0 2px 8px rgba(124,47,255,0.25));
}

.nav-logo-img:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 14px rgba(124,47,255,0.40));
}

/* Fallback texte (si image 404) */
.logo-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Footer logo */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 55px !important;
  width: auto !important;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(1.15) drop-shadow(0 2px 10px rgba(124,47,255,0.3));
  transition: all 0.3s;
  display: block;
}

.footer-logo-img:hover {
  filter: brightness(1.3) drop-shadow(0 4px 16px rgba(124,47,255,0.5));
  transform: scale(1.03);
}

/* ================================================
   CONTACT — TikTok + Facebook
   ================================================ */
.cs-tiktok {
  background: linear-gradient(135deg, #010101, #ff0050);
  box-shadow: 0 4px 12px rgba(255,0,80,0.30);
}

.cs-facebook {
  background: linear-gradient(135deg, #1877f2, #0d5fc4);
  box-shadow: 0 4px 12px rgba(24,119,242,0.30);
}

/* ================================================
   FOOTER REDESIGN 2025
   ================================================ */

/* Stripe animée */
.footer-stripe {
  height: 4px;
  background: linear-gradient(90deg, #7C2FFF, #9B63FF, #7EFF4B, #9B63FF, #7C2FFF);
  background-size: 200% 100%;
  animation: stripe-move 3s linear infinite;
}

@keyframes stripe-move {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.footer {
  background: #000000 !important;
  color: rgba(255,255,255,0.7) !important;
}

.footer-main {
  padding: 55px 0 40px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid !important;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr !important;
  gap: 40px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.50);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Icônes réseaux sociaux footer */
.footer-socials {
  display: flex !important;
  gap: 10px;
  flex-wrap: wrap;
}

.fsoc {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transition: all 0.25s;
  border: 1px solid rgba(255,255,255,0.10);
}

.fsoc:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.fsoc-wa { background: rgba(37,211,102,0.20); }
.fsoc-wa:hover { background: #25D366; }
.fsoc-ig { background: rgba(225,48,108,0.20); }
.fsoc-ig:hover { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366); }
.fsoc-tt { background: rgba(255,0,80,0.20); }
.fsoc-tt:hover { background: linear-gradient(135deg, #010101, #ff0050); }
.fsoc-fb { background: rgba(24,119,242,0.20); }
.fsoc-fb:hover { background: #1877f2; }

/* Colonnes */
.footer-col { display: flex; flex-direction: column; }

.footer-col-title {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid #7C2FFF;
  width: fit-content;
}

.footer-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.50) !important;
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links li a:hover {
  color: #7EFF4B !important;
  padding-left: 4px;
}

/* Contact items */
.footer-contact-items {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-items li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fci-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.fci-wa    { background: rgba(37,211,102,0.25); color: #25D366; }
.fci-email { background: rgba(124,47,255,0.25); color: #9B63FF; }
.fci-ig    { background: rgba(225,48,108,0.25); color: #e1306c; }
.fci-clock { background: none; font-size: 1rem; }

.footer-contact-items a,
.footer-contact-items span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.50) !important;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-items a:hover { color: #7EFF4B !important; }

/* Bouton WA footer */
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: white !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.80rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 15px rgba(37,211,102,0.30);
  margin-top: 4px;
  width: fit-content;
}

.footer-wa-btn:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.45);
  color: white !important;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-inner p,
.footer-bottom-inner > p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.28) !important;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28) !important;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: #7C2FFF !important; }

.footer-made {
  color: rgba(255,255,255,0.28) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.28) !important;
}

/* Responsive footer */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 30px; }
}

@media (max-width: 550px) {
  .footer-grid { grid-template-columns: 1fr !important; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}


/* ================================================
   ANNOUNCE BAR SUPPRIMÉE — Navbar en haut
   ================================================ */
.navbar {
  top: 0 !important;
}

body {
  padding-top: 0 !important;
}

/* ================================================
   CORRECTION 2 — Hero plus compact
   ================================================ */
.hero {
  min-height: 65vh !important;
  padding-top: 68px !important;
}

.hero-inner {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.hero-h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem) !important;
}

.hero-stats-row {
  gap: 12px !important;
}

.hero-stat-mini strong {
  font-size: 1.1rem !important;
}

.hbtn-primary,
.hbtn-whatsapp {
  padding: 11px 22px !important;
  font-size: 0.85rem !important;
}

.hero-scroll {
  display: none !important;
}

/* ================================================
   NAVBAR FINAL — remplace toutes les règles précédentes
   ================================================ */
.navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  background: rgba(255,255,255,0.96) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(124,47,255,0.10) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06) !important;
  transition: all 0.3s ease !important;
  height: auto !important;
  padding: 0 !important;
  display: block !important;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.99) !important;
  box-shadow: 0 4px 30px rgba(124,47,255,0.12) !important;
}

.nav-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 30px !important;
  height: 70px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  position: relative !important;
}

/* ---- LOGO ---- */
.nav-logo {
  text-decoration: none !important;
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  flex-direction: row !important;
  gap: 0 !important;
  line-height: normal !important;
}

.logo-wrapper {
  display: flex !important;
  align-items: center !important;
  padding: 6px 10px !important;
  background: linear-gradient(135deg, rgba(124,47,255,0.06), rgba(155,99,255,0.04)) !important;
  border: 1px solid rgba(124,47,255,0.12) !important;
  border-radius: 12px !important;
  transition: all 0.3s !important;
}

.logo-wrapper:hover {
  background: linear-gradient(135deg, rgba(124,47,255,0.10), rgba(155,99,255,0.08)) !important;
  border-color: rgba(124,47,255,0.25) !important;
  box-shadow: 0 4px 16px rgba(124,47,255,0.15) !important;
  transform: translateY(-1px) !important;
}

.nav-logo-img {
  height: 42px !important;
  width: auto !important;
  max-width: 160px !important;
  object-fit: contain !important;
  display: block !important;
  filter: drop-shadow(0 2px 6px rgba(124,47,255,0.20)) !important;
  transition: all 0.3s !important;
  transform: none !important;
}

.nav-logo-img:hover {
  filter: drop-shadow(0 4px 12px rgba(124,47,255,0.35)) !important;
  transform: scale(1.02) !important;
}

/* ---- LIENS NAVIGATION ---- */
.nav-links {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  flex-direction: row !important;
  background: rgba(124,47,255,0.05) !important;
  border: 1px solid rgba(124,47,255,0.12) !important;
  border-radius: 50px !important;
  padding: 5px 8px !important;
  box-shadow: none !important;
  top: auto !important;
  width: auto !important;
}

.nav-link {
  position: relative !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: #333333 !important;
  text-decoration: none !important;
  transition: all 0.25s !important;
  white-space: nowrap !important;
  display: inline-block !important;
  letter-spacing: 0.2px !important;
}

.nav-link::after {
  display: none !important;
}

.nav-link:hover {
  color: #7C2FFF !important;
  background: rgba(124,47,255,0.10) !important;
}

.nav-link.active {
  color: white !important;
  background: linear-gradient(135deg, #7C2FFF, #9B63FF) !important;
  box-shadow: 0 4px 14px rgba(124,47,255,0.35) !important;
  font-weight: 700 !important;
}

/* ---- DROITE ---- */
.nav-right {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-shrink: 0 !important;
}

/* Bouton WhatsApp */
.nav-wa-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  background: #25D366 !important;
  color: white !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.25s !important;
  box-shadow: 0 4px 14px rgba(37,211,102,0.30) !important;
  white-space: nowrap !important;
}

.nav-wa-btn:hover {
  background: #1ebe5a !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45) !important;
  color: white !important;
}

/* Hamburger */
.nav-hamburger {
  display: none !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 5px !important;
  width: 38px !important;
  height: 38px !important;
  background: rgba(124,47,255,0.06) !important;
  border: 1px solid rgba(124,47,255,0.15) !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  padding: 8px !important;
  transition: all 0.2s !important;
}

.nav-hamburger:hover {
  background: rgba(124,47,255,0.12) !important;
}

.nav-hamburger span {
  width: 100% !important;
  height: 2px !important;
  background: #7C2FFF !important;
  border-radius: 2px !important;
  transition: all 0.3s !important;
  display: block !important;
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px) !important;
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0 !important;
  transform: translateX(-10px) !important;
}
.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px) !important;
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 16px !important;
  }

  .nav-links {
    display: none !important;
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(255,255,255,0.98) !important;
    backdrop-filter: blur(16px) !important;
    flex-direction: column !important;
    padding: 12px 16px !important;
    border-radius: 0 !important;
    border: none !important;
    border-bottom: 1px solid rgba(124,47,255,0.10) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
    gap: 4px !important;
    align-items: stretch !important;
    z-index: 999 !important;
    transform: none !important;
    width: auto !important;
  }

  .nav-links.open {
    display: flex !important;
  }

  .nav-link {
    padding: 12px 16px !important;
    border-radius: 10px !important;
  }

  .nav-link::after {
    display: none !important;
  }

  .nav-hamburger {
    display: flex !important;
  }

  .nav-wa-btn {
    padding: 9px 14px !important;
    font-size: 0 !important;
    gap: 0 !important;
  }

  .nav-wa-btn svg {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
  }
}

/* ================================
   CONTACT SECTION — COMPACT 2025
================================ */
.contact-section {
  background: #F5F0FF;
  padding: 50px 0;
}

.contact-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.contact-head {
  text-align: center;
  margin-bottom: 32px;
}

.contact-badge {
  display: inline-block !important;
  background: rgba(124,47,255,0.08) !important;
  border: 1px solid rgba(124,47,255,0.20) !important;
  color: #7C2FFF !important;
  padding: 5px 16px !important;
  border-radius: 50px !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  margin-bottom: 12px !important;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #000000;
  margin-bottom: 8px;
}

.contact-accent { color: #7C2FFF; }

.contact-sub {
  font-size: 0.85rem;
  color: #666666;
}

/* Body grille */
.contact-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 16px;
  align-items: start;
}

/* WhatsApp card principale */
.contact-wa-card {
  background: linear-gradient(135deg, #7C2FFF, #9B63FF);
  border-radius: 18px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 10px 35px rgba(124,47,255,0.30);
  height: 100%;
  justify-content: center;
  box-sizing: border-box;
}

.contact-wa-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(124,47,255,0.40);
}

.cwa-icon {
  width: 58px;
  height: 58px;
  background: rgba(255,255,255,0.20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-wa 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-wa {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
  50%      { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
}

.cwa-info strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.cwa-info span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
}

.cwa-arrow {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.7);
  transition: transform 0.2s;
}

.contact-wa-card:hover .cwa-arrow {
  transform: translateX(4px);
}

/* Grille liens 2 colonnes */
.contact-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Carte lien individuelle */
.clink-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 1px solid rgba(124,47,255,0.08);
  border-radius: 14px;
  padding: 14px 16px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.clink-card:hover {
  border-color: #7C2FFF;
  box-shadow: 0 6px 20px rgba(124,47,255,0.12);
  transform: translateY(-2px);
}

.clink-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.clink-card:hover .clink-icon {
  transform: scale(1.08) rotate(5deg);
}

.clink-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  overflow: hidden;
  min-width: 0;
}

.clink-info strong {
  font-size: 0.78rem;
  font-weight: 700;
  color: #000000;
  display: block;
}

.clink-info span {
  font-size: 0.70rem;
  color: #666666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive contact */
@media (max-width: 768px) {
  .contact-body {
    grid-template-columns: 1fr;
  }

  .contact-wa-card {
    flex-direction: row;
    text-align: left;
    padding: 18px 20px;
    height: auto;
    justify-content: flex-start;
  }

  .cwa-icon {
    width: 44px;
    height: 44px;
  }

  .contact-links-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .contact-links-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   FOOTER ULTRA PREMIUM
================================ */
.footer { background: #080810 !important; position: relative !important; overflow: hidden !important; }
.footer::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(124,47,255,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(126,255,75,0.05) 0%, transparent 60%) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}
.footer-inner { max-width: 1200px !important; margin: 0 auto !important; padding: 0 40px !important; position: relative !important; z-index: 1 !important; }
.footer-glow-bar {
  height: 1px !important;
  background: linear-gradient(90deg, transparent 0%, #7C2FFF 25%, #9B63FF 50%, #7EFF4B 75%, transparent 100%) !important;
  opacity: 0.8 !important;
}
.footer-top { display: grid !important; grid-template-columns: 1.8fr 1fr 1.2fr 1.3fr !important; gap: 50px !important; padding: 52px 0 44px !important; border-top: none !important; }
.footer-brand { display: flex !important; flex-direction: column !important; }
.footer-logo-link { display: inline-block !important; margin-bottom: 18px !important; }
.footer-logo-img {
  height: 54px !important; width: auto !important; object-fit: contain !important;
  filter: brightness(1.15) drop-shadow(0 0 18px rgba(124,47,255,0.45)) !important;
  transition: all 0.3s !important;
}
.footer-logo-img:hover {
  filter: brightness(1.3) drop-shadow(0 0 28px rgba(124,47,255,0.65)) !important;
  transform: scale(1.04) !important;
}
.footer-desc { font-size: 0.80rem !important; line-height: 1.85 !important; color: rgba(255,255,255,0.45) !important; margin-bottom: 22px !important; max-width: 230px !important; }
.footer-socials { display: flex !important; gap: 8px !important; }
.fsoc-btn {
  width: 40px !important; height: 40px !important; border-radius: 12px !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  text-decoration: none !important; transition: all 0.25s !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  position: relative !important; overflow: hidden !important; flex-shrink: 0 !important;
}
.fsoc-btn::after { content: "" !important; position: absolute !important; inset: 0 !important; background: rgba(255,255,255,0) !important; transition: background 0.2s !important; }
.fsoc-btn:hover { transform: translateY(-4px) !important; box-shadow: 0 8px 24px rgba(0,0,0,0.5) !important; border-color: rgba(255,255,255,0.15) !important; }
.fsoc-btn:hover::after { background: rgba(255,255,255,0.08) !important; }
.fsoc-wa { background: #25D366 !important; }
.fsoc-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important; }
.fsoc-tt { background: #111111 !important; border: 1px solid rgba(255,255,255,0.12) !important; }
.fsoc-fb { background: #1877F2 !important; }
.footer-col { display: flex !important; flex-direction: column !important; }
.footer-col-title {
  font-size: 0.68rem !important; font-weight: 800 !important; color: #FFFFFF !important;
  text-transform: uppercase !important; letter-spacing: 3px !important;
  margin-bottom: 22px !important; padding-bottom: 12px !important;
  position: relative !important; width: fit-content !important; border-bottom: none !important;
}
.footer-col-title::before {
  content: "" !important; position: absolute !important; bottom: 0 !important; left: 0 !important;
  width: 100% !important; height: 1px !important;
  background: linear-gradient(90deg, #7C2FFF, rgba(124,47,255,0)) !important;
}
.footer-col-title::after {
  content: "" !important; position: absolute !important; bottom: -2px !important; left: 0 !important;
  width: 30% !important; height: 3px !important; background: #7C2FFF !important; border-radius: 2px !important;
}
.footer-list { list-style: none !important; padding: 0 !important; margin: 0 !important; display: flex !important; flex-direction: column !important; gap: 11px !important; }
.footer-list li a {
  font-size: 0.78rem !important; color: rgba(255,255,255,0.42) !important;
  text-decoration: none !important; transition: all 0.22s !important;
  display: inline-flex !important; align-items: center !important; gap: 8px !important;
  position: relative !important; padding-left: 0 !important;
}
.footer-list li a:hover { color: rgba(255,255,255,0.90) !important; padding-left: 4px !important; }
.footer-contact-list { list-style: none !important; padding: 0 !important; margin: 0 0 20px !important; display: flex !important; flex-direction: column !important; gap: 12px !important; }
.footer-contact-list li { display: flex !important; align-items: center !important; gap: 12px !important; }
.fct-icon { width: 34px !important; height: 34px !important; border-radius: 10px !important; display: flex !important; align-items: center !important; justify-content: center !important; flex-shrink: 0 !important; transition: transform 0.2s !important; }
.footer-contact-list li:hover .fct-icon { transform: scale(1.08) rotate(5deg) !important; }
.fct-wa    { background: #25D366 !important; }
.fct-email { background: linear-gradient(135deg, #7C2FFF, #9B63FF) !important; }
.fct-ig    { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important; }
.fct-time  { background: linear-gradient(135deg, #00C853, #69F0AE) !important; }
.footer-contact-list li a { font-size: 0.76rem !important; color: rgba(255,255,255,0.45) !important; text-decoration: none !important; transition: color 0.2s !important; font-weight: 400 !important; }
.footer-contact-list li a:hover { color: #7EFF4B !important; }
.footer-contact-list li span:not(.fct-icon) { font-size: 0.76rem !important; color: rgba(255,255,255,0.45) !important; }
.footer-wa-btn {
  display: inline-flex !important; align-items: center !important; gap: 8px !important;
  background: linear-gradient(135deg, #25D366, #1da851) !important; color: white !important;
  padding: 11px 22px !important; border-radius: 50px !important;
  font-size: 0.78rem !important; font-weight: 700 !important; text-decoration: none !important;
  transition: all 0.25s !important; box-shadow: 0 4px 18px rgba(37,211,102,0.25) !important; width: fit-content !important;
}
.footer-wa-btn:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 28px rgba(37,211,102,0.40) !important; color: white !important; }
.footer-divider { height: 1px !important; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06) 20%, rgba(255,255,255,0.06) 80%, transparent) !important; }
.footer-bottom { display: flex !important; align-items: center !important; justify-content: space-between !important; padding: 18px 0 !important; border-top: none !important; gap: 16px !important; flex-wrap: wrap !important; }
.footer-bottom-left p { font-size: 0.72rem !important; color: rgba(255,255,255,0.22) !important; margin: 0 !important; display: flex !important; align-items: center !important; gap: 6px !important; }
.footer-bottom-left strong { color: #7C2FFF !important; font-weight: 700 !important; }
.footer-bottom-right p { font-size: 0.72rem !important; color: rgba(255,255,255,0.22) !important; margin: 0 !important; }
.footer-tags { display: flex !important; align-items: center !important; gap: 8px !important; }
.footer-tag { font-size: 0.62rem !important; color: rgba(255,255,255,0.20) !important; background: rgba(255,255,255,0.04) !important; border: 1px solid rgba(255,255,255,0.06) !important; padding: 3px 10px !important; border-radius: 20px !important; }
@media (max-width: 1000px) { .footer-top { grid-template-columns: 1fr 1fr !important; gap: 32px !important; } }
@media (max-width: 600px) {
  .footer-inner { padding: 0 20px !important; }
  .footer-top { grid-template-columns: 1fr !important; gap: 28px !important; padding: 32px 0 24px !important; }
  .footer-desc { max-width: 100% !important; }
  .footer-bottom { flex-direction: column !important; text-align: center !important; gap: 6px !important; }
  .footer-tags { justify-content: center !important; }
}

/* ================================
   DETAIL HERO PREMIUM
================================ */
.detail-hero {
  position: relative !important;
  height: 420px !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding-top: 70px !important;
  background: #000000 !important;
}
.detail-hero-bg {
  position: absolute !important;
  inset: 0 !important;
  background-size: cover !important;
  background-position: center !important;
  filter: blur(4px) !important;
  transform: scale(1.08) !important;
  z-index: 0 !important;
}
.detail-hero-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, rgba(0,0,0,0.80) 0%, rgba(124,47,255,0.18) 50%, rgba(0,0,0,0.88) 100%) !important;
  z-index: 1 !important;
}
.detail-hero-content {
  position: relative !important;
  z-index: 2 !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 0 24px !important;
}
.detail-hero-cat {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(124,47,255,0.20) !important;
  border: 1px solid rgba(124,47,255,0.45) !important;
  color: #C4A0FF !important;
  padding: 7px 20px !important;
  border-radius: 50px !important;
  font-size: 0.65rem !important;
  font-weight: 800 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
}
.detail-hero-title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2rem, 5vw, 3.4rem) !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  margin: 0 !important;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5) !important;
}
.detail-hero-line {
  width: 60px !important;
  height: 3px !important;
  background: linear-gradient(90deg, #7C2FFF, #9B63FF, transparent) !important;
  border-radius: 2px !important;
}
.detail-breadcrumb {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 0.75rem !important;
  background: rgba(0,0,0,0.30) !important;
  backdrop-filter: blur(8px) !important;
  padding: 7px 18px !important;
  border-radius: 50px !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  color: rgba(255,255,255,0.5) !important;
}
.detail-breadcrumb a { color: #9B63FF !important; text-decoration: none !important; }
.detail-breadcrumb span:last-child { color: rgba(255,255,255,0.80) !important; }
.detail-hero::after {
  content: "" !important;
  position: absolute !important;
  bottom: -2px !important;
  left: 0 !important;
  right: 0 !important;
  height: 60px !important;
  background: #F5F0FF !important;
  clip-path: ellipse(55% 100% at 50% 100%) !important;
  z-index: 3 !important;
}
@media (max-width: 768px) {
  .detail-hero { height: 320px !important; }
  .detail-hero::after { height: 40px !important; }
}

/* ================================
   ORDER PAGE
================================ */
.order-hero {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 70px;
}
.order-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(4px);
  transform: scale(1.06);
  z-index: 0;
}
.order-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.88) 0%, rgba(124,47,255,0.18) 50%, rgba(0,0,0,0.88) 100%);
  z-index: 1;
}
.order-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.order-hero-badge {
  background: rgba(124,47,255,0.20);
  border: 1px solid rgba(124,47,255,0.40);
  color: #C4A0FF;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.order-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  margin: 0;
}
.order-hero-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}

/* Section principale */
.order-section {
  background: #F5F0FF;
  padding: 40px 0 60px;
  min-height: calc(100vh - 280px);
}
.order-wrapper {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

/* Carte formulaire */
.order-form-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(124,47,255,0.10);
  border: 1px solid rgba(124,47,255,0.08);
}
.ofc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #000;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(124,47,255,0.10);
}
.ofc-field { margin-bottom: 18px; }
.ofc-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.ofc-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(124,47,255,0.15);
  border-radius: 12px;
  font-size: 0.88rem;
  color: #000;
  background: white;
  transition: all 0.2s;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  box-sizing: border-box;
  appearance: none;
}
.ofc-input:focus {
  border-color: #7C2FFF;
  box-shadow: 0 0 0 3px rgba(124,47,255,0.10);
}
.ofc-input::placeholder { color: #aaa; font-size: 0.84rem; }
.ofc-textarea { resize: vertical; min-height: 90px; }

/* Bouton submit */
.ofc-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #25D366, #1da851);
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(37,211,102,0.30);
  font-family: 'DM Sans', sans-serif;
  margin-top: 8px;
}
.ofc-submit:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,0.45); }

/* Erreur */
.ofc-error {
  margin-top: 12px;
  padding: 10px 16px;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: 10px;
  color: #dc2626;
  font-size: 0.80rem;
  font-weight: 500;
}

/* Droite */
.order-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 90px;
}

/* Card WA */
.oic-wa-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #25D366, #1da851);
  border-radius: 16px;
  padding: 18px 20px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(37,211,102,0.25);
}
.oic-wa-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,0.40); }
.oic-wa-icon {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.20);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.oic-wa-card div strong { display: block; font-size: 0.90rem; font-weight: 700; color: white; }
.oic-wa-card div span { font-size: 0.78rem; color: rgba(255,255,255,0.80); }
.oic-arrow { margin-left: auto; color: rgba(255,255,255,0.70); font-size: 1.2rem; transition: transform 0.2s; }
.oic-wa-card:hover .oic-arrow { transform: translateX(4px); }

/* Étapes */
.oic-steps-card {
  background: white;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 4px 20px rgba(124,47,255,0.08);
  border: 1px solid rgba(124,47,255,0.08);
}
.oic-steps-title { font-size: 0.82rem; font-weight: 700; color: #000; margin: 0 0 18px; text-transform: uppercase; letter-spacing: 1px; }
.oic-steps { display: flex; flex-direction: column; }
.oic-step { display: flex; align-items: center; gap: 12px; }
.oic-step-num {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, #7C2FFF, #9B63FF);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.72rem; font-weight: 800; flex-shrink: 0;
}
.oic-step-text { display: flex; flex-direction: column; gap: 1px; }
.oic-step-text strong { font-size: 0.80rem; font-weight: 700; color: #000; }
.oic-step-text span { font-size: 0.72rem; color: #666; }
.oic-step-line { width: 2px; height: 16px; background: linear-gradient(180deg, #7C2FFF, transparent); margin-left: 13px; }

/* Badges */
.oic-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.oic-badge {
  background: white;
  border: 1px solid rgba(124,47,255,0.10);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.70rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* Responsive */
@media (max-width: 768px) {
  .order-wrapper { grid-template-columns: 1fr; }
  .order-info-wrap { position: static; }
  .order-hero { height: 240px; }
  .order-hero-title { font-size: 2rem; }
}

/* ================================
   DETAIL PAGE PREMIUM
================================ */

.detail-main {
  background: #F5F0FF !important;
  padding: 32px 0 60px !important;
  min-height: 60vh !important;
}

.detail-container {
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  display: grid !important;
  grid-template-columns: 360px 1fr !important;
  gap: 24px !important;
  align-items: start !important;
}

/* ---- COLONNE GAUCHE ---- */
.dcol-left {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  position: sticky !important;
  top: 90px !important;
}

.dp-visual {
  width: 100% !important;
  height: 270px !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 12px 40px rgba(124,47,255,0.18) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 72px !important;
}

.dp-visual img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.4s !important;
}

.dp-visual:hover img { transform: scale(1.04) !important; }

.dp-trust {
  background: white !important;
  border-radius: 16px !important;
  padding: 16px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  border: 1px solid rgba(124,47,255,0.08) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04) !important;
}

.dp-trust-item {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.dp-trust-icon {
  font-size: 1.2rem !important;
  width: 36px !important;
  height: 36px !important;
  background: rgba(124,47,255,0.08) !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.dp-trust-item div {
  display: flex !important;
  flex-direction: column !important;
  gap: 1px !important;
}

.dp-trust-item strong {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: #000 !important;
}

.dp-trust-item span {
  font-size: 0.68rem !important;
  color: #888 !important;
}

.dp-trust-sep {
  height: 1px !important;
  background: rgba(124,47,255,0.06) !important;
}

.dp-order-box {
  background: white !important;
  border-radius: 20px !important;
  padding: 22px !important;
  border: 1px solid rgba(124,47,255,0.10) !important;
  box-shadow: 0 8px 30px rgba(124,47,255,0.10) !important;
}

.dp-price-section {
  margin-bottom: 16px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid rgba(124,47,255,0.08) !important;
}

.dp-price-label {
  display: block !important;
  font-size: 0.60rem !important;
  font-weight: 800 !important;
  color: #7C2FFF !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  margin-bottom: 6px !important;
}

.dp-price {
  font-family: 'Playfair Display', serif !important;
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: #000000 !important;
  line-height: 1 !important;
}

.dp-options-label {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  color: #333 !important;
  margin-bottom: 10px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.dp-options {
  display: flex !important;
  flex-direction: column !important;
  gap: 7px !important;
  margin-bottom: 16px !important;
  max-height: 220px !important;
  overflow-y: auto !important;
  scrollbar-width: thin !important;
  scrollbar-color: rgba(124,47,255,0.3) transparent !important;
}

.dp-options::-webkit-scrollbar { width: 4px; }
.dp-options::-webkit-scrollbar-thumb {
  background: rgba(124,47,255,0.3);
  border-radius: 4px;
}

.option-btn {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 10px 14px !important;
  border: 2px solid rgba(124,47,255,0.12) !important;
  border-radius: 10px !important;
  background: white !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  font-family: 'DM Sans', sans-serif !important;
}

.option-btn:hover,
.option-btn.active {
  border-color: #7C2FFF !important;
  background: rgba(124,47,255,0.04) !important;
}

.option-btn.active {
  box-shadow: 0 0 0 3px rgba(124,47,255,0.10) !important;
}

.opt-quantite {
  font-size: 0.80rem !important;
  font-weight: 600 !important;
  color: #000 !important;
  text-align: left !important;
}

.opt-prix {
  font-size: 0.80rem !important;
  font-weight: 800 !important;
  color: #7C2FFF !important;
  white-space: nowrap !important;
  margin-left: 8px !important;
}

.dp-cta-primary {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  padding: 15px !important;
  background: linear-gradient(135deg, #25D366, #1da851) !important;
  color: white !important;
  border-radius: 14px !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.3s !important;
  box-shadow: 0 6px 20px rgba(37,211,102,0.30) !important;
  margin-bottom: 10px !important;
}

.dp-cta-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45) !important;
  color: white !important;
}

.dp-cta-secondary {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  padding: 11px !important;
  border: 2px solid rgba(124,47,255,0.20) !important;
  border-radius: 12px !important;
  color: #7C2FFF !important;
  font-size: 0.80rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.2s !important;
  background: transparent !important;
}

.dp-cta-secondary:hover {
  background: rgba(124,47,255,0.06) !important;
  border-color: #7C2FFF !important;
}

/* ---- COLONNE DROITE ---- */
.dcol-right {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.dp-card {
  background: white !important;
  border-radius: 18px !important;
  padding: 24px 26px !important;
  border: 1px solid rgba(124,47,255,0.07) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04) !important;
}

.dp-card-header {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 18px !important;
  padding-bottom: 14px !important;
  border-bottom: 1px solid rgba(124,47,255,0.08) !important;
}

.dp-card-icon {
  font-size: 1.2rem !important;
  width: 38px !important;
  height: 38px !important;
  background: rgba(124,47,255,0.08) !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.dp-card-header h3 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #000 !important;
  margin: 0 !important;
}

.dp-card-intro { border-left: 4px solid #7C2FFF !important; }

.dp-intro-tags {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 12px !important;
}

.dp-tag-cat {
  background: rgba(124,47,255,0.08) !important;
  border: 1px solid rgba(124,47,255,0.20) !important;
  color: #7C2FFF !important;
  padding: 4px 12px !important;
  border-radius: 20px !important;
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.dp-tag-badge {
  background: linear-gradient(135deg, #7C2FFF, #9B63FF) !important;
  color: white !important;
  padding: 4px 12px !important;
  border-radius: 20px !important;
  font-size: 0.62rem !important;
  font-weight: 700 !important;
}

.dp-product-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  background: none !important;
  margin: 0 0 12px !important;
  line-height: 1.2 !important;
}

.dp-product-desc {
  font-size: 0.88rem !important;
  color: #444 !important;
  line-height: 1.75 !important;
  margin: 0 !important;
}

.dp-avantages {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.dp-avantages li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  font-size: 0.85rem !important;
  color: #333 !important;
  padding: 10px 14px !important;
  background: linear-gradient(135deg, rgba(124,47,255,0.04), rgba(155,99,255,0.02)) !important;
  border-radius: 10px !important;
  border-left: 3px solid #7C2FFF !important;
  transition: all 0.2s !important;
}

.dp-avantages li:hover {
  background: rgba(124,47,255,0.06) !important;
  transform: translateX(3px) !important;
}

.dp-avantages li::before {
  content: '✓' !important;
  color: #7C2FFF !important;
  font-weight: 800 !important;
  font-size: 0.85rem !important;
  flex-shrink: 0 !important;
  margin-top: 1px !important;
}

.dp-logiciels-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 8px !important;
}

.logiciel-item {
  background: rgba(124,47,255,0.06) !important;
  border: 1px solid rgba(124,47,255,0.12) !important;
  border-radius: 8px !important;
  padding: 8px 12px !important;
  font-size: 0.76rem !important;
  font-weight: 600 !important;
  color: #333 !important;
  text-align: center !important;
  transition: all 0.2s !important;
}

.logiciel-item:hover {
  background: rgba(124,47,255,0.10) !important;
  border-color: #7C2FFF !important;
}

.dp-faq {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.faq-item {
  border: 1px solid rgba(124,47,255,0.10) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  transition: all 0.25s !important;
}

.faq-item.open {
  border-color: rgba(124,47,255,0.25) !important;
  box-shadow: 0 4px 16px rgba(124,47,255,0.08) !important;
}

.faq-question {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  padding: 14px 16px !important;
  background: white !important;
  border: none !important;
  text-align: left !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: #000 !important;
  cursor: pointer !important;
  font-family: 'DM Sans', sans-serif !important;
  transition: all 0.2s !important;
  gap: 12px !important;
}

.faq-item.open .faq-question {
  background: rgba(124,47,255,0.04) !important;
  color: #7C2FFF !important;
}

.faq-icon {
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  background: rgba(124,47,255,0.10) !important;
  color: #7C2FFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  flex-shrink: 0 !important;
  transition: all 0.3s !important;
  line-height: 1 !important;
}

.faq-item.open .faq-icon {
  background: #7C2FFF !important;
  color: white !important;
  transform: rotate(45deg) !important;
}

.faq-answer {
  display: none;
  padding: 14px 16px !important;
  font-size: 0.82rem !important;
  color: #555 !important;
  line-height: 1.7 !important;
  border-top: 1px solid rgba(124,47,255,0.08) !important;
  background: rgba(124,47,255,0.02) !important;
}

.faq-item.open .faq-answer { display: block !important; }

.dp-similar {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.similar-card {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 12px 14px !important;
  border: 1px solid rgba(124,47,255,0.08) !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  transition: all 0.25s !important;
  background: white !important;
}

.similar-card:hover {
  border-color: #7C2FFF !important;
  background: rgba(124,47,255,0.03) !important;
  transform: translateX(5px) !important;
  box-shadow: 0 4px 16px rgba(124,47,255,0.10) !important;
}

.similar-image {
  width: 54px !important;
  height: 54px !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.4rem !important;
  flex-shrink: 0 !important;
  overflow: hidden !important;
}

.similar-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.similar-info {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
}

.similar-info strong {
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  color: #000 !important;
}

.similar-info span {
  font-size: 0.76rem !important;
  color: #7C2FFF !important;
  font-weight: 600 !important;
}

.similar-arrow {
  color: rgba(124,47,255,0.35) !important;
  font-size: 1.1rem !important;
  transition: all 0.2s !important;
  flex-shrink: 0 !important;
}

.similar-card:hover .similar-arrow {
  color: #7C2FFF !important;
  transform: translateX(4px) !important;
}

@media (max-width: 900px) {
  .detail-container {
    grid-template-columns: 1fr !important;
  }
  .dcol-left { position: static !important; }
  .dp-visual { height: 240px !important; }
  .dp-logiciels-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .dp-logiciels-grid {
    grid-template-columns: 1fr !important;
  }
}

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

  /* Navbar */
  .nav-container { padding: 0 20px; }

  /* Hero */
  .hero-inner {
    padding: 30px 24px;
    grid-template-columns: 1fr;
  }

  .hero-right { display: none; }

  /* Produits grille */
  .products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 14px !important;
    padding: 16px !important;
  }

  /* Why grid */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  /* Detail page */
  .detail-container,
  .detail-main-container {
    grid-template-columns: 1fr;
  }

  .dcol-left { position: static !important; }
}

/* ================================
   RESPONSIVE — TABLETTE 768px
================================ */
@media (max-width: 768px) {

  /* NAVBAR */
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column !important;
    padding: 16px 20px 20px;
    border-bottom: 1px solid rgba(124,47,255,0.10);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    gap: 4px !important;
    align-items: stretch !important;
    z-index: 999;
    transform: none !important;
    border-radius: 0 !important;
  }

  .nav-links.open { display: flex !important; }

  .nav-link {
    padding: 12px 16px !important;
    border-radius: 10px !important;
  }

  .nav-hamburger { display: flex !important; }

  .nav-wa-btn svg { display: block; }

  /* HERO */
  .hero {
    min-height: 70vh !important;
    padding-top: 70px;
  }

  .hero-inner {
    grid-template-columns: 1fr !important;
    padding: 30px 20px !important;
    gap: 24px !important;
  }

  .hero-h1 {
    font-size: clamp(1.8rem, 7vw, 2.8rem) !important;
  }

  .hero-right,
  .hstat-card {
    display: none !important;
  }

  .hero-stats-row {
    gap: 10px !important;
    flex-wrap: wrap;
  }

  .hero-btns {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .hbtn-primary,
  .hbtn-whatsapp {
    width: 100% !important;
    justify-content: center !important;
    padding: 14px !important;
  }

  /* BANDEAU DÉFILANT */
  .tick-item {
    font-size: 0.85rem !important;
    padding: 0 24px !important;
    letter-spacing: 2px !important;
  }

  /* CAROUSEL */
  .carousel-header {
    padding: 0 16px 16px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px;
  }

  .carousel-wrapper {
    padding: 10px 16px 16px !important;
  }

  .car-card { flex: 0 0 180px !important; }
  .car-card-top { height: 120px !important; }

  /* SECTION PRODUITS */
  .section-header { padding: 40px 16px 20px !important; }

  .catalog-title {
    font-size: 1.6rem !important;
  }

  .catalog-stats {
    flex-wrap: wrap !important;
    gap: 12px !important;
    padding: 10px 16px !important;
  }

  .filters-wrap,
  [class*="filter-wrap"] {
    padding: 12px 16px !important;
    gap: 6px !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    scrollbar-width: none;
  }

  .filters-wrap::-webkit-scrollbar { display: none; }

  .filter-btn {
    flex-shrink: 0 !important;
    padding: 7px 14px !important;
    font-size: 0.75rem !important;
  }

  /* GRILLE PRODUITS */
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 12px 16px !important;
  }

  .card-top,
  .card-img-real {
    height: 130px !important;
  }

  .card-emoji-bg {
    height: 130px !important;
    font-size: 36px !important;
  }

  .card-title {
    font-size: 0.80rem !important;
  }

  .card-sub {
    font-size: 0.65rem !important;
  }

  .price-amount {
    font-size: 0.80rem !important;
  }

  .price-badge {
    font-size: 0.55rem !important;
    padding: 2px 6px !important;
  }

  .btn-detail,
  .btn-wa {
    padding: 7px 4px !important;
    font-size: 0.65rem !important;
  }

  /* WHY SECTION */
  .why-section { padding: 50px 0 !important; }

  .why-container { padding: 0 16px !important; }

  .why-title {
    font-size: 1.5rem !important;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .why-card { padding: 20px 16px !important; }

  /* CONTACT */
  .contact-wrap { padding: 0 16px !important; }

  .contact-body {
    grid-template-columns: 1fr !important;
  }

  .contact-wa-card {
    flex-direction: row !important;
    padding: 16px !important;
    height: auto !important;
  }

  .contact-links-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  /* DETAIL PAGE */
  .detail-hero {
    height: 300px !important;
    padding-top: 70px !important;
  }

  .detail-hero-title {
    font-size: 1.6rem !important;
  }

  .detail-hero::after {
    height: 35px !important;
  }

  .detail-container,
  .detail-main-container {
    grid-template-columns: 1fr !important;
    padding: 0 16px !important;
    gap: 16px !important;
  }

  .dcol-left,
  .detail-left-col {
    position: static !important;
  }

  .dp-visual,
  .detail-product-visual {
    height: 220px !important;
  }

  .dp-logiciels-grid,
  .logiciels-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* ORDER PAGE */
  .order-wrapper {
    grid-template-columns: 1fr !important;
    padding: 0 16px !important;
  }

  .order-info-wrap {
    position: static !important;
  }

  .oic-badges {
    grid-template-columns: 1fr 1fr !important;
  }

  /* FOOTER */
  .footer-inner { padding: 0 16px !important; }

  .footer-top {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
    padding: 30px 0 24px !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 6px !important;
  }

  .footer-tags {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }

  /* BOUTON FLOTTANT WHATSAPP */
  .whatsapp-float {
    width: 50px !important;
    height: 50px !important;
    bottom: 16px !important;
    right: 16px !important;
  }
}

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

  /* NAVBAR */
  .nav-container {
    padding: 0 14px !important;
    height: 60px !important;
  }

  .logo-wrapper {
    padding: 4px 8px !important;
  }

  .nav-logo-img {
    height: 36px !important;
  }

  .nav-wa-btn {
    padding: 8px 12px !important;
    font-size: 0.75rem !important;
  }

  /* HERO */
  .hero {
    min-height: 85vh !important;
  }

  .hero-h1 {
    font-size: 1.8rem !important;
    line-height: 1.15 !important;
  }

  .hero-badge {
    font-size: 0.60rem !important;
    padding: 5px 12px !important;
  }

  .hero-p {
    font-size: 0.85rem !important;
  }

  .hero-stats-row {
    display: none !important;
  }

  /* BANDEAU */
  .ticker-wrap { padding: 12px 0 !important; }

  .tick-item {
    font-size: 0.75rem !important;
    letter-spacing: 1.5px !important;
    padding: 0 20px !important;
  }

  /* CAROUSEL */
  .car-header-title {
    font-size: 1.7rem !important;
  }

  .car-card { flex: 0 0 160px !important; }

  .car-card-top {
    height: 110px !important;
  }

  .car-card-name {
    font-size: 0.78rem !important;
  }

  .car-card-price {
    font-size: 0.85rem !important;
  }

  /* PRODUITS */
  .products-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    padding: 10px 12px !important;
  }

  .card-top,
  .card-img-real {
    height: 110px !important;
  }

  .card-badge {
    font-size: 0.55rem !important;
    padding: 3px 7px !important;
  }

  .card-buttons {
    gap: 5px !important;
    padding: 6px 8px 10px !important;
  }

  .btn-detail,
  .btn-wa {
    font-size: 0.60rem !important;
    padding: 6px 3px !important;
    border-radius: 7px !important;
  }

  /* WHY */
  .why-grid {
    grid-template-columns: 1fr !important;
  }

  .why-stat {
    font-size: 1.5rem !important;
  }

  /* CONTACT */
  .contact-links-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-wa-card {
    flex-direction: column !important;
    text-align: center !important;
  }

  /* DETAIL PAGE */
  .detail-hero { height: 260px !important; }

  .detail-hero-title {
    font-size: 1.4rem !important;
  }

  .detail-breadcrumb {
    font-size: 0.65rem !important;
    padding: 5px 12px !important;
  }

  .dp-price {
    font-size: 1.6rem !important;
  }

  .dp-logiciels-grid,
  .logiciels-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  /* ORDER */
  .order-hero-title {
    font-size: 1.6rem !important;
  }

  .ofc-submit {
    font-size: 0.85rem !important;
    padding: 13px !important;
  }

  .oic-badges {
    grid-template-columns: 1fr !important;
  }

  /* FOOTER */
  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .footer-desc {
    max-width: 100% !important;
  }

  .footer-socials { gap: 6px !important; }

  .fsoc-btn {
    width: 36px !important;
    height: 36px !important;
  }

  /* SECTION HEADERS */
  .catalog-title,
  .why-title,
  .contact-title {
    font-size: 1.4rem !important;
  }

  .catalog-stats {
    display: none !important;
  }
}

/* ================================
   RESPONSIVE — TRÈS PETIT 360px
================================ */
@media (max-width: 360px) {

  .products-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-h1 { font-size: 1.5rem !important; }

  .card-top,
  .card-img-real {
    height: 160px !important;
  }
}

/* ================================
   TOUCH — Améliore l'expérience tactile
================================ */
@media (hover: none) and (pointer: coarse) {

  .btn-detail,
  .btn-wa,
  .car-card-btn,
  .nav-link,
  .filter-btn {
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .product-card:hover {
    transform: none !important;
  }

  .similar-card:hover {
    transform: none !important;
  }

  .carousel-wrapper {
    -webkit-overflow-scrolling: touch !important;
  }

  .whatsapp-float {
    width: 58px !important;
    height: 58px !important;
  }
}

/* ================================
   DETAIL PAGE — MOBILE OPTIMISÉ
================================ */
@media (max-width: 768px) {

  /* HERO DÉTAIL — plus compact */
  .detail-hero {
    height: 220px !important;
    padding-top: 60px !important;
  }

  .detail-hero::after {
    display: none !important;
  }

  .detail-hero-title {
    font-size: 1.4rem !important;
  }

  .detail-breadcrumb {
    display: none !important;
  }

  /* MAIN — 1 colonne */
  .detail-container,
  .detail-main-container {
    grid-template-columns: 1fr !important;
    padding: 12px !important;
    gap: 12px !important;
  }

  /* GAUCHE — réorganise */
  .dcol-left,
  .detail-left-col {
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  /* Image moins haute */
  .dp-visual,
  .detail-product-visual {
    height: 200px !important;
    border-radius: 14px !important;
  }

  /* Cache les badges de confiance sur mobile */
  .dp-trust {
    display: none !important;
  }

  /* Box commande compacte */
  .dp-order-box,
  .detail-order-card {
    padding: 16px !important;
    border-radius: 14px !important;
  }

  /* Prix plus petit */
  .dp-price,
  .detail-price,
  #product-prix {
    font-size: 1.5rem !important;
  }

  /* Options scrollables */
  .dp-options,
  .doc-options {
    max-height: 160px !important;
    overflow-y: auto !important;
  }

  .option-btn {
    padding: 9px 12px !important;
    font-size: 0.78rem !important;
  }

  /* Bouton CTA pleine largeur */
  .dp-cta-primary,
  .doc-cta-btn {
    padding: 14px !important;
    font-size: 0.88rem !important;
    border-radius: 12px !important;
  }

  /* Bouton secondaire caché sur mobile */
  .dp-cta-secondary {
    display: none !important;
  }

  /* DROITE — cards compactes */
  .dcol-right,
  .detail-right-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .dp-card,
  .detail-info-card {
    padding: 16px !important;
    border-radius: 14px !important;
  }

  .dp-card-header {
    margin-bottom: 12px !important;
    padding-bottom: 10px !important;
  }

  .dp-card-header h3 {
    font-size: 0.88rem !important;
  }

  /* Titre produit */
  .dp-product-title,
  .detail-product-title,
  .dic-title {
    font-size: 1.2rem !important;
  }

  /* Description courte sur mobile */
  .dp-product-desc,
  .dic-desc,
  #product-description {
    font-size: 0.80rem !important;
    line-height: 1.6 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  /* Avantages compacts */
  .dp-avantages li,
  .dic-avantages li,
  .detail-avantages li {
    font-size: 0.78rem !important;
    padding: 8px 10px !important;
  }

  /* Logiciels 2 colonnes */
  .dp-logiciels-grid,
  .logiciels-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
  }

  .logiciel-item {
    font-size: 0.68rem !important;
    padding: 6px 8px !important;
  }

  /* FAQ compacte */
  .faq-question {
    font-size: 0.78rem !important;
    padding: 12px 14px !important;
  }

  .faq-answer {
    font-size: 0.75rem !important;
    padding: 10px 14px !important;
  }

  /* Similaires — horizontal scroll */
  .dp-similar,
  .dic-similar {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    gap: 10px !important;
    padding-bottom: 8px !important;
    scrollbar-width: none !important;
  }

  .dp-similar::-webkit-scrollbar,
  .dic-similar::-webkit-scrollbar {
    display: none !important;
  }

  .similar-card {
    flex-shrink: 0 !important;
    width: 160px !important;
    flex-direction: column !important;
    padding: 10px !important;
    text-align: center !important;
    align-items: center !important;
  }

  .similar-image {
    width: 50px !important;
    height: 50px !important;
  }

  .similar-arrow { display: none !important; }

  .similar-info strong {
    font-size: 0.72rem !important;
  }

  .similar-info span {
    font-size: 0.65rem !important;
  }

  /* Tags intro */
  .dp-intro-tags,
  .dic-header {
    flex-wrap: wrap !important;
    gap: 6px !important;
  }

  .dp-tag-cat,
  .dp-tag-badge,
  .dic-cat-tag,
  .dic-badge-tag {
    font-size: 0.60rem !important;
    padding: 3px 10px !important;
  }
}

@media (max-width: 480px) {

  .detail-hero {
    height: 190px !important;
  }

  .detail-hero-title {
    font-size: 1.2rem !important;
  }

  .detail-main,
  .detail-section {
    padding: 12px 0 40px !important;
  }

  .detail-container,
  .detail-main-container {
    padding: 0 10px !important;
    gap: 10px !important;
  }

  .dp-visual,
  .detail-product-visual {
    height: 180px !important;
  }

  .dp-price,
  #product-prix {
    font-size: 1.3rem !important;
  }

  .dp-cta-primary,
  .doc-cta-btn {
    font-size: 0.82rem !important;
    padding: 12px !important;
  }

  .dp-logiciels-grid,
  .logiciels-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ================================
   DETAIL PAGE — FIXES MOBILE
================================ */
@media (max-width: 768px) {

  /* Fix prix — noir gras */
  .dp-price,
  .detail-price,
  #product-prix,
  [id="product-prix"] {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    font-size: 1.6rem !important;
    font-weight: 800 !important;
  }

  /* Fix label PRIX */
  .dp-price-label {
    color: #7C2FFF !important;
    font-size: 0.60rem !important;
    letter-spacing: 2px !important;
  }

  /* Réduit espacements globaux */
  .detail-main {
    padding: 10px 0 30px !important;
  }

  .detail-container {
    padding: 0 12px !important;
    gap: 10px !important;
  }

  /* Image bien adaptée */
  .dp-visual {
    height: 200px !important;
    border-radius: 14px !important;
    margin-bottom: 0 !important;
  }

  /* Box commande sans scroll inutile */
  .dp-order-box {
    padding: 16px !important;
  }

  /* Options */
  .dp-options {
    max-height: 200px !important;
  }

  /* Cards droite bien espacées */
  .dcol-right {
    gap: 10px !important;
  }

  .dp-card {
    padding: 14px 16px !important;
  }

  /* Titre produit lisible */
  .dp-product-title {
    font-size: 1.15rem !important;
    color: #000 !important;
    -webkit-text-fill-color: #000 !important;
  }

  /* Description lisible */
  .dp-product-desc {
    font-size: 0.78rem !important;
    -webkit-line-clamp: 4 !important;
  }

  /* Avantages compacts */
  .dp-avantages {
    gap: 6px !important;
  }

  .dp-avantages li {
    font-size: 0.75rem !important;
    padding: 8px 10px !important;
  }
}

@media (max-width: 480px) {

  /* Prix noir sur petit mobile */
  .dp-price,
  #product-prix {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    font-size: 1.4rem !important;
  }
}

/* ================================
   DETAIL PAGE MOBILE — REORDER
================================ */
@media (max-width: 768px) {

  /* HERO COMPACT */
  .detail-hero {
    height: 180px !important;
    padding-top: 60px !important;
  }

  .detail-hero::after {
    display: none !important;
  }

  .detail-hero-title {
    font-size: 1.2rem !important;
    text-align: center !important;
  }

  .detail-hero-cat {
    font-size: 0.60rem !important;
  }

  .detail-breadcrumb {
    display: none !important;
  }

  .detail-hero-line {
    display: none !important;
  }

  /* MAIN — REORDER COMPLET */
  .detail-main {
    padding: 0 0 90px 0 !important;
    background: #F8F8FF !important;
  }

  .detail-container,
  .detail-main-container {
    display: flex !important;
    flex-direction: column !important;
    padding: 12px !important;
    gap: 12px !important;
    max-width: 100% !important;
  }

  .dcol-left,
  .detail-left-col {
    display: contents !important;
    position: static !important;
  }

  .dcol-right,
  .detail-right-col {
    display: contents !important;
  }

  /* ORDRE 1 — TITRE + DESCRIPTION */
  .dp-card-intro {
    order: 1 !important;
    border-left: none !important;
    border-radius: 16px !important;
    padding: 16px !important;
    margin: 0 !important;
    background: white !important;
    box-shadow: 0 2px 12px rgba(124,47,255,0.08) !important;
  }

  .dp-intro-tags {
    margin-bottom: 8px !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
  }

  .dp-tag-cat {
    font-size: 0.58rem !important;
    padding: 3px 10px !important;
  }

  .dp-tag-badge {
    font-size: 0.58rem !important;
    padding: 3px 10px !important;
  }

  .dp-product-title,
  #detail-product-title {
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: #000 !important;
    -webkit-text-fill-color: #000 !important;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
  }

  .dp-product-desc,
  #product-description {
    font-size: 0.78rem !important;
    color: #555 !important;
    line-height: 1.6 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    margin: 0 !important;
  }

  /* ORDRE 2 — IMAGE PRODUIT */
  .dp-visual {
    order: 2 !important;
    width: 100% !important;
    height: 220px !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 24px rgba(124,47,255,0.15) !important;
    overflow: hidden !important;
    margin: 0 !important;
  }

  .dp-visual img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 16px !important;
  }

  /* ORDRE 3 — PRIX + OPTIONS */
  .dp-order-box {
    order: 3 !important;
    background: white !important;
    border-radius: 16px !important;
    padding: 16px !important;
    box-shadow: 0 2px 12px rgba(124,47,255,0.08) !important;
    border: 1px solid rgba(124,47,255,0.10) !important;
  }

  .dp-price-section {
    margin-bottom: 12px !important;
    padding-bottom: 12px !important;
  }

  .dp-price-label {
    font-size: 0.58rem !important;
    color: #7C2FFF !important;
    letter-spacing: 2px !important;
    margin-bottom: 4px !important;
  }

  .dp-price,
  #product-prix {
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    line-height: 1 !important;
  }

  .dp-options-label {
    font-size: 0.65rem !important;
    margin-bottom: 8px !important;
    color: #555 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
  }

  .dp-options {
    max-height: 180px !important;
    overflow-y: auto !important;
    gap: 6px !important;
    margin-bottom: 14px !important;
    scrollbar-width: thin !important;
  }

  .option-btn {
    padding: 10px 12px !important;
    border-radius: 10px !important;
    font-size: 0.78rem !important;
  }

  .opt-quantite {
    font-size: 0.75rem !important;
    color: #000 !important;
  }

  .opt-prix {
    font-size: 0.78rem !important;
    color: #7C2FFF !important;
    font-weight: 700 !important;
  }

  .dp-cta-secondary { display: none !important; }

  /* Bouton principal caché ici — remplacé par barre fixe */
  .dp-cta-primary { display: none !important; }

  .dp-trust { display: none !important; }

  /* ORDRE 4 — CE QUI EST INCLUS */
  .dp-card:has(#product-avantages) {
    order: 4 !important;
    border-radius: 16px !important;
    padding: 16px !important;
    background: white !important;
    box-shadow: 0 2px 12px rgba(124,47,255,0.06) !important;
  }

  .dp-card-header {
    margin-bottom: 12px !important;
    padding-bottom: 10px !important;
  }

  .dp-card-header h3 {
    font-size: 0.85rem !important;
  }

  .dp-card-icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 1rem !important;
  }

  .dp-avantages {
    gap: 6px !important;
  }

  .dp-avantages li {
    font-size: 0.75rem !important;
    padding: 8px 10px !important;
    border-radius: 8px !important;
    line-height: 1.4 !important;
  }

  /* Cache logiciels sur mobile */
  .dp-card-logiciels,
  #dp-logiciels-block {
    display: none !important;
  }

  /* ORDRE 5 — FAQ */
  .dp-card:has(.dp-faq) {
    order: 5 !important;
    border-radius: 16px !important;
    padding: 14px !important;
    background: white !important;
  }

  .dp-faq {
    gap: 6px !important;
  }

  .faq-question {
    font-size: 0.76rem !important;
    padding: 11px 12px !important;
    line-height: 1.4 !important;
  }

  .faq-answer {
    font-size: 0.73rem !important;
    padding: 10px 12px !important;
    line-height: 1.6 !important;
  }

  .faq-icon {
    width: 22px !important;
    height: 22px !important;
    font-size: 0.85rem !important;
    flex-shrink: 0 !important;
  }

  /* Cache produits similaires sur mobile */
  .dp-card:has(.dp-similar) {
    display: none !important;
  }

  /* BOUTON FIXE EN BAS */
  .mobile-cta-bar {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999 !important;
    background: white !important;
    padding: 12px 16px !important;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.10) !important;
    border-top: 1px solid rgba(124,47,255,0.10) !important;
    display: flex !important;
    gap: 10px !important;
    align-items: center !important;
  }

  .mobile-cta-price {
    display: flex !important;
    flex-direction: column !important;
    gap: 1px !important;
    flex-shrink: 0 !important;
  }

  .mobile-cta-price span:first-child {
    font-size: 0.58rem !important;
    color: #888 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
  }

  .mobile-cta-price strong {
    font-size: 1rem !important;
    font-weight: 800 !important;
    color: #000 !important;
  }

  .mobile-cta-btn {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    background: linear-gradient(135deg, #25D366, #1da851) !important;
    color: white !important;
    padding: 13px !important;
    border-radius: 12px !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(37,211,102,0.30) !important;
    transition: all 0.2s !important;
  }
}

/* ================================
   HERO MOBILE — COMPACT
================================ */
@media (max-width: 768px) {

  .hero {
    min-height: 55vh !important;
    padding-top: 60px !important;
  }

  .hero-inner {
    padding: 20px 16px !important;
    gap: 16px !important;
  }

  .hero-h1 {
    font-size: 1.7rem !important;
    line-height: 1.15 !important;
    margin-bottom: 4px !important;
  }

  .hero-highlight {
    font-size: 1.7rem !important;
  }

  .hero-line { margin: 4px 0 !important; }

  .hero-p {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
    margin-bottom: 4px !important;
  }

  .hero-badge {
    font-size: 0.58rem !important;
    padding: 5px 12px !important;
    margin-bottom: 8px !important;
  }

  .hero-stats-row { display: none !important; }

  .hero-btns {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .hbtn-primary,
  .hbtn-whatsapp {
    width: 100% !important;
    justify-content: center !important;
    padding: 13px 20px !important;
    font-size: 0.88rem !important;
  }

  .hero-scroll { display: none !important; }

  #wave-canvas { opacity: 0.4 !important; }
}

@media (max-width: 480px) {
  .hero { min-height: 50vh !important; }
  .hero-h1 { font-size: 1.5rem !important; }
}

/* ================================
   FOOTER MOBILE — SIMPLIFIÉ
================================ */
@media (max-width: 768px) {

  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 24px 0 16px !important;
  }

  .footer-top .footer-col:nth-child(2),
  .footer-top .footer-col:nth-child(3) {
    display: none !important;
  }

  .footer-brand {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .footer-logo-link { margin-bottom: 0 !important; }

  .footer-logo-img { height: 40px !important; }

  .footer-desc { display: none !important; }

  .footer-socials {
    justify-content: center !important;
    gap: 8px !important;
  }

  .footer-contact-list { gap: 8px !important; }

  .footer-contact-list li { font-size: 0.72rem !important; }

  .fct-icon {
    width: 28px !important;
    height: 28px !important;
  }

  .footer-wa-btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 11px !important;
    font-size: 0.78rem !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    padding: 12px 0 !important;
    gap: 4px !important;
  }

  .footer-tags { display: none !important; }

  .footer-bottom p { font-size: 0.68rem !important; }

  .footer-glow-bar { height: 2px !important; }
}

@media (max-width: 480px) {

  .footer-inner { padding: 0 14px !important; }

  .footer-brand {
    flex-direction: column !important;
    text-align: center !important;
  }

  .footer-col-title {
    font-size: 0.65rem !important;
    margin-bottom: 12px !important;
  }

  .footer-contact-list li a,
  .footer-contact-list li span:not(.fct-icon) {
    font-size: 0.70rem !important;
  }
}

/* ================================
   HERO PAGES INTERNES — COMPACT
================================ */
@media (max-width: 768px) {

  .hero-small {
    min-height: 200px !important;
    max-height: 220px !important;
    padding-top: 60px !important;
  }

  .hero-small-content {
    padding: 16px 20px !important;
    gap: 8px !important;
  }

  .hero-small .hero-title,
  .hero-small h1 {
    font-size: 1.4rem !important;
    line-height: 1.2 !important;
  }

  .hero-small .hero-subtitle,
  .hero-small p {
    font-size: 0.78rem !important;
    line-height: 1.4 !important;
  }

  .hero-small .hero-badge {
    font-size: 0.58rem !important;
    padding: 4px 12px !important;
  }

  .hero-small .breadcrumb,
  .hero-small nav {
    display: none !important;
  }

  .hero-small::after {
    display: none !important;
  }
}

/* ================================
   FILTRES — SCROLL HORIZONTAL
================================ */
@media (max-width: 768px) {

  .filters-wrap,
  [class*="filter-wrap"],
  [class*="filters-container"] {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 12px 16px !important;
    gap: 8px !important;
    justify-content: flex-start !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    position: sticky !important;
    top: 60px !important;
    z-index: 98 !important;
    background: white !important;
    border-bottom: 1px solid rgba(124,47,255,0.08) !important;
  }

  .filters-wrap::-webkit-scrollbar {
    display: none !important;
  }

  .filter-btn {
    flex-shrink: 0 !important;
    padding: 8px 16px !important;
    font-size: 0.75rem !important;
    white-space: nowrap !important;
    border-radius: 50px !important;
  }
}

/* ================================
   GRILLE PRODUITS — 2 COLONNES MOBILE
================================ */
@media (max-width: 768px) {

  .products-grid,
  [class*="products-grid"] {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 12px !important;
  }

  .card-top,
  .card-img-real,
  .card-emoji-bg {
    height: 110px !important;
  }

  .card-emoji-bg { font-size: 32px !important; }

  .card-img { height: 110px !important; }

  .card-info { padding: 8px 8px 4px !important; }

  .card-cat {
    font-size: 0.52rem !important;
    margin-bottom: 2px !important;
  }

  .card-title {
    font-size: 0.75rem !important;
    margin-bottom: 2px !important;
    line-height: 1.2 !important;
  }

  .card-sub {
    font-size: 0.65rem !important;
    margin: 0 !important;
  }

  .card-price-row,
  .price-block {
    padding: 6px 8px !important;
  }

  .price-amount { font-size: 0.78rem !important; }

  .price-badge {
    font-size: 0.52rem !important;
    padding: 2px 6px !important;
  }

  .card-buttons {
    grid-template-columns: 1fr 1fr !important;
    gap: 5px !important;
    padding: 6px 8px 8px !important;
  }

  .btn-detail,
  .btn-wa {
    padding: 7px 4px !important;
    font-size: 0.62rem !important;
    border-radius: 7px !important;
    gap: 3px !important;
  }

  .btn-detail svg,
  .btn-wa svg {
    width: 11px !important;
    height: 11px !important;
  }

  .card-badge {
    font-size: 0.52rem !important;
    padding: 3px 7px !important;
  }
}

@media (max-width: 480px) {

  .products-grid {
    gap: 8px !important;
    padding: 10px !important;
  }

  .card-top,
  .card-img-real,
  .card-emoji-bg {
    height: 100px !important;
  }

  .card-title { font-size: 0.70rem !important; }

  .price-amount { font-size: 0.72rem !important; }

  .price-badge { display: none !important; }
}

/* ================================
   HERO MOBILE — COMPACT V2
================================ */
@media (max-width: 768px) {

  .hero {
    min-height: 60vh !important;
    max-height: 65vh !important;
    padding-top: 65px !important;
    overflow: hidden !important;
  }

  .hero-inner {
    padding: 16px 18px 20px !important;
    gap: 12px !important;
    grid-template-columns: 1fr !important;
    align-items: flex-start !important;
  }

  .hero-badge {
    font-size: 0.58rem !important;
    padding: 5px 12px !important;
    gap: 6px !important;
    margin-bottom: 4px !important;
  }

  .hero-h1 {
    font-size: 1.75rem !important;
    line-height: 1.15 !important;
    margin: 0 !important;
  }

  .hero-highlight { font-size: 1.75rem !important; }

  .hero-line {
    width: 40px !important;
    height: 2px !important;
    margin: 2px 0 !important;
  }

  .hero-p {
    font-size: 0.80rem !important;
    line-height: 1.5 !important;
    color: rgba(255,255,255,0.75) !important;
    margin: 0 !important;
    max-width: 100% !important;
  }

  .hero-stats-row,
  .hero-right,
  .hstat-card {
    display: none !important;
  }

  .hero-btns {
    flex-direction: column !important;
    gap: 8px !important;
    width: 100% !important;
    margin-top: 4px !important;
  }

  .hbtn-primary {
    width: 100% !important;
    justify-content: center !important;
    padding: 13px 20px !important;
    font-size: 0.88rem !important;
  }

  .hero-scroll { display: none !important; }

  #wave-canvas { opacity: 0.35 !important; }
}

@media (max-width: 480px) {
  .hero { min-height: 55vh !important; }

  .hero-h1,
  .hero-highlight { font-size: 1.5rem !important; }
}

/* ================================
   HERO MOBILE — ULTRA COMPACT
================================ */
@media (max-width: 768px) {

  .hero {
    min-height: 42vh !important;
    max-height: 45vh !important;
    padding-top: 60px !important;
  }

  .hero-inner {
    padding: 12px 16px 16px !important;
    gap: 8px !important;
  }

  .hero-badge {
    font-size: 0.55rem !important;
    padding: 4px 10px !important;
    margin-bottom: 2px !important;
  }

  .hero-h1,
  .hero-highlight {
    font-size: 1.45rem !important;
    line-height: 1.1 !important;
  }

  .hero-line {
    margin: 2px 0 !important;
    width: 35px !important;
  }

  .hero-p {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
  }

  .hbtn-primary {
    padding: 11px 18px !important;
    font-size: 0.82rem !important;
    margin-top: 2px !important;
  }
}

@media (max-width: 480px) {

  .hero {
    min-height: 38vh !important;
    max-height: 42vh !important;
  }

  .hero-h1,
  .hero-highlight { font-size: 1.3rem !important; }

  .hero-p { display: none !important; }
}

/* ================================
   HERO MOBILE — REDESIGN COMPLET
================================ */
@media (max-width: 768px) {

  .hero {
    min-height: 100svh !important;
    max-height: 100svh !important;
    padding-top: 70px !important;
    display: flex !important;
    align-items: center !important;
  }

  .hero-inner {
    grid-template-columns: 1fr !important;
    padding: 20px 20px 30px !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-left {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    align-items: flex-start !important;
  }

  .hero-badge {
    font-size: 0.58rem !important;
    padding: 5px 12px !important;
    letter-spacing: 1.5px !important;
    gap: 6px !important;
  }

  .hero-h1 {
    font-size: 2rem !important;
    line-height: 1.15 !important;
    margin: 0 !important;
  }

  .hero-highlight {
    font-size: 2rem !important;
    display: block !important;
  }

  .hero-line {
    width: 40px !important;
    height: 2px !important;
  }

  .hero-p {
    font-size: 0.82rem !important;
    color: rgba(255,255,255,0.72) !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    display: block !important;
  }

  .hero-stats-row {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    border-radius: 50px !important;
    padding: 10px 18px !important;
    backdrop-filter: blur(8px) !important;
    flex-wrap: nowrap !important;
  }

  .hero-stat-mini {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1px !important;
  }

  .hero-stat-mini strong {
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
    line-height: 1 !important;
  }

  .hero-stat-mini span {
    font-size: 0.55rem !important;
    color: rgba(255,255,255,0.50) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
  }

  .hero-stat-div {
    width: 1px !important;
    height: 24px !important;
    background: rgba(255,255,255,0.12) !important;
  }

  .hbtn-primary {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 13px 24px !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    width: auto !important;
  }

  .hero-right,
  .hstat-card,
  .hero-stats-row,
  .hero-scroll,
  .hbtn-whatsapp {
    display: none !important;
  }

  #wave-canvas { opacity: 0.25 !important; }
}

@media (max-width: 480px) {

  .hero { min-height: 100svh !important; }

  .hero-h1,
  .hero-highlight { font-size: 1.7rem !important; }

  .hero-stats-row {
    padding: 8px 14px !important;
    gap: 10px !important;
  }

  .hero-stat-mini strong { font-size: 0.85rem !important; }
}

/* ================================
   HERO MOBILE — HAUTEUR MINIMALE
================================ */
@media (max-width: 768px) {

  .hero {
    min-height: auto !important;
    max-height: none !important;
    height: auto !important;
    padding-top: 65px !important;
    padding-bottom: 24px !important;
  }

  .hero-bg {
    filter: blur(2px) !important;
    transform: scale(1.04) !important;
  }

  .hero-inner {
    grid-template-columns: 1fr !important;
    padding: 18px 18px 0 !important;
    gap: 10px !important;
  }

  .hero-left { gap: 10px !important; }

  .hero-badge {
    font-size: 0.56rem !important;
    padding: 4px 10px !important;
    letter-spacing: 1.5px !important;
  }

  .hero-h1 {
    font-size: 1.6rem !important;
    line-height: 1.1 !important;
    margin: 0 !important;
  }

  .hero-highlight {
    font-size: 1.6rem !important;
    display: inline !important;
  }

  .hero-line {
    width: 30px !important;
    height: 2px !important;
    margin: 0 !important;
  }

  .hero-p {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
    margin: 0 !important;
  }

  .hero-stats-row {
    padding: 7px 14px !important;
    gap: 10px !important;
    border-radius: 50px !important;
    width: fit-content !important;
  }

  .hero-stat-mini strong { font-size: 0.82rem !important; }

  .hero-stat-mini span { font-size: 0.48rem !important; }

  .hero-stat-div { height: 18px !important; }

  .hbtn-primary {
    padding: 10px 20px !important;
    font-size: 0.82rem !important;
    width: fit-content !important;
    border-radius: 50px !important;
  }

  .hero-right,
  .hstat-card,
  .hero-stats-row,
  .hero-scroll,
  .hbtn-whatsapp {
    display: none !important;
  }

  #wave-canvas {
    opacity: 0.20 !important;
    height: 50% !important;
    top: auto !important;
    bottom: 0 !important;
  }
}

@media (max-width: 480px) {

  .hero {
    padding-top: 62px !important;
    padding-bottom: 20px !important;
  }

  .hero-h1,
  .hero-highlight { font-size: 1.45rem !important; }

  .hero-badge { font-size: 0.52rem !important; }
}

/* ================================
   CARTES PRODUITS MOBILE — PREMIUM
================================ */
@media (max-width: 768px) {

  .products-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 14px 12px !important;
    background: #F0ECFF !important;
  }

  .product-card {
    background: #FFFFFF !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    border: none !important;
    box-shadow:
      0 2px 8px rgba(124,47,255,0.08),
      0 0 0 1px rgba(124,47,255,0.06) !important;
    display: flex !important;
    flex-direction: column !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
  }

  .product-card:active {
    transform: scale(0.98) !important;
    box-shadow: 0 1px 4px rgba(124,47,255,0.12) !important;
  }

  .card-top,
  .card-img-real {
    height: 120px !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    position: relative !important;
  }

  .card-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s !important;
  }

  .card-emoji-bg {
    height: 120px !important;
    font-size: 36px !important;
    border-radius: 0 !important;
  }

  .card-badge {
    position: absolute !important;
    top: 8px !important;
    left: 8px !important;
    font-size: 0.52rem !important;
    font-weight: 700 !important;
    padding: 3px 8px !important;
    border-radius: 20px !important;
    background: rgba(0,0,0,0.55) !important;
    backdrop-filter: blur(6px) !important;
    color: white !important;
    z-index: 2 !important;
  }

  .card-info {
    padding: 10px 10px 6px !important;
    flex: 1 !important;
  }

  .card-cat {
    font-size: 0.50rem !important;
    font-weight: 700 !important;
    color: #7C2FFF !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 3px !important;
    display: block !important;
  }

  .card-title {
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    color: #000000 !important;
    line-height: 1.2 !important;
    margin-bottom: 3px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .card-sub {
    font-size: 0.62rem !important;
    color: #888 !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .card-price-row,
  .price-block {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 6px 10px 8px !important;
    border-top: 1px solid rgba(124,47,255,0.06) !important;
    margin-top: auto !important;
  }

  .price-amount {
    font-size: 0.80rem !important;
    font-weight: 800 !important;
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    line-height: 1 !important;
  }

  .price-badge { display: none !important; }

  .card-buttons {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
    padding: 0 8px 10px !important;
  }

  .btn-detail {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    padding: 8px 6px !important;
    background: #7C2FFF !important;
    color: white !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 0.62rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }

  .btn-detail:hover,
  .btn-detail:active {
    background: #5a1fd4 !important;
    color: white !important;
  }

  .btn-wa {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    padding: 8px 6px !important;
    background: #25D366 !important;
    color: white !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 0.62rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }

  .btn-wa:hover,
  .btn-wa:active {
    background: #1ebe5a !important;
    color: white !important;
  }

  .btn-detail svg,
  .btn-wa svg {
    width: 11px !important;
    height: 11px !important;
    flex-shrink: 0 !important;
  }

  [class*="promo"],
  .banner-strip {
    margin: 0 12px 12px !important;
    border-radius: 14px !important;
    padding: 14px 16px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    align-items: flex-start !important;
  }

  [class*="promo"] p,
  [class*="promo"] span:not(.btn) {
    font-size: 0.78rem !important;
    line-height: 1.4 !important;
  }

  [class*="promo"] a.btn,
  [class*="promo"] .btn {
    width: 100% !important;
    text-align: center !important;
    padding: 10px !important;
    font-size: 0.78rem !important;
    border-radius: 10px !important;
  }

  .filters-wrap,
  [class*="filter-wrap"] {
    padding: 10px 12px !important;
    gap: 6px !important;
    background: white !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
  }

  .filter-btn {
    padding: 7px 14px !important;
    font-size: 0.70rem !important;
    border-radius: 50px !important;
    border: 1.5px solid rgba(124,47,255,0.20) !important;
    background: white !important;
    color: #333 !important;
    flex-shrink: 0 !important;
    font-weight: 500 !important;
  }

  .filter-btn.active {
    background: #7C2FFF !important;
    border-color: #7C2FFF !important;
    color: white !important;
    font-weight: 700 !important;
    box-shadow: 0 3px 10px rgba(124,47,255,0.30) !important;
  }
}

@media (max-width: 380px) {

  .products-grid {
    gap: 8px !important;
    padding: 10px 8px !important;
  }

  .card-top,
  .card-img-real,
  .card-emoji-bg { height: 100px !important; }

  .card-title { font-size: 0.72rem !important; }

  .price-amount { font-size: 0.72rem !important; }

  .btn-detail,
  .btn-wa {
    font-size: 0.58rem !important;
    padding: 7px 4px !important;
  }
}

/* ================================
   CARTES MOBILE — 1 BOUTON PREMIUM
================================ */
@media (max-width: 768px) {

  .products-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 14px 12px 24px !important;
    background: #EEEBF8 !important;
  }

  .product-card {
    background: #FFFFFF !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(124,47,255,0.10) !important;
    display: flex !important;
    flex-direction: column !important;
    transition: all 0.2s !important;
    position: relative !important;
  }

  .product-card:active { transform: scale(0.97) !important; }

  .card-top,
  .card-img-real {
    height: 115px !important;
    overflow: hidden !important;
    position: relative !important;
    border-radius: 0 !important;
  }

  .card-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .card-emoji-bg {
    height: 115px !important;
    font-size: 38px !important;
  }

  .card-top::after,
  .card-img-real::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 40px !important;
    background: linear-gradient(transparent, rgba(0,0,0,0.25)) !important;
    pointer-events: none !important;
  }

  .card-badge {
    position: absolute !important;
    top: 7px !important;
    left: 7px !important;
    font-size: 0.50rem !important;
    font-weight: 700 !important;
    padding: 3px 8px !important;
    border-radius: 20px !important;
    background: rgba(0,0,0,0.50) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    color: white !important;
    z-index: 3 !important;
    letter-spacing: 0.3px !important;
  }

  .card-info {
    padding: 10px 10px 6px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 3px !important;
  }

  .card-cat {
    font-size: 0.48rem !important;
    font-weight: 700 !important;
    color: #7C2FFF !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    display: block !important;
  }

  .card-title {
    font-size: 0.76rem !important;
    font-weight: 700 !important;
    color: #000 !important;
    line-height: 1.2 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    margin: 0 !important;
  }

  .card-sub { display: none !important; }

  .card-price-row,
  .price-block {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 6px 10px !important;
    border-top: 1px solid rgba(124,47,255,0.07) !important;
    margin-top: auto !important;
  }

  .price-amount {
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
  }

  .price-badge { display: none !important; }

  .card-buttons {
    display: block !important;
    padding: 0 10px 10px !important;
  }

  .btn-wa,
  .btn-whatsapp-card { display: none !important; }

  .btn-detail {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    width: 100% !important;
    padding: 10px !important;
    background: linear-gradient(135deg, #7C2FFF, #9B63FF) !important;
    color: white !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(124,47,255,0.25) !important;
    letter-spacing: 0.3px !important;
  }

  .btn-detail:active {
    transform: scale(0.97) !important;
    color: white !important;
  }

  .btn-detail svg {
    width: 12px !important;
    height: 12px !important;
    flex-shrink: 0 !important;
  }
}

@media (max-width: 380px) {

  .products-grid {
    gap: 10px !important;
    padding: 12px 10px !important;
  }

  .card-top,
  .card-img-real,
  .card-emoji-bg { height: 100px !important; }

  .card-title { font-size: 0.70rem !important; }

  .price-amount { font-size: 0.75rem !important; }
}

/* =============================================
   SECTION POURQUOI CHOISIR — MOBILE COMPACT
   ============================================= */
@media (max-width: 768px) {

  .why-section {
    padding: 30px 0 !important;
  }

  .why-container {
    padding: 0 12px !important;
  }

  .why-header {
    margin-bottom: 20px !important;
  }

  .why-badge {
    font-size: 0.58rem !important;
    padding: 5px 14px !important;
    margin-bottom: 10px !important;
  }

  .why-title {
    font-size: 1.3rem !important;
    line-height: 1.2 !important;
    margin-bottom: 6px !important;
  }

  .why-sub {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
  }

  /* Grille 2x2 au lieu de 1 colonne */
  .why-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .why-card {
    padding: 16px 12px !important;
    border-radius: 14px !important;
    text-align: center !important;
  }

  .why-icon-wrap {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    margin: 0 auto 10px !important;
  }

  .why-icon { font-size: 1.3rem !important; }

  .why-card h3 {
    font-size: 0.80rem !important;
    margin-bottom: 6px !important;
  }

  .why-card p {
    font-size: 0.68rem !important;
    line-height: 1.45 !important;
    margin-bottom: 8px !important;
  }

  .why-stat {
    font-size: 1.4rem !important;
    -webkit-text-fill-color: #9B63FF !important;
  }
}

/* =============================================
   PRODUCTS PAGE — FORCE CARDS VISIBLE (override reveal)
   ============================================= */
.products-grid-v2 .product-card {
  opacity: 1 !important;
  transform: none !important;
}

/* =============================================
   PRODUCT CARD — CURSOR POINTER
   ============================================= */
.product-card {
  cursor: pointer !important;
}


@media (max-width: 768px) {
  .products-grid {
    padding: 12px 6px !important;
    gap: 8px !important;
  }
}

@media (max-width: 480px) {
  .products-grid {
    padding: 10px 4px !important;
    gap: 6px !important;
  }
}

@media (max-width: 768px) {
  .carousel-section { padding: 30px 0 24px !important; }
  .carousel-container { padding: 0 16px !important; }
  .car-header-center { margin-bottom: 4px !important; }
  .car-viewport { padding: 0 !important; margin: 0 !important; }
  .car-track { gap: 14px !important; padding: 10px 16px 16px !important; }
  .car-slide,
  .car-slide-center,
  .car-slide-near,
  .car-slide-far { width: 210px !important; flex-shrink: 0 !important; }
  .car-card-wrap,
  .car-slide-center .car-card-wrap,
  .car-slide-near .car-card-wrap,
  .car-slide-far .car-card-wrap { width: 210px !important; transform: none !important; opacity: 1 !important; border-radius: 16px !important; }
  .car-img-box { height: 130px !important; }
  .car-content { padding: 10px 12px 12px !important; }
  .car-card-name { font-size: 0.82rem !important; }
  .car-amount { font-size: 0.80rem !important; }
  .car-cta { padding: 7px 12px !important; font-size: 0.65rem !important; }
  .carousel-nav { margin-top: 16px !important; }
  .car-see-all { margin-top: 14px !important; }
}

/* =============================================
   PRODUCT DETAIL — PAYMENT INFO BOX
   ============================================= */
.dp-payment-info {
  margin-top: 14px;
  padding: 14px;
  background: rgba(124,47,255,0.04);
  border: 1px solid rgba(124,47,255,0.12);
  border-radius: 12px;
}
.dpi-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.dpi-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: #444;
  margin-bottom: 6px;
}
.dpi-num {
  width: 20px;
  height: 20px;
  background: #7C2FFF;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  flex-shrink: 0;
}
.dpi-methods {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(124,47,255,0.08);
}
.dpi-method {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dpi-m-icon {
  font-size: 1.2rem;
  width: 32px;
  height: 32px;
  background: rgba(124,47,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dpi-method div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.dpi-method strong {
  font-size: 0.75rem;
  font-weight: 700;
  color: #000;
}
.dpi-method span {
  font-size: 0.70rem;
  color: #666;
}

.card-badge { display: none !important; }
