/* ============================================
   LUMIÈRE D'OR - STYLES CSS
   Site Vitrine Cosmétique Premium
   Version 2.0 - Responsive Optimisé
   ============================================ */

/* ============================================
   VARIABLES CSS
   ============================================ */
:root {
  /* Couleurs principales */
  --gold: #d4af37;
  --gold-light: #f4e4bc;
  --gold-dark: #b8860b;
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --darker: #121212;
  --white: #ffffff;
  --cream: #faf8f5;
  --rose: #e8c4c4;

  /* Dégradés */
  --gradient-gold: linear-gradient(
    135deg,
    #d4af37 0%,
    #f4e4bc 50%,
    #d4af37 100%
  );
  --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);

  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Espacements */
  --container-padding: 60px;
  --section-padding: 120px;

  /* Border radius */
  --radius-sm: 10px;
  --radius-md: 15px;
  --radius-lg: 20px;
  --radius-xl: 25px;
  --radius-full: 50px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

input,
textarea {
  font-family: inherit;
}

/* ============================================
   CURSEUR PERSONNALISÉ
   ============================================ */
.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    background 0.2s ease;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.cursor.active {
  transform: translate(-50%, -50%) scale(1.5);
  background: rgba(212, 175, 55, 0.2);
}

/* Masquer sur tactile */
@media (hover: none) and (pointer: coarse) {
  .cursor,
  .cursor-dot {
    display: none !important;
  }
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  font-family: "Great Vibes", cursive;
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--gold);
  animation: pulse 1.5s ease-in-out infinite;
}

.preloader-bar {
  width: min(200px, 60vw);
  height: 2px;
  background: rgba(212, 175, 55, 0.2);
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
}

.preloader-progress {
  height: 100%;
  background: var(--gradient-gold);
  width: 0;
  transition: width 0.1s ease;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

/* ============================================
   PARTICULES
   ============================================ */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 8s ease-in-out infinite;
}

@keyframes float-particle {
  0%,
  100% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh) scale(1);
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px var(--container-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition-normal);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 15px var(--container-padding);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: glow 2s ease-in-out infinite alternate;
  flex-shrink: 0;
}

@keyframes glow {
  from {
    box-shadow:
      0 0 10px var(--gold),
      0 0 20px var(--gold);
  }
  to {
    box-shadow:
      0 0 20px var(--gold),
      0 0 40px var(--gold);
  }
}

.logo-icon i {
  font-size: 1.3rem;
  color: var(--black);
}

.logo-text {
  font-family: "Great Vibes", cursive;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--gold);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Navigation Links */
.navbar .nav-links {
  display: flex;
  gap: 35px;
}

.navbar .nav-links a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding: 10px 0;
  transition: color var(--transition-fast);
}

.navbar .nav-links a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width var(--transition-normal);
}

.navbar .nav-links a:hover,
.navbar .nav-links a.active {
  color: var(--gold);
}

.navbar .nav-links a:hover::before,
.navbar .nav-links a.active::before {
  width: 100%;
}

/* CTA Button */
.nav-cta {
  background: var(--gradient-gold);
  color: var(--black);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* Menu Toggle (Mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition-fast);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(10, 10, 10, 0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-slow);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .nav-links {
  flex-direction: column;
  gap: 25px;
  text-align: center;
}

.mobile-menu .nav-links a {
  font-size: 1.3rem;
  letter-spacing: 3px;
}

.mobile-cta {
  margin-top: 30px;
}

/* ============================================
   SECTION HERO
   ============================================ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-dark);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    var(--black) 70%
  );
  z-index: 1;
}

/* Hero Slider */
.hero-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 0.4;
}

.hero-slide:nth-child(1) {
  background: linear-gradient(45deg, #1a1a2e, #16213e);
}

.hero-slide:nth-child(2) {
  background: linear-gradient(45deg, #2d132c, #1a1a2e);
}

.hero-slide:nth-child(3) {
  background: linear-gradient(45deg, #1a1a2e, #0f3460);
}

/* Formes flottantes */
.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.shape {
  position: absolute;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
  width: clamp(150px, 25vw, 300px);
  height: clamp(150px, 25vw, 300px);
  top: 10%;
  left: 5%;
}

.shape:nth-child(2) {
  width: clamp(100px, 18vw, 200px);
  height: clamp(100px, 18vw, 200px);
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.shape:nth-child(3) {
  width: clamp(80px, 12vw, 150px);
  height: clamp(80px, 12vw, 150px);
  bottom: 10%;
  left: 20%;
  animation-delay: 4s;
}

.shape:nth-child(4) {
  width: clamp(50px, 8vw, 100px);
  height: clamp(50px, 8vw, 100px);
  top: 20%;
  right: 20%;
  animation-delay: 1s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 25px;
  border-radius: var(--radius-full);
  font-size: clamp(0.65rem, 2vw, 0.8rem);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 25px;
  animation: fadeInDown 1s ease 0.5s backwards;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  animation: fadeInUp 1s ease 0.7s backwards;
}

.hero-title span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.3rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeInUp 1s ease 0.9s backwards;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 1.1s backwards;
}

/* Boutons */
.btn-primary {
  background: var(--gradient-gold);
  color: var(--black);
  padding: 18px 40px;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  cursor: pointer;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 18px 40px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-full);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  cursor: pointer;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-5px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator a {
  color: var(--gold);
  font-size: 1.3rem;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-15px);
  }
  60% {
    transform: translateX(-50%) translateY(-7px);
  }
}

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

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

/* ============================================
   BANDEAU DÉFILANT (Marquee)
   ============================================ */
.marquee-section {
  background: var(--gradient-gold);
  padding: 18px 0;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 0 40px;
  color: var(--black);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: clamp(0.75rem, 2vw, 0.9rem);
}

.marquee-item i {
  font-size: 1.3rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================
   SECTION FONCTIONNALITÉS
   ============================================ */
.features {
  padding: var(--section-padding) var(--container-padding);
  background: var(--dark);
  position: relative;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px 25px;
  text-align: center;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity var(--transition-slow);
  z-index: 0;
}

.feature-card:hover::before {
  opacity: 0.05;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 25px 50px rgba(212, 175, 55, 0.15);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  transition: var(--transition-slow);
  position: relative;
  z-index: 1;
}

.feature-card:hover .feature-icon {
  background: var(--gradient-gold);
  transform: scale(1.1) rotate(10deg);
}

.feature-icon i {
  font-size: 1.8rem;
  color: var(--gold);
  transition: color var(--transition-slow);
}

.feature-card:hover .feature-icon i {
  color: var(--black);
}

.feature-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 12px;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.feature-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ============================================
   EN-TÊTE DE SECTION
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  padding: 10px 25px;
  border-radius: var(--radius-full);
  font-size: clamp(0.7rem, 1.5vw, 0.8rem);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-title span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   SECTION PRODUITS
   ============================================ */
.products {
  padding: var(--section-padding) var(--container-padding);
  background: var(--black);
  position: relative;
}

/* Filtres de catégorie */
.category-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  padding: 0 10px;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--white);
  padding: 12px 25px;
  border-radius: var(--radius-full);
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-normal);
  white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-gold);
  color: var(--black);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* ============================================
   CARROUSEL DE PRODUITS
   ============================================ */
.products-carousel-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
  padding: 0 60px;
}

.products-carousel {
  display: flex;
  gap: 25px;
  transition: transform var(--transition-slow);
  padding: 20px 5px;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: var(--gradient-gold);
  border: none;
  border-radius: 50%;
  color: var(--black);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.carousel-nav:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.carousel-nav.prev {
  left: 5px;
}

.carousel-nav.next {
  right: 5px;
}

/* ============================================
   CARTES PRODUITS - RESPONSIVE
   ============================================ */
.product-card {
  flex: 0 0 320px;
  min-width: 280px;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-slow);
  position: relative;
}

.product-card:hover {
  transform: translateY(-15px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15);
}

/* Badge produit */
.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient-gold);
  color: var(--black);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

/* Image produit */
.product-image {
  height: 260px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(212, 175, 55, 0.1),
    transparent
  );
  transform: rotate(45deg);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

/* Placeholder icon */
.product-image .placeholder-icon {
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
}

/* Overlay au survol */
.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.overlay-btn {
  width: 48px;
  height: 48px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  color: var(--black);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-fast);
  transform: translateY(20px);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card:hover .overlay-btn {
  transform: translateY(0);
  opacity: 1;
}

.overlay-btn:nth-child(2) {
  transition-delay: 0.1s;
}

.overlay-btn:hover {
  background: var(--gold);
  transform: scale(1.1);
}

.overlay-btn.active,
.overlay-btn.active:hover {
  color: #ff4757;
}

/* Infos produit */
.product-info {
  padding: 22px;
}

.product-category {
  color: var(--gold);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}

.product-name {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 8px;
  color: var(--white);
  line-height: 1.3;
}

.product-rating {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.product-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  line-height: 1.6;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-top: 18px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.product-price {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product-price span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

.btn-order {
  background: var(--gradient-gold);
  color: var(--black);
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  text-decoration: none;
}

.btn-order:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* ============================================
   GRILLE DE PRODUITS
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.products-grid .product-card {
  flex: none;
  min-width: unset;
  width: 100%;
}

/* ============================================
   SECTION À PROPOS
   ============================================ */
.about {
  padding: var(--section-padding) var(--container-padding);
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* Images À Propos */
.about-images {
  position: relative;
  height: 550px;
}

.about-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.about-img-1 {
  width: 60%;
  height: 70%;
  top: 0;
  left: 0;
  z-index: 2;
  animation: float-slow 6s ease-in-out infinite;
}

.about-img-2 {
  width: 50%;
  height: 50%;
  bottom: 0;
  right: 0;
  z-index: 3;
  animation: float-slow 6s ease-in-out infinite 1s;
  border: 3px solid var(--gold);
}

@keyframes float-slow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.about-img img,
.about-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.about-decoration {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.2;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Contenu À Propos */
.about-content {
  padding-left: 30px;
}

.about-content .section-tag {
  margin-bottom: 20px;
}

.about-content .section-title {
  text-align: left;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 25px;
}

.about-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.9;
  margin-bottom: 35px;
}

/* Statistiques */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}

.stat-item {
  text-align: center;
  padding: 25px 15px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.stat-label {
  font-size: clamp(0.75rem, 1.2vw, 0.85rem);
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   SECTION TÉMOIGNAGES
   ============================================ */
.testimonials {
  padding: var(--section-padding) var(--container-padding);
  background: var(--black);
  position: relative;
}

.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-item {
  min-width: 100%;
  text-align: center;
  padding: 0 30px;
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  line-height: 1.8;
  color: var(--white);
  margin-bottom: 35px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--black);
  font-weight: 700;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.author-role {
  font-size: 0.9rem;
  color: var(--gold);
}

/* Points de navigation */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 35px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.3);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.dot:hover {
  background: var(--gold);
}

/* ============================================
   SECTION GALERIE
   ============================================ */
.gallery {
  padding: var(--section-padding) var(--container-padding);
  background: var(--dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img,
.gallery-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  align-items: flex-end;
  padding: 25px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--white);
}

/* ============================================
   SECTION NEWSLETTER
   ============================================ */
.newsletter {
  padding: 80px var(--container-padding);
  background: var(--gradient-gold);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.newsletter::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.newsletter-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.newsletter h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--black);
  margin-bottom: 15px;
}

.newsletter p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 18px 25px;
  border: none;
  border-radius: var(--radius-full);
  font-size: 1rem;
  background: var(--white);
  color: var(--black);
  min-width: 0;
}

.newsletter-form input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.newsletter-form button {
  background: var(--black);
  color: var(--white);
  padding: 18px 35px;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-normal);
  white-space: nowrap;
}

.newsletter-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ============================================
   SECTION CONTACT
   ============================================ */
.contact {
  padding: var(--section-padding) var(--container-padding);
  background: var(--black);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Infos contact */
.contact-info h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 25px;
  color: var(--white);
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 35px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-icon {
  width: 55px;
  height: 55px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.contact-item:hover .contact-icon {
  background: var(--gradient-gold);
}

.contact-icon i {
  font-size: 1.2rem;
  color: var(--gold);
  transition: color var(--transition-normal);
}

.contact-item:hover .contact-icon i {
  color: var(--black);
}

.contact-text h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.contact-text a {
  color: var(--gold);
  transition: color var(--transition-fast);
}

.contact-text a:hover {
  color: var(--gold-light);
}

/* Formulaire de contact */
.contact-form-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group textarea {
  resize: none;
  height: 140px;
}

.form-submit {
  background: var(--gradient-gold);
  color: var(--black);
  padding: 18px 45px;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-submit:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--darker);
  padding: 70px var(--container-padding) 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer Brand */
.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 42px;
  height: 42px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: var(--transition-normal);
}

.social-links a:hover {
  background: var(--gradient-gold);
  color: var(--black);
  transform: translateY(-5px);
}

/* Footer Columns */
.footer-column h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 22px;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-fast);
  font-size: 0.9rem;
}

.footer-column ul a:hover {
  color: var(--gold);
  padding-left: 8px;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  max-width: 1400px;
  margin: 0 auto;
}

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

.footer-bottom a {
  color: var(--gold);
}

.payment-methods {
  display: flex;
  gap: 15px;
}

.payment-methods i {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   BOUTON WHATSAPP FLOTTANT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
}

.whatsapp-btn {
  width: 65px;
  height: 65px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  animation: pulse-whatsapp 2s ease-in-out infinite;
  transition: var(--transition-normal);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {
  0%,
  100% {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 50px rgba(37, 211, 102, 0.6);
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--black);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   BOUTON RETOUR EN HAUT
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 48px;
  height: 48px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* ============================================
   ANIMATIONS DE RÉVÉLATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* ============================================
   RESPONSIVE - TABLETTES (max 1200px)
   ============================================ */
@media (max-width: 1200px) {
  :root {
    --container-padding: 40px;
    --section-padding: 100px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 220px);
  }

  .gallery-item-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .products-carousel-container {
    padding: 0 50px;
  }

  .product-card {
    flex: 0 0 300px;
    min-width: 260px;
  }
}

/* ============================================
   RESPONSIVE - TABLETTES PETITES (max 992px)
   ============================================ */
@media (max-width: 992px) {
  :root {
    --container-padding: 30px;
    --section-padding: 80px;
  }

  /* Navigation */
  .navbar {
    padding: 15px 25px;
  }

  .navbar .nav-links,
  .navbar .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  /* Hero */
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
  }

  /* About */
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-images {
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-content {
    padding-left: 0;
    text-align: center;
  }

  .about-content .section-title {
    text-align: center;
  }

  /* Contact */
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-container {
    padding: 30px;
  }

  /* Carousel */
  .products-carousel-container {
    padding: 0 45px;
  }

  .carousel-nav {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .product-card {
    flex: 0 0 280px;
    min-width: 250px;
  }

  .product-image {
    height: 220px;
  }
}

/* ============================================
   RESPONSIVE - MOBILE (max 768px)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
    --section-padding: 60px;
  }

  /* Hero */
  .hero-badge {
    padding: 8px 18px;
    letter-spacing: 2px;
  }

  .hero-subtitle {
    margin-bottom: 30px;
  }

  .scroll-indicator {
    bottom: 20px;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 30px 20px;
  }

  /* Category Filter - Scroll horizontal */
  .category-filter {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 15px;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .category-filter::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    padding: 10px 20px;
    font-size: 0.75rem;
    flex-shrink: 0;
  }

  /* Carrousel Mobile */
  .products-carousel-container {
    padding: 0;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 30px;
  }

  .products-carousel {
    padding: 15px 20px;
    gap: 15px;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .products-carousel::-webkit-scrollbar {
    display: none;
  }

  .carousel-nav {
    display: none;
  }

  /* Cartes produits mobile */
  .products-carousel .product-card {
    flex: 0 0 calc(100vw - 60px);
    min-width: calc(100vw - 60px);
    max-width: calc(100vw - 60px);
    scroll-snap-align: center;
  }

  /* Grille mobile - 2 colonnes */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
  }

  .products-grid .product-card {
    min-width: unset;
  }

  .product-image {
    height: 160px;
  }

  .product-info {
    padding: 15px;
  }

  .product-category {
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
  }

  .product-name {
    font-size: 1rem;
    margin-bottom: 5px;
  }

  .product-rating {
    font-size: 0.7rem;
    margin-bottom: 8px;
  }

  .product-description {
    font-size: 0.8rem;
    margin-bottom: 12px;
    -webkit-line-clamp: 2;
  }

  .product-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding-top: 12px;
  }

  .product-price {
    font-size: 1.1rem;
    text-align: center;
    justify-content: center;
  }

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

  .btn-order {
    width: 100%;
    justify-content: center;
    padding: 12px 15px;
    font-size: 0.7rem;
  }

  .product-badge {
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    font-size: 0.55rem;
  }

  /* Overlay tactile */
  .product-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    justify-content: flex-end;
    align-items: flex-end;
    padding: 12px;
  }

  .overlay-btn {
    width: 40px;
    height: 40px;
    transform: translateY(0);
    opacity: 1;
    background: rgba(255, 255, 255, 0.9);
  }

  .product-card:hover .overlay-btn {
    transform: translateY(0);
  }

  /* About Stats */
  .about-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat-item {
    padding: 20px;
  }

  /* Testimonials */
  .testimonial-item {
    padding: 0 15px;
  }

  .testimonial-quote {
    font-size: 2.5rem;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 15px;
  }

  .gallery-item,
  .gallery-item-large {
    grid-column: span 1;
    grid-row: span 1;
    height: 220px;
  }

  /* Newsletter */
  .newsletter {
    padding: 50px 20px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  /* Contact */
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    padding: 25px;
  }

  /* Footer */
  .footer {
    padding: 50px 20px 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 35px;
  }

  .social-links {
    justify-content: center;
  }

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

  /* Boutons flottants */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-btn {
    width: 58px;
    height: 58px;
    font-size: 1.6rem;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .back-to-top {
    bottom: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}

/* ============================================
   RESPONSIVE - PETITS MOBILES (max 480px)
   ============================================ */
@media (max-width: 480px) {
  :root {
    --container-padding: 15px;
    --section-padding: 50px;
  }

  /* Logo */
  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .logo-icon i {
    font-size: 1.1rem;
  }

  /* Grille 1 colonne sur très petits écrans */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .products-carousel .product-card {
    flex: 0 0 calc(100vw - 40px);
    min-width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  .product-image {
    height: 200px;
  }

  .product-info {
    padding: 18px;
  }

  .product-name {
    font-size: 1.1rem;
  }

  .product-description {
    font-size: 0.85rem;
    -webkit-line-clamp: 3;
  }

  .product-price {
    font-size: 1.2rem;
  }

  .btn-order {
    padding: 14px 20px;
    font-size: 0.75rem;
  }

  /* About images */
  .about-images {
    height: 320px;
  }

  .about-img-1 {
    width: 70%;
    height: 65%;
  }

  .about-img-2 {
    width: 55%;
    height: 45%;
  }

  /* Newsletter */
  .newsletter-form input {
    padding: 15px 20px;
  }

  .newsletter-form button {
    padding: 15px 25px;
  }
}

/* ============================================
   RESPONSIVE - TRÈS PETITS ÉCRANS (max 360px)
   ============================================ */
@media (max-width: 360px) {
  .products-carousel .product-card {
    flex: 0 0 calc(100vw - 30px);
    min-width: calc(100vw - 30px);
    max-width: calc(100vw - 30px);
  }

  .product-image {
    height: 180px;
  }

  .hero-buttons {
    padding: 0 10px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 15px 25px;
    font-size: 0.8rem;
  }

  .about-images {
    height: 280px;
  }
}

/* ============================================
   AMÉLIORATION TACTILE
   ============================================ */
@media (hover: none) and (pointer: coarse) {
  /* Désactiver effets hover sur tactile */
  .product-card:hover {
    transform: none;
    box-shadow: none;
  }

  .product-card:active {
    transform: scale(0.98);
    border-color: var(--gold);
  }

  .feature-card:hover {
    transform: none;
  }

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

  /* Taille minimum pour les boutons tactiles */
  .btn-order,
  .filter-btn,
  .overlay-btn {
    min-height: 48px;
  }

  .overlay-btn {
    width: 48px;
    height: 48px;
  }

  /* Overlay toujours visible */
  .product-overlay {
    opacity: 1;
  }

  .overlay-btn {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ============================================
   MODE PAYSAGE MOBILE
   ============================================ */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 100px 20px 50px;
  }

  .hero-content {
    padding-top: 20px;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 25px;
    font-size: 0.8rem;
  }

  .scroll-indicator {
    display: none;
  }

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

  .product-image {
    height: 140px;
  }

  .product-description {
    display: none;
  }
}

/* ============================================
   IMPRESSION
   ============================================ */
@media print {
  .navbar,
  .whatsapp-float,
  .back-to-top,
  .particles,
  .cursor,
  .cursor-dot,
  .preloader {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 50px 20px;
  }

  .product-card {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

/* ============================================
   ACCESSIBILITÉ - FOCUS VISIBLE
   ============================================ */
.keyboard-nav *:focus {
  outline: 2px solid var(--gold) !important;
  outline-offset: 3px;
}

/* Réduire les animations si préféré */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .particle {
    display: none;
  }
}

/* ============================================
   UTILITAIRES
   ============================================ */
.resize-animation-stopper * {
  animation: none !important;
  transition: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
