/* ============================== */
/*           VARIABLES            */
/* ============================== */

:root {
  --primary: #0f766e;
  --accent:  #14532d;
  --bg:      #ffffff;
  --text:    #0f172a;
  --muted:   #475569;
  --radius:  16px;

  --font-base-desktop: 16px;
  --font-base-tablet: 15px;
  --font-base-mobile: 14px;

  --font-small: 0.85rem;
  --font-medium: 1rem;
  --font-big: 1.25rem;
  --font-title: clamp(1.4rem, 3vw, 2.4rem);
}

/* Police moderne (Inter) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');


/* ============================== */
/*        BASE & STRUCTURE        */
/* ============================== */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  color: var(--text);
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,'Helvetica Neue',Arial,'Noto Sans',sans-serif;
  line-height: 1.6;
}

body {
  font-size: var(--font-base-desktop);
  position: relative;
  background: none;
}

/* Typo responsive */
@media (max-width: 900px) {
  body { font-size: var(--font-base-tablet); }
}
@media (max-width: 600px) {
  body { font-size: var(--font-base-mobile); }
}

/* Fond flouté + voile */
body::before {
  content:"";
  position: fixed;
  inset: 0;
  background: url("/assets/img/fond.jpg") center/cover no-repeat;
  filter: blur(9px);
  transform: scale(1.06);
  z-index: 0;
}
body::after {
  content:"";
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.50);
  z-index: 0;
}

/* Le contenu au-dessus du flou/voile */
.container,
.nav,
.card,
header,
main,
footer,
.grid,
.hero {
  position: relative;
  z-index: 1;
}

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

/* Liens génériques */
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }


/* ============================== */
/*           NAVIGATION           */
/* ============================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--accent);
  border-radius: 0 0 14px 14px;
  padding: 12px 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);

  display: flex;
  align-items: center;
  justify-content: center;   /* logo centré */
  overflow: visible;         /* logo peut dépasser */
}

.nav-left,
.nav-right {
  flex: 1;
  display: flex;
  justify-content: center;   /* centre les liens dans chaque bloc */
  align-items: center;
  gap: 10px;
}

.nav-link {
  color: #fff !important;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  white-space: nowrap;
}
.nav-link:hover {
  background: rgba(255,255,255,0.22);
}

/* Logo centré */
.nav-logo {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) translateY(18px);
  z-index: 30;
  padding: 0;
  margin: 0;
}

.nav-logo-blur {
  padding: 6px;
  border-radius: 14px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  box-shadow:
    0 4px 10px rgba(0,0,0,.25),
    0 10px 18px rgba(0,0,0,.25);
}

.nav-logo img {
  width: 160px;
  height: 160px;
  border-radius: 6px;
  object-fit: contain;
  background: #fff;
  padding: 4px;
  display: block;
}

/* Nav mobile */
@media (max-width: 600px) {
  .nav-left,
  .nav-right {
    gap: 6px;
  }

  .nav-link {
    font-size: 0.82rem;
    padding: 4px 6px;
  }

  .nav-logo img {
    width: 65px;
    height: 65px;
  }

  .nav-logo {
    transform: translateX(-50%) translateY(10px);
  }
}

/* Nav ultra-compact */
@media (max-width: 480px) {
  .nav {
    padding: 4px 6px !important;
    min-height: 52px;
  }

  .nav-left,
  .nav-right {
    gap: 2px !important;
  }

  .nav-link {
    font-size: 0.65rem !important;
    padding: 2px 4px !important;
    letter-spacing: 0 !important;
  }

  .nav-logo img {
    width: 42px !important;
    height: 42px !important;
    padding: 2px !important;
  }

  .nav-logo {
    top: 2px !important;
    transform: translateX(-50%) !important;
  }
}


/* ============================== */
/*              HERO              */
/* ============================== */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin: 120px 0 28px;  /* espace pour ordi */
}

/* Sur mobile : réduire uniquement l'espace au-dessus */
@media (max-width: 768px) {
  .hero {
    margin-top: 20px !important;
  }
}

.hero h1 {
  font-size: 28px;
  line-height: 1.1;
  margin: 0 0 8px;
}
.hero p {
  color: var(--muted);
}


/* Titre animé (Grelinette Maroc / Section motoculture) */
.hero-title h1 {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.15;
  margin: 0;
  color: #0f172a;
}
.hero-title h10 {
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  text-align: left;
  line-height: 1.15;
  margin: 0;
  color: #0f172a;
}

.hero-title .line1,
.hero-title .line2 {
  display: block;
  opacity: 0;
  transform: translateY(0px);
  animation: slideFade 0.8s ease forwards;
}
.hero-title .line2 {
  animation-delay: 0.25s;
}
.hero-title .line1 {
  font-size: 5rem;   /* augmente selon besoin */
}
/* Réduction du titre Catalogue sur mobile */
@media (max-width: 600px) {
  .hero-title h1 {
    font-size: 3rem;      /* Taille du titre sur mobile */
    line-height: 1.2;     /* Optionnel : plus compact */
  }

  .hero-title .line1 {
    font-size: inherit;   /* S'assure que le span suit la taille du h1 */
  }
}

.subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #475569;
  font-weight: 500;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideFade 0.8s ease forwards;
  animation-delay: 0.5s;
}

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

.header-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #eee;
  margin-bottom: 18px;
}
.header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Annonce livraison gratuite */
.free-shipping {
  color: rgb(41, 42, 42);
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Hero responsive */
@media (max-width: 900px) {
  .hero { padding: 0 10px; }
}


/* ============================== */
/*     CARTES, GRILLES, SECTIONS  */
/* ============================== */

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid #eee;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  overflow-wrap: break-word;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 18px;
}
.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.product-card h3 { margin: 10px 0 6px; }

.badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
}
.meta  { color: var(--muted); font-size: 14px; }

table.specs {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
table.specs td,
table.specs th {
  border-bottom: 1px solid #eee;
  padding: 8px;
  text-align: left;
}

.notice {
  background: #f8fafc;
  border: 1px dashed #e2e8f0;
  padding: 12px;
  border-radius: 12px;
  color: #334155;
  margin-top: 12px;
}

.banner {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.banner .chip {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #d1fae5;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
}

/* Séparateurs & titres sections */
.section-separator {
  border: 0;
  height: 2px;
  width: 100%;
  margin: 40px auto 20px auto;
  background: linear-gradient(to right, transparent, #999, transparent);
}
.section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}


/* ============================== */
/*       HOTSPOTS + BULLES        */
/* ============================== */

.hotspot-image {
  position: relative;
  max-width: 600px;
  margin: 40px auto;
  z-index: 1;
}
.hotspot-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
  position: relative;
  z-index: 1;
}

/* Pastille */
.hotspot {
  position: absolute;
  width: 26px;
  height: 26px;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;

  /* 🎯 Effet translucide / verre */
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  /* Bord doux translucide */
  border: 1.5px solid rgba(255, 255, 255, 0.45);

  /* Ombres fines et modernes */
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.18),
    inset 0 1px 2px rgba(255, 255, 255, 0.35);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}


/* Icône interne (discrète) */
.hotspot::after {
  content: "";
  font-size: 8px;
  font-weight: 900;
  display: grid;
  place-items: center;
  inset: 0;
  position: absolute;
  text-shadow: 0 0 4px rgba(0,255,170,0.45);
  pointer-events: none;
}

/* Survol */
.hotspot:hover {
  transform: translate(-50%, -50%) scale(1.35);
  box-shadow:
    0 0 14px rgba(0,255,180,0.45),
    0 0 22px rgba(0,255,180,0.25),
    0 3px 10px rgba(0,0,0,0.28),
    inset 0 1px 4px rgba(255,255,255,0.9),
    inset 0 -2px 6px rgba(0,0,0,0.2);
}

/* Bulle info */
.hotspot span {
  position: absolute;
  top: -8px;
  left: 22px;
  display: none;
  background: #fff;
  color: var(--text);
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  white-space: normal;
  min-width: 160px;
  max-width: 240px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  z-index: 10;
  font-size: 11px;
  line-height: 1.3;
}

.hotspot:hover span { display: block; }

.hotspot-list {
  margin: 6px 0 0 0;
  padding-left: 18px;
  font-size: 10px;
  color: var(--text);
}
.hotspot-list li {
  margin-bottom: 4px;
  list-style: disc;
}


/* ============================== */
/*      SLIDER / AVANTAGES        */
/* ============================== */

.advantages-title {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0f172a;
}

.slider {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 14px;
  background: transparent;
  min-height: 260px;
  position: relative;
}

.slides {
  display: flex;
  animation: slideShow 16s infinite;
}

.slides img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  background: transparent;
  display: block;
}

@keyframes slideShow {
  0%, 20%   { transform: translateX(0%); }
  25%, 45%  { transform: translateX(-100%); }
  50%, 70%  { transform: translateX(-200%); }
  75%, 100% { transform: translateX(-300%); }
}

@media (max-width: 600px) {
  .slider { min-height: 180px; }
  .slides img { height: 180px; }
}


/* ============================== */
/* IMAGE + TEXTE À DROITE (HOTSPOT LAYOUT) */
/* ============================== */

.hotspot-layout {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 32px auto;
  max-width: 1100px;
}



.hotspot-layout .hotspot-image {
  position: relative;
  flex: 1 1 50%;
}

.hotspot-layout .hotspot-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* Mobile : texte sous l’image */
@media (max-width: 800px) {

  .hotspot-layout {
    flex-direction: column !important;
    align-items: center !important;
    gap: 18px;
  }

  .hotspot-image {
    width: 100%;
  }

  .feature-text {
    width: 100%;
    margin-top: 0 !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important; /* stop animation pour éviter décalage */
  }
}


/* Texte à droite moderne */
.feature-text {
  flex: 1 1 50%;
  padding: 16px 20px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  color: #0f172a;
  font-family: system-ui, sans-serif;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);

  opacity: 0;
  transform: translateX(30px);
  animation: featureSlideIn 0.8s ease-out forwards;
}

.feature-text h2 {
  font-size: 1.6rem;
  margin: 0 0 10px;
  font-weight: 700;
}
.feature-text p {
  font-size: 0.95rem;
  margin: 0 0 10px;
  line-height: 1.5;
}
.feature-text ul {
  margin: 0;
  padding-left: 18px;
  font-size: 0.9rem;
  line-height: 1.5;
}

@keyframes featureSlideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Empilement sur mobile */
@media (max-width: 800px) {
  .hotspot-layout {
    flex-direction: column;
  }

  .feature-text {
    transform: translateX(0);
    animation: none;
  }
}


/* ============================== */
/*    MASONRY / GALERIE / LIGHTBOX */
/* ============================== */

.masonry-gallery {
  column-count: 3;
  column-gap: 12px;
  margin-top: 12px;
}
.masonry-gallery a {
  display: inline-block;
  width: 100%;
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
}
.masonry-gallery img {
  width: 100%;
  display: block;
  border-radius: 8px;
  transition: transform .3s, filter .3s;
  cursor: pointer;
}
.masonry-gallery img:hover {
  transform: scale(1.05);
  filter: brightness(1.05);
}
@media (max-width: 800px) {
  .masonry-gallery { column-count: 2; }
}
@media (max-width: 500px) {
  .masonry-gallery { column-count: 1; }
}

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,.5);
  animation: zoom .25s ease;
}
@keyframes zoom {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* Galerie carrousel (#galerie) */
#galerie {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px auto;
  flex-wrap: wrap;
  aspect-ratio: auto !important;
  overflow: visible !important;
}
#galerie .gal-img {
  width: 100%;
  max-width: 350px;
  height: auto !important;
  object-fit: contain !important;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}
.gal-btn {
  background: #ffffffcc;
  border: 1px solid #bbb;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 1.2rem;
  cursor: pointer;
  user-select: none;
}
.gal-btn:focus {
  outline: 2px solid #1976d2;
  outline-offset: 2px;
}
@media (max-width: 600px) {
  #galerie .gal-img {
    max-width: 90vw;
    max-height: 70vh;
  }
}

/* Miniatures */
.gal-thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 720px;
  margin: 12px auto 0;
  padding: 0;
}
.gal-thumb {
  width: 110px;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #f9f9f9;
  padding: 4px;
  cursor: pointer;
}
.gal-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.gal-thumb.is-active {
  outline: 2px solid #1976d2;
  outline-offset: 2px;
}


/* ============================== */
/*   KIT LABOUR (HOVER IMAGE)     */
/* ============================== */

.kit-labour-wrapper {
  position: relative;
  display: inline-block;
}

.kit-labour-image {
  position: absolute;
  top: 0;
  left: 120%;
  width: 250px;
  display: none;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  padding: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 50;
}

.kit-labour-hover:hover + .kit-labour-image {
  display: block;
}


/* Carte moderne */
.social-card {
  margin-top: 32px;
  padding: 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  animation: fadeSlide 0.6s ease forwards;
  text-align: center;
}

.social-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px;
}

/* Conteneur */
.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Boutons modernes */
.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 18px;
  border-radius: 14px;

  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;

  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.4);

  color: #0f172a;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

/* Icône */
.social-btn .icon svg {
  transform: translateY(1px);
}

/* Hover effet premium */
.social-btn:hover {
  transform: translateY(-4px) scale(1.04);
  background: rgba(255,255,255,0.30);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* Couleurs personnalisées */
.social-btn.instagram:hover {
  box-shadow: 0 0 18px rgba(225, 48, 108, 0.45);
}

.social-btn.youtube:hover {
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.45);
}

/* Animation d’apparition */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Hotspots plus petits sur mobile */
@media (max-width: 600px) {
  .hotspot {
    width: 20px;
    height: 20px;
  }
}
/* Bulles d’info: centrées sous la pastille sur mobile */
@media (max-width: 600px) {
  .hotspot span {
    top: 26px;                 /* sous la pastille */
    left: 50%;                 /* centrée horizontalement */
    transform: translateX(-50%);
    min-width: 0;
    max-width: 72vw;           /* ne dépasse jamais la largeur de l’écran */
    text-align: center;
    white-space: normal;
  }
}

nav.nav {
  margin-bottom: 150px;   /* augmente la valeur selon ton besoin */
}
@media (max-width: 600px) {
  nav.nav {
    margin-bottom: 40px !important; /* ou même 10px si tu veux ultra-compact */
  }
}
.social-btn.facebook {
  background: #1877F2;
}

.social-btn.tiktok {
  background: linear-gradient(135deg, #ff0050, #00f2ea);
  color: #fff;
}

.contact-card {
  margin-top: 22px;
  padding: 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.contact-card h3 {
  font-size: 1.45rem;
  margin: 0 0 6px;
  color: #0f172a;
  font-weight: 700;
}

.contact-card p {
  margin: 0 0 16px;
  color: #334155;
  font-size: 1rem;
}

/* Container */
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* Boutons modernes */
.contact-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  background: #f1f5f9;
  color: #0f172a;
  transition: all 0.25s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Icônes rondes */
.contact-btn .icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Couleurs spéciales */
.contact-btn.whatsapp .icon { background: #25D366; }
.contact-btn.whatsapp .icon svg { width: 20px; height: 20px; }

.contact-btn.instagram .icon { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4); }

.contact-btn.phone .icon {
  background: #0ea5e9;
  font-size: 1.2rem;
  color: #fff;
}

/* --- VERSION MOBILE --- */
@media (max-width: 600px) {

  .contact-card {
    padding: 16px;
    border-radius: 14px;
  }

  .contact-card h3 {
    font-size: 1.25rem;
  }

  .contact-links {
    gap: 10px;
  }

  .contact-btn {
    padding: 10px 14px;
    font-size: 0.95rem;
    border-radius: 40px;
  }

  .contact-btn .icon {
    width: 26px;
    height: 26px;
    box-shadow: none;
  }

  .contact-btn .icon svg {
    width: 16px;
    height: 16px;
  }

  .contact-btn.phone .icon {
    font-size: 1rem;
  }
}

.contact-card {
  position: relative;
  z-index: 1;
}


/* Version MOBILE par défaut (sans gros espace) */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin: 28px 0 28px;   /* ou même 0 0 28px si tu veux aucun espace en haut */
}

/* Version ORDINATEUR : on ajoute le gros espace au-dessus */
.product {
  position: relative;
  display: inline-block;
}

.badge-epuise {
  position: absolute;
  top: 10px;
  left: 10px;
  background: red;
  color: white;
  padding: 5px 10px;
  font-weight: bold;
  border-radius: 5px;
  font-size: 14px;
}

.badge-enstock {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgb(0, 132, 33);
  color: white;
  padding: 5px 10px;
  font-weight: bold;
  border-radius: 5px;
  font-size: 14px;
}

@media (max-width: 380px) {
  .hero {
    margin-top: 6px !important;   /* réduit l’espace avant */
    margin-bottom: 12px !important; /* réduit l’espace avant la bannière */
  }
}
