/* ===== POLICES ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== COULEURS PREMIUM ===== */
:root {
  --black: #0F0F0F;
  --black-light: #1A1A1A;
  --black-medium: #242424;
  --gold: #D4AF37;
  --gold-light: #E8C84A;
  --gold-dark: #B8962A;
  --white: #F8F8F8;
  --white-pure: #FFFFFF;
  --gray-light: #E5E5E5;
  --gray-medium: #A0A0A0;
  --gray-dark: #6B6B6B;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);
  --shadow-premium: 0 8px 40px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.25);
  --radius: 20px;
  --radius-large: 28px;
  --radius-small: 16px;
  --transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== GLASSMORPHISM UTILITY ===== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}

/* ===== HEADER ===== */
.navbar {
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
  border-radius: 12px;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 32px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: var(--gray-medium);
}
.nav-links a {
  text-decoration: none;
  color: inherit;
  font-size: 1.05rem;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--white);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a.active {
  color: var(--white);
}

.nav-icons {
  display: flex;
  gap: 24px;
  font-size: 1.3rem;
  color: var(--gray-medium);
  align-items: center;
}
.nav-icons i {
  cursor: pointer;
  transition: var(--transition);
}
.nav-icons i:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.panier-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  text-align: center;
}

/* ============================================ */
/* ===== RESPONSIVE HEADER - AGGRANDI SUR MOBILE ===== */
/* ============================================ */
@media (max-width: 768px) {
  .navbar {
    padding: 18px 0;
  }
  
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  
  .logo {
    justify-content: center;
    gap: 14px;
  }
  
  .logo-img {
    height: 60px;
  }
  
  .logo-text {
    font-size: 1.8rem;
  }
  
  .nav-links {
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 6px 0;
  }
  
  .nav-links a {
    font-size: 1.1rem;
    padding: 6px 10px;
  }
  
  .nav-icons {
    justify-content: center;
    font-size: 1.5rem;
    gap: 24px;
    padding: 4px 0;
  }
  
  .panier-badge {
    font-size: 0.75rem;
    min-width: 22px;
    top: -10px;
    right: -12px;
    padding: 2px 8px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 16px 0;
  }
  
  .header-inner {
    gap: 14px;
  }
  
  .logo {
    gap: 12px;
  }
  
  .logo-img {
    height: 55px;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .nav-links {
    gap: 12px;
  }
  
  .nav-links a {
    font-size: 1rem;
    padding: 4px 8px;
  }
  
  .nav-icons {
    font-size: 1.3rem;
    gap: 20px;
  }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
  padding: 14px 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1 1 200px;
}
.hero-content .hero-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  padding: 3px 14px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 5px;
  border: 1px solid rgba(212, 175, 55, 0.15);
}
.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--white);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.hero-content h1 span {
  color: var(--gold);
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}
.hero-content p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--gray-medium);
  margin: 5px 0 10px;
  max-width: 400px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-primary {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border: none;
  padding: 7px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  padding: 7px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.1);
}

.hero-image {
  flex: 1 1 130px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 12px;
  border-radius: var(--radius-large);
  text-align: center;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-premium);
}
.hero-image img {
  max-width: 70%;
  height: auto;
  filter: drop-shadow(0 8px 40px rgba(212, 175, 55, 0.1));
}
.hero-image i {
  font-size: 2.4rem;
  color: var(--gold);
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.15));
  transition: var(--transition);
}
.hero-image i:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.25));
}

/* ===== FEATURES ===== */
.features-section {
  background: var(--black);
  padding: 22px 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-large);
  padding: 20px 30px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: var(--gray-light);
  font-size: 0.9rem;
}
.feature-item i {
  font-size: 1.3rem;
  color: var(--gold);
  width: 30px;
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.5px;
  color: var(--black);
  margin: 40px 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-title .badge {
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 40px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===== ZONE BLANCHE ===== */
.white-section {
  background: var(--white-pure);
  padding: 20px 0 40px;
}

/* ============================================ */
/* ===== PRODUCT CARD - AVEC CONTOUR DORÉ ===== */
/* ============================================ */
.product-card {
  background: #FFFFFF;
  border: 2px solid #D4AF37;
  border-radius: 20px;
  padding: 20px 18px 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
  border-color: #E8C84A;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 16px 0 24px;
}

/* ============================================ */
/* ===== PRODUCT IMAGE - PLEINE CASE ===== */
/* ============================================ */
.product-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 12px;
  background: #F8F8F8;
  aspect-ratio: 1/1;
  border: none;
  transition: all 0.5s ease;
}

.product-image-wrapper .product-image {
  margin-bottom: 0;
  aspect-ratio: 1/1;
  background: #F8F8F8;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image-wrapper .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-image-wrapper .product-image img {
  transform: scale(1.08);
}

/* ============================================ */
/* ===== CARROUSEL D'IMAGES ===== */
/* ============================================ */
.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8F8F8;
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  backdrop-filter: blur(4px);
}

.product-image-wrapper:hover .carousel-btn {
  opacity: 1;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 8px;
}

.carousel-btn.next {
  right: 8px;
}

.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.carousel-dot.active {
  background: #D4AF37;
  transform: scale(1.2);
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.carousel-counter {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 10;
  backdrop-filter: blur(4px);
}

/* ===== ACTIONS SUR L'IMAGE ===== */
.product-image-actions {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 5;
  background: rgba(15, 15, 15, 0.8);
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.product-image-wrapper:hover .product-image-actions {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.img-action {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.img-action:hover {
  transform: scale(1.15);
  color: white;
}

.img-action.zoom:hover {
  background: #3b82f6;
  color: white;
}

.img-action.download:hover {
  background: #25d366;
  color: white;
}

/* ===== TEXTES PRODUITS ===== */
.product-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #0F0F0F;
  margin: 8px 0 2px;
  letter-spacing: -0.3px;
  min-height: 28px;
}

.product-card .description {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  color: #8A8A8A;
  margin: 4px 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 38px;
}

.product-card .price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #D4AF37;
  margin: 4px 0 10px;
  letter-spacing: -0.5px;
}

.product-card .rating {
  color: #D4AF37;
  font-size: 0.75rem;
  margin-bottom: 6px;
  letter-spacing: 2px;
}

/* ===== BADGE ===== */
.badge-new {
  background: linear-gradient(135deg, #D4AF37, #E8C84A);
  color: #0F0F0F;
  font-size: 0.5rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 40px;
  display: inline-block;
  margin-bottom: 6px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.15);
}

/* ===== BADGE VEDETTE ===== */
.badge-vedette {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0F0F0F;
  font-size: 0.5rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 40px;
  display: inline-block;
  margin-bottom: 6px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
  animation: pulse-vedette 1.5s ease-in-out infinite;
}

@keyframes pulse-vedette {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ===== QUANTITÉ ===== */
.quantite-control {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  margin: 6px 0;
}
.quantite-control button {
  background: #F5F5F5;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #0F0F0F;
}

.quantite-control button:hover {
  background: #D4AF37;
  color: white;
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.2);
}

.quantite-control span {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  min-width: 24px;
  text-align: center;
  font-size: 0.9rem;
  color: #0F0F0F;
}

/* ===== BOUTON AJOUTER ===== */
.btn-outline {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border: 2px solid #D4AF37;
  background: transparent;
  color: #D4AF37;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  display: inline-block;
  width: 100%;
  margin-top: 6px;
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
  transition: all 0.6s ease;
}

.btn-outline:hover {
  background: linear-gradient(135deg, #D4AF37, #E8C84A);
  color: #0F0F0F;
  box-shadow: 0 4px 25px rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
}

.btn-outline:hover::before {
  left: 100%;
}

.btn-outline:active {
  transform: scale(0.96);
}

.btn-indisponible {
  background: #fee2e2;
  color: #dc2626;
  padding: 0.4rem;
  border-radius: 10px;
  font-weight: 600;
  margin-top: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
}

/* ============================================ */
/* ===== BANNIERES PROMOTIONS ===== */
/* ============================================ */
.banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 16px 0 24px;
}

.banner-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  aspect-ratio: 4/3;
  background: #1A1A1A;
  border: 2px solid #D4AF37;
}

.banner-card:hover {
  transform: scale(1.02);
  border-color: #E8C84A;
  box-shadow: 0 12px 50px rgba(212, 175, 55, 0.12);
}

.banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.banner-card:hover img {
  transform: scale(1.05);
}

.banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 22px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: white;
}

.banner-overlay h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
  letter-spacing: -0.3px;
}

.banner-overlay p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  opacity: 0.85;
}

/* ============================================ */
/* ===== RESPONSIVE ===== */
/* ============================================ */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .banner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* ===== HEADER AGRANDI SUR MOBILE ===== */
  .navbar {
    padding: 18px 0;
  }
  
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  
  .logo {
    justify-content: center;
    gap: 14px;
  }
  
  .logo-img {
    height: 60px;
  }
  
  .logo-text {
    font-size: 1.8rem;
  }
  
  .nav-links {
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 6px 0;
  }
  
  .nav-links a {
    font-size: 1.1rem;
    padding: 6px 10px;
  }
  
  .nav-icons {
    justify-content: center;
    font-size: 1.5rem;
    gap: 24px;
    padding: 4px 0;
  }
  
  .panier-badge {
    font-size: 0.75rem;
    min-width: 22px;
    top: -10px;
    right: -12px;
    padding: 2px 8px;
  }
  
  /* ===== RESTE DU RESPONSIVE ===== */
  .hero {
    padding: 12px 0 10px;
  }
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero-content p {
    font-size: 0.9rem;
    max-width: 100%;
  }
  .hero-image {
    min-height: 70px;
    padding: 10px;
    flex: 1 1 110px;
  }
  .hero-image i {
    font-size: 2rem;
  }
  .hero-buttons {
    flex-direction: row;
  }
  .btn-primary, .btn-secondary {
    padding: 6px 18px;
    font-size: 0.85rem;
  }
  .hero-wrapper {
    gap: 10px;
  }
  .hero-content .hero-badge {
    font-size: 0.65rem;
    padding: 2px 12px;
  }
  
  .features {
    flex-direction: column;
    align-items: flex-start;
    border-radius: var(--radius);
    padding: 18px 22px;
  }
  
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .banner-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .whatsapp-newsletter {
    padding: 30px 24px;
    flex-direction: column;
    text-align: center;
  }
  .whatsapp-newsletter .whatsapp-btn {
    width: 100%;
    justify-content: center;
  }
  .newsletter {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-box {
    width: 100%;
    justify-content: center;
  }
  .newsletter-box input {
    min-width: 180px;
    width: 100%;
  }
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  .panier-layout {
    grid-template-columns: 1fr;
  }
  .filtres {
    justify-content: center;
  }
  .double-links {
    justify-content: center;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .product-image-actions {
    opacity: 1;
    bottom: 8px;
    padding: 4px 10px;
    gap: 6px;
  }
  .img-action {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
  
  .carousel-btn {
    width: 26px;
    height: 26px;
    font-size: 11px;
    opacity: 1;
  }
  .carousel-btn.prev { left: 4px; }
  .carousel-btn.next { right: 4px; }
  .carousel-dots { gap: 4px; }
  .carousel-dot { width: 6px; height: 6px; }
}

@media (max-width: 480px) {
  /* ===== HEADER ENCORE PLUS AGRANDI SUR PETIT MOBILE ===== */
  .navbar {
    padding: 16px 0;
  }
  
  .header-inner {
    gap: 14px;
  }
  
  .logo {
    gap: 12px;
  }
  
  .logo-img {
    height: 55px;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .nav-links {
    gap: 12px;
  }
  
  .nav-links a {
    font-size: 1rem;
    padding: 4px 8px;
  }
  
  .nav-icons {
    font-size: 1.3rem;
    gap: 20px;
  }
  
  /* ===== RESTE DU RESPONSIVE ===== */
  .hero {
    padding: 10px 0 8px;
  }
  .hero-content h1 {
    font-size: 1.2rem;
  }
  .hero-content p {
    font-size: 0.8rem;
    margin: 4px 0 8px;
  }
  .hero-content .hero-badge {
    font-size: 0.55rem;
    padding: 2px 10px;
    margin-bottom: 3px;
  }
  .hero-image {
    min-height: 60px;
    padding: 8px;
    flex: 1 1 90px;
  }
  .hero-image i {
    font-size: 1.6rem;
  }
  .btn-primary, .btn-secondary {
    padding: 5px 14px;
    font-size: 0.75rem;
    gap: 4px;
  }
  .hero-buttons {
    gap: 6px;
  }
  .hero-wrapper {
    gap: 8px;
  }
  
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .banner-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .banner-card {
    aspect-ratio: 4/3;
  }
  .banner-overlay h3 {
    font-size: 0.7rem;
  }
  .banner-overlay p {
    font-size: 0.6rem;
  }
  
  .product-card {
    padding: 14px 12px 14px;
  }
  .product-card h3 {
    font-size: 0.8rem;
    min-height: 20px;
  }
  .product-card .price {
    font-size: 0.9rem;
  }
  .product-card .description {
    font-size: 0.7rem;
    min-height: 30px;
  }
  .btn-outline {
    font-size: 0.6rem;
    padding: 4px 12px;
  }
  .quantite-control button {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }
  .quantite-control span {
    font-size: 0.75rem;
    min-width: 20px;
  }
  .badge-new {
    font-size: 0.45rem;
    padding: 1px 8px;
  }
  
  .logo-img {
    height: 36px;
  }
  .logo-text {
    font-size: 1rem;
  }
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
    bottom: 16px;
    right: 16px;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .nav-links a {
    font-size: 0.75rem;
  }
  .whatsapp-newsletter {
    padding: 20px 16px;
  }
  .whatsapp-newsletter h3 {
    font-size: 1.1rem;
  }
  .whatsapp-newsletter .whatsapp-btn {
    font-size: 0.8rem !important;
    padding: 10px 24px !important;
  }
  .feature-item {
    font-size: 0.75rem;
  }
  .feature-item i {
    font-size: 1rem;
    width: 24px;
  }
  .product-image-actions {
    bottom: 6px;
    padding: 3px 8px;
    gap: 4px;
  }
  .img-action {
    width: 24px;
    height: 24px;
    font-size: 0.65rem;
  }
  
  .carousel-btn {
    width: 22px;
    height: 22px;
    font-size: 10px;
    opacity: 1;
  }
  .carousel-btn.prev { left: 3px; }
  .carousel-btn.next { right: 3px; }
  .carousel-dots { gap: 3px; }
  .carousel-dot { width: 5px; height: 5px; }
}

/* ============================================ */
/* ===== MODAL ZOOM ===== */
/* ============================================ */
.zoom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.zoom-modal.active {
  display: flex;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.zoom-modal .zoom-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  cursor: default;
}

.zoom-modal .zoom-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2.5rem;
  font-weight: 300;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0.7;
  z-index: 10000;
}

.zoom-modal .zoom-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* ============================================ */
/* ===== DOUBLE LINKS ===== */
/* ============================================ */
.double-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
  margin: 16px 0 32px;
  padding: 12px 0;
}
.double-links a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}
.double-links a i {
  color: var(--gold);
  font-size: 1.1rem;
}
.double-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}
.double-links a span {
  font-weight: 400;
  margin-left: 4px;
  color: var(--gray-dark);
}

/* ============================================ */
/* ===== NEWSLETTER ===== */
/* ============================================ */
.newsletter {
  background: var(--white-pure);
  border-radius: var(--radius-large);
  padding: 32px 40px;
  margin: 36px 0 32px;
  border: 1px solid var(--gray-light);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.newsletter h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--black);
}
.newsletter h3 i {
  color: var(--gold);
  margin-right: 12px;
}
.newsletter-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.newsletter-box input {
  padding: 14px 24px;
  border-radius: 60px;
  border: 2px solid var(--gray-light);
  background: var(--white-pure);
  color: var(--black);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  min-width: 240px;
  outline: none;
  transition: var(--transition);
}
.newsletter-box input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08);
}
.newsletter-box .btn-primary {
  padding: 14px 32px;
  box-shadow: none;
}

/* ============================================ */
/* ===== WHATSAPP NEWSLETTER ===== */
/* ============================================ */
.whatsapp-newsletter {
  background: linear-gradient(135deg, #25d366 0%, #128C7E 100%);
  border: none;
  border-radius: var(--radius-large);
  padding: 40px 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: white;
}

.whatsapp-newsletter h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: white;
}

.whatsapp-newsletter h3 i {
  color: white;
  margin-right: 12px;
}

.whatsapp-newsletter p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

.whatsapp-newsletter .whatsapp-btn {
  background: white !important;
  color: #25d366 !important;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15) !important;
  padding: 14px 36px !important;
  font-size: 0.95rem !important;
}

.whatsapp-newsletter .whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25) !important;
}

/* ============================================ */
/* ===== FILTRES ===== */
/* ============================================ */
.filtres-container {
  margin: 20px 0 10px;
}
.recherche input {
  width: 100%;
  padding: 14px 20px;
  border-radius: 60px;
  border: 2px solid var(--gray-light);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}
.recherche input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08);
}
.filtres {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}
.filtre-btn {
  padding: 8px 18px;
  border-radius: 40px;
  border: 2px solid var(--gray-light);
  background: transparent;
  color: var(--gray-dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
}
.filtre-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.filtre-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* ============================================ */
/* ===== PANIER ===== */
/* ============================================ */
.panier-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .panier-layout {
    grid-template-columns: 1fr;
  }
}
.panier-items {
  background: var(--white-pure);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
}
.panier-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-light);
}
.panier-item img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--white-pure);
}
.panier-item-info {
  flex: 1;
}
.panier-item-info h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}
.panier-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.panier-actions button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gray-light);
  background: var(--white-pure);
  cursor: pointer;
  transition: var(--transition);
}
.panier-actions button:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.panier-actions .btn-supprimer {
  border-color: #fee2e2;
  color: #dc2626;
}
.panier-actions .btn-supprimer:hover {
  background: #fee2e2;
  border-color: #dc2626;
  color: #dc2626;
}
.panier-total {
  text-align: right;
  padding: 16px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  border-top: 2px solid var(--gray-light);
  margin-top: 8px;
}
.formulaire-client {
  background: var(--white-pure);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
}
.form-groupe {
  margin-bottom: 16px;
}
.form-groupe label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.form-groupe input,
.form-groupe textarea,
.form-groupe select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 2px solid var(--gray-light);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}
.form-groupe input:focus,
.form-groupe textarea:focus,
.form-groupe select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08);
}
.livraison-options {
  display: flex;
  gap: 20px;
}
.livraison-options label {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-valider-commande {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #25d366, #128C7E);
  color: var(--white);
  border: none;
  border-radius: 60px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}
.btn-valider-commande:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

/* ============================================ */
/* ===== CONTACT ===== */
/* ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 20px 0;
}
.contact-card {
  background: var(--white-pure);
  padding: 30px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.06);
}
.contact-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.contact-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
}
.contact-card a {
  color: var(--gold);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}
.contact-card a:hover {
  text-decoration: underline;
}

/* ============================================ */
/* ===== À PROPOS ===== */
/* ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 20px 0 40px;
}
.value-card {
  background: var(--white-pure);
  padding: 30px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  text-align: center;
  transition: var(--transition);
}
.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.06);
}
.value-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
}
.value-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
}
.value-card p {
  font-family: 'Poppins', sans-serif;
  color: var(--gray-dark);
  font-size: 0.9rem;
}
.about-content {
  margin: 30px 0;
}
.about-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--black);
}
.about-content h2 i {
  color: var(--gold);
  margin-right: 10px;
}
.about-content p {
  font-family: 'Poppins', sans-serif;
  color: var(--gray-dark);
  line-height: 1.8;
}
.engagement-list {
  list-style: none;
  padding: 0;
}
.engagement-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  color: var(--gray-dark);
}
.engagement-list li i {
  color: var(--gold);
  font-size: 1.2rem;
}
.brands-section {
  margin: 30px 0;
}
.brands-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--black);
}
.brands-section h2 i {
  color: var(--gold);
  margin-right: 10px;
}
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.brand-badge {
  background: var(--white-pure);
  padding: 8px 20px;
  border-radius: 40px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--black);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.brand-badge:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.brand-badge i {
  margin-right: 6px;
  color: var(--gold);
}

/* ============================================ */
/* ===== WHATSAPP FLOAT ===== */
/* ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: var(--white);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.35);
  z-index: 1000;
  text-decoration: none;
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 50px rgba(37, 211, 102, 0.5);
}
.whatsapp-float i {
  color: var(--white);
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ============================================ */
/* ===== FOOTER ===== */
/* ============================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 50px 0 30px;
  margin-top: 0;
  box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.1);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1 1 140px;
}
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
  letter-spacing: -0.3px;
}
.footer-col a {
  display: block;
  color: var(--gray-medium);
  text-decoration: none;
  margin: 8px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col a:hover {
  color: var(--gold);
  transform: translateX(4px);
}
.footer-social {
  display: flex;
  gap: 18px;
  font-size: 1.3rem;
  margin-top: 12px;
  color: var(--gray-medium);
}
.footer-social i {
  cursor: pointer;
  transition: var(--transition);
}
.footer-social i:hover {
  color: var(--gold);
  transform: translateY(-3px) scale(1.1);
}
.footer-bottom {
  width: 100%;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 24px;
  color: var(--gray-dark);
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
}

/* ===== HERO CENTRÉ ===== */
.hero-centered {
  justify-content: center !important;
  text-align: center !important;
}

.hero-content-center {
  text-align: center !important;
}

.hero-content-center p {
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ===== AUCUN RÉSULTAT ===== */
.aucun-resultat {
  grid-column: 1 / -1 !important;
  text-align: center !important;
  padding: 3rem !important;
  color: #999 !important;
}
.aucun-resultat i {
  font-size: 3rem !important;
  display: block !important;
  margin-bottom: 1rem !important;
}/* ===== POLICES ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== COULEURS PREMIUM ===== */
:root {
  --black: #0F0F0F;
  --black-light: #1A1A1A;
  --black-medium: #242424;
  --gold: #D4AF37;
  --gold-light: #E8C84A;
  --gold-dark: #B8962A;
  --white: #F8F8F8;
  --white-pure: #FFFFFF;
  --gray-light: #E5E5E5;
  --gray-medium: #A0A0A0;
  --gray-dark: #6B6B6B;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);
  --shadow-premium: 0 8px 40px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.25);
  --radius: 20px;
  --radius-large: 28px;
  --radius-small: 16px;
  --transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== GLASSMORPHISM UTILITY ===== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}

/* ===== HEADER ===== */
.navbar {
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
  border-radius: 12px;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 32px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  color: var(--gray-medium);
}
.nav-links a {
  text-decoration: none;
  color: inherit;
  font-size: 1.05rem;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--white);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a.active {
  color: var(--white);
}

.nav-icons {
  display: flex;
  gap: 24px;
  font-size: 1.3rem;
  color: var(--gray-medium);
  align-items: center;
}
.nav-icons i {
  cursor: pointer;
  transition: var(--transition);
}
.nav-icons i:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.panier-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  text-align: center;
}

/* ============================================ */
/* ===== RESPONSIVE HEADER - AGGRANDI SUR MOBILE ===== */
/* ============================================ */
@media (max-width: 768px) {
  .navbar {
    padding: 18px 0;
  }
  
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  
  .logo {
    justify-content: center;
    gap: 14px;
  }
  
  .logo-img {
    height: 60px;
  }
  
  .logo-text {
    font-size: 1.8rem;
  }
  
  .nav-links {
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 6px 0;
  }
  
  .nav-links a {
    font-size: 1.1rem;
    padding: 6px 10px;
  }
  
  .nav-icons {
    justify-content: center;
    font-size: 1.5rem;
    gap: 24px;
    padding: 4px 0;
  }
  
  .panier-badge {
    font-size: 0.75rem;
    min-width: 22px;
    top: -10px;
    right: -12px;
    padding: 2px 8px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 16px 0;
  }
  
  .header-inner {
    gap: 14px;
  }
  
  .logo {
    gap: 12px;
  }
  
  .logo-img {
    height: 55px;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .nav-links {
    gap: 12px;
  }
  
  .nav-links a {
    font-size: 1rem;
    padding: 4px 8px;
  }
  
  .nav-icons {
    font-size: 1.3rem;
    gap: 20px;
  }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
  padding: 14px 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1 1 200px;
}
.hero-content .hero-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  padding: 3px 14px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 5px;
  border: 1px solid rgba(212, 175, 55, 0.15);
}
.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--white);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.hero-content h1 span {
  color: var(--gold);
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}
.hero-content p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--gray-medium);
  margin: 5px 0 10px;
  max-width: 400px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-primary {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border: none;
  padding: 7px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  padding: 7px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.1);
}

.hero-image {
  flex: 1 1 130px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 12px;
  border-radius: var(--radius-large);
  text-align: center;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-premium);
}
.hero-image img {
  max-width: 70%;
  height: auto;
  filter: drop-shadow(0 8px 40px rgba(212, 175, 55, 0.1));
}
.hero-image i {
  font-size: 2.4rem;
  color: var(--gold);
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.15));
  transition: var(--transition);
}
.hero-image i:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.25));
}

/* ===== FEATURES ===== */
.features-section {
  background: var(--black);
  padding: 22px 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-large);
  padding: 20px 30px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: var(--gray-light);
  font-size: 0.9rem;
}
.feature-item i {
  font-size: 1.3rem;
  color: var(--gold);
  width: 30px;
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.5px;
  color: var(--black);
  margin: 40px 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-title .badge {
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 40px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===== ZONE BLANCHE ===== */
.white-section {
  background: var(--white-pure);
  padding: 20px 0 40px;
}

/* ============================================ */
/* ===== PRODUCT CARD - AVEC CONTOUR DORÉ ===== */
/* ============================================ */
.product-card {
  background: #FFFFFF;
  border: 2px solid #D4AF37;
  border-radius: 20px;
  padding: 20px 18px 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
  border-color: #E8C84A;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 16px 0 24px;
}

/* ============================================ */
/* ===== PRODUCT IMAGE - PLEINE CASE ===== */
/* ============================================ */
.product-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 12px;
  background: #F8F8F8;
  aspect-ratio: 1/1;
  border: none;
  transition: all 0.5s ease;
}

.product-image-wrapper .product-image {
  margin-bottom: 0;
  aspect-ratio: 1/1;
  background: #F8F8F8;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@supports (-webkit-touch-callout: none) {

    .product-image-wrapper .product-image img,
    .carousel-slide img{

        object-fit: contain;
        width:100%;
        height:100%;
    }

}

.product-card:hover .product-image-wrapper .product-image img {
  transform: scale(1.08);
}

/* ============================================ */
/* ===== CARROUSEL D'IMAGES ===== */
/* ============================================ */
.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8F8F8;
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  backdrop-filter: blur(4px);
}

.product-image-wrapper:hover .carousel-btn {
  opacity: 1;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 8px;
}

.carousel-btn.next {
  right: 8px;
}

.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.carousel-dot.active {
  background: #D4AF37;
  transform: scale(1.2);
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.carousel-counter {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 10;
  backdrop-filter: blur(4px);
}

/* ===== ACTIONS SUR L'IMAGE ===== */
.product-image-actions {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 5;
  background: rgba(15, 15, 15, 0.8);
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.product-image-wrapper:hover .product-image-actions {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.img-action {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.img-action:hover {
  transform: scale(1.15);
  color: white;
}

.img-action.zoom:hover {
  background: #3b82f6;
  color: white;
}

.img-action.download:hover {
  background: #25d366;
  color: white;
}

/* ===== TEXTES PRODUITS ===== */
.product-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #0F0F0F;
  margin: 8px 0 2px;
  letter-spacing: -0.3px;
  min-height: 28px;
}

.product-card .description {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  color: #8A8A8A;
  margin: 4px 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 38px;
}

.product-card .price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #D4AF37;
  margin: 4px 0 10px;
  letter-spacing: -0.5px;
}

.product-card .rating {
  color: #D4AF37;
  font-size: 0.75rem;
  margin-bottom: 6px;
  letter-spacing: 2px;
}

/* ===== BADGE ===== */
.badge-new {
  background: linear-gradient(135deg, #D4AF37, #E8C84A);
  color: #0F0F0F;
  font-size: 0.5rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 40px;
  display: inline-block;
  margin-bottom: 6px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.15);
}

/* ===== BADGE VEDETTE ===== */
.badge-vedette {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0F0F0F;
  font-size: 0.5rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 40px;
  display: inline-block;
  margin-bottom: 6px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
  animation: pulse-vedette 1.5s ease-in-out infinite;
}

@keyframes pulse-vedette {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ===== QUANTITÉ ===== */
.quantite-control {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  margin: 6px 0;
}
.quantite-control button {
  background: #F5F5F5;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #0F0F0F;
}

.quantite-control button:hover {
  background: #D4AF37;
  color: white;
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.2);
}

.quantite-control span {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  min-width: 24px;
  text-align: center;
  font-size: 0.9rem;
  color: #0F0F0F;
}

/* ===== BOUTON AJOUTER ===== */
.btn-outline {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border: 2px solid #D4AF37;
  background: transparent;
  color: #D4AF37;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  display: inline-block;
  width: 100%;
  margin-top: 6px;
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
  transition: all 0.6s ease;
}

.btn-outline:hover {
  background: linear-gradient(135deg, #D4AF37, #E8C84A);
  color: #0F0F0F;
  box-shadow: 0 4px 25px rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
}

.btn-outline:hover::before {
  left: 100%;
}

.btn-outline:active {
  transform: scale(0.96);
}

.btn-indisponible {
  background: #fee2e2;
  color: #dc2626;
  padding: 0.4rem;
  border-radius: 10px;
  font-weight: 600;
  margin-top: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
}

/* ============================================ */
/* ===== BANNIERES PROMOTIONS ===== */
/* ============================================ */
.banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 16px 0 24px;
}

.banner-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  aspect-ratio: 4/3;
  background: #1A1A1A;
  border: 2px solid #D4AF37;
}

.banner-card:hover {
  transform: scale(1.02);
  border-color: #E8C84A;
  box-shadow: 0 12px 50px rgba(212, 175, 55, 0.12);
}

.banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.banner-card:hover img {
  transform: scale(1.05);
}

.banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 22px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: white;
}

.banner-overlay h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
  letter-spacing: -0.3px;
}

.banner-overlay p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  opacity: 0.85;
}

/* ============================================ */
/* ===== RESPONSIVE ===== */
/* ============================================ */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .banner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* ===== HEADER AGRANDI SUR MOBILE ===== */
  .navbar {
    padding: 18px 0;
  }
  
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  
  .logo {
    justify-content: center;
    gap: 14px;
  }
  
  .logo-img {
    height: 60px;
  }
  
  .logo-text {
    font-size: 1.8rem;
  }
  
  .nav-links {
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 6px 0;
  }
  
  .nav-links a {
    font-size: 1.1rem;
    padding: 6px 10px;
  }
  
  .nav-icons {
    justify-content: center;
    font-size: 1.5rem;
    gap: 24px;
    padding: 4px 0;
  }
  
  .panier-badge {
    font-size: 0.75rem;
    min-width: 22px;
    top: -10px;
    right: -12px;
    padding: 2px 8px;
  }
  
  /* ===== RESTE DU RESPONSIVE ===== */
  .hero {
    padding: 12px 0 10px;
  }
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero-content p {
    font-size: 0.9rem;
    max-width: 100%;
  }
  .hero-image {
    min-height: 70px;
    padding: 10px;
    flex: 1 1 110px;
  }
  .hero-image i {
    font-size: 2rem;
  }
  .hero-buttons {
    flex-direction: row;
  }
  .btn-primary, .btn-secondary {
    padding: 6px 18px;
    font-size: 0.85rem;
  }
  .hero-wrapper {
    gap: 10px;
  }
  .hero-content .hero-badge {
    font-size: 0.65rem;
    padding: 2px 12px;
  }
  
  .features {
    flex-direction: column;
    align-items: flex-start;
    border-radius: var(--radius);
    padding: 18px 22px;
  }
  
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .banner-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .whatsapp-newsletter {
    padding: 30px 24px;
    flex-direction: column;
    text-align: center;
  }
  .whatsapp-newsletter .whatsapp-btn {
    width: 100%;
    justify-content: center;
  }
  .newsletter {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-box {
    width: 100%;
    justify-content: center;
  }
  .newsletter-box input {
    min-width: 180px;
    width: 100%;
  }
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  .panier-layout {
    grid-template-columns: 1fr;
  }
  .filtres {
    justify-content: center;
  }
  .double-links {
    justify-content: center;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .product-image-actions {
    opacity: 1;
    bottom: 8px;
    padding: 4px 10px;
    gap: 6px;
  }
  .img-action {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
  
  .carousel-btn {
    width: 26px;
    height: 26px;
    font-size: 11px;
    opacity: 1;
  }
  .carousel-btn.prev { left: 4px; }
  .carousel-btn.next { right: 4px; }
  .carousel-dots { gap: 4px; }
  .carousel-dot { width: 6px; height: 6px; }
}

@media (max-width: 480px) {
  /* ===== HEADER ENCORE PLUS AGRANDI SUR PETIT MOBILE ===== */
  .navbar {
    padding: 16px 0;
  }
  
  .header-inner {
    gap: 14px;
  }
  
  .logo {
    gap: 12px;
  }
  
  .logo-img {
    height: 55px;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .nav-links {
    gap: 12px;
  }
  
  .nav-links a {
    font-size: 1rem;
    padding: 4px 8px;
  }
  
  .nav-icons {
    font-size: 1.3rem;
    gap: 20px;
  }
  
  /* ===== RESTE DU RESPONSIVE ===== */
  .hero {
    padding: 10px 0 8px;
  }
  .hero-content h1 {
    font-size: 1.2rem;
  }
  .hero-content p {
    font-size: 0.8rem;
    margin: 4px 0 8px;
  }
  .hero-content .hero-badge {
    font-size: 0.55rem;
    padding: 2px 10px;
    margin-bottom: 3px;
  }
  .hero-image {
    min-height: 60px;
    padding: 8px;
    flex: 1 1 90px;
  }
  .hero-image i {
    font-size: 1.6rem;
  }
  .btn-primary, .btn-secondary {
    padding: 5px 14px;
    font-size: 0.75rem;
    gap: 4px;
  }
  .hero-buttons {
    gap: 6px;
  }
  .hero-wrapper {
    gap: 8px;
  }
  
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .banner-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .banner-card {
    aspect-ratio: 4/3;
  }
  .banner-overlay h3 {
    font-size: 0.7rem;
  }
  .banner-overlay p {
    font-size: 0.6rem;
  }
  
  .product-card {
    padding: 14px 12px 14px;
  }
  .product-card h3 {
    font-size: 0.8rem;
    min-height: 20px;
  }
  .product-card .price {
    font-size: 0.9rem;
  }
  .product-card .description {
    font-size: 0.7rem;
    min-height: 30px;
  }
  .btn-outline {
    font-size: 0.6rem;
    padding: 4px 12px;
  }
  .quantite-control button {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }
  .quantite-control span {
    font-size: 0.75rem;
    min-width: 20px;
  }
  .badge-new {
    font-size: 0.45rem;
    padding: 1px 8px;
  }
  
  .logo-img {
    height: 36px;
  }
  .logo-text {
    font-size: 1rem;
  }
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
    bottom: 16px;
    right: 16px;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .nav-links a {
    font-size: 0.75rem;
  }
  .whatsapp-newsletter {
    padding: 20px 16px;
  }
  .whatsapp-newsletter h3 {
    font-size: 1.1rem;
  }
  .whatsapp-newsletter .whatsapp-btn {
    font-size: 0.8rem !important;
    padding: 10px 24px !important;
  }
  .feature-item {
    font-size: 0.75rem;
  }
  .feature-item i {
    font-size: 1rem;
    width: 24px;
  }
  .product-image-actions {
    bottom: 6px;
    padding: 3px 8px;
    gap: 4px;
  }
  .img-action {
    width: 24px;
    height: 24px;
    font-size: 0.65rem;
  }
  
  .carousel-btn {
    width: 22px;
    height: 22px;
    font-size: 10px;
    opacity: 1;
  }
  .carousel-btn.prev { left: 3px; }
  .carousel-btn.next { right: 3px; }
  .carousel-dots { gap: 3px; }
  .carousel-dot { width: 5px; height: 5px; }
}

/* ============================================ */
/* ===== MODAL ZOOM ===== */
/* ============================================ */
.zoom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.zoom-modal.active {
  display: flex;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.zoom-modal .zoom-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  cursor: default;
}

.zoom-modal .zoom-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2.5rem;
  font-weight: 300;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0.7;
  z-index: 10000;
}

.zoom-modal .zoom-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* ============================================ */
/* ===== DOUBLE LINKS ===== */
/* ============================================ */
.double-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
  margin: 16px 0 32px;
  padding: 12px 0;
}
.double-links a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}
.double-links a i {
  color: var(--gold);
  font-size: 1.1rem;
}
.double-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}
.double-links a span {
  font-weight: 400;
  margin-left: 4px;
  color: var(--gray-dark);
}

/* ============================================ */
/* ===== NEWSLETTER ===== */
/* ============================================ */
.newsletter {
  background: var(--white-pure);
  border-radius: var(--radius-large);
  padding: 32px 40px;
  margin: 36px 0 32px;
  border: 1px solid var(--gray-light);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.newsletter h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--black);
}
.newsletter h3 i {
  color: var(--gold);
  margin-right: 12px;
}
.newsletter-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.newsletter-box input {
  padding: 14px 24px;
  border-radius: 60px;
  border: 2px solid var(--gray-light);
  background: var(--white-pure);
  color: var(--black);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  min-width: 240px;
  outline: none;
  transition: var(--transition);
}
.newsletter-box input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08);
}
.newsletter-box .btn-primary {
  padding: 14px 32px;
  box-shadow: none;
}

/* ============================================ */
/* ===== WHATSAPP NEWSLETTER ===== */
/* ============================================ */
.whatsapp-newsletter {
  background: linear-gradient(135deg, #25d366 0%, #128C7E 100%);
  border: none;
  border-radius: var(--radius-large);
  padding: 40px 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: white;
}

.whatsapp-newsletter h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: white;
}

.whatsapp-newsletter h3 i {
  color: white;
  margin-right: 12px;
}

.whatsapp-newsletter p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

.whatsapp-newsletter .whatsapp-btn {
  background: white !important;
  color: #25d366 !important;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15) !important;
  padding: 14px 36px !important;
  font-size: 0.95rem !important;
}

.whatsapp-newsletter .whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25) !important;
}

/* ============================================ */
/* ===== FILTRES ===== */
/* ============================================ */
.filtres-container {
  margin: 20px 0 10px;
}
.recherche input {
  width: 100%;
  padding: 14px 20px;
  border-radius: 60px;
  border: 2px solid var(--gray-light);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}
.recherche input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08);
}
.filtres {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}
.filtre-btn {
  padding: 8px 18px;
  border-radius: 40px;
  border: 2px solid var(--gray-light);
  background: transparent;
  color: var(--gray-dark);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
}
.filtre-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.filtre-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* ============================================ */
/* ===== PANIER ===== */
/* ============================================ */
.panier-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .panier-layout {
    grid-template-columns: 1fr;
  }
}
.panier-items {
  background: var(--white-pure);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
}
.panier-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-light);
}
.panier-item img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--white-pure);
}
.panier-item-info {
  flex: 1;
}
.panier-item-info h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}
.panier-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.panier-actions button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gray-light);
  background: var(--white-pure);
  cursor: pointer;
  transition: var(--transition);
}
.panier-actions button:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.panier-actions .btn-supprimer {
  border-color: #fee2e2;
  color: #dc2626;
}
.panier-actions .btn-supprimer:hover {
  background: #fee2e2;
  border-color: #dc2626;
  color: #dc2626;
}
.panier-total {
  text-align: right;
  padding: 16px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  border-top: 2px solid var(--gray-light);
  margin-top: 8px;
}
.formulaire-client {
  background: var(--white-pure);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
}
.form-groupe {
  margin-bottom: 16px;
}
.form-groupe label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.form-groupe input,
.form-groupe textarea,
.form-groupe select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 2px solid var(--gray-light);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}
.form-groupe input:focus,
.form-groupe textarea:focus,
.form-groupe select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08);
}
.livraison-options {
  display: flex;
  gap: 20px;
}
.livraison-options label {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-valider-commande {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #25d366, #128C7E);
  color: var(--white);
  border: none;
  border-radius: 60px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}
.btn-valider-commande:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

/* ============================================ */
/* ===== CONTACT ===== */
/* ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 20px 0;
}
.contact-card {
  background: var(--white-pure);
  padding: 30px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.06);
}
.contact-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.contact-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
}
.contact-card a {
  color: var(--gold);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}
.contact-card a:hover {
  text-decoration: underline;
}

/* ============================================ */
/* ===== À PROPOS ===== */
/* ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 20px 0 40px;
}
.value-card {
  background: var(--white-pure);
  padding: 30px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  text-align: center;
  transition: var(--transition);
}
.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.06);
}
.value-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
}
.value-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
}
.value-card p {
  font-family: 'Poppins', sans-serif;
  color: var(--gray-dark);
  font-size: 0.9rem;
}
.about-content {
  margin: 30px 0;
}
.about-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--black);
}
.about-content h2 i {
  color: var(--gold);
  margin-right: 10px;
}
.about-content p {
  font-family: 'Poppins', sans-serif;
  color: var(--gray-dark);
  line-height: 1.8;
}
.engagement-list {
  list-style: none;
  padding: 0;
}
.engagement-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  color: var(--gray-dark);
}
.engagement-list li i {
  color: var(--gold);
  font-size: 1.2rem;
}
.brands-section {
  margin: 30px 0;
}
.brands-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--black);
}
.brands-section h2 i {
  color: var(--gold);
  margin-right: 10px;
}
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.brand-badge {
  background: var(--white-pure);
  padding: 8px 20px;
  border-radius: 40px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--black);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.brand-badge:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.brand-badge i {
  margin-right: 6px;
  color: var(--gold);
}

/* ============================================ */
/* ===== WHATSAPP FLOAT ===== */
/* ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: var(--white);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.35);
  z-index: 1000;
  text-decoration: none;
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 50px rgba(37, 211, 102, 0.5);
}
.whatsapp-float i {
  color: var(--white);
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ============================================ */
/* ===== FOOTER ===== */
/* ============================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 50px 0 30px;
  margin-top: 0;
  box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.1);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1 1 140px;
}
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
  letter-spacing: -0.3px;
}
.footer-col a {
  display: block;
  color: var(--gray-medium);
  text-decoration: none;
  margin: 8px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col a:hover {
  color: var(--gold);
  transform: translateX(4px);
}
.footer-social {
  display: flex;
  gap: 18px;
  font-size: 1.3rem;
  margin-top: 12px;
  color: var(--gray-medium);
}
.footer-social i {
  cursor: pointer;
  transition: var(--transition);
}
.footer-social i:hover {
  color: var(--gold);
  transform: translateY(-3px) scale(1.1);
}
.footer-bottom {
  width: 100%;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 24px;
  color: var(--gray-dark);
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
}

/* ===== HERO CENTRÉ ===== */
.hero-centered {
  justify-content: center !important;
  text-align: center !important;
}

.hero-content-center {
  text-align: center !important;
}

.hero-content-center p {
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ===== AUCUN RÉSULTAT ===== */
.aucun-resultat {
  grid-column: 1 / -1 !important;
  text-align: center !important;
  padding: 3rem !important;
  color: #999 !important;
}
.aucun-resultat i {
  font-size: 3rem !important;
  display: block !important;
  margin-bottom: 1rem !important;
}