/* LPPS Design Charter - Les Petits Pois Show */
/* Identité chaleureuse, féminine, artisanale haut de gamme */
/* Inspiration wabi-sabi japonais et tropical brésilien */
:root {
  /* Nouvelle palette artisanale et féminine */
  --lpps-bleu-profond: #1E3A8A;       /* Bleu profond - accent principal */
  --lpps-dore: #D9A25F;               /* Doré clair - accents et icônes */
  --lpps-beige-rose: #FFF9F4;         /* Beige rosé - fonds doux */
  --lpps-blanc-casse: #FFFDF9;        /* Blanc cassé chaud */
  --lpps-beige-clair: #FAF5EF;        /* Beige très clair */
  --lpps-blanc: #FFFFFF;              /* Blanc pur */
  --lpps-gris-clair: #EAEAEA;         /* Lignes et séparateurs */
  --lpps-gris-doux: #5C5C5C;          /* Textes secondaires */
  --lpps-rose-pale: #F5E6E0;          /* Rose pâle doux */
  --lpps-terracotta: #D4A574;         /* Terracotta clair */

  /* Variantes et overlays */
  --lpps-bleu-overlay: rgba(30, 58, 138, 0.95);
  --lpps-dore-light: rgba(217, 162, 95, 0.1);
  --lpps-shadow-warm: rgba(217, 162, 95, 0.15);

  /* Espacement généreux - style artisanal respirant */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  --spacing-4xl: 96px;

  /* Typographie artisanale et féminine */
  --font-title: 'Playfair Display', serif;  /* Titres élégants */
  --font-body: 'Inter', sans-serif;          /* Corps de texte */
  --font-accent: 'Cormorant Garamond', serif; /* Accents spéciaux */

  /* Rayons arrondis généreux - style doux */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-2xl: 40px;
  --radius-full: 9999px;

  /* Ombres douces et chaleureuses */
  --shadow-soft: 0 2px 8px rgba(217, 162, 95, 0.08);
  --shadow-warm: 0 4px 16px rgba(217, 162, 95, 0.12);
  --shadow-float: 0 8px 24px rgba(217, 162, 95, 0.15);
  --shadow-premium: 0 12px 32px rgba(30, 58, 138, 0.08);
}

/* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--lpps-gris-doux);
  background: linear-gradient(to bottom, var(--lpps-blanc-casse) 0%, var(--lpps-beige-rose) 50%, var(--lpps-blanc-casse) 100%);
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Pattern de fond aquarellé subtil - inspiration tropicale */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 15% 25%, var(--lpps-dore) 1px, transparent 1px),
    radial-gradient(circle at 85% 75%, var(--lpps-bleu-profond) 0.8px, transparent 0.8px),
    radial-gradient(circle at 45% 60%, var(--lpps-rose-pale) 1.2px, transparent 1.2px);
  background-size: 80px 80px, 120px 120px, 60px 60px;
  background-position: 0 0, 50px 50px, 30px 30px;
  pointer-events: none;
}

body > * {
  position: relative;
  z-index: 1;
}

/* Design artisanal chaleureux et féminin */

/* Navbar chaleureuse avec glassmorphism */
.header {
  background: rgba(255, 249, 244, 0.95);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: 0 4px 16px rgba(217, 162, 95, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(217, 162, 95, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav {
  padding: var(--spacing-xl) 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg); /* Réduit de 32px à 24px */
}

.logo-large {
  height: 90px;
  width: auto;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 3px 6px rgba(217, 162, 95, 0.15));
}

.logo-large:hover {
  transform: scale(1.08) rotate(-1deg);
  filter: drop-shadow(0 6px 12px rgba(217, 162, 95, 0.25));
}

.brand-info h1 {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 700;
  color: var(--lpps-bleu-profond);
  letter-spacing: -0.01em;
  margin-bottom: var(--spacing-sm);
  line-height: 1.1;
  position: relative;
}

.brand-info h1::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--lpps-dore), transparent);
  border-radius: 2px;
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--lpps-gris-doux);
  letter-spacing: 0.05em;
  font-style: italic;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-3xl);
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--lpps-gris-doux);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  padding: var(--spacing-md) var(--spacing-lg);
  position: relative;
  letter-spacing: 0.02em;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--lpps-dore);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
  width: 70%;
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: var(--lpps-bleu-profond);
}

/* Bouton Instagram premium arrondi */
.cta-nav {
  background: var(--lpps-bleu-profond);
  color: var(--lpps-blanc) !important;
  padding: var(--spacing-md) var(--spacing-2xl);
  border-radius: var(--radius-full);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-warm);
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.03em;
  border: 2px solid var(--lpps-bleu-profond);
  position: relative;
  overflow: hidden;
}

.cta-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(217, 162, 95, 0.3), transparent);
  transition: left 0.6s ease;
}

.cta-nav:hover::before {
  left: 100%;
}

.cta-nav:hover {
  background: var(--lpps-dore);
  border-color: var(--lpps-dore);
  color: var(--lpps-blanc) !important;
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-float);
}

/* Menu Hamburger pour mobile */
.hamburger-menu {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--lpps-text);
  cursor: pointer;
  padding: var(--spacing-sm);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  position: absolute;
  right: var(--spacing-lg);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

.hamburger-menu:hover {
  background-color: var(--lpps-accent-light);
  color: var(--lpps-accent);
}

.hamburger-menu:focus {
  outline: 2px solid var(--lpps-accent);
  outline-offset: 2px;
}

/* Menu mobile overlay */
.nav-menu.mobile-open {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--lpps-white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-2xl);
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

.nav-menu.mobile-open a {
  font-size: 20px;
  padding: var(--spacing-lg);
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--lpps-border);
}

.nav-menu.mobile-open .cta-nav {
  margin-top: var(--spacing-xl);
  border-bottom: none;
}

/* Section Hero chaleureuse - Bienvenue */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--lpps-blanc-casse) 0%, var(--lpps-beige-clair) 50%, var(--lpps-rose-pale) 100%);
  padding: var(--spacing-4xl) 0;
  position: relative;
  overflow: hidden;
}

/* Motif floral aquarellé subtil */
.hero::before {
  content: '';
  position: absolute;
  top: -5%;
  right: -3%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217, 162, 95, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 25s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 30s ease-in-out infinite reverse;
}

.hero-content {
  flex: 1;
  padding: 0 var(--spacing-2xl);
  max-width: 650px;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 62px;
  font-weight: 700;
  color: var(--lpps-bleu-profond);
  margin-bottom: var(--spacing-lg);
  line-height: 1.1;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  color: var(--lpps-gris-doux);
  margin-bottom: var(--spacing-3xl);
  line-height: 1.75;
  max-width: 580px;
}

.hero-stats {
  display: flex;
  gap: var(--spacing-3xl);
  margin-bottom: var(--spacing-3xl);
}

/* Cartes statistiques élégantes */
.stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--spacing-2xl) var(--spacing-xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-warm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(217, 162, 95, 0.15);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(217, 162, 95, 0.03) 0%, transparent 100%);
  pointer-events: none;
}

.stat::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lpps-dore), var(--lpps-bleu-profond));
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
}

.stat:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: var(--shadow-float);
  border-color: var(--lpps-dore);
}

.stat:hover::after {
  transform: scaleX(1);
}

.stat-number {
  display: block;
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 700;
  color: var(--lpps-bleu-profond);
  margin-bottom: var(--spacing-sm);
  position: relative;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--lpps-gris-doux);
  text-transform: lowercase;
  letter-spacing: 0.03em;
  font-style: italic;
}

.hero-image {
  flex: 1;
  padding: 0 var(--spacing-2xl);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-2xl);
  box-shadow: 0 12px 40px rgba(217, 162, 95, 0.25);
  position: relative;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid rgba(255, 255, 255, 0.8);
}

.hero-img:hover {
  transform: scale(1.03) rotate(-0.5deg);
  box-shadow: 0 16px 50px rgba(217, 162, 95, 0.35);
  border-color: rgba(217, 162, 95, 0.4);
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-2xl);
}

/* Section Popup Blois - Galerie Jujuhats artisanale */
.popup-section {
  background: linear-gradient(to bottom, var(--lpps-rose-pale) 0%, var(--lpps-blanc-casse) 50%, var(--lpps-rose-pale) 100%);
  border-top: 3px solid var(--lpps-dore);
  border-bottom: 3px solid var(--lpps-dore);
  position: relative;
  overflow: hidden;
  padding: var(--spacing-4xl) 0;
}

.popup-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 162, 95, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

.popup-section::after {
  content: '';
  position: absolute;
  bottom: -25%;
  right: -3%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.popup-banner {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
  z-index: 2;
  position: relative;
}

.popup-badge {
  display: inline-block;
  background: var(--lpps-dore);
  color: var(--lpps-blanc);
  padding: var(--spacing-md) var(--spacing-2xl);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--spacing-lg);
  box-shadow: var(--shadow-warm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.popup-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 3s infinite;
}

.popup-badge:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-float);
  background: var(--lpps-bleu-profond);
}

.popup-title {
  font-family: var(--font-title);
  font-size: 52px;
  font-weight: 700;
  color: var(--lpps-bleu-profond);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.popup-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.popup-text-center {
  text-align: center;
  max-width: 800px;
}

.popup-text-center h3 {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 600;
  color: var(--lpps-bleu-profond);
  margin-bottom: var(--spacing-xl);
  letter-spacing: -0.01em;
}

.popup-description {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--lpps-gris-doux);
  margin-bottom: var(--spacing-lg);
}

.popup-description strong {
  color: var(--lpps-bleu-profond);
  font-weight: 600;
}

/* Galerie de jujuhats - Grille élégante */
.jujuhats-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-2xl);
  width: 100%;
  margin: var(--spacing-2xl) 0;
}

.jujuhat-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid rgba(217, 162, 95, 0.2);
  background: var(--lpps-blanc);
}

.jujuhat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(217, 162, 95, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.jujuhat-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--shadow-float);
  border-color: var(--lpps-dore);
}

.jujuhat-card:hover::before {
  opacity: 1;
}

.jujuhat-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.jujuhat-card:hover .jujuhat-img {
  transform: scale(1.1);
}

.popup-cta {
  text-align: center;
  margin-top: var(--spacing-xl);
}

/* Sections élégantes avec séparateurs premium */
section {
  padding: var(--spacing-4xl) 0;
  position: relative;
}

/* Séparateur élégant entre sections */
section:not(.hero):not(.footer)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--lpps-accent), transparent);
  opacity: 0.15;
}

section:not(.hero):not(.footer)::after {
  content: '';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--lpps-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(183, 149, 11, 0.1);
}

.section-title {
  font-family: var(--font-title);
  font-size: 48px;
  font-weight: 700;
  color: var(--lpps-bleu-profond);
  text-align: center;
  margin-bottom: var(--spacing-xl);
  letter-spacing: -0.01em;
  line-height: 1.1;
  position: relative;
  padding-bottom: var(--spacing-xl);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--lpps-dore), var(--lpps-bleu-profond), var(--lpps-dore));
  border-radius: 4px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 300;
  color: var(--lpps-gris-doux);
  text-align: center;
  margin-bottom: var(--spacing-4xl);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-style: italic;
}

/* Section Nos Créations - Produits artisanaux */
.products-section {
  background: linear-gradient(to bottom, var(--lpps-blanc-casse) 0%, var(--lpps-beige-rose) 100%);
  position: relative;
  padding: var(--spacing-4xl) 0;
}

.products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(217, 162, 95, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(30, 58, 138, 0.02) 1px, transparent 1px);
  background-size: 90px 90px, 120px 120px;
  background-position: 0 0, 50px 50px;
  pointer-events: none;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-3xl);
  margin-bottom: var(--spacing-4xl);
}

/* Cartes produits artisanales élégantes */
.product-card {
  background: var(--lpps-blanc);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-warm);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(217, 162, 95, 0.1);
  position: relative;
}

.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(217, 162, 95, 0.03) 0%, transparent 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--lpps-dore), var(--lpps-bleu-profond));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 10;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-float);
  border-color: var(--lpps-dore);
}

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

.product-image {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: var(--spacing-xl);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.product-cta {
  background: var(--lpps-accent);
  color: var(--lpps-white);
  text-decoration: none;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
  text-transform: none;
  letter-spacing: 0.01em;
}

.product-cta:hover {
  background: var(--lpps-accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.product-info {
  padding: var(--spacing-xl);
  position: relative;
  z-index: 2;
}

.product-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--spacing-xl);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--lpps-accent), transparent);
  opacity: 0;
  transition: all 0.4s ease;
}

.product-card:hover .product-info::before {
  opacity: 1;
  width: 60px;
}

.product-info h3 {
  font-family: var(--font-title);
  font-size: 21px;
  font-weight: 600;
  color: var(--lpps-bleu-profond);
  margin-bottom: var(--spacing-sm);
  line-height: 1.35;
  margin-top: var(--spacing-sm);
  transition: color 0.3s ease;
}

.product-card:hover .product-info h3 {
  color: var(--lpps-dore);
}

.product-description {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--lpps-gris-doux);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.product-price {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  color: var(--lpps-dore);
  display: inline-block;
  position: relative;
  padding: var(--spacing-sm) 0;
}

.products-cta {
  text-align: center;
}

/* À propos - Michèle et savoir-faire artisanal */
.about-section {
  background: linear-gradient(to bottom, var(--lpps-beige-rose) 0%, var(--lpps-blanc-casse) 50%, var(--lpps-beige-rose) 100%);
  position: relative;
  padding: var(--spacing-4xl) 0;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 15%;
  right: 8%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(217, 162, 95, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 3%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--spacing-4xl);
  align-items: center;
}

.about-image {
  text-align: center;
}

.about-image img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(217, 162, 95, 0.25);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 4px solid var(--lpps-dore);
}

.about-image img:hover {
  transform: scale(1.06) rotate(2deg);
  box-shadow: 0 12px 32px rgba(217, 162, 95, 0.35);
  border-color: var(--lpps-bleu-profond);
}

.about-text h2 {
  margin-bottom: var(--spacing-xl);
}

.about-description {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: var(--spacing-xl);
  color: var(--lpps-text-2);
}

.about-description strong {
  color: var(--lpps-text);
}

.about-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-3xl);
}

.detail-item {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.detail-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.8);
}

.detail-item h4 {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 600;
  color: var(--lpps-text);
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--lpps-accent) 0%, var(--lpps-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.detail-item p {
  font-size: 14px;
  color: var(--lpps-text-secondary);
  line-height: 1.6;
}

/* Avis clientes avec cartes élégantes */
.reviews-section {
  background: linear-gradient(135deg, var(--lpps-blanc-casse) 0%, var(--lpps-rose-pale) 50%, var(--lpps-blanc-casse) 100%);
  position: relative;
  padding: var(--spacing-4xl) 0;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(217, 162, 95, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(30, 58, 138, 0.015) 1px, transparent 1px);
  background-size: 100px 100px, 140px 140px;
  background-position: 0 0, 60px 60px;
  pointer-events: none;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-4xl);
}

.review-card {
  background: var(--lpps-blanc);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-warm);
  border: 2px solid rgba(217, 162, 95, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -15px;
  left: 25px;
  font-family: var(--font-title);
  font-size: 100px;
  color: var(--lpps-dore);
  opacity: 0.2;
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-float);
  border-color: var(--lpps-dore);
}

.review-stars {
  color: var(--lpps-dore);
  font-size: 18px;
  margin-bottom: var(--spacing-md);
}

.review-text {
  font-style: italic;
  color: var(--lpps-gris-doux);
  margin-bottom: var(--spacing-lg);
  line-height: 1.65;
  font-size: 15px;
}

.review-author {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--lpps-bleu-profond);
}

.reviews-summary {
  text-align: center;
  padding: var(--spacing-4xl);
  background: linear-gradient(135deg, rgba(255, 249, 244, 0.97) 0%, rgba(255, 255, 255, 0.97) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-2xl);
  border: 3px solid var(--lpps-dore);
  box-shadow: var(--shadow-float);
  position: relative;
  overflow: hidden;
}

.reviews-summary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(217, 162, 95, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.rating-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.rating-number {
  font-family: var(--font-title);
  font-size: 48px;
  font-weight: 700;
  color: var(--lpps-dore);
}

.rating-stars {
  color: var(--lpps-dore);
  font-size: 28px;
}

.rating-count {
  font-size: 16px;
  color: var(--lpps-gris-doux);
  font-style: italic;
}

.reviews-text {
  font-size: 18px;
  color: var(--lpps-bleu-profond);
  font-weight: 600;
}

/* Boutons CTA artisanaux premium */
.cta-button {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.03em;
  padding: var(--spacing-lg) var(--spacing-3xl);
  border-radius: var(--radius-full);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 2;
  font-size: 17px;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
  width: 400px;
  height: 400px;
}

.cta-button.primary {
  background: var(--lpps-bleu-profond);
  color: var(--lpps-blanc);
  box-shadow: var(--shadow-warm);
  border-color: var(--lpps-bleu-profond);
}

.cta-button.primary:hover {
  background: var(--lpps-dore);
  border-color: var(--lpps-dore);
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-float);
}

.cta-button.secondary {
  background: transparent;
  color: var(--lpps-dore);
  border: 2px solid var(--lpps-dore);
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button.secondary::before {
  background: rgba(217, 162, 95, 0.1);
}

.cta-button.secondary:hover {
  background: var(--lpps-dore);
  color: var(--lpps-blanc);
  transform: translateY(-2px);
  box-shadow: var(--shadow-warm);
  border-color: var(--lpps-dore);
}

.cta-button.large {
  font-size: 19px;
  padding: var(--spacing-xl) var(--spacing-4xl);
  font-weight: 700;
}

/* Footer bleu profond élégant */
.footer {
  background: var(--lpps-bleu-profond) !important;
  color: var(--lpps-blanc-casse) !important;
  padding: var(--spacing-4xl) 0 var(--spacing-2xl) 0;
  border-top: 3px solid var(--lpps-dore);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--lpps-dore), transparent);
  opacity: 0.4;
}

.footer::after {
  content: '';
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--lpps-dore);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(217, 162, 95, 0.15);
}

.footer * {
  color: var(--lpps-blanc-casse) !important;
}

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

.footer-section h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.footer-logo {
  height: 90px;
  width: auto;
  margin-bottom: var(--spacing-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.04));
}

.footer-logo:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.08));
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
  color: var(--lpps-text-secondary) !important;
}

.footer-links {
  list-style: none;
  color: var(--lpps-text);
}

.footer-links li {
  margin-bottom: var(--spacing-sm);
  color: var(--lpps-text);
}

.footer-links a {
  color: var(--lpps-text-secondary) !important;
  text-decoration: none !important;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--lpps-accent) !important;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-2xl);
  border-top: 1px solid var(--lpps-border);
  font-size: 14px;
  color: var(--lpps-text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    padding: var(--spacing-md) 0; /* Plus compact sur tablette */
  }

  .nav-container {
    position: relative;
  }

  .logo-section {
    gap: var(--spacing-md);
  }

  .logo-large {
    height: 60px; /* Plus petit sur tablette */
  }

  .brand-info h1 {
    font-size: 24px;
  }

  .nav-menu {
    gap: var(--spacing-lg);
  }

  .nav-menu a {
    font-size: 14px;
    padding: var(--spacing-xs) var(--spacing-sm);
  }

  .cta-nav {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 14px;
  }

  .popup-title {
    font-size: 40px;
  }

  .popup-text-center h3 {
    font-size: 28px;
  }

  .jujuhats-gallery {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-lg);
  }
}

@media (max-width: 640px) {
  .hamburger-menu {
    display: block;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.mobile-open {
    display: flex;
  }

  .nav-container {
    justify-content: flex-start;
  }

  .logo-section {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-sm);
  }

  .logo-large {
    height: 50px;
  }

  .brand-info h1 {
    font-size: 20px;
  }

  .brand-tagline {
    font-size: 12px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: var(--spacing-3xl) 0;
  }

  .hero-content {
    order: 2;
    max-width: 100%;
    padding: 0 var(--spacing-lg);
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
  }

  .hero-title {
    font-size: 28px;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--spacing-2xl);
  }

  .popup-title {
    font-size: 32px;
  }

  .popup-text-center h3 {
    font-size: 24px;
  }

  .jujuhats-gallery {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .jujuhat-img {
    height: 280px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--spacing-2xl);
  }

  .container {
    padding: 0 var(--spacing-lg);
  }

  section {
    padding: var(--spacing-3xl) 0;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: var(--spacing-sm) 0; /* Encore plus compact sur mobile */
  }

  .nav-container {
    padding: 0 var(--spacing-lg);
  }

  .logo-large {
    height: 45px; /* Très compact pour mobile */
  }

  .brand-info h1 {
    font-size: 18px; /* Encore plus petit pour mobile */
  }

  .brand-tagline {
    font-size: 11px;
  }

  .hamburger-menu {
    right: var(--spacing-md);
    font-size: 22px;
  }

  .hero-title {
    font-size: 24px; /* Ajusté pour mobile */
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .section-title {
    font-size: 28px;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
    font-size: 16px;
    padding: var(--spacing-md) var(--spacing-lg);
  }

  .products-grid {
    gap: var(--spacing-md);
  }

  .product-info {
    padding: var(--spacing-md);
  }

  .container {
    padding: 0 var(--spacing-md);
  }
}

/* Accessibilité */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus visible pour accessibilité */
*:focus-visible {
  outline: 2px solid var(--lpps-accent);
  outline-offset: 2px;
}

/* Animations subtiles et raffinées */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* CORRECTIONS CRITIQUES DU FOOTER - PRIORITÉ MAXIMALE */
.footer,
.footer * {
  background-color: var(--lpps-bg-secondary) !important;
  color: var(--lpps-text) !important;
}

.footer .footer-content,
.footer .footer-section,
.footer h4,
.footer ul,
.footer li {
  color: var(--lpps-text) !important;
}

.footer .footer-description {
  color: var(--lpps-text-secondary) !important;
}

.footer .footer-links a {
  color: var(--lpps-text-secondary) !important;
}

.footer .footer-links a:hover {
  color: var(--lpps-accent) !important;
}

.footer .footer-bottom,
.footer .footer-bottom p {
  color: var(--lpps-text-secondary) !important;
}

/* Print styles */
@media print {
  .header,
  .footer,
  .cta-button {
    display: none !important;
  }

  body {
    background-color: white !important;
  }

  section {
    page-break-inside: avoid;
  }

  /* Masquer les motifs décoratifs à l'impression */
  body::before {
    display: none !important;
  }
}
