@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@500;600;700&family=Dancing+Script:wght@600;700&display=swap');

/* ==========================================================================
   GMD – GROUP MELYANN DISTRIBUTION
   Feuille de Styles Globale B2B & Mobile-First
   Charte Graphique Officielle : Violet Royal (#2B0957) & Or / Ambre (#E5A910)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Variables & Design System Tokens (Charte Graphique Officielle)
   -------------------------------------------------------------------------- */
:root {
  /* Couleurs Principales - Violet Royal GMD */
  --color-primary: #2b0957;
  --color-primary-dark: #190533;
  --color-primary-light: #3d0e7a;
  --color-primary-rgb: 43, 9, 87;

  /* Accents Or & Jaune Dégradé GMD */
  --color-accent: #ffd000;
  --color-accent-hover: #ffe04d;
  --color-accent-dark: #e5a910;
  --color-accent-light: #fffbeb;
  --color-accent-glow: rgba(255, 208, 0, 0.4);
  --color-accent-rgb: 255, 208, 0;
  --gradient-yellow: linear-gradient(135deg, #fff085 0%, #ffd000 50%, #f5af00 100%);
  --gradient-yellow-hover: linear-gradient(135deg, #fff8b3 0%, #ffe04d 50%, #f5b900 100%);
  --gradient-yellow-gold: linear-gradient(135deg, #ffea79 0%, #ffd000 45%, #e5a910 100%);

  /* WhatsApp & Communication */
  --color-whatsapp: #25d366;
  --color-whatsapp-hover: #20ba5a;
  --color-whatsapp-dark: #128c7e;

  /* Surfaces & Neutres - Teinte Douce Lavande / Améthyste #c3b9cf */
  --color-bg: #f4f0f7;
  --color-bg-lavender: #c3b9cf;
  --color-bg-light: #f8f6fb;
  --color-surface: #ffffff;
  --color-surface-elevated: #ffffff;
  --color-surface-subtle: #ede7f3;
  --color-border: #dcd4e4;
  --color-border-hover: #c3b9cf;

  /* Typographie & Textes */
  --color-text-main: #0f172a;
  --color-text-body: #334155;
  --color-text-muted: #64748b;
  --color-text-inverted: #ffffff;

  /* Statuts */
  --color-success: #10b981;
  --color-info: #0ea5e9;
  --color-warning: #f59e0b;

  /* Typographies */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Éléments d'interface */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  /* Ombres */
  --shadow-sm: 0 2px 4px rgba(43, 9, 87, 0.04);
  --shadow-md: 0 6px 16px rgba(43, 9, 87, 0.08);
  --shadow-lg: 0 16px 36px rgba(43, 9, 87, 0.12);
  --shadow-glow: 0 0 25px rgba(229, 169, 16, 0.3);
  --shadow-drawer: -6px 0 30px rgba(25, 5, 51, 0.25);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  /* Conteneur */
  --container-max: 1280px;
}

/* --------------------------------------------------------------------------
   2. Reset & Normalisation de base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-body);
  line-height: 1.6;
  padding-bottom: 80px;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

button, input, select, textarea {
  font: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* --------------------------------------------------------------------------
   3. Barre Supérieure & Header
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--color-primary-dark);
  color: #d1d5db;
  font-size: 0.8125rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(229, 169, 16, 0.2);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-location i {
  color: var(--color-accent);
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #f1f5f9;
  font-weight: 500;
}

.top-bar-link:hover {
  color: var(--color-accent);
}

.top-bar-badge {
  background: rgba(229, 169, 16, 0.2);
  color: var(--color-accent);
  border: 1px solid rgba(229, 169, 16, 0.4);
  padding: 0.15rem 0.65rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.75rem;
}

/* Main Navigation Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(43, 9, 87, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--color-accent);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  gap: 1rem;
}

/* Brand Logo avec Versions Bureau (Cercle Fond Blanc) & Mobile */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo .logo-desktop {
  display: block;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #ffffff;
  padding: 2px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  border: 2px solid var(--color-accent);
  object-fit: cover;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.brand-logo .logo-desktop:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(229, 169, 16, 0.5);
}

.brand-logo .logo-mobile {
  display: none;
  height: 44px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .brand-logo .logo-desktop {
    display: none !important;
  }
  .brand-logo .logo-mobile {
    display: block !important;
    height: 42px;
  }
}

/* Logo Pied de Page Version Cercle Fond Blanc */
.footer-logo-desktop-circle {
  display: inline-block;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #ffffff;
  padding: 3px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  border: 2.5px solid var(--color-accent);
  object-fit: cover;
  margin-bottom: 1.15rem;
  transition: transform 0.25s ease;
}

.footer-logo-desktop-circle:hover {
  transform: scale(1.06);
}

/* Search Bar in Header */
.header-search {
  flex: 1;
  max-width: 480px;
  position: relative;
  display: none;
}

@media (min-width: 768px) {
  .header-search {
    display: block;
  }
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(229, 169, 16, 0.35);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.5rem 0.35rem 1rem;
  transition: all var(--transition-fast);
}

.search-input-wrapper:focus-within {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(229, 169, 16, 0.25);
}

.search-input-wrapper i {
  color: var(--color-accent);
  margin-right: 0.6rem;
  font-size: 0.95rem;
}

.search-input-wrapper input {
  background: transparent;
  width: 100%;
  color: #ffffff;
  font-size: 0.875rem;
}

.search-input-wrapper input::placeholder {
  color: #cbd5e1;
}

.search-btn {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  transition: background var(--transition-fast);
  white-space: nowrap;
}

.search-btn:hover {
  background: var(--color-accent-hover);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-header-call {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(229, 169, 16, 0.35);
  transition: all var(--transition-fast);
}

@media (min-width: 1024px) {
  .btn-header-call {
    display: flex;
  }
}

.btn-header-call:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-accent);
}

.btn-header-call i {
  color: var(--color-accent);
}

.btn-cart-quote {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.875rem;
  box-shadow: 0 4px 14px rgba(229, 169, 16, 0.35);
  transition: all var(--transition-fast);
  position: relative;
}

.btn-cart-quote:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(229, 169, 16, 0.45);
}

.quote-count-badge {
  background: var(--color-primary-dark);
  color: var(--color-accent);
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
}

.btn-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.2rem;
  border: 1px solid rgba(229, 169, 16, 0.3);
}

@media (min-width: 1024px) {
  .btn-menu-toggle {
    display: none;
  }
}

/* Secondary Navigation Bar */
.sub-nav {
  background-color: var(--color-primary-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: none;
}

@media (min-width: 1024px) {
  .sub-nav {
    display: block;
  }
}

.sub-nav-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.65rem 0;
  overflow-x: auto;
}

.sub-nav-item a {
  color: #e2e8f0;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.sub-nav-item a:hover,
.sub-nav-item.active a {
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.08);
}

.sub-nav-item a i {
  color: var(--color-accent);
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   4. Mobile Quick Action Bar (Supprimée Définitivement)
   -------------------------------------------------------------------------- */
.mobile-action-bar,
.mob-action-btn,
.admin-mobile-bottom-nav,
#adminMobileBottomNav {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  left: -99999px !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
}

/* --------------------------------------------------------------------------
   5. Bannières Publicitaires Promotionnelles B2B (Pro Ads Carousels)
   -------------------------------------------------------------------------- */
.promo-banners-section {
  padding: 2rem 0 0;
  background: var(--color-bg);
}

.banner-carousel-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(229, 169, 16, 0.4);
}

.banner-slide {
  position: relative;
  min-height: 280px;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  display: flex;
  align-items: center;
  padding: 2.5rem 2rem;
  color: #ffffff;
  overflow: hidden;
}

@media (min-width: 768px) {
  .banner-slide {
    min-height: 320px;
    padding: 3rem;
  }
}

.banner-bg-graphics {
  position: absolute;
  right: -5%;
  top: -20%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(229, 169, 16, 0.25) 0%, rgba(43, 9, 87, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.banner-content-box {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.banner-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.banner-title span {
  color: var(--color-accent);
}

.banner-subtitle {
  font-size: 0.9375rem;
  color: #e2e8f0;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* --------------------------------------------------------------------------
   6. Hero Section avec Visuel Africain
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #160333 0%, #2b0957 60%, #3d0e7a 100%);
  color: #ffffff;
  padding: 3rem 0 4rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(229, 169, 16, 0.2);
}

@media (min-width: 992px) {
  .hero-section {
    padding: 4.5rem 0 5.5rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(229, 169, 16, 0.15);
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.hero-title .highlight {
  color: var(--color-accent);
  position: relative;
  display: inline-block;
}

.hero-slogan {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: #e2e8f0;
  margin-bottom: 2rem;
  max-width: 620px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #fff085 0%, #ffd000 50%, #f5af00 100%);
  color: #120733;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(245, 185, 0, 0.35);
  transition: all var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #fff8b3 0%, #ffe04d 50%, #f5b900 100%);
  color: #120733;
  box-shadow: 0 12px 25px rgba(245, 185, 0, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(229, 169, 16, 0.4);
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--color-accent);
}

.btn-whatsapp-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--color-whatsapp);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  transition: all var(--transition-fast);
}

.btn-whatsapp-hero:hover {
  background: var(--color-whatsapp-hover);
  transform: translateY(-2px);
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 576px) {
  .hero-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(229, 169, 16, 0.25);
  padding: 0.85rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.75rem;
  color: #e2e8f0;
  margin-top: 0.25rem;
  font-weight: 500;
}

/* Hero Media Box */
.hero-media-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(229, 169, 16, 0.4);
}

.hero-media-box img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.hero-media-box:hover img {
  transform: scale(1.03);
}

.hero-overlay-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(25, 5, 51, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hero-overlay-badge i {
  color: var(--color-accent);
  font-size: 1.5rem;
}

.hero-overlay-text strong {
  display: block;
  color: #ffffff;
  font-size: 0.875rem;
}

.hero-overlay-text span {
  color: #cbd5e1;
  font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   7. Reassurance Strip
   -------------------------------------------------------------------------- */
.reassurance-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
  box-shadow: var(--shadow-sm);
}

.reassurance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .reassurance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reassurance-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.reassurance-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-accent-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(229, 169, 16, 0.4);
}

.reassurance-info h4 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.2;
}

.reassurance-info p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   8. Section Headers
   -------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-accent-light);
  color: var(--color-primary);
  border: 1px solid var(--color-accent);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-text-main);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   9. Categories Grid Section
   -------------------------------------------------------------------------- */
.categories-section {
  padding: 4rem 0;
  background-color: #f8fafc;
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.category-card {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.category-card-image-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.category-card-image-wrap img {
  max-height: 160px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
  transition: transform var(--transition-smooth);
}

.category-card:hover .category-card-image-wrap img {
  transform: scale(1.08);
}

.category-badge-chip {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: rgba(25, 5, 51, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-accent);
}

.category-icon-floating {
  position: absolute;
  bottom: -18px;
  left: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-accent);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(229, 169, 16, 0.4);
  z-index: 2;
}

.category-card-content {
  padding: 2rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.category-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.category-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}

.category-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.category-tag-item {
  font-size: 0.75rem;
  background: var(--color-surface-subtle);
  color: var(--color-text-body);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.category-cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-surface-subtle);
  color: var(--color-text-main);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.category-card:hover .category-cta-btn {
  background: var(--color-primary);
  color: #ffffff;
}

.category-card:hover .category-cta-btn i {
  color: var(--color-accent);
  transform: translateX(3px);
}

.category-cta-btn i {
  transition: transform var(--transition-fast);
}

/* --------------------------------------------------------------------------
   9b. Bandeau de Réassurance B2B (Visible Desktop / Masqué Mobile)
   -------------------------------------------------------------------------- */
.reassurance-strip {
  background: #ffffff;
  padding: 1.25rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.reassurance-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(229, 169, 16, 0.15);
  color: #e5a910;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.reassurance-info h4 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.15rem;
}

.reassurance-info p {
  font-size: 0.75rem;
  color: #64748b;
  margin: 0;
}

/* --------------------------------------------------------------------------
   9c. Grande Bannière de Cotation Chantier (Style Luxe B2B)
   -------------------------------------------------------------------------- */
.animated-mid-promo-section {
  padding: 1rem 0 2.5rem 0;
}

.animated-promo-banner-card {
  background: linear-gradient(135deg, #1e0538 0%, #0f172a 100%);
  border: 1.5px solid rgba(229, 169, 16, 0.35);
  border-radius: 20px;
  padding: 2.25rem 2.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: 0 20px 45px -10px rgba(43, 9, 87, 0.35), 0 0 30px rgba(229, 169, 16, 0.12);
  position: relative;
  overflow: hidden;
}

.animated-promo-banner-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(229, 169, 16, 0.18) 0%, rgba(229, 169, 16, 0) 70%);
  pointer-events: none;
}

.promo-left-content {
  flex: 1;
  min-width: 280px;
  max-width: 650px;
}

.promo-left-content h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.2px;
}

.promo-left-content h3 i {
  color: #f59e0b;
}

.promo-left-content p {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

.promo-right-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-banner-glow {
  padding: 0.85rem 1.45rem;
  background: linear-gradient(135deg, #25d366 0%, #16a34a 100%);
  color: #ffffff;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-banner-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.btn-banner-whatsapp {
  padding: 0.85rem 1.45rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-banner-whatsapp:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #ffffff;
  transform: translateY(-2px);
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   10. Products Catalog Section (Mode Catalogue B2B - Demande de Devis)
   -------------------------------------------------------------------------- */
.catalog-section {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, #f7f4fa 0%, #ede7f3 50%, #f7f4fa 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* Filter Tabs & Search Controls */
.catalog-controls-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.catalog-search-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .catalog-search-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.catalog-search-box {
  position: relative;
  flex: 1;
  max-width: 500px;
}

.catalog-search-box input {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 0.7rem 1rem 0.7rem 2.75rem;
  font-size: 0.9375rem;
  color: var(--color-text-main);
  transition: all var(--transition-fast);
}

.catalog-search-box input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(229, 169, 16, 0.2);
}

.catalog-search-box i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
}

.catalog-counter-badge {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 600;
  white-space: nowrap;
}

.catalog-counter-badge span {
  color: var(--color-primary);
  font-weight: 800;
}

/* Category Filter Pills */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}

.filter-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #ffffff;
  color: var(--color-text-body);
  border: 1px solid var(--color-border);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.filter-tab-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-primary);
}

.filter-tab-btn.active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.filter-tab-btn.active i {
  color: var(--color-accent);
}

/* Product Cards Grid */
/* --------------------------------------------------------------------------
   10. Grille de Produits B2B & Cartes Ultra-Professionnelles
   -------------------------------------------------------------------------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
}

@media (min-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.35rem;
  }
}

.product-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px -2px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -8px rgba(43, 9, 87, 0.12), 0 4px 10px rgba(0, 0, 0, 0.05);
  border-color: #cbd5e1;
}

/* Badge de Catégorie Flottant */
.product-badge-cat {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #f8fafc;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 99px;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  letter-spacing: 0.02em;
}

.product-badge-cat.cat-epi {
  background: rgba(43, 9, 87, 0.88);
  color: #fbbf24;
  border-color: rgba(251, 191, 36, 0.3);
}

.product-badge-cat.cat-outillage {
  background: rgba(2, 132, 199, 0.88);
  color: #ffffff;
}

.product-badge-cat.cat-geologie {
  background: rgba(217, 119, 6, 0.88);
  color: #ffffff;
}

.product-badge-cat.cat-electricite {
  background: rgba(109, 40, 217, 0.88);
  color: #ffffff;
}

.product-badge-cat.cat-chimie {
  background: rgba(13, 148, 136, 0.88);
  color: #ffffff;
}

/* Bouton Favoris Coeur */
.btn-fav-card {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid #e2e8f0;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  cursor: pointer;
  z-index: 5;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.btn-fav-card:hover {
  transform: scale(1.15);
  background: #ffffff;
  color: #ef4444;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
}

.btn-fav-card.active {
  background: #fef2f2;
  border-color: #fca5a5;
  color: #ef4444;
}

/* Zone Image Produit */
.product-image-wrap {
  height: 190px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem 0.5rem 1rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #f1f5f9;
}

.product-image-wrap img {
  max-width: 82%;
  max-height: 82%;
  object-fit: contain;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.04));
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.09);
}

/* Corps de la Carte */
.product-card-body {
  padding: 1rem 1.15rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.product-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
}

.product-sku-tag {
  color: #64748b;
  font-weight: 700;
  background: #f1f5f9;
  padding: 1px 6px;
  border-radius: 4px;
}

.product-stock-tag {
  color: #10b981;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5rem;
  transition: color 0.15s;
}

.product-card:hover .product-card-title {
  color: #2b0957;
}

/* Bouton Violet Demander un Devis (Luxe B2B) */
.btn-card-purple-quote {
  width: 100%;
  padding: 0.65rem 0.85rem;
  background: linear-gradient(135deg, #2b0957 0%, #4c1d95 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 10px rgba(43, 9, 87, 0.2);
}

.btn-card-purple-quote:hover {
  background: linear-gradient(135deg, #e5a910 0%, #d97706 100%);
  color: #0f172a;
  border-color: #d97706;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(229, 169, 16, 0.35);
}

.btn-card-purple-quote:hover i {
  color: #0f172a !important;
}

/* Bouton Toggle Catalogue */
.btn-toggle-catalog {
  padding: 0.75rem 2rem;
  background: #0f172a;
  color: #ffffff;
  border: 1.5px solid #0f172a;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.btn-toggle-catalog:hover {
  background: #2b0957;
  border-color: #2b0957;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(43, 9, 87, 0.25);
}

.btn-toggle-catalog.outline {
  background: #ffffff;
  color: #0f172a;
  border-color: #cbd5e1;
}

.btn-toggle-catalog.outline:hover {
  background: #f8fafc;
  border-color: #0f172a;
}

/* Empty Catalog State */
.catalog-empty-state {
  text-align: center;
  padding: 4rem 1rem;
  grid-column: 1 / -1;
}

.catalog-empty-state i {
  font-size: 3rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.catalog-empty-state h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-text-main);
  margin-bottom: 0.5rem;
}

.catalog-empty-state p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   11. Section "Pourquoi choisir GMD ?"
   -------------------------------------------------------------------------- */
.why-section {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, #ede7f3 0%, #f4f0f7 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.why-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(43, 9, 87, 0.2);
}

.why-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 0.5rem;
}

.why-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   12. Section "Comment Commander un Devis ?" (3 Étapes)
   -------------------------------------------------------------------------- */
.how-section {
  padding: 4.5rem 0;
  background: var(--color-primary);
  color: #ffffff;
}

.how-section .section-title {
  color: #ffffff;
}

.how-section .section-subtitle {
  color: #e2e8f0;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(229, 169, 16, 0.3);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  transition: all var(--transition-normal);
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-accent);
  transform: translateY(-4px);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 1.5rem;
  width: 36px;
  height: 36px;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(229, 169, 16, 0.4);
}

.step-content {
  margin-top: 0.5rem;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.875rem;
  color: #e2e8f0;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   13. Formulaire de Devis Rapide (Section Homepage)
   -------------------------------------------------------------------------- */
.quick-quote-section {
  padding: 4.5rem 0;
  background: #ffffff;
}

.quick-quote-card {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(229, 169, 16, 0.35);
}

@media (min-width: 992px) {
  .quick-quote-card {
    padding: 3.5rem 3rem;
  }
}

.quick-quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 992px) {
  .quick-quote-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
  }
}

.quote-info-side h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.quote-info-side p {
  color: #e2e8f0;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.direct-contacts-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.direct-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #f1f5f9;
  font-size: 0.9375rem;
}

.direct-contact-item i {
  color: var(--color-accent);
  font-size: 1.25rem;
  width: 24px;
}

/* Form Styles */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-group.full-width {
    grid-column: span 2;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #e2e8f0;
}

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

.form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(229, 169, 16, 0.35);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  color: #ffffff;
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(229, 169, 16, 0.25);
}

.form-control::placeholder {
  color: #94a3b8;
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

.btn-submit-quote {
  background: linear-gradient(135deg, var(--color-accent) 0%, #d97706 100%);
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  padding: 0.95rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 8px 20px rgba(229, 169, 16, 0.35);
  transition: all var(--transition-fast);
  margin-top: 0.5rem;
  text-transform: uppercase;
}

.btn-submit-quote:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%);
  color: #ffffff;
  box-shadow: 0 12px 25px rgba(229, 169, 16, 0.45);
}

/* --------------------------------------------------------------------------
   14. Modal Fiche Produit (Fiche Article & Devis Direct)
   -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(25, 5, 51, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 850px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.modal-backdrop.open .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: #f1f5f9;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 1.1rem;
  z-index: 10;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: #e2e8f0;
  color: var(--color-text-main);
}

.modal-product-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .modal-product-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.modal-product-media {
  background: #ffffff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .modal-product-media {
    border-bottom: none;
    border-right: 1px solid var(--color-border);
  }
}

.modal-product-media img {
  max-height: 280px;
  max-width: 100%;
  object-fit: contain;
}

.modal-product-details {
  padding: 2rem 1.5rem;
}

.modal-cat-tag {
  display: inline-block;
  background: var(--color-accent-light);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
  border: 1px solid var(--color-accent);
}

.modal-product-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-text-main);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.modal-specs-table {
  width: 100%;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  border-collapse: collapse;
}

.modal-specs-table tr {
  border-bottom: 1px solid var(--color-border);
}

.modal-specs-table td {
  padding: 0.4rem 0;
}

.modal-specs-table td:first-child {
  font-weight: 600;
  color: var(--color-text-muted);
  width: 40%;
}

.modal-specs-table td:last-child {
  color: var(--color-primary);
  font-weight: 600;
}

.modal-rfq-box {
  background: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1rem;
}

.modal-rfq-box h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-rfq-box h4 i {
  color: var(--color-accent);
}

.modal-rfq-box .form-control {
  background: #ffffff;
  color: var(--color-text-main);
  border-color: var(--color-border);
  font-size: 0.875rem;
}

.modal-rfq-box .form-label {
  color: var(--color-text-main);
}

/* --------------------------------------------------------------------------
   15. Panier de Devis Drawer (Slide-Over Panier B2B)
   -------------------------------------------------------------------------- */
.quote-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 480px;
  max-width: 95vw;
  height: 100vh;
  background: #ffffff;
  z-index: 1300;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  box-shadow: -10px 0 45px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}

.quote-drawer.open {
  transform: translateX(0);
}

.drawer-top-bar {
  padding: 1.25rem 1.75rem;
  background: var(--color-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--color-accent);
}

.drawer-top-bar h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
}

.drawer-top-bar h3 i {
  color: var(--color-accent);
}

.drawer-items-list {
  padding: 1.25rem 1.75rem;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: #ffffff;
}

.drawer-item-card {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 0.85rem;
  padding: 0.85rem;
  background: #f8fafc;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  align-items: center;
  transition: all 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.drawer-item-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(43, 9, 87, 0.06);
}

.drawer-item-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid #eef2f6;
  padding: 2px;
}

.drawer-item-info h5 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.drawer-item-info span {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  background: #ffffff;
  margin-top: 0.35rem;
  overflow: hidden;
}

.qty-stepper button {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
  background: #f1f5f9;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

.qty-stepper button:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.qty-stepper span {
  padding: 0 0.65rem;
  font-weight: 800;
  font-size: 0.85rem;
  color: #0f172a;
}

.drawer-item-remove {
  color: #ef4444;
  padding: 0.5rem;
  font-size: 0.95rem;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.18s;
}

.drawer-item-remove:hover {
  background: #fee2e2;
  transform: scale(1.1);
}

.drawer-empty-state {
  text-align: center;
  padding: 3.5rem 1.5rem;
  color: #64748b;
}

.drawer-empty-state i {
  font-size: 3rem;
  color: #cbd5e1;
  margin-bottom: 1rem;
}

.drawer-footer-form {
  padding: 1.5rem 1.75rem 2rem;
  background: #f8fafc;
  border-top: 1.5px solid #e2e8f0;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.03);
}

.drawer-form-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.95rem;
  font-weight: 800;
  color: #1e0836;
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.drawer-form-title i {
  color: #f59e0b;
}

.drawer-footer-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
}

.drawer-footer-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.drawer-footer-form .form-group.full-width {
  grid-column: span 2;
}

.drawer-footer-form .form-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.drawer-footer-form .form-label .required {
  color: #e5a910;
  font-weight: 900;
}

.drawer-footer-form .form-control {
  background: #ffffff;
  border: 1.5px solid #dcd4e4;
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  color: #0f172a;
  font-weight: 500;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.drawer-footer-form .form-control:focus {
  border-color: #2b0957;
  background: #ffffff;
  box-shadow: 0 0 0 3.5px rgba(43, 9, 87, 0.12);
  outline: none;
}

.drawer-footer-form .form-control::placeholder {
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 400;
}

.drawer-footer-form textarea.form-control {
  resize: vertical;
  min-height: 65px;
  line-height: 1.4;
}

.drawer-footer-form .btn-submit-quote {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 0.9rem 1.5rem;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.35);
  margin-top: 0.85rem;
  width: 100%;
  text-transform: uppercase;
}

.drawer-footer-form .btn-submit-quote:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.45);
}

/* --------------------------------------------------------------------------
   16. Success Confirmation Modal
   -------------------------------------------------------------------------- */
.success-modal-card {
  max-width: 580px;
  text-align: center;
  padding: 2.5rem 1.75rem;
}

.success-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.12);
  color: var(--color-success);
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.success-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.success-ref-badge {
  display: inline-block;
  background: var(--color-accent-light);
  color: var(--color-primary-dark);
  border: 1px solid var(--color-accent);
  font-family: monospace;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}

.success-desc {
  font-size: 0.9375rem;
  color: var(--color-text-body);
  line-height: 1.5;
  margin-bottom: 1.75rem;
}

.success-actions-box {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-wa-direct {
  background: var(--color-whatsapp);
  color: #ffffff;
  font-weight: 700;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-fast);
}

.btn-wa-direct:hover {
  background: var(--color-whatsapp-hover);
  transform: translateY(-2px);
}

.btn-print-summary {
  background: var(--color-surface-subtle);
  color: var(--color-text-main);
  border: 1px solid var(--color-border);
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.btn-print-summary:hover {
  background: #e2e8f0;
}

/* --------------------------------------------------------------------------
   17. Footer & Mentions de Paiement (Design Pro B2B Haute Précision GMD)
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&display=swap');

.main-footer {
  background: linear-gradient(180deg, #120733 0%, #0d0426 50%, #070214 100%);
  color: #cbd5e1;
  padding-top: 3.5rem;
  border-top: 2px solid #e5a910;
  position: relative;
  overflow: hidden;
}

.footer-top-5grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  margin-bottom: 2.85rem;
  align-items: start;
}

@media (min-width: 640px) {
  .footer-top-5grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .footer-top-5grid {
    grid-template-columns: 1.35fr 0.95fr 1.15fr 1.35fr 1.2fr;
    gap: 1.75rem;
  }
}

/* Colonne 1 : Brand & Présentation */
.footer-col-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand-header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}

.footer-logo-circle-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #ffffff;
  padding: 0;
  border: 3px solid #f5b900;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6), 0 0 16px rgba(245, 185, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem auto;
  overflow: hidden;
  position: relative;
}

.footer-logo-circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.footer-slogan-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  color: #f5b900;
  margin: 0 0 0.75rem 0;
  letter-spacing: 0.2px;
  text-align: center;
  width: 100%;
}

.footer-brand-description {
  font-size: 0.84rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0 0 1.15rem 0;
}

.footer-brand-description strong {
  color: #ffffff;
  font-weight: 700;
}

.footer-hours-box {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.80rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(245, 185, 0, 0.12);
  border: 1px solid rgba(245, 185, 0, 0.35);
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  max-width: 100%;
  box-sizing: border-box;
}

.footer-hours-box i {
  color: #f5b900;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.footer-hours-box span {
  line-height: 1.35;
}

/* Titres de Colonnes */
.footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 1.25rem 0;
  position: relative;
  padding-bottom: 0.45rem;
  letter-spacing: -0.2px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2.5px;
  background: #e5a910;
  border-radius: var(--radius-full, 99px);
  box-shadow: 0 0 8px rgba(229, 169, 16, 0.5);
}

/* Colonne 2 : Liens Rapides Chevrons */
.footer-chevron-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-chevron-list a {
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-chevron-list .chevron-gold {
  color: #e5a910;
  font-weight: 900;
  font-size: 0.85rem;
  font-family: 'Outfit', sans-serif;
  transition: transform 0.18s ease, color 0.18s ease;
}

.footer-chevron-list a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-chevron-list a:hover .chevron-gold {
  transform: translateX(2px);
  color: #ffd466;
}

/* Colonne 3 : Nos Services */
.footer-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-services-list a {
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.35;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-icon-gold {
  color: #f5b900;
  font-size: 0.95rem;
  margin-top: 0.12rem;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
  transition: transform 0.18s ease, color 0.18s ease;
}

.footer-services-list a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-services-list a:hover .service-icon-gold {
  transform: scale(1.15);
  color: #ffd466;
}

/* Colonne 4 : Direction & Contact */
.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: #cbd5e1;
  line-height: 1.45;
}

.contact-icon-gold {
  color: #f5b900;
  font-size: 1.05rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.contact-icon-green {
  color: #25d366;
  font-size: 1.15rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.contact-text-block {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-text-block span {
  white-space: nowrap;
}

.contact-text-block a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.15s ease;
}

.contact-text-block a:hover {
  color: #f5b900;
}

.whatsapp-green-link {
  color: #25d366 !important;
  font-weight: 800 !important;
}

.whatsapp-green-link:hover {
  color: #4ade80 !important;
  text-decoration: underline;
}

.email-link {
  color: #cbd5e1 !important;
  font-weight: 500 !important;
  font-size: 0.78rem !important;
  white-space: nowrap;
  word-break: normal;
}

.email-link:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

/* Colonne 5 : Suivez-nous & Signature */
.footer-social-intro {
  font-size: 0.80rem;
  line-height: 1.45;
  color: #cbd5e1;
  margin: 0 0 0.9rem 0;
}

.footer-social-real-icons {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: nowrap;
  margin-bottom: 1.4rem;
}

.social-btn-circle {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.92rem;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.45);
}

.social-btn-circle:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}

.social-btn-circle:active {
  transform: scale(0.95);
}

.social-facebook { background: #1877F2; }
.social-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-tiktok { background: #000000; border: 1.5px solid #2d2d2d; }
.social-linkedin { background: #0A66C2; }
.social-youtube { background: #FF0000; }
.social-whatsapp { background: #25D366; }

.footer-signature-artistic {
  font-family: 'Caveat', 'Dancing Script', cursive;
  color: #f5b900;
  margin-top: 0.5rem;
  line-height: 1.1;
  text-align: right;
  padding-right: 0.4rem;
}

.signature-curve-line {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
}

.sig-word-1 {
  font-size: 1.95rem;
  font-weight: 600;
  color: #ffd466;
  transform: rotate(-4deg);
  transform-origin: right center;
  margin-right: 0.8rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  font-style: italic;
}

.sig-word-2 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #f5b900;
  transform: rotate(-3deg);
  transform-origin: right center;
  white-space: nowrap;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  font-style: italic;
}

/* ==========================================================================
   Bandeau Central : Modes de Paiement
   ========================================================================== */
.footer-payments-strip {
  background: rgba(10, 3, 26, 0.75);
  border-top: 1px solid rgba(229, 169, 16, 0.35);
  border-bottom: 1px solid rgba(229, 169, 16, 0.35);
  padding: 1.15rem 0;
}

.footer-payments-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-payments-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.payments-shield-icon {
  color: #f5b900;
  font-size: 1.35rem;
}

.footer-payments-badges {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.payment-badge-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  padding: 3px 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.payment-badge-pill:hover {
  transform: translateY(-2px);
  border-color: #f5b900;
  background: rgba(255, 255, 255, 0.12);
}

.payment-badge-pill svg {
  display: block;
  height: 22px;
  width: auto;
  border-radius: 4px;
}

/* ==========================================================================
   Bandeau Inférieur : Copyright & Fièrement Ivoirien
   ========================================================================== */
.footer-bottom-bar {
  background: #06010f;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.copyright-line-main {
  color: #e2e8f0;
  font-size: 0.82rem;
  margin: 0;
}

.copyright-line-sub {
  color: #94a3b8;
  font-size: 0.74rem;
  margin: 0;
}

.footer-bottom-center {
  display: flex;
  align-items: center;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  font-size: 0.76rem;
}

.footer-legal-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-legal-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.legal-sep {
  color: rgba(255, 255, 255, 0.2);
}

.fierement-ivoirien-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(229, 169, 16, 0.35);
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
}

.ci-map-outline {
  flex-shrink: 0;
}

.fierement-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.f-top {
  font-size: 0.66rem;
  font-weight: 900;
  color: #e5a910;
  letter-spacing: 0.8px;
}

.f-bot {
  font-size: 0.66rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.8px;
}

.flag-civ-box {
  display: flex;
  width: 26px;
  height: 17px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.flag-stripe {
  flex: 1;
  height: 100%;
}

.flag-stripe.orange { background: #FF8200; }
.flag-stripe.white { background: #FFFFFF; }
.flag-stripe.green { background: #009A44; }

/* Responsive adjustments */
@media (max-width: 900px) {
  .footer-payments-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 1rem;
  }
  .footer-legal-links {
    justify-content: center;
  }
}

.desktop-only-admin-link {
  display: inline-block;
  color: #64748b;
  text-decoration: underline;
  margin-left: 4px;
  transition: color 0.15s ease;
}

.desktop-only-admin-link:hover {
  color: #f1f5f9;
}

@media screen and (max-width: 992px) {
  .desktop-only-admin-link {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -99999px !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }
}

/* --------------------------------------------------------------------------
   18. Mobile Menu Drawer & Toasts
   -------------------------------------------------------------------------- */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--color-primary-dark);
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.mobile-menu-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(229, 169, 16, 0.2);
}

.drawer-close {
  color: #ffffff;
  font-size: 1.3rem;
  padding: 0.4rem;
}

.drawer-body {
  padding: 1.25rem;
  flex: 1;
}

.drawer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.drawer-nav-item a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #e2e8f0;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
}

.drawer-nav-item a i {
  color: var(--color-accent);
  width: 20px;
  text-align: center;
}

.drawer-nav-item a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-accent);
}

.drawer-contact-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(229, 169, 16, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-top: 1rem;
}

.drawer-contact-box h4 {
  color: var(--color-accent);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.drawer-contact-box p {
  color: #cbd5e1;
  font-size: 0.8125rem;
  line-height: 1.4;
  margin-bottom: 0.4rem;
}

/* ==========================================================================
   FORMULAIRE DE CONTACT & DEVIS RAPIDE (HOMEPAGE)
   ========================================================================== */
.quick-quote-section {
  padding: 3.5rem 0;
  background: #f8fafc;
  width: 100%;
  overflow: hidden;
}

.quick-quote-card {
  background: linear-gradient(135deg, #2B0957 0%, #170430 100%);
  border-radius: 20px;
  border: 2px solid rgba(229, 169, 16, 0.35);
  box-shadow: 0 16px 40px rgba(43, 9, 87, 0.25);
  overflow: hidden;
  padding: 2.5rem;
  width: 100%;
  box-sizing: border-box;
}

.quick-quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 2.5rem;
  align-items: start;
  width: 100%;
}

.quote-info-side {
  color: #ffffff;
}

.quote-info-side h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.quote-info-side p {
  font-size: 0.92rem;
  color: #cbd5e1;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.direct-contacts-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.direct-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.875rem;
  color: #e2e8f0;
}

.direct-contact-item i {
  color: var(--color-accent);
  font-size: 1.15rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.quote-form-side {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.75rem;
  width: 100%;
  box-sizing: border-box;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
  min-width: 0; /* Empêche l'élargissement des inputs en CSS grid */
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #e2e8f0;
}

.form-label .required {
  color: #f87171;
}

.form-control {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 10px !important;
  padding: 0.65rem 0.85rem !important;
  color: #ffffff !important;
  font-size: 0.875rem !important;
  outline: none !important;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  border-color: var(--color-accent) !important;
  box-shadow: 0 0 0 3px rgba(229, 169, 16, 0.25) !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

.form-control::placeholder {
  color: #94a3b8 !important;
}

select.form-control {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  cursor: pointer !important;
  background-color: #170430 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e5a910' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  background-size: 1.15rem !important;
  padding-right: 2.75rem !important;
}

select.form-control option,
select.form-control optgroup {
  background-color: #170430 !important;
  color: #ffffff !important;
  padding: 10px 14px !important;
  font-size: 0.9rem !important;
}

select.form-control optgroup {
  color: var(--color-accent) !important;
  font-weight: 800 !important;
  font-family: var(--font-heading) !important;
  background-color: #0f0220 !important;
}

.btn-submit-quote {
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, #f26522, #e5a910);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 6px 18px rgba(242, 101, 34, 0.35);
  transition: all 0.2s ease;
}

.btn-submit-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(242, 101, 34, 0.45);
}

@media (max-width: 768px) {
  .quick-quote-card {
    padding: 1.25rem 0.85rem !important;
    border-radius: 14px !important;
  }

  .quick-quote-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .quote-form-side {
    padding: 1rem 0.75rem !important;
  }

  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.toast-container {
  position: fixed;
  bottom: 85px;
  right: 1.25rem;
  z-index: 1400;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

@media (min-width: 992px) {
  .toast-container {
    bottom: 2rem;
  }
}

.toast-item {
  background: var(--color-primary-dark);
  color: #ffffff;
  border: 1px solid var(--color-accent);
  border-left: 5px solid var(--color-accent);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideInToast 0.3s ease forwards;
  pointer-events: auto;
  max-width: 350px;
}

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

/* ==========================================================================
   STYLES BISLEY & MARQUES PARTENAIRES — Extension Catalogue
   ========================================================================== */

/* Carte produit Bisley — distingue visuellement les produits de marque */
.product-card--bisley {
  border: 1px solid rgba(229, 169, 16, 0.2);
}

.product-card--bisley:hover {
  border-color: rgba(229, 169, 16, 0.5);
}

/* Badge de marque flottant (Bisley Logo) */
.product-brand-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  color: #1c2745;
  font-size: 0.65rem;
  font-weight: 800;
  font-family: var(--font-heading);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 3;
}

/* Badge qualité produit (coin supérieur droit de la carte) */
.product-badge-chip {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: linear-gradient(135deg, var(--color-accent), #f59e0b);
  color: #000;
  font-size: 0.6rem;
  font-weight: 800;
  font-family: var(--font-heading);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 3;
  max-width: 100px;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Chip sous-catégorie Bisley sur les cartes */
.product-subcat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(43, 9, 87, 0.07);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.35rem;
}

/* Section Bisley dans le catalogue — séparateur visuel */
.catalog-section-header-bisley {
  padding: 1.5rem 0 0.75rem;
  border-top: 2px solid rgba(229, 169, 16, 0.2);
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bisley-section-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bisley-section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.25rem;
  background: var(--color-accent);
  border-radius: 2px;
}

/* Amélioration de la grille catalogue pour afficher plus de produits */
@media (min-width: 1440px) {
  .products-grid {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}

@media (min-width: 1200px) and (max-width: 1439px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* Filtres par sous-catégorie Bisley */
.bisley-subcategory-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(43, 9, 87, 0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(43, 9, 87, 0.08);
}

.bisley-subcat-btn {
  padding: 0.3rem 0.75rem;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-body);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.bisley-subcat-btn:hover,
.bisley-subcat-btn.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

/* Indicateur de source externe (Bisley UK) sur la fiche modale */
.external-source-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  color: var(--color-primary);
  text-decoration: underline;
  margin-top: 0.6rem;
}

/* ==========================================================================
   STYLE MARKETPLACE PRODUITBAT : HEADER, SEARCH PILL, SUB-NAV, HERO CAROUSEL
   ========================================================================== */

/* 1. Header Container Moderne */
.header-container-modern {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 1rem;
}

/* 2. Barre de Recherche Pill avec Bouton Cercle Orange */
.header-search-modern {
  flex: 1;
  max-width: 680px;
}

.search-pill-wrapper {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 9999px;
  padding: 0.25rem 0.35rem 0.25rem 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}

.search-pill-wrapper:focus-within {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(229, 169, 16, 0.25);
}

.search-pill-wrapper input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.9375rem;
  color: var(--color-text-main);
  padding: 0.4rem 0.5rem 0.4rem 0;
}

.search-pill-wrapper input::placeholder {
  color: #94a3b8;
  font-size: 0.875rem;
}

.search-btn-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f26522, #e5a910);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.search-btn-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(242, 101, 34, 0.35);
}

/* 3. Actions Header Droite */
.header-actions-modern {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.header-user-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  color: var(--color-text-main);
  text-decoration: none;
  transition: background 0.2s ease;
}

.header-user-btn:hover {
  background: rgba(43, 9, 87, 0.05);
}

.header-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(229, 169, 16, 0.15);
  color: #e5a910;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.header-user-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-user-text .user-sub {
  font-size: 0.7rem;
  color: #64748b;
}

.header-user-text .user-main {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
}

.header-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 0.55rem 0.9rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  color: #ffffff;
}

.header-fav-btn {
  position: relative;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  color: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.header-fav-btn:hover {
  background: #fef2f2;
  color: #ef4444;
  border-color: #fca5a5;
  transform: translateY(-2px);
}

.header-fav-btn .fav-count-badge,
.fav-count-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ef4444;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

.header-cart-btn {
  position: relative;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  color: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.header-cart-btn:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.header-cart-btn .quote-count-badge,
.quote-count-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: linear-gradient(135deg, #fff085 0%, #ffd000 50%, #f5af00 100%);
  color: #120733;
  font-size: 0.7rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

/* 4. Ruban de Navigation Secondaire (Sub-Nav Modern) */
.sub-nav-modern {
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  padding: 0;
}

.sub-nav-modern-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.sub-nav-modern-list::-webkit-scrollbar {
  display: none;
}

.sub-nav-dropdown-wrapper {
  position: relative;
}

.sub-nav-btn-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f1f5f9;
  color: var(--color-text-main);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.7rem 1.1rem;
  cursor: pointer;
  border-right: 1px solid #e2e8f0;
  transition: all 0.2s ease;
  white-space: nowrap;
  user-select: none;
}

.sub-nav-btn-highlight:hover,
.sub-nav-dropdown-wrapper:hover .sub-nav-btn-highlight,
.sub-nav-dropdown-wrapper.active .sub-nav-btn-highlight {
  background: var(--color-primary);
  color: #ffffff;
}

.sub-nav-btn-highlight:hover .dropdown-arrow,
.sub-nav-dropdown-wrapper:hover .dropdown-arrow,
.sub-nav-dropdown-wrapper.active .dropdown-arrow {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.dropdown-arrow {
  transition: transform 0.25s ease, color 0.25s ease;
}

/* Menu Déroulant Catégories */
.sub-nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 360px;
  background: #ffffff;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 16px 40px rgba(25, 5, 51, 0.16);
  border: 1px solid #e2e8f0;
  border-top: 3px solid var(--color-accent);
  padding: 0.5rem 0 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.sub-nav-dropdown-wrapper:hover .sub-nav-dropdown-menu,
.sub-nav-dropdown-wrapper:focus-within .sub-nav-dropdown-menu,
.sub-nav-dropdown-wrapper.open .sub-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu-header {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.5rem 1.25rem;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-menu-header i {
  color: var(--color-accent);
}

.dropdown-menu-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  color: var(--color-text-main);
  border-bottom: 1px solid #f8fafc;
  transition: background 0.15s ease, padding-left 0.2s ease;
  cursor: pointer;
}

.dropdown-menu-item:hover {
  background: rgba(43, 9, 87, 0.04);
  padding-left: 1.5rem;
}

.dropdown-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.dropdown-item-icon.epi { background: #fef3c7; color: #b45309; }
.dropdown-item-icon.outillage { background: #e0f2fe; color: #0369a1; }
.dropdown-item-icon.geologie { background: #fef9c3; color: #854d0e; }
.dropdown-item-icon.electricite { background: #ede9fe; color: #6d28d9; }
.dropdown-item-icon.chimie { background: #fae8ff; color: #86198f; }

.dropdown-item-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dropdown-item-text strong {
  font-size: 0.84rem;
  color: var(--color-text-main);
  font-weight: 700;
}

.dropdown-item-text span {
  font-size: 0.72rem;
  color: #64748b;
  margin-top: 0.1rem;
}

.item-arrow {
  font-size: 0.7rem;
  color: #cbd5e1;
  transition: transform 0.2s ease, color 0.2s ease;
}

.dropdown-menu-item:hover .item-arrow {
  color: var(--color-primary);
  transform: translateX(3px);
}

.dropdown-menu-footer {
  background: #f8fafc;
  padding: 0.65rem 1.25rem;
  border-top: 1px solid #e2e8f0;
  border-radius: 0 0 15px 15px;
}

.dropdown-all-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s ease;
}

.dropdown-all-link:hover {
  color: var(--color-accent);
}


.sub-nav-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
  padding: 0.7rem 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
  border-radius: 6px;
}

.sub-nav-link:hover {
  color: var(--color-primary);
  background: rgba(43, 9, 87, 0.04);
}

.sub-nav-link i {
  color: var(--color-accent);
  font-size: 0.85rem;
}

.sub-nav-link-call {
  margin-left: auto;
  white-space: nowrap;
}

.sub-nav-link-call a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  padding: 0.7rem 0.5rem;
}

.sub-nav-link-call a strong {
  color: #f26522;
}

/* 5. Section Hero Marketplace Split (Style ProduitBat) */
.hero-marketplace-section {
  background: #c8b9a6;
  background: linear-gradient(180deg, #d8ccbe 0%, #c4b5a2 100%);
  padding: 1.5rem 0 2rem;
}

.hero-marketplace-layout {
  display: block;
  width: 100%;
}

/* 6. Colonne Gauche : Sidebar Menu Catégories & Sous-Menus Déroulants */
.hero-category-sidebar {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 60;
  border: 1px solid #e2e8f0;
}

.hero-category-header {
  background: linear-gradient(135deg, #111827 0%, #1f053d 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.95rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 15px 15px 0 0;
}

.hero-category-header i {
  color: var(--color-accent);
  font-size: 1rem;
}

.hero-category-list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
  display: flex;
  flex-direction: column;
}

.hero-cat-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.82rem 1.15rem;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--color-text-main);
  font-size: 0.84rem;
  font-weight: 600;
}

.hero-cat-item:last-child {
  border-bottom: none;
}

.hero-cat-item:hover,
.hero-cat-item:focus-within {
  background: rgba(43, 9, 87, 0.05);
  color: var(--color-primary);
  padding-left: 1.35rem;
}

.cat-item-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.cat-item-left .cat-ico {
  color: #64748b;
  font-size: 0.9rem;
  width: 20px;
  text-align: center;
  transition: color 0.2s ease;
}

.hero-cat-item:hover .cat-ico {
  color: var(--color-accent);
}

.cat-arrow {
  font-size: 0.65rem;
  color: #94a3b8;
  transition: transform 0.2s ease, color 0.2s ease;
}

.hero-cat-item:hover .cat-arrow {
  color: var(--color-primary);
  transform: translateX(3px);
}

/* Panneau Sous-Menu Déroulant au Survol (Flyout) */
.hero-subcat-flyout {
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 310px;
  background: #ffffff;
  border-radius: 0 16px 16px 16px;
  border: 1px solid #e2e8f0;
  border-left: 3px solid var(--color-accent);
  box-shadow: 0 16px 40px rgba(25, 5, 51, 0.16);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 1000;
}

.hero-cat-item:hover .hero-subcat-flyout,
.hero-subcat-flyout:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.flyout-header {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.4rem 1.15rem 0.5rem;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.flyout-header i {
  color: var(--color-accent);
}

.flyout-list {
  list-style: none;
  padding: 0.25rem 0;
  margin: 0;
}

.flyout-item a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.48rem 1.15rem;
  color: #334155;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s ease;
}

.flyout-item a:hover {
  background: rgba(43, 9, 87, 0.05);
  color: var(--color-primary);
  font-weight: 700;
  padding-left: 1.35rem;
}

.flyout-item i {
  color: #64748b;
  font-size: 0.85rem;
  width: 18px;
  text-align: center;
  transition: color 0.15s ease;
}

.flyout-item a:hover i {
  color: var(--color-accent);
}

.flyout-footer {
  padding: 0.5rem 1.15rem 0.35rem;
  border-top: 1px solid #f1f5f9;
  margin-top: 0.25rem;
}

.flyout-footer a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #f26522;
  text-decoration: none;
}

.flyout-footer a:hover {
  text-decoration: underline;
}

/* 7. Carrousel Panoramique Pleine Largeur de Bannières */
.hero-carousel-container {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  background: transparent;
  aspect-ratio: 16 / 9;
}

.hero-carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s ease;
}

.hero-carousel-slide.active {
  opacity: 1;
  visibility: visible;
  position: absolute;
  width: 100%;
  height: 100%;
}

.banner-image-holder {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}

.banner-image-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.banner-image-holder:hover img {
  transform: scale(1.015);
}

/* Flèches de Navigation Carrousel */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #111827;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  z-index: 10;
  transition: all 0.2s ease;
}

.carousel-nav-btn:hover {
  background: #ffffff;
  color: var(--color-primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.carousel-prev {
  left: 1rem;
}

.carousel-next {
  right: 1rem;
}

/* Points de Pagination */
.carousel-dots-container {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: #f26522;
  width: 24px;
  border-radius: 9999px;
}

/* ==========================================================================
   RESPONSIVE MOBILE : HEADER & HERO CAROUSEL
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-marketplace-layout {
    grid-template-columns: 240px 1fr;
  }

  .sub-nav-link-call {
    display: none;
  }
}

@media (max-width: 860px) {
  .hero-marketplace-layout {
    grid-template-columns: 1fr;
  }

  .hero-category-sidebar {
    display: none; /* Sur mobile, la navigation par filtres horizontaux prend le relais */
  }

  .hero-carousel-container {
    aspect-ratio: 16 / 9;
    min-height: unset;
    border-radius: 14px;
  }

  .header-user-btn,
  .header-wa-btn {
    display: none;
  }

  .header-search-modern {
    max-width: 100%;
  }

  .carousel-nav-btn {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }
}


/* ==========================================================================
   STYLE MOBILE PRODUITBAT : VUE ULTRA-COMPACTE (JUSQU'À 6 ARTICLES SUR L'ÉCRAN)
   ========================================================================== */

/* Badge Marque Flottant sur l'Image (Desktop & Mobile) */
.product-brand-floating {
  position: absolute;
  bottom: 0.45rem;
  left: 0.45rem;
  background: rgba(255, 255, 255, 0.95);
  color: #334155;
  font-size: 0.65rem;
  font-weight: 800;
  font-family: var(--font-heading);
  padding: 0.18rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  z-index: 2;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Mention Prix / Devis Orange (Style ProduitBat) */
.product-price-highlight {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  color: #f26522;
  margin-top: 0.25rem;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.product-price-highlight i {
  font-size: 0.75rem;
}

/* Bouton Favoris Header */
.header-fav-btn {
  position: relative;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  color: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.header-fav-btn .fav-count-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #f26522;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

/* --------------------------------------------------------------------------
   RÈGLES MOBILE RESPONSIVE (< 640px) : REPRODUCTION FIDÈLE STYLE PRODUITBAT
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
  /* En-tête mobile ProduitBat complet avec logo, recherche pilule et actions */
  .header-container-modern {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0.5rem 0.75rem !important;
    gap: 0.35rem !important;
    background: #ffffff !important;
  }

  .brand-logo {
    order: 1 !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
  }

  .brand-logo img {
    height: 28px !important;
    max-height: 28px !important;
    width: auto !important;
    object-fit: contain !important;
  }

  .header-actions-modern {
    order: 2 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
  }

  .header-user-btn {
    display: inline-flex !important;
    padding: 0 !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .header-user-text {
    display: none !important; /* Allège pour garder l'icône casque */
  }

  .header-icon-box {
    width: 34px !important;
    height: 34px !important;
    font-size: 0.95rem !important;
    border-radius: 50% !important;
    background: rgba(229, 169, 16, 0.15) !important;
    color: #e5a910 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .btn-menu-toggle {
    display: none !important; /* Les catégories sont directement accessibles dans le ruban */
  }

  .header-fav-btn,
  .header-cart-btn {
    width: 34px !important;
    height: 34px !important;
    font-size: 0.9rem !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
  }

  /* Barre de recherche pilule mobile pleine largeur (Style ProduitBat) */
  .header-search-modern {
    order: 3 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 0.25rem !important;
    display: block !important;
  }

  .search-pill-wrapper {
    padding: 0.2rem 0.3rem 0.2rem 1rem !important;
    border-radius: 9999px !important;
    border: 1.5px solid #cbd5e1 !important;
  }

  .search-pill-wrapper input {
    font-size: 0.8125rem !important;
  }

  .search-btn-circle {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.8rem !important;
  }

  /* Ruban de navigation secondaire horizontal scrollable (Style ProduitBat) */
  .sub-nav-modern {
    display: block !important;
    background: #ffffff !important;
    border-top: 1px solid #f1f5f9 !important;
    border-bottom: 1px solid #e2e8f0 !important;
  }

  .sub-nav-modern-list {
    display: flex !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    padding: 0.2rem 0.4rem !important;
    gap: 0.3rem !important;
    scrollbar-width: none !important;
  }

  .sub-nav-modern-list::-webkit-scrollbar {
    display: none !important;
  }

  .sub-nav-btn-highlight {
    padding: 0.45rem 0.75rem !important;
    font-size: 0.76rem !important;
    border-radius: 6px !important;
  }

  .sub-nav-link {
    padding: 0.45rem 0.65rem !important;
    font-size: 0.74rem !important;
  }

  .sub-nav-dropdown-menu {
    width: 290px !important;
    position: fixed !important;
    top: 95px !important;
    left: 10px !important;
    right: 10px !important;
    border-radius: 12px !important;
  }

  /* Masquer le bandeau de réassurance sur mobile (Requis par l'utilisateur) */
  .reassurance-strip {
    display: none !important;
  }

  /* Section Hero & Carrousel Mobile Compact */
  .hero-marketplace-section {
    padding: 0.6rem 0.5rem !important;
    background: #d8ccbe !important;
  }

  .hero-carousel-container {
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    min-height: unset !important;
    border-radius: 12px !important;
  }

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

  .carousel-nav-btn {
    width: 28px !important;
    height: 28px !important;
    font-size: 0.65rem !important;
  }

  .carousel-prev { left: 0.4rem !important; }
  .carousel-next { right: 0.4rem !important; }

  .carousel-dots-container {
    bottom: 0.4rem !important;
    padding: 0.2rem 0.5rem !important;
    gap: 0.3rem !important;
  }

  .carousel-dot { width: 6px !important; height: 6px !important; }
  .carousel-dot.active { width: 14px !important; }

  /* En-tête de section catalogue mobile (Produits populaires - Voir tout >) */
  .section-header {
    margin-bottom: 0.75rem !important;
    text-align: left !important;
  }

  .section-header .section-tag {
    display: none !important;
  }

  .section-header .section-title {
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    margin-bottom: 0.2rem !important;
  }

  .section-header .section-subtitle {
    display: none !important;
  }

  .catalog-controls-card {
    padding: 0.5rem !important;
    margin-bottom: 0.75rem !important;
  }

  .catalog-search-row {
    margin-bottom: 0.5rem !important;
  }

  .catalog-search-box input {
    font-size: 0.8125rem !important;
    padding: 0.45rem 0.75rem 0.45rem 2.2rem !important;
  }

  .filter-tabs {
    gap: 0.35rem !important;
    padding-bottom: 0.25rem !important;
  }

  .filter-tab-btn {
    padding: 0.3rem 0.65rem !important;
    font-size: 0.72rem !important;
    border-radius: 99px !important;
  }

  /* ------------------------------------------------------------------------
     GRILLE 2 COLONNES HAUTE DENSITÉ (6 ARTICLES VISIBLES SUR SMARTPHONE)
     ------------------------------------------------------------------------ */
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.55rem !important;
    padding: 0 0.15rem !important;
  }

  .product-card {
    border-radius: 14px !important;
    background: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid #f1f5f9 !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    transition: transform 0.15s ease !important;
  }

  .product-card:active {
    transform: scale(0.98);
  }

  .product-image-wrap {
    height: 110px !important;
    min-height: 110px !important;
    padding: 0.35rem !important;
    background: #f8fafc !important;
    border-radius: 12px 12px 0 0 !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .product-image-wrap img {
    max-height: 98px !important;
    width: auto !important;
    object-fit: contain !important;
  }

  .product-brand-floating {
    font-size: 0.58rem !important;
    padding: 0.12rem 0.4rem !important;
    bottom: 0.3rem !important;
    left: 0.3rem !important;
    border-radius: 3px !important;
  }

  .product-ref-tag {
    display: none !important; /* Simplifie la vue */
  }

  .product-card-body {
    padding: 0.5rem 0.55rem 0.6rem !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    justify-content: space-between !important;
    background: #ffffff !important;
  }

  .product-card-title {
    font-size: 0.76rem !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    margin-bottom: 0.2rem !important;
    color: #0f172a !important;
    height: 32px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .product-price-highlight {
    font-size: 0.74rem !important;
    font-weight: 800 !important;
    color: #f26522 !important;
    margin-top: 0.15rem !important;
    margin-bottom: 0.2rem !important;
  }

  .product-card-actions {
    display: flex !important;
    gap: 0.25rem !important;
    margin-top: 0.35rem !important;
  }

  .btn-card-purple-quote {
    padding: 0.4rem 0.45rem !important;
    font-size: 0.68rem !important;
    border-radius: 6px !important;
  }

  .btn-card-add {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    font-size: 0.75rem !important;
  }
}

/* ==========================================================================
   BOUTON VIOLET "DEMANDER UN DEVIS" (STYLE GMD B2B OFFICIEL)
   ========================================================================== */
.product-card-body {
  padding: 0.85rem 0.95rem 1rem !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  background: #ffffff !important;
}

.product-card-title {
  font-family: var(--font-heading) !important;
  font-size: 0.88rem !important;
  font-weight: 800 !important;
  color: var(--color-primary) !important;
  line-height: 1.35 !important;
  margin-bottom: 0.75rem !important;
  height: 40px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-align: center !important;
}

.btn-card-purple-quote {
  width: 100% !important;
  background: linear-gradient(135deg, #2B0957 0%, #1f053d 100%);
  color: #ffffff !important;
  border: 1px solid rgba(229, 169, 16, 0.25);
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(43, 9, 87, 0.22);
}

.btn-card-purple-quote:hover {
  background: linear-gradient(135deg, #3e0e7a 0%, #2B0957 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(43, 9, 87, 0.35);
  border-color: var(--color-accent);
  color: #ffffff !important;
}

.btn-card-purple-quote i {
  color: var(--color-accent);
  font-size: 0.85rem;
}

/* ==========================================================================
   BOUTON FAVORIS SUR LA CARTE PRODUIT
   ========================================================================== */
.product-card {
  position: relative !important;
}

.btn-fav-card {
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #94a3b8 !important;
  font-size: 0.95rem !important;
  cursor: pointer !important;
  z-index: 10 !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-fav-card:hover {
  transform: scale(1.15) !important;
  background: #ffffff !important;
  color: #ef4444 !important;
  border-color: #fca5a5 !important;
}

.btn-fav-card.active {
  color: #ef4444 !important;
  background: #ffffff !important;
  border-color: #f87171 !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25) !important;
}

.btn-fav-card.active i {
  font-weight: 900 !important;
  animation: heartPulse 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes heartPulse {
  0% { transform: scale(0.7); }
  50% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

@media (max-width: 640px) {
  .btn-fav-card {
    width: 28px !important;
    height: 28px !important;
    font-size: 0.8rem !important;
    top: 6px !important;
    right: 6px !important;
  }
}

/* ==========================================================================
   BOUTON VOIR TOUT LE CATALOGUE / VOIR MOINS
   ========================================================================== */
.catalog-toggle-wrapper {
  margin: 2.5rem 0 1rem;
  display: flex;
  justify-content: center;
}

.btn-toggle-catalog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 2.25rem;
  background: linear-gradient(135deg, #2B0957 0%, #170430 100%);
  color: #ffffff;
  border: 2px solid var(--color-accent);
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(43, 9, 87, 0.25);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.btn-toggle-catalog:hover {
  background: linear-gradient(135deg, #f26522, #e5a910);
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(242, 101, 34, 0.35);
  color: #ffffff;
}

.btn-toggle-catalog.outline {
  background: #ffffff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.btn-toggle-catalog.outline:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

@media (max-width: 640px) {
  .btn-toggle-catalog {
    width: 100%;
    max-width: 320px;
    padding: 0.85rem 1.25rem;
    font-size: 0.875rem;
  }
}



/* Suppression définitive de la barre d'action mobile flottante */
.mobile-action-bar {
  display: none !important;
}

/* Modale Produit Plein Écran Mobile */
@media (max-width: 768px) {
  .modal-dialog {
    max-height: 92vh !important;
    width: 95% !important;
    margin: 1rem auto !important;
    border-radius: 18px !important;
  }

  .modal-product-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .modal-product-media {
    max-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .modal-product-media img {
    max-height: 180px !important;
    object-fit: contain;
  }

  .modal-product-details {
    padding: 0 !important;
  }

  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }

  .btn-submit-quote {
    padding: 0.9rem 1.25rem !important;
    font-size: 0.9375rem !important;
  }
}

/* =========================================================================
   8. BANNIÈRES ANIMÉES DYNAMIQUES & BANDEAU DÉFILANT (EFFET GIF / ANIMATIONS)
   ========================================================================= */

/* Bandeau Défilant Animé (Marquee Ticker en Fond Noir Prestige) */
.animated-ticker-strip {
  background: #000000;
  color: #ffffff;
  font-weight: 700;
  padding: 0.5rem 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 208, 0, 0.35);
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  z-index: 1000;
}

.ticker-content-track {
  display: flex;
  white-space: nowrap;
  gap: 3rem;
  animation: tickerScroll 16s linear infinite;
}

.ticker-content-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: 0.02em;
}

.ticker-item i {
  color: #ffd000;
  font-size: 0.95rem;
}

.ticker-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #190533;
  border: 1px solid #ffd000;
  color: #ffd000;
  padding: 0.15rem 0.6rem;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ticker-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulseDot 1.2s infinite ease-in-out;
}

/* Slides de Bannières Animées dans le Carrousel Hero */
.animated-hero-banner {
  width: 100%;
  height: 100%;
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 3rem;
  overflow: hidden;
  color: #ffffff;
  box-sizing: border-box;
}

.animated-hero-banner.banner-epi {
  background: linear-gradient(135deg, #111827 0%, #1f053d 45%, #2B0957 100%);
}

.animated-hero-banner.banner-outillage {
  background: linear-gradient(135deg, #091e3a 0%, #034b75 50%, #0284c7 100%);
}

.animated-hero-banner.banner-geologie {
  background: linear-gradient(135deg, #241400 0%, #543304 45%, #b45309 100%);
}

.banner-ambient-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 169, 16, 0.35) 0%, rgba(229, 169, 16, 0) 70%);
  filter: blur(40px);
  animation: ambientFloat 8s infinite ease-in-out;
  pointer-events: none;
}

.banner-ambient-glow-blue {
  position: absolute;
  bottom: -20%;
  left: 30%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.3) 0%, rgba(56, 189, 248, 0) 70%);
  filter: blur(40px);
  animation: ambientFloat 6s infinite reverse ease-in-out;
  pointer-events: none;
}

.banner-text-content {
  max-width: 58%;
  z-index: 2;
  position: relative;
}

.banner-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(229, 169, 16, 0.2);
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
  animation: tagGlow 2.5s infinite ease-in-out;
}

.banner-main-headline {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.banner-main-headline span.highlight-gold {
  color: var(--color-accent);
  text-shadow: 0 0 20px rgba(229, 169, 16, 0.4);
}

.banner-subtext {
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.banner-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-banner-glow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #f26522 0%, #e5a910 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.75rem 1.45rem;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(242, 101, 34, 0.45);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn-banner-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: rotate(30deg);
  animation: shimmerButton 3.5s infinite;
}

.btn-banner-glow:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(242, 101, 34, 0.6);
  color: #ffffff;
}

.btn-banner-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 211, 102, 0.15);
  border: 1.5px solid #25d366;
  color: #25d366;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.7rem 1.25rem;
  border-radius: 99px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-banner-whatsapp:hover {
  background: #25d366;
  color: #ffffff;
  transform: translateY(-2px);
}

.banner-visual-elements {
  max-width: 38%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner-floating-badge {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 169, 16, 0.4);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  animation: floatCard 4s infinite ease-in-out;
  margin-bottom: 0.85rem;
}

.banner-floating-badge i {
  font-size: 1.75rem;
  color: var(--color-accent);
}

.badge-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
}

.badge-text span {
  font-size: 0.75rem;
  color: #cbd5e1;
}

/* Grande Bannière Promotionnelle Animée Mid-Page */
.animated-mid-promo-section {
  padding: 2rem 0;
}

.animated-promo-banner-card {
  background: linear-gradient(135deg, #1f053d 0%, #2B0957 50%, #170430 100%);
  border-radius: 20px;
  border: 2px solid var(--color-accent);
  padding: 2.25rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(43, 9, 87, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.animated-promo-banner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(229, 169, 16, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.promo-left-content {
  flex: 1;
  min-width: 280px;
  z-index: 2;
}

.promo-left-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.promo-left-content h3 i {
  color: var(--color-accent);
  animation: pulseRotate 3s infinite ease-in-out;
}

.promo-left-content p {
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
  max-width: 620px;
}

.promo-right-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
  flex-wrap: wrap;
}

/* Animations Keyframes */
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

@keyframes ambientFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 20px) scale(1.15); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes tagGlow {
  0%, 100% { box-shadow: 0 0 5px rgba(229, 169, 16, 0.2); }
  50% { box-shadow: 0 0 16px rgba(229, 169, 16, 0.6); }
}

@keyframes shimmerButton {
  0% { transform: translateX(-150%) rotate(30deg); }
  100% { transform: translateX(150%) rotate(30deg); }
}

@keyframes pulseRotate {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.2) rotate(10deg); }
}

@media (max-width: 768px) {
  .animated-hero-banner {
    padding: 1.5rem 1rem;
    flex-direction: column;
    text-align: center;
    min-height: 360px;
  }
  .banner-text-content {
    max-width: 100%;
  }
  .banner-main-headline {
    font-size: 1.4rem;
  }
  .banner-cta-group {
    justify-content: center;
  }
  .banner-visual-elements {
    display: none;
  }
  .animated-promo-banner-card {
    padding: 1.5rem 1.25rem;
    text-align: center;
  }
  .promo-left-content h3 {
    justify-content: center;
    font-size: 1.25rem;
  }
  .promo-right-actions {
    width: 100%;
    justify-content: center;
  }
  .ticker-content-track {
    animation-duration: 9s !important;
    gap: 1.75rem;
    will-change: transform;
    transform: translateZ(0);
  }
  .ticker-item {
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .ticker-content-track {
    animation-duration: 7.5s !important;
    gap: 1.25rem;
  }
}

/* --------------------------------------------------------------------------
   18. Affiches Joyeuses, Bulles Promo & Ventes Flash (Style Jumia / E-commerce Pro)
   -------------------------------------------------------------------------- */
.promo-bubbles-section {
  padding: 1.5rem 0 0.5rem;
}

.promo-bubbles-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.15rem;
}

.promo-bubbles-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #1e1b4b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.promo-bubbles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .promo-bubbles-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.promo-bubble-card {
  background: #ffffff;
  border: 1.5px solid #e8e2f0;
  border-radius: 16px;
  padding: 1rem 0.6rem;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(43, 9, 87, 0.04);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.promo-bubble-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(43, 9, 87, 0.12);
  border-color: #e5a910;
}

.bubble-badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.65rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s;
}

.promo-bubble-card:hover .bubble-badge-icon {
  transform: scale(1.1) rotate(5deg);
}

.bubble-festival {
  background: linear-gradient(135deg, #fff085 0%, #ffd000 50%, #f5af00 100%);
  color: #120733;
}

.bubble-best {
  background: linear-gradient(135deg, #fff8b3 0%, #ffd700 100%);
  color: #120733;
}

.bubble-flash {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
}

.bubble-packs {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  color: #ffffff;
}

.bubble-machines {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #ffffff;
}

.bubble-official {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
}

.promo-bubble-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: #1e1b4b;
  line-height: 1.25;
  margin-bottom: 0.25rem;
}

.promo-bubble-sub {
  font-size: 0.68rem;
  font-weight: 700;
  color: #d97706;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Ventes Flash B2B Style Jumia */
.flash-sales-section {
  margin: 2rem 0;
}

.flash-sales-card {
  background: linear-gradient(135deg, #fff085 0%, #ffd000 45%, #f5af00 100%);
  border-radius: 18px;
  padding: 1.5rem;
  color: #120733;
  box-shadow: 0 10px 30px rgba(245, 185, 0, 0.28);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.flash-sales-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.flash-sales-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.flash-sales-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.flash-live-timer {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
  font-family: monospace;
  font-weight: 800;
  font-size: 0.95rem;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.flash-reserve-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #2b0957;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 99px;
  padding: 0.45rem 1.1rem;
  color: #fbbf24;
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(43, 9, 87, 0.3);
}

.flash-reserve-btn:hover {
  background: #1f053d;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(43, 9, 87, 0.45);
}

.flash-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.flash-products-grid.flash-fade-out {
  opacity: 0;
  transform: scale(0.98);
}

.flash-products-grid.flash-fade-in {
  opacity: 1;
  transform: scale(1);
}

.flash-item-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1rem;
  color: #1e293b;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.flash-item-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.flash-discount-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #ef4444;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

.flash-item-img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.flash-item-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.4rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.2rem;
}

.flash-stock-wrap {
  margin: 0.5rem 0;
}

.flash-stock-text {
  font-size: 0.72rem;
  color: #b91c1c;
  font-weight: 700;
  margin-bottom: 0.25rem;
  display: flex;
  justify-content: space-between;
}

.flash-stock-bar-bg {
  height: 6px;
  background: #fee2e2;
  border-radius: 10px;
  overflow: hidden;
}

.flash-stock-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ef4444 0%, #f59e0b 100%);
  border-radius: 10px;
}

.btn-flash-quote {
  background: #2b0957;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.5rem;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: auto;
  transition: all 0.2s;
}

.btn-flash-quote:hover {
  background: #e5a910;
  color: #0f172a;
}

/* --------------------------------------------------------------------------
   Responsive Mobile pour Ventes Flash & Promo Bubbles
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .promo-bubbles-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.65rem;
    padding: 0.25rem 0.25rem 0.75rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .promo-bubbles-grid::-webkit-scrollbar {
    display: none;
  }

  .promo-bubble-card {
    flex: 0 0 120px;
    min-width: 120px;
    scroll-snap-align: start;
    padding: 0.85rem 0.5rem;
  }

  .bubble-badge-icon {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
    margin-bottom: 0.45rem;
  }

  .promo-bubble-label {
    font-size: 0.75rem;
    line-height: 1.2;
    margin-bottom: 0.15rem;
  }

  .promo-bubble-sub {
    font-size: 0.62rem;
  }

  .flash-sales-section {
    margin: 1.25rem 0;
  }

  .flash-sales-card {
    padding: 1.15rem 1rem;
    border-radius: 16px;
  }

  .flash-sales-header {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
  }

  .flash-sales-title-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    width: 100%;
  }

  .flash-sales-title {
    font-size: 1.125rem;
    line-height: 1.3;
    font-weight: 800;
    gap: 0.4rem;
  }

  .flash-live-timer {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(245, 158, 11, 0.6);
    border-radius: 10px;
    padding: 0.4rem 0.75rem;
    font-size: 0.88rem;
    font-weight: 800;
    white-space: nowrap;
    width: fit-content;
  }

  .flash-sales-header > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(254, 240, 138, 0.4);
    border-radius: 10px;
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
    font-weight: 800;
    color: #fef08a !important;
    text-decoration: none !important;
  }

  .flash-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .flash-item-card {
    padding: 0.75rem 0.65rem;
    border-radius: 10px;
  }

  .flash-item-img {
    height: 95px;
    margin-bottom: 0.5rem;
  }

  .flash-discount-badge {
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
    top: 6px;
    right: 6px;
  }

  .flash-item-name {
    font-size: 0.76rem;
    line-height: 1.25;
    min-height: 1.9rem;
    margin-bottom: 0.35rem;
  }

  .flash-stock-text {
    font-size: 0.68rem;
  }

  .btn-flash-quote {
    font-size: 0.72rem;
    padding: 0.45rem 0.4rem;
  }
}

/* Floating Bottom-Left Pop-Up Ad (Supprimée) */
.floating-jumia-widget {
  display: none !important;
}

/* ==========================================================================
   18. CATALOGUE PAR CATÉGORIES (STYLE MARKETPLACE PRODUITBAT B2B)
   ========================================================================== */
.catalog-content-area {
  width: 100%;
}

.category-section-block {
  margin-bottom: 3rem;
}

.category-section-header {
  background: linear-gradient(135deg, #120733 0%, #1f053d 100%);
  border-radius: 12px;
  padding: 0.95rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 18px rgba(18, 7, 51, 0.15);
  border-left: 5px solid #f5b900;
  gap: 1rem;
}

.cat-header-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.cat-header-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(245, 185, 0, 0.2);
  border: 1.5px solid rgba(245, 185, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5b900;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cat-header-titles {
  display: flex;
  flex-direction: column;
}

.cat-header-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.08rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.3px;
  margin: 0;
  text-transform: uppercase;
}

.cat-header-subtitle {
  font-size: 0.78rem;
  color: #cbd5e1;
  margin: 0.2rem 0 0 0;
  font-weight: 500;
}

.cat-header-link {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(245, 185, 0, 0.45);
  color: #ffffff;
  padding: 0.45rem 1.05rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cat-header-link:hover {
  background: #f5b900;
  color: #120733;
  transform: translateX(3px);
  box-shadow: 0 4px 12px rgba(245, 185, 0, 0.3);
}

.cat-title-full {
  display: inline;
}

.cat-title-short {
  display: none;
}

.cat-link-full {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.cat-link-short {
  display: none;
}

/* Optimisation Mobile Strictement Compacte des En-têtes de Catégorie & Bannière (Petits Rectangles Violets) */
@media (max-width: 768px) {
  .category-section-header {
    padding: 0.55rem 0.85rem !important;
    margin-bottom: 0.75rem !important;
    border-radius: 10px !important;
    border-left-width: 4px !important;
    gap: 0.5rem !important;
  }

  .cat-header-left {
    gap: 0.55rem !important;
    min-width: 0 !important;
    flex: 1 !important;
  }

  .cat-header-icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.95rem !important;
    border-radius: 8px !important;
  }

  .cat-header-titles {
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .cat-header-title {
    font-size: 0.82rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    line-height: 1.2 !important;
  }

  .cat-title-full {
    display: none !important;
  }

  .cat-title-short {
    display: inline !important;
  }

  .cat-header-subtitle {
    display: none !important;
  }

  .cat-header-link {
    padding: 0.32rem 0.6rem !important;
    font-size: 0.72rem !important;
    border-radius: 6px !important;
    flex-shrink: 0 !important;
  }

  .cat-link-full {
    display: none !important;
  }

  .cat-link-short {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.25rem !important;
  }

  .category-section-block {
    margin-bottom: 1.75rem !important;
  }

  /* Bannière supérieure de section (Rectangle Violet Compact sur Mobile) */
  .catalog-top-banner-replica {
    padding: 0.75rem 0.95rem !important;
    margin-bottom: 1.25rem !important;
    border-radius: 12px !important;
    gap: 0.65rem !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .cat-top-banner-left {
    min-width: unset !important;
    width: 100% !important;
    gap: 0.75rem !important;
  }

  .cat-top-logo-wrap {
    width: 44px !important;
    height: 44px !important;
    border-width: 2px !important;
  }

  .title-white, .title-gold {
    font-size: 0.92rem !important;
  }

  .cat-top-domains-row {
    gap: 0.25rem !important;
    margin-top: 0.2rem !important;
  }

  .domain-pill {
    font-size: 0.6rem !important;
    padding: 0.12rem 0.4rem !important;
  }

  .cat-top-banner-center,
  .cat-top-banner-right {
    display: none !important;
  }
}

.category-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .category-products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
}

@media (min-width: 900px) {
  .category-products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1200px) {
  .category-products-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.1rem;
  }
}

/* Carte Produit Style ProduitBat B2B */
.product-card-categorized {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
}

.product-card-categorized:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(18, 7, 51, 0.12);
  border-color: #cbd5e1;
}

.card-top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.product-brand-tag {
  background: #111827;
  color: #f8fafc;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.product-img-box {
  height: 135px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 0.35rem;
  overflow: hidden;
  border-radius: 8px;
}

.product-img-box img {
  max-height: 125px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card-categorized:hover .product-img-box img {
  transform: scale(1.06);
}

.product-info-box {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.product-title-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.35;
  height: 2.7em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0.4rem 0 0.75rem 0;
  cursor: pointer;
  transition: color 0.15s ease;
}

.product-title-text:hover {
  color: #f59e0b;
}

.product-actions-dual {
  display: flex;
  gap: 0.4rem;
  margin-top: auto;
}

.btn-action-devis {
  flex: 1;
  background: #190533;
  color: #ffffff;
  border: none;
  padding: 0.5rem 0.4rem;
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none;
}

.btn-action-devis i {
  color: #f5b900;
}

.btn-action-devis:hover {
  background: #2b0957;
  transform: translateY(-1px);
}

.btn-action-panier {
  flex: 1;
  background: linear-gradient(135deg, #fff085 0%, #ffd000 50%, #f5af00 100%);
  color: #120733;
  border: none;
  padding: 0.5rem 0.4rem;
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  cursor: pointer;
  transition: all 0.18s ease;
  box-shadow: 0 2px 6px rgba(245, 185, 0, 0.25);
}

.btn-action-panier:hover {
  background: linear-gradient(135deg, #fff8b3 0%, #ffe04d 50%, #f5b900 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(245, 185, 0, 0.4);
}

/* Bannière Intermédiaire entre Catégories (Image Référence GMD) */
.category-mid-promo-banner-img-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin: 2.5rem 0 3.25rem 0;
  box-shadow: 0 8px 30px rgba(18, 7, 51, 0.15);
  border: 1.5px solid rgba(245, 185, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #11052c;
}

.category-mid-promo-banner-img-wrap:hover {
  transform: translateY(-3px) scale(1.005);
  box-shadow: 0 14px 40px rgba(18, 7, 51, 0.25);
  border-color: #f5b900;
}

.category-mid-promo-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ==========================================================================
   19. BANNIÈRE SUPÉRIEURE DU CATALOGUE & BANDEAU DE RÉASSURANCE BAS (RÉPLIQUE EXACTE IMAGE 2)
   ========================================================================== */
.catalog-top-banner-replica {
  background: linear-gradient(135deg, #09031a 0%, #150836 50%, #200c4e 100%);
  border-radius: 14px;
  padding: 1.25rem 1.6rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 8px 26px rgba(9, 3, 26, 0.3);
  border: 1px solid rgba(245, 185, 0, 0.3);
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}

.cat-top-banner-left {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex: 1;
  min-width: 320px;
}

.cat-top-logo-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ffffff;
  border: 2.5px solid #f5b900;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.cat-top-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-top-text-block {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cat-top-title-row {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.title-white {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.title-gold {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.25rem;
  font-weight: 900;
  color: #f5b900;
  letter-spacing: 0.3px;
}

.cat-top-domains-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.domain-pill {
  font-size: 0.68rem;
  font-weight: 700;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.18rem 0.5rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  letter-spacing: 0.2px;
}

.domain-pill i {
  color: #f5b900;
  font-size: 0.72rem;
}

.cat-top-banner-center {
  display: flex;
  align-items: center;
}

.cat-perks-vertical {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  border-left: 2px solid rgba(245, 185, 0, 0.4);
  padding-left: 1rem;
}

.cat-perks-vertical i {
  color: #f5b900;
  margin-right: 0.3rem;
}

.cat-top-banner-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.cat-top-helmet-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, #fff085 0%, #ffd000 50%, #f5af00 100%);
  color: #120733;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-weight: 900;
  font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(245, 185, 0, 0.25);
}

.cat-top-cursive-quote {
  font-family: 'Caveat', 'Dancing Script', cursive;
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffd466;
  text-align: right;
  white-space: nowrap;
}

/* Bandeau de Réassurance Bas (Style Image 2) */
.catalog-bottom-trust-strip {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.1rem 1.5rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
}

.trust-grid-items {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  flex: 1;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.trust-icon {
  font-size: 1.5rem;
  color: #120733;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-text strong {
  font-size: 0.84rem;
  font-weight: 800;
  color: #1e293b;
}

.trust-text span {
  font-size: 0.74rem;
  color: #64748b;
  font-weight: 500;
}

.trust-gold-ribbon {
  background: linear-gradient(135deg, #fff085 0%, #ffd000 50%, #f5af00 100%);
  color: #120733;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-1deg);
  box-shadow: 0 4px 12px rgba(245, 185, 0, 0.35);
}

.trust-gold-ribbon span {
  font-family: 'Caveat', 'Dancing Script', cursive;
  font-size: 1.25rem;
  font-weight: 700;
  color: #120733;
  white-space: nowrap;
}

/* Bannière intermédiaire panoramique GMD */
.category-mid-promo-banner-img-wrap {
  width: 100%;
  margin: 2.2rem 0 2.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  background: #110729;
}

.category-mid-promo-banner-img-wrap:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.category-mid-promo-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ============================================================
   LIGNE CIRCULANTE / MARQUEE CLIENTS & PARTENAIRES STRATÉGIQUES
   (Raffineries, Carburants, CIE, SODECI, Mines & Industrie)
============================================================ */
.industry-ticker-section {
  width: 100%;
  margin: 2.2rem 0 2.5rem 0;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(18, 7, 51, 0.05);
  overflow: hidden;
  position: relative;
  padding: 1.1rem 0 1.25rem 0;
}

.industry-ticker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem 0.85rem 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.industry-ticker-title-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.industry-ticker-badge {
  background: #120733;
  color: #f5b900;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.industry-ticker-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.industry-ticker-subtitle {
  font-size: 0.76rem;
  color: #64748b;
  font-weight: 500;
}

.industry-ticker-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0.9rem 0 0.2rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}

.industry-ticker-track {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  width: max-content;
  animation: industryMarquee 34s linear infinite;
}

.industry-ticker-track:hover {
  animation-play-state: paused;
}

@keyframes industryMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.industry-logo-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.65rem 1.15rem;
  min-width: 210px;
  height: 64px;
  transition: all 0.22s ease;
  user-select: none;
  flex-shrink: 0;
  box-sizing: border-box;
}

.industry-logo-card:hover {
  background: #ffffff;
  border-color: #f5b900;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(18, 7, 51, 0.08);
}

.industry-logo-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 8px;
  background: #ffffff;
  padding: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f5f9;
}

.industry-logo-icon img,
.industry-logo-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.industry-logo-info {
  display: flex;
  flex-direction: column;
}

.industry-logo-name {
  font-size: 0.86rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  white-space: nowrap;
}

.industry-logo-sector {
  font-size: 0.67rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-top: 2px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .industry-ticker-section {
    margin: 1.5rem 0 2rem 0;
    padding: 0.9rem 0;
  }
  .industry-ticker-header {
    padding: 0 1rem 0.65rem 1rem;
  }
  .industry-logo-card {
    min-width: 185px;
    height: 58px;
    padding: 0.5rem 0.85rem;
  }
  .industry-logo-icon {
    width: 36px;
    height: 36px;
  }
  .industry-logo-name {
    font-size: 0.8rem;
  }
  .industry-logo-sector {
    font-size: 0.62rem;
  }
}





