/* ============================================
   DELIMART - DESIGN SYSTEM FUTURISTE 2025
   Basé sur l'identité visuelle Delimart
   ============================================ */

/* ============================================
   1. PALETTE DE COULEURS DELIMART
   ============================================ */
:root {
  /* Couleurs principales Delimart (extraites du logo) */
  --delimart-red-primary: #c70103;      /* Rouge principal Delimart */
  --delimart-red-bright: #fd3b39;       /* Rouge clair/éclatant */
  --delimart-red-dark: #9a0200;         /* Rouge foncé profond */
  --delimart-red-medium: #e02525;       /* Rouge moyen */
  
  /* Couleurs d'accent */
  --delimart-green-fresh: #3FAE2A;      /* Vert fraîcheur */
  --delimart-green-dark: #2D8C3C;       /* Vert foncé */
  --delimart-gold: #F7B500;             /* Or/Promos */
  --delimart-gold-light: #FFD700;       /* Or clair */
  
  /* Couleurs de confirmation/success (messages) */
  --delimart-success: #10b981;          /* Vert success principal */
  --delimart-success-light: #ecfdf5;    /* Vert pâle (background) */
  --delimart-success-medium: #34d399;   /* Vert moyen */
  --delimart-success-dark: #065f46;     /* Vert foncé (texte) */
  --delimart-success-pale: #d1fae5;     /* Vert très pâle */
  
  /* Neutres modernes */
  --delimart-white: #FFFFFF;
  --delimart-black: #0a0a0a;
  --delimart-gray-50: #fafafa;
  --delimart-gray-100: #f5f5f5;
  --delimart-gray-200: #e5e5e5;
  --delimart-gray-300: #d4d4d4;
  --delimart-gray-400: #a3a3a3;
  --delimart-gray-500: #737373;
  --delimart-gray-600: #525252;
  --delimart-gray-700: #404040;
  --delimart-gray-800: #262626;
  --delimart-gray-900: #171717;
  
  /* Gradients Delimart */
  --delimart-gradient-red: linear-gradient(135deg, #c70103 0%, #fd3b39 50%, #c70103 100%);
  --delimart-gradient-red-vertical: linear-gradient(180deg, #c70103 0%, #fd3b39 100%);
  --delimart-gradient-red-soft: linear-gradient(135deg, rgba(199, 1, 3, 0.95) 0%, rgba(253, 59, 57, 0.95) 100%);
  --delimart-gradient-fresh: linear-gradient(135deg, #3FAE2A 0%, #4fc833 100%);
  --delimart-gradient-gold: linear-gradient(135deg, #F7B500 0%, #ffc833 100%);
  --delimart-gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  --delimart-gradient-success: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  --delimart-gradient-success-soft: linear-gradient(135deg, #d1fae5 0%, #ecfdf5 100%);
  
  /* Typographie Delimart */
  --delimart-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --delimart-font-display: 'Poppins', 'Inter', sans-serif; /* Pour les titres */
  --delimart-font-mono: 'SF Mono', 'Roboto Mono', ui-monospace, monospace;
  
  /* Tailles de police */
  --delimart-fs-xs: 0.75rem;    /* 12px */
  --delimart-fs-sm: 0.875rem;   /* 14px */
  --delimart-fs-base: 1rem;     /* 16px */
  --delimart-fs-lg: 1.125rem;   /* 18px */
  --delimart-fs-xl: 1.25rem;    /* 20px */
  --delimart-fs-2xl: 1.5rem;    /* 24px */
  --delimart-fs-3xl: 1.875rem;  /* 30px */
  --delimart-fs-4xl: 2.25rem;   /* 36px */
  --delimart-fs-5xl: 3rem;      /* 48px */
  --delimart-fs-6xl: 3.75rem;   /* 60px */
  
  /* Poids de police */
  --delimart-fw-light: 300;
  --delimart-fw-normal: 400;
  --delimart-fw-medium: 500;
  --delimart-fw-semibold: 600;
  --delimart-fw-bold: 700;
  --delimart-fw-extrabold: 800;
  --delimart-fw-black: 900;
  
  /* Espacements */
  --delimart-space-xs: 0.25rem;   /* 4px */
  --delimart-space-sm: 0.5rem;    /* 8px */
  --delimart-space-md: 1rem;      /* 16px */
  --delimart-space-lg: 1.5rem;    /* 24px */
  --delimart-space-xl: 2rem;      /* 32px */
  --delimart-space-2xl: 3rem;     /* 48px */
  --delimart-space-3xl: 4rem;     /* 64px */
  --delimart-space-4xl: 6rem;     /* 96px */
  
  /* Bordures */
  --delimart-radius-sm: 0.5rem;   /* 8px */
  --delimart-radius-md: 1rem;     /* 16px */
  --delimart-radius-lg: 1.5rem;   /* 24px */
  --delimart-radius-xl: 2rem;     /* 32px */
  --delimart-radius-full: 9999px;
  
  /* Ombres Delimart */
  --delimart-shadow-sm: 0 1px 2px 0 rgba(199, 1, 3, 0.05);
  --delimart-shadow-md: 0 4px 6px -1px rgba(199, 1, 3, 0.1), 0 2px 4px -1px rgba(199, 1, 3, 0.06);
  --delimart-shadow-lg: 0 10px 15px -3px rgba(199, 1, 3, 0.1), 0 4px 6px -2px rgba(199, 1, 3, 0.05);
  --delimart-shadow-xl: 0 20px 25px -5px rgba(199, 1, 3, 0.1), 0 10px 10px -5px rgba(199, 1, 3, 0.04);
  --delimart-shadow-2xl: 0 25px 50px -12px rgba(199, 1, 3, 0.25);
  --delimart-shadow-glow: 0 0 20px rgba(253, 59, 57, 0.5);
  --delimart-shadow-glow-strong: 0 0 40px rgba(253, 59, 57, 0.8);
  
  /* Glassmorphism */
  --delimart-glass-bg: rgba(255, 255, 255, 0.1);
  --delimart-glass-bg-light: rgba(255, 255, 255, 0.2);
  --delimart-glass-bg-dark: rgba(10, 10, 10, 0.3);
  --delimart-glass-border: rgba(255, 255, 255, 0.18);
  --delimart-glass-blur: blur(20px);
  --delimart-glass-blur-strong: blur(40px);
  
  /* Transitions */
  --delimart-transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --delimart-transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --delimart-transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --delimart-transition-bounce: 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   2. TYPOGRAPHIE DELIMART
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

body {
  font-family: var(--delimart-font-primary);
  font-size: var(--delimart-fs-base);
  font-weight: var(--delimart-fw-normal);
  line-height: 1.6;
  color: var(--delimart-gray-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* Le padding-top sera géré uniquement par les classes header-padding-desktop/mobile */
  padding-top: 0 !important; /* Supprimer le padding-top par défaut, géré par les classes */
}

@media (max-width: 768px) {
  body {
    padding-top: 0 !important; /* Supprimer le padding-top par défaut sur mobile aussi */
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--delimart-font-display);
  font-weight: var(--delimart-fw-bold);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--delimart-gray-900);
}

h1 { font-size: var(--delimart-fs-5xl); }
h2 { font-size: var(--delimart-fs-4xl); }
h3 { font-size: var(--delimart-fs-3xl); }
h4 { font-size: var(--delimart-fs-2xl); }
h5 { font-size: var(--delimart-fs-xl); }
h6 { font-size: var(--delimart-fs-lg); }

/* ============================================
   3. HEADER DELIMART FUTURISTE
   ============================================ */
.delimart-header-futuristic {
  background: var(--delimart-gradient-red);
  backdrop-filter: var(--delimart-glass-blur);
  -webkit-backdrop-filter: var(--delimart-glass-blur);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 4px 20px rgba(199, 1, 3, 0.15),
    0 2px 8px rgba(0, 0, 0, 0.1);
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Effet de scroll - header compact */
.delimart-header-futuristic.scrolled {
  padding: 0;
  box-shadow: 
    0 8px 30px rgba(199, 1, 3, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.15);
}

.delimart-header-futuristic.scrolled .delimart-header-inner {
  padding-top: var(--delimart-space-sm);
  padding-bottom: var(--delimart-space-sm);
}

.delimart-header-futuristic.scrolled .delimart-logo-img {
  height: 40px;
}

.delimart-header-futuristic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 100%
  );
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.6;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.delimart-header-futuristic:hover {
  box-shadow: 
    0 8px 30px rgba(199, 1, 3, 0.25),
    0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Ligne décorative en bas du header */
.delimart-header-futuristic::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.delimart-header-inner,
.delimart-header-futuristic .delimart-header-inner,
.delimart-header-futuristic .container.delimart-header-inner,
header .delimart-header-inner,
header.delimart-header-futuristic .delimart-header-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding-top: 1rem !important; /* Padding uniforme pour toutes les pages */
  padding-bottom: 1rem !important; /* Padding uniforme pour toutes les pages */
  padding-left: var(--delimart-space-lg) !important;
  padding-right: var(--delimart-space-lg) !important;
  position: relative;
  z-index: 1001;
  max-width: var(--container-width, 1400px);
  margin: 0 auto;
  gap: var(--delimart-space-lg);
  overflow: visible;
}


@media (max-width: 768px) {
  body.header-padding-mobile {
    padding-top: 60px !important;
  }
}

body.header-padding-desktop {
  padding-top: 80px !important; /* Espace pour le header fixe */
}

body.header-padding-mobile {
  padding-top: 70px !important; /* Espace pour le header fixe sur mobile */
}

@media (max-width: 768px) {
  .delimart-header-inner {
    padding-left: var(--delimart-space-md);
    padding-right: var(--delimart-space-md);
  }
}

.delimart-logo-futuristic {
  display: flex;
  align-items: center;
  gap: var(--delimart-space-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.delimart-logo-futuristic:hover {
  transform: scale(1.05);
}

.delimart-logo-futuristic::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.delimart-logo-futuristic:hover::after {
  opacity: 1;
}

.delimart-logo-img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.delimart-logo-img:hover {
  filter: 
    drop-shadow(0 8px 20px rgba(255, 255, 255, 0.3))
    drop-shadow(0 4px 12px rgba(253, 59, 57, 0.5));
  transform: translateY(-1px);
}

/* Navigation futuriste */
.delimart-nav-futuristic {
  display: flex;
  gap: var(--delimart-space-xs);
  list-style: none;
  margin: 0;
  padding: 0;
}

.delimart-nav-futuristic ul {
  display: flex;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

/* Séparateur subtil entre les items */
.delimart-nav-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@media (min-width: 769px) {
  .delimart-nav-item:not(:last-child)::after {
    opacity: 1;
  }
}

/* Desktop: Navigation toujours visible */
@media (min-width: 769px) {
  .delimart-nav-futuristic {
    position: static !important;
    max-height: none !important;
    overflow: visible !important;
    background: transparent !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    padding: 0 !important;
    margin-top: 0 !important;
  }
  
  .delimart-nav-futuristic.active,
  .delimart-nav-futuristic.is-open {
    position: static !important;
    max-height: none !important;
    overflow: visible !important;
    background: transparent !important;
  }
  
}

.delimart-nav-item {
  position: relative;
}

.delimart-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: var(--delimart-space-sm) var(--delimart-space-md);
  color: var(--delimart-white);
  font-weight: var(--delimart-fw-medium);
  font-size: var(--delimart-fs-sm);
  text-decoration: none;
  border-radius: var(--delimart-radius-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  letter-spacing: 0.01em;
  will-change: transform;
}

.delimart-nav-link span {
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.delimart-nav-futuristic::-webkit-scrollbar {
  height: 6px;
}

.delimart-nav-futuristic::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
}

.delimart-nav-futuristic::-webkit-scrollbar-track {
  background: transparent;
}

.delimart-nav-link svg {
  flex-shrink: 0;
  opacity: 0.95;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 16px;
  height: 16px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.delimart-nav-link .delimart-nav-icon-image {
  flex-shrink: 0;
  opacity: 0.95;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 16px;
  height: 16px;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.delimart-nav-link:hover svg {
  opacity: 1;
  transform: scale(1.15) translateY(-1px);
  filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
}

.delimart-nav-link:hover .delimart-nav-icon-image {
  opacity: 1;
  transform: scale(1.15) translateY(-1px);
  box-shadow: 0 2px 4px rgba(255, 255, 255, 0.28);
}

.delimart-nav-link.active svg {
  opacity: 1;
  filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.4));
}

.delimart-nav-link.active .delimart-nav-icon-image {
  opacity: 1;
  box-shadow: 0 2px 4px rgba(255, 255, 255, 0.34);
}

.delimart-nav-link--maillot {
  background: #ffffff;
  color: var(--delimart-red-primary);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  padding: 0.38rem 0.72rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.14);
}

.delimart-nav-link--maillot::before,
.delimart-nav-link--maillot::after {
  display: none;
}

.delimart-nav-link--maillot:hover,
.delimart-nav-link--maillot.active {
  color: #0a4db3;
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.delimart-nav-link--maillot .delimart-nav-icon-image {
  border: 1px solid rgba(199, 1, 3, 0.15);
}

/* Styles desktop pour navigation horizontale - supprimés pour mobile */
@media (min-width: 769px) {
  .delimart-nav-futuristic {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
    padding-bottom: var(--delimart-space-xs);
  }

  .delimart-nav-futuristic ul {
    gap: 0.45rem;
    width: max-content;
    min-width: 100%;
    padding-right: var(--delimart-space-sm);
    flex-wrap: nowrap;
  }

  .delimart-nav-link {
    font-size: 0.85rem;
    padding: var(--delimart-space-xs) var(--delimart-space-sm);
  }

  .delimart-nav-link svg {
    width: 14px;
    height: 14px;
  }

  .delimart-nav-link .delimart-nav-icon-image {
    width: 14px;
    height: 14px;
  }

  .delimart-nav-link--maillot {
    padding: 0.34rem 0.65rem;
  }
}

/* Fond animé au hover */
.delimart-nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--delimart-radius-md);
  backdrop-filter: blur(8px);
}

/* Ligne indicatrice animée */
.delimart-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--delimart-white),
    transparent
  );
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--delimart-radius-full);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.delimart-nav-link:hover::before {
  opacity: 1;
}

.delimart-nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.delimart-nav-link:hover {
  transform: scale(1.01);
  text-shadow:
    0 2px 8px rgba(255, 255, 255, 0.35),
    0 1px 4px rgba(255, 255, 255, 0.18);
  color: var(--delimart-white);
}

.delimart-nav-link.delimart-nav-link--maillot:hover,
.delimart-nav-link.delimart-nav-link--maillot.active,
.delimart-nav-link.delimart-nav-link--maillot:focus-visible {
  color: #0a4db3;
  text-shadow: none;
}

/* État actif amélioré */
.delimart-nav-link.active {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.3);
}

.delimart-nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.delimart-nav-item--cta::after {
  opacity: 0;
}

.delimart-nav-link--highlight {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  color: var(--delimart-white);
  font-weight: var(--delimart-fw-semibold);
  letter-spacing: 0.015em;
}

.delimart-nav-link--highlight::before {
  opacity: 0.55;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.18));
}

.delimart-nav-link--highlight::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.6);
}

.delimart-nav-link--highlight:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.delimart-nav-link--highlight svg {
  filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.4));
}

@media (max-width: 768px) {
  .delimart-nav-item--cta {
    margin-top: var(--delimart-space-xs);
  }

  .delimart-nav-link--highlight {
    border-width: 1px;
    font-size: 0.9rem;
  }
}

/* Badge pour Promotions */
.delimart-nav-link[href*="promotions"] {
  position: relative;
}

.delimart-nav-link[href*="promotions"] .nav-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 8px;
  height: 8px;
  background: var(--delimart-green-fresh);
  border-radius: 50%;
  border: 2px solid var(--delimart-red-primary);
  animation: pulse-badge 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(63, 174, 42, 0.6);
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* ============================================
   4. BOUTONS DELIMART FUTURISTES
   ============================================ */
.delimart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--delimart-space-sm);
  padding: var(--delimart-space-md) var(--delimart-space-xl);
  font-family: var(--delimart-font-primary);
  font-size: var(--delimart-fs-base);
  font-weight: var(--delimart-fw-semibold);
  line-height: 1.5;
  text-decoration: none;
  border: none;
  border-radius: var(--delimart-radius-lg);
  cursor: pointer;
  transition: all var(--delimart-transition-base);
  position: relative;
  overflow: hidden;
  box-shadow: var(--delimart-shadow-md);
}

.delimart-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  opacity: 0;
  transition: opacity var(--delimart-transition-base);
}

.delimart-btn:hover::before {
  opacity: 1;
}

.delimart-btn-primary {
  background: var(--delimart-gradient-red);
  color: var(--delimart-white);
  box-shadow: var(--delimart-shadow-lg), var(--delimart-shadow-glow);
}

.delimart-btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--delimart-shadow-xl), var(--delimart-shadow-glow-strong);
}

.delimart-btn-primary:active {
  transform: translateY(0) scale(1);
}

.delimart-btn-secondary {
  background: var(--delimart-glass-bg-light);
  backdrop-filter: var(--delimart-glass-blur);
  -webkit-backdrop-filter: var(--delimart-glass-blur);
  color: var(--delimart-white);
  border: 1px solid var(--delimart-glass-border);
}

.delimart-btn-secondary:hover {
  background: var(--delimart-glass-bg);
  border-color: var(--delimart-white);
  transform: translateY(-2px);
}

.delimart-btn-ghost {
  background: transparent;
  color: var(--delimart-white);
  border: 2px solid var(--delimart-white);
  box-shadow: none;
}

.delimart-btn-ghost:hover {
  background: var(--delimart-white);
  color: var(--delimart-red-primary);
  transform: translateY(-2px);
}

.delimart-btn-lg {
  padding: var(--delimart-space-lg) var(--delimart-space-2xl);
  font-size: var(--delimart-fs-lg);
  border-radius: var(--delimart-radius-xl);
}

.delimart-btn-sm {
  padding: var(--delimart-space-sm) var(--delimart-space-md);
  font-size: var(--delimart-fs-sm);
  border-radius: var(--delimart-radius-md);
}

/* ============================================
   5. CARTES DELIMART FUTURISTES
   ============================================ */
.delimart-card {
  background: var(--delimart-white);
  border-radius: var(--delimart-radius-xl);
  padding: var(--delimart-space-xl);
  box-shadow: var(--delimart-shadow-lg);
  transition: all var(--delimart-transition-base);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--delimart-gray-200);
}

.delimart-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--delimart-gradient-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--delimart-transition-base);
}

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

.delimart-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--delimart-shadow-2xl);
}

/* Carte standard avec bordure verte (success) */
.delimart-card.delimart-card-success-border::before {
  background: var(--delimart-gradient-success);
}

.delimart-card.delimart-card-success-border:hover {
  box-shadow: var(--delimart-shadow-2xl), 0 0 20px rgba(16, 185, 129, 0.2);
}

/* Carte standard avec bordure verte toujours visible */
.delimart-card.delimart-card-success-border-always::before {
  transform: scaleX(1);
  background: var(--delimart-gradient-success);
}

.delimart-card-glass {
  background: var(--delimart-glass-bg-light);
  backdrop-filter: var(--delimart-glass-blur);
  -webkit-backdrop-filter: var(--delimart-glass-blur);
  border: 1px solid var(--delimart-glass-border);
  color: var(--delimart-white);
}

.delimart-card-3d {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.delimart-card-3d:hover {
  transform: rotateY(5deg) rotateX(5deg);
}

/* ============================================
   6. EFFETS DE LUMIÈRE ET GLOW
   ============================================ */
.delimart-glow-red {
  box-shadow: var(--delimart-shadow-glow);
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: var(--delimart-shadow-glow);
  }
  50% {
    box-shadow: var(--delimart-shadow-glow-strong);
  }
}

.delimart-text-glow {
  text-shadow: 0 0 20px rgba(253, 59, 57, 0.8), 0 0 40px rgba(253, 59, 57, 0.4);
}

.delimart-border-glow {
  border: 2px solid var(--delimart-red-bright);
  box-shadow: 0 0 20px rgba(253, 59, 57, 0.5), inset 0 0 20px rgba(253, 59, 57, 0.1);
}

/* ============================================
   7. ANIMATIONS DELIMART
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

.delimart-animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out;
}

.delimart-animate-fadeInDown {
  animation: fadeInDown 0.6s ease-out;
}

.delimart-animate-fadeInLeft {
  animation: fadeInLeft 0.6s ease-out;
}

.delimart-animate-fadeInRight {
  animation: fadeInRight 0.6s ease-out;
}

.delimart-animate-scaleIn {
  animation: scaleIn 0.5s ease-out;
}

.delimart-animate-rotateIn {
  animation: rotateIn 0.6s ease-out;
}

/* ============================================
   8. SECTIONS DELIMART FUTURISTES
   ============================================ */
.delimart-section {
  padding: var(--delimart-space-4xl) 0;
  position: relative;
  overflow: hidden;
}

.delimart-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(199, 1, 3, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.delimart-section-gradient {
  background: linear-gradient(180deg, var(--delimart-white) 0%, var(--delimart-gray-50) 100%);
}

.delimart-section-dark {
  background: var(--delimart-gradient-dark);
  color: var(--delimart-white);
}

.delimart-section-red {
  background: var(--delimart-gradient-red);
  color: var(--delimart-white);
}

/* ============================================
   9. BADGES ET PILLS DELIMART
   ============================================ */
.delimart-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--delimart-space-xs);
  padding: var(--delimart-space-xs) var(--delimart-space-md);
  font-size: var(--delimart-fs-sm);
  font-weight: var(--delimart-fw-semibold);
  border-radius: var(--delimart-radius-full);
  background: var(--delimart-gradient-red);
  color: var(--delimart-white);
  box-shadow: var(--delimart-shadow-md);
}

.delimart-badge-green {
  background: var(--delimart-gradient-fresh);
}

.delimart-badge-gold {
  background: var(--delimart-gradient-gold);
  color: var(--delimart-black);
}

.delimart-badge-glass {
  background: var(--delimart-glass-bg-light);
  backdrop-filter: var(--delimart-glass-blur);
  -webkit-backdrop-filter: var(--delimart-glass-blur);
  border: 1px solid var(--delimart-glass-border);
}

.delimart-badge-success {
  background: var(--delimart-gradient-success);
  color: var(--delimart-white);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.delimart-badge-success-light {
  background: var(--delimart-success-light);
  color: var(--delimart-success-dark);
  border: 1px solid var(--delimart-success);
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.2);
}

/* ============================================
   10. FOOTER DELIMART FUTURISTE
   ============================================ */

/* Footer Variante 1 : Footer Sombre Classique */
.delimart-footer-futuristic {
  background: var(--delimart-gradient-dark);
  color: var(--delimart-gray-300);
  padding: var(--delimart-space-3xl) 0 var(--delimart-space-xl);
  position: relative;
  overflow: hidden;
}

.delimart-footer-futuristic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--delimart-gradient-red);
  opacity: 0.5;
}

.delimart-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--delimart-space-2xl);
  margin-bottom: var(--delimart-space-2xl);
}

.delimart-footer-section h4 {
  color: var(--delimart-white);
  font-size: var(--delimart-fs-lg);
  font-weight: var(--delimart-fw-bold);
  margin-bottom: var(--delimart-space-md);
}

.delimart-footer-link {
  color: var(--delimart-gray-400);
  text-decoration: none;
  transition: color var(--delimart-transition-base);
  display: inline-block;
}

.delimart-footer-link:hover {
  color: var(--delimart-red-bright);
  transform: translateX(4px);
}

.delimart-footer-bottom {
  text-align: center;
  padding-top: var(--delimart-space-xl);
  border-top: 1px solid var(--delimart-gray-800);
  color: var(--delimart-gray-500);
  font-size: var(--delimart-fs-sm);
}

/* Footer Variante 2 : Footer avec Gradient Rouge */
.delimart-footer-gradient {
  background: var(--delimart-gradient-red);
  color: var(--delimart-white);
  padding: var(--delimart-space-3xl) 0 var(--delimart-space-xl);
  position: relative;
  overflow: hidden;
}

.delimart-footer-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.delimart-footer-gradient .delimart-footer-section h4 {
  color: var(--delimart-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.delimart-footer-gradient .delimart-footer-link {
  color: rgba(255, 255, 255, 0.9);
}

.delimart-footer-gradient .delimart-footer-link:hover {
  color: var(--delimart-white);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.delimart-footer-gradient .delimart-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

/* Footer Variante 3 : Footer Minimaliste avec Glassmorphism */
.delimart-footer-minimal {
  background: var(--delimart-gray-50);
  color: var(--delimart-gray-700);
  padding: var(--delimart-space-2xl) 0;
  border-top: 1px solid var(--delimart-gray-200);
  position: relative;
}

.delimart-footer-minimal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--delimart-gradient-red);
}

.delimart-footer-minimal .delimart-footer-section h4 {
  color: var(--delimart-gray-900);
  font-size: var(--delimart-fs-base);
  font-weight: var(--delimart-fw-semibold);
}

.delimart-footer-minimal .delimart-footer-link {
  color: var(--delimart-gray-600);
  font-size: var(--delimart-fs-sm);
}

.delimart-footer-minimal .delimart-footer-link:hover {
  color: var(--delimart-red-primary);
}

.delimart-footer-minimal .delimart-footer-bottom {
  border-top: 1px solid var(--delimart-gray-200);
  color: var(--delimart-gray-500);
}

/* Footer Variante 4 : Footer avec Newsletter */
.delimart-footer-newsletter {
  background: var(--delimart-gradient-dark);
  color: var(--delimart-gray-300);
  padding: var(--delimart-space-3xl) 0 var(--delimart-space-xl);
  position: relative;
}

.delimart-footer-newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--delimart-gradient-red);
}

.delimart-footer-newsletter-box {
  background: var(--delimart-glass-bg-dark);
  backdrop-filter: var(--delimart-glass-blur);
  -webkit-backdrop-filter: var(--delimart-glass-blur);
  border: 1px solid var(--delimart-glass-border);
  border-radius: var(--delimart-radius-xl);
  padding: var(--delimart-space-xl);
  margin-bottom: var(--delimart-space-2xl);
}

.delimart-footer-newsletter-box h4 {
  color: var(--delimart-white);
  margin-bottom: var(--delimart-space-md);
}

.delimart-footer-newsletter-box p {
  color: var(--delimart-gray-400);
  margin-bottom: var(--delimart-space-lg);
  font-size: var(--delimart-fs-sm);
}

.delimart-footer-newsletter-form {
  display: flex;
  gap: var(--delimart-space-sm);
  flex-wrap: wrap;
}

.delimart-footer-newsletter-input {
  flex: 1;
  min-width: 200px;
  padding: var(--delimart-space-md);
  border: 1px solid var(--delimart-glass-border);
  border-radius: var(--delimart-radius-lg);
  background: var(--delimart-glass-bg);
  color: var(--delimart-white);
  font-size: var(--delimart-fs-base);
  transition: all var(--delimart-transition-base);
}

.delimart-footer-newsletter-input:focus {
  outline: none;
  border-color: var(--delimart-red-bright);
  box-shadow: 0 0 0 3px rgba(253, 59, 57, 0.2);
}

.delimart-footer-newsletter-input::placeholder {
  color: var(--delimart-gray-500);
}

.delimart-footer-newsletter-btn {
  padding: var(--delimart-space-md) var(--delimart-space-xl);
  background: var(--delimart-gradient-red);
  color: var(--delimart-white);
  border: none;
  border-radius: var(--delimart-radius-lg);
  font-weight: var(--delimart-fw-semibold);
  cursor: pointer;
  transition: all var(--delimart-transition-base);
  white-space: nowrap;
}

.delimart-footer-newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--delimart-shadow-lg), var(--delimart-shadow-glow);
}

/* Footer Variante 5 : Footer avec Icônes Sociales */
.delimart-footer-social {
  background: var(--delimart-gradient-dark);
  color: var(--delimart-gray-300);
  padding: var(--delimart-space-3xl) 0 var(--delimart-space-xl);
  position: relative;
}

.delimart-footer-social-icons {
  display: flex;
  gap: var(--delimart-space-md);
  margin-top: var(--delimart-space-md);
  flex-wrap: wrap;
}

.delimart-footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--delimart-radius-md);
  background: var(--delimart-glass-bg-dark);
  backdrop-filter: var(--delimart-glass-blur);
  -webkit-backdrop-filter: var(--delimart-glass-blur);
  border: 1px solid var(--delimart-glass-border);
  color: var(--delimart-gray-300);
  text-decoration: none;
  transition: all var(--delimart-transition-base);
  font-size: var(--delimart-fs-lg);
}

.delimart-footer-social-icon:hover {
  background: var(--delimart-red-primary);
  border-color: var(--delimart-red-bright);
  color: var(--delimart-white);
  transform: translateY(-4px) scale(1.1);
  box-shadow: var(--delimart-shadow-lg), var(--delimart-shadow-glow);
}

/* Footer Variante 6 : Footer avec Carte de Contact */
.delimart-footer-contact-card {
  background: var(--delimart-white);
  border-radius: var(--delimart-radius-xl);
  padding: var(--delimart-space-xl);
  box-shadow: var(--delimart-shadow-xl);
  margin-bottom: var(--delimart-space-2xl);
  border-top: 4px solid var(--delimart-red-primary);
}

.delimart-footer-contact-card h4 {
  color: var(--delimart-gray-900);
  margin-bottom: var(--delimart-space-md);
}

.delimart-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--delimart-space-md);
  margin-bottom: var(--delimart-space-md);
  color: var(--delimart-gray-700);
}

.delimart-footer-contact-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--delimart-red-primary);
}

.delimart-footer-contact-text {
  flex: 1;
  font-size: var(--delimart-fs-sm);
  line-height: 1.6;
}

/* Footer Variante 7 : Footer avec Pattern */
.delimart-footer-pattern {
  background: var(--delimart-gradient-dark);
  color: var(--delimart-gray-300);
  padding: var(--delimart-space-3xl) 0 var(--delimart-space-xl);
  position: relative;
  overflow: hidden;
}

.delimart-footer-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(199, 1, 3, 0.15) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.3;
  pointer-events: none;
}

.delimart-footer-pattern::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--delimart-gradient-red);
}

/* Footer Variante 8 : Footer Split (Rouge + Sombre) */
.delimart-footer-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 300px;
  overflow: hidden;
}

.delimart-footer-split-left {
  background: var(--delimart-gradient-red);
  color: var(--delimart-white);
  padding: var(--delimart-space-3xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.delimart-footer-split-right {
  background: var(--delimart-gradient-dark);
  color: var(--delimart-gray-300);
  padding: var(--delimart-space-3xl);
}

.delimart-footer-split-left h4,
.delimart-footer-split-left .delimart-footer-link {
  color: var(--delimart-white);
}

.delimart-footer-split-right h4 {
  color: var(--delimart-white);
}

/* Footer Variante 9 : Footer avec Fond Blanc */
.delimart-footer-white {
  background: var(--delimart-white);
  color: var(--delimart-gray-700);
  padding: var(--delimart-space-2xl) 0 var(--delimart-space-lg);
  border-top: 3px solid;
  border-image: var(--delimart-gradient-red) 1;
  position: relative;
  margin-top: 0;
}

.delimart-footer-white .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--delimart-space-lg);
}

.delimart-footer-white::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--delimart-gray-200);
}

.delimart-footer-white .delimart-footer-section h4 {
  color: var(--delimart-red-primary);
  font-size: var(--delimart-fs-lg);
  font-weight: var(--delimart-fw-bold);
  margin-bottom: var(--delimart-space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.delimart-footer-white .delimart-footer-link {
  color: var(--delimart-gray-600);
  font-size: var(--delimart-fs-sm);
}

.delimart-footer-white .delimart-footer-link:hover {
  color: var(--delimart-red-primary);
}

.delimart-footer-white .delimart-footer-bottom {
  border-top: 1px solid var(--delimart-gray-200);
  color: var(--delimart-gray-500);
  padding-top: var(--delimart-space-xl);
}

.delimart-footer-white .delimart-footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--delimart-gray-100);
  border: 1px solid var(--delimart-gray-200);
  color: var(--delimart-gray-700);
  transition: all var(--delimart-transition-base);
  border-radius: var(--delimart-radius-md);
}

.delimart-footer-white .delimart-footer-social-icon:hover {
  background: var(--delimart-red-primary);
  border-color: var(--delimart-red-primary);
  color: var(--delimart-white);
  transform: translateY(-2px);
  box-shadow: var(--delimart-shadow-md);
}

.delimart-footer-white .delimart-footer-social-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.delimart-footer-white-logo {
  margin-bottom: var(--delimart-space-lg);
}

.delimart-footer-white-logo a {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.delimart-footer-white-logo a:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.delimart-footer-white-logo a:focus {
  outline: 2px solid var(--delimart-red-primary);
  outline-offset: 4px;
  border-radius: 4px;
}

.delimart-footer-white-logo img {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.delimart-footer-white-description {
  color: var(--delimart-gray-600);
  font-size: var(--delimart-fs-sm);
  line-height: 1.6;
  margin-bottom: var(--delimart-space-lg);
}

.delimart-footer-white-divider {
  width: 100%;
  height: 1px;
  background: var(--delimart-gray-200);
  margin: var(--delimart-space-xl) 0;
}

/* Footer Variante 3 Full : Minimaliste Complète */
.delimart-footer-minimal-full {
  background: var(--delimart-gray-50);
  color: var(--delimart-gray-700);
  padding: var(--delimart-space-3xl) 0 var(--delimart-space-xl);
  border-top: 3px solid;
  border-image: var(--delimart-gradient-red) 1;
  position: relative;
}

.delimart-footer-minimal-full::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--delimart-gray-200);
}

.delimart-footer-minimal-full .delimart-footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--delimart-space-2xl);
  margin-bottom: var(--delimart-space-2xl);
}

.delimart-footer-minimal-full .delimart-footer-section h4 {
  color: var(--delimart-gray-900);
  font-size: var(--delimart-fs-base);
  font-weight: var(--delimart-fw-semibold);
  margin-bottom: var(--delimart-space-md);
  text-transform: uppercase;
  font-size: var(--delimart-fs-xs);
  letter-spacing: 0.05em;
}

.delimart-footer-minimal-full .delimart-footer-link {
  color: var(--delimart-gray-600);
  font-size: var(--delimart-fs-sm);
  margin-bottom: var(--delimart-space-sm);
  display: block;
}

.delimart-footer-minimal-full .delimart-footer-link:hover {
  color: var(--delimart-red-primary);
  padding-left: 4px;
}

.delimart-footer-minimal-full-brand {
  max-width: 300px;
}

.delimart-footer-minimal-full-brand h4 {
  font-size: var(--delimart-fs-lg);
  font-weight: var(--delimart-fw-bold);
  text-transform: none;
  letter-spacing: normal;
  color: var(--delimart-red-primary);
  margin-bottom: var(--delimart-space-md);
}

.delimart-footer-minimal-full-brand p {
  color: var(--delimart-gray-600);
  font-size: var(--delimart-fs-sm);
  line-height: 1.6;
  margin-bottom: var(--delimart-space-lg);
}

.delimart-footer-minimal-full-social {
  display: flex;
  gap: var(--delimart-space-sm);
  margin-top: var(--delimart-space-md);
}

.delimart-footer-minimal-full-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--delimart-radius-md);
  background: var(--delimart-white);
  border: 1px solid var(--delimart-gray-200);
  color: var(--delimart-gray-600);
  text-decoration: none;
  transition: all var(--delimart-transition-base);
  font-size: var(--delimart-fs-base);
}

.delimart-footer-minimal-full-social a:hover {
  background: var(--delimart-red-primary);
  border-color: var(--delimart-red-primary);
  color: var(--delimart-white);
  transform: translateY(-2px);
  box-shadow: var(--delimart-shadow-md);
}

.delimart-footer-minimal-full .delimart-footer-bottom {
  border-top: 1px solid var(--delimart-gray-200);
  color: var(--delimart-gray-500);
  padding-top: var(--delimart-space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--delimart-space-md);
}

.delimart-footer-minimal-full-legal {
  display: flex;
  gap: var(--delimart-space-lg);
  flex-wrap: wrap;
}

.delimart-footer-minimal-full-legal a {
  color: var(--delimart-gray-500);
  font-size: var(--delimart-fs-xs);
  text-decoration: none;
  transition: color var(--delimart-transition-base);
}

.delimart-footer-minimal-full-legal a:hover {
  color: var(--delimart-red-primary);
}

@media (max-width: 768px) {
  .delimart-footer-split {
    grid-template-columns: 1fr;
  }
  
  .delimart-footer-newsletter-form {
    flex-direction: column;
  }
  
  .delimart-footer-newsletter-input {
    width: 100%;
  }
  
  .delimart-footer-newsletter-btn {
    width: 100%;
  }
  
  .delimart-footer-minimal-full .delimart-footer-content {
    grid-template-columns: 1fr;
    gap: var(--delimart-space-xl);
  }
  
  .delimart-footer-minimal-full-brand {
    max-width: 100%;
  }
  
  .delimart-footer-minimal-full .delimart-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .delimart-footer-minimal-full-legal {
    justify-content: center;
  }
}

/* ============================================
   11. RESPONSIVE DELIMART
   ============================================ */

/* Desktop: Navigation visible, bouton mobile caché */
.mobile-menu-toggle {
  display: none;
}

/* Mobile: Navigation cachée par défaut, bouton visible */
@media (max-width: 768px) {
  .delimart-nav-futuristic.is-mobile-hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-12px) !important;
  }
  
  .delimart-nav-futuristic.is-mobile-visible {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
    max-height: 80vh !important;
    overflow-y: auto !important;
    padding: 0.75rem 0 !important;
  }
  
  .delimart-nav-futuristic.is-mobile-visible ul {
    width: 100%;
  }
  
  .delimart-header-inner {
    padding: 1rem 0 !important; /* Padding uniforme pour mobile aussi */
    position: relative;
    overflow: visible;
  }
  
  .delimart-header-futuristic {
    overflow: visible;
  }
  
  .delimart-logo-img {
    height: 36px;
  }
  
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    z-index: 1003;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 44px;
    height: 44px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  
  .mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .mobile-menu-toggle:active {
    transform: scale(0.95);
  }
  
  .mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }
  
  .mobile-menu-toggle[aria-expanded="true"],
  .mobile-menu-toggle.is-open {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
  }
  
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1),
  .mobile-menu-toggle.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px) !important;
  }
  
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2),
  .mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0 !important;
    transform: translateX(-10px) !important;
  }
  
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3),
  .mobile-menu-toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px) !important;
  }
  
  /* Navigation mobile: cachée par défaut */
  .delimart-nav-futuristic {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: linear-gradient(120deg, rgba(199, 1, 3, 0.96) 0%, rgba(253, 59, 57, 0.92) 100%) !important;
    border-radius: 20px;
    padding: 0 !important;
    box-shadow:
      0 18px 40px rgba(199, 1, 3, 0.28),
      0 8px 20px rgba(0, 0, 0, 0.18);
    z-index: 1002 !important;
    display: none !important;
    flex-direction: column !important;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    margin-top: 0.5rem !important;
    max-height: 0;
    overflow: hidden;
    min-height: 0;
  }
  
  .delimart-nav-futuristic.active,
  .delimart-nav-futuristic.is-open,
  nav.delimart-nav-futuristic.active,
  nav.delimart-nav-futuristic.is-open,
  #main-nav.active,
  #main-nav.is-open {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
    display: flex !important;
    max-height: 80vh !important;
    min-height: auto !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 0.75rem 0 !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1002 !important;
  }
  
  /* Forcer l'affichage du contenu du menu quand ouvert */
  .delimart-nav-futuristic.active ul,
  .delimart-nav-futuristic.is-open ul {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .delimart-nav-futuristic ul {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    width: 100%;
    list-style: none;
    margin: 0;
  }
  
  .delimart-nav-item {
    width: 100%;
  }
  
  .delimart-nav-item + .delimart-nav-item {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .delimart-nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 1rem 1.5rem;
    border-radius: 0;
  }
  
  .delimart-nav-link::after {
    display: none;
  }
  
  .delimart-btn {
    width: 100%;
    justify-content: center;
  }
  
  .delimart-section {
    padding: var(--delimart-space-2xl) 0;
  }
  
  h1 { font-size: var(--delimart-fs-4xl); }
  h2 { font-size: var(--delimart-fs-3xl); }
  h3 { font-size: var(--delimart-fs-2xl); }
  
  /* Footer white mobile */
  .delimart-footer-white .delimart-footer-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--delimart-space-lg);
  }

  .delimart-footer-white .delimart-footer-section:first-child {
    grid-column: 1 / -1;
  }
 
  body.mobile-nav-open {
    overflow: hidden;
  }
}

/* ============================================
   12. MESSAGES DE CONFIRMATION/SUCCESS
   ============================================ */
.delimart-alert {
  padding: var(--delimart-space-md) var(--delimart-space-lg);
  border-radius: var(--delimart-radius-lg);
  border: 1px solid;
  font-size: var(--delimart-fs-base);
  line-height: 1.6;
  margin-bottom: var(--delimart-space-md);
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: var(--delimart-space-sm);
}

.delimart-alert-success {
  background: var(--delimart-success-light);
  border-color: var(--delimart-success);
  color: var(--delimart-success-dark);
}

.delimart-alert-success::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--delimart-success);
  color: var(--delimart-white);
  font-weight: var(--delimart-fw-bold);
  font-size: var(--delimart-fs-sm);
  flex-shrink: 0;
}

.delimart-alert-success-gradient {
  background: var(--delimart-gradient-success-soft);
  border-color: var(--delimart-success);
  color: var(--delimart-success-dark);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.delimart-card-success {
  background: var(--delimart-success-light);
  border: 2px solid var(--delimart-success);
  color: var(--delimart-success-dark);
}

.delimart-card-success:hover {
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
  transform: translateY(-4px);
}

/* ============================================
   13. UTILITAIRES DELIMART
   ============================================ */
.delimart-text-gradient {
  background: var(--delimart-gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.delimart-text-gradient-success {
  background: var(--delimart-gradient-success);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.delimart-bg-pattern {
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(199, 1, 3, 0.1) 1px, transparent 0);
  background-size: 20px 20px;
}

.delimart-bg-pattern-success {
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(16, 185, 129, 0.1) 1px, transparent 0);
  background-size: 20px 20px;
}

.delimart-divider {
  height: 1px;
  background: var(--delimart-gradient-red);
  margin: var(--delimart-space-2xl) 0;
  opacity: 0.3;
}

.delimart-divider-success {
  height: 1px;
  background: var(--delimart-gradient-success);
  margin: var(--delimart-space-2xl) 0;
  opacity: 0.3;
}

