/* ============================================================
   BÉNIAFET CRÊPERIE — Système de Design CSS
   Stack : Tailwind CDN + CSS Custom
   ============================================================ */

/* --- Google Fonts --- */
/* Charge via <link> dans le HTML pour eviter le render-blocking en chaine */

/* ============================================================
   1. VARIABLES CSS (Design Tokens)
   ============================================================ */
:root {
  /* Couleurs principales */
  --orange: #FF4500;
  --orange-light: #FFF1F1;
  --orange-hover: #E63E00;
  --chocolat: #8B4513;
  --chocolat-light: #F3EFEF;
  --blanc-rose: #F8F2F2;
  --blanc: #FFFFFF;

  /* Couleurs des crêpes */
  --crepe-elmordjene: #FF4500;
  --crepe-viande: #8B4513;
  --crepe-nutella: #351803;
  --crepe-cerelac: #FFF8DC;
  --crepe-elmordjene-nutella: #927661;
  --crepe-caramel: #B67233;
  --crepe-speculos: #E28614;
  --crepe-jambon: #D9CD98;
  --crepe-triple-chocolat: #4A2C17;

  /* Typographies */
  --font-display: 'Pacifico', cursive;
  --font-hero: 'Lobster Two', cursive;
  --font-body: 'ABeeZee', sans-serif;
  --font-decorative: 'Great Vibes', cursive;

  /* Espacements */
  --section-padding: clamp(3rem, 8vw, 6rem);
  --container-max: 1290px;

  /* Bordures */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 37px;
  --radius-full: 9999px;

  /* Ombres */
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.15);
  --shadow-float: 0 10px 40px rgba(255, 69, 0, 0.2);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;

  /* Glassmorphisme */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-bg-strong: rgba(255, 255, 255, 0.25);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-blur: blur(12px);
  --glass-blur-strong: blur(20px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--chocolat);
  background-color: var(--blanc);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Optimisation scroll : les sections hors écran ne sont pas rendues */
section {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

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

ul, ol {
  list-style: none;
}

/* ============================================================
   3. TYPOGRAPHIE
   ============================================================ */
.font-display { font-family: var(--font-display); }
.font-hero { font-family: var(--font-hero); }
.font-body { font-family: var(--font-body); }
.font-decorative { font-family: var(--font-decorative); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.575rem, 4.9vw, 3.675rem);
  color: var(--orange);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: #5a3010;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

/* ============================================================
   4. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(248, 242, 242, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .navbar-container {
  height: 65px;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.navbar.scrolled .navbar-logo img {
  height: 72px;
}

.navbar-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  height: 100px;
}

/* Logo x3 sur PC/tablette */
.navbar-logo {
  margin-right: auto;
  margin-left: -0.5rem;
}

.navbar-logo img {
  height: 165px;
  width: auto;
  border-radius: 0;
  transition: transform var(--transition-base);
}

.navbar-logo img:hover {
  transform: scale(1.05);
}

/* Navbar pilule dynamique (PC) */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--blanc);
  border-radius: var(--radius-full);
  padding: 0.35rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.navbar-menu a {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--chocolat);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.navbar-menu a:hover,
.navbar-menu a.active {
  background: var(--orange);
  color: var(--blanc);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 69, 0, 0.3);
}

/* Hamburger Mobile — Design moderne */
.navbar-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--orange-light);
  border: 2px solid rgba(255, 69, 0, 0.15);
  cursor: pointer;
  z-index: 1002;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: all var(--transition-base);
}

.navbar-toggle:hover {
  background: var(--orange);
}

.navbar-toggle:hover span {
  background: var(--blanc);
}

.navbar-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--orange);
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

.navbar-toggle.active {
  background: var(--orange);
}

.navbar-toggle.active span {
  background: var(--blanc);
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Menu mobile drawer — Full-height slide */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F5 50%, #FFF1F1 100%);
  z-index: 1001;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

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

.mobile-menu-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 69, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-header img {
  height: 50px;
  width: auto;
  border-radius: 0;
}

.mobile-menu-close {
  margin-left: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange-light);
  border: 2px solid rgba(255, 69, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--orange);
  transition: all var(--transition-base);
}

.mobile-menu-close:hover {
  background: var(--orange);
  color: var(--blanc);
  transform: rotate(90deg);
}

.mobile-menu-nav {
  padding: 1.5rem 1.25rem;
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--chocolat);
  border-radius: var(--radius-md);
  margin-bottom: 0.35rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.mobile-menu-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--orange);
  border-radius: 0 4px 4px 0;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
  background: var(--orange);
  color: var(--blanc);
  transform: translateX(6px);
}

.mobile-menu-nav a:hover::before,
.mobile-menu-nav a.active::before {
  transform: scaleY(0);
}

.mobile-menu-nav a.active {
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.25);
}

.mobile-menu-footer {
  padding: 1.25rem 2rem 1.5rem;
  border-top: 1px solid rgba(255, 69, 0, 0.08);
  margin-top: auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.mobile-menu-footer p {
  font-size: 0.8rem;
  color: var(--chocolat);
  opacity: 0.6;
  margin: 0;
}

.mobile-menu-footer .mobile-menu-credit {
  font-size: 0.78rem;
  color: var(--chocolat);
  opacity: 0.7;
}

.mobile-menu-footer .mobile-menu-credit a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease;
}

.mobile-menu-footer .mobile-menu-credit a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1.5px;
  background: var(--orange);
  transform: scaleX(0.6);
  transform-origin: left;
  opacity: 0.5;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
}

.mobile-menu-footer .mobile-menu-credit a:hover {
  color: var(--orange-hover);
}

.mobile-menu-footer .mobile-menu-credit a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

/* Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   5. SECTION HERO — Dynamic gradient + 3D Carousel
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  transition: background 0.8s ease-in-out;
}

/* Fond dynamique animé — les couleurs changent via JS */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-bg-layer--base {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(255, 69, 0, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(139, 69, 19, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 69, 0, 0.05) 0%, transparent 80%),
    linear-gradient(135deg, #FFF5EE 0%, #FFF1F1 30%, #FFECD2 60%, #F8F2F2 100%);
  background-size: 200% 200%;
  animation: hero-gradient-move 12s ease-in-out infinite;
}

.hero-bg-layer--color {
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

.hero-bg-layer--color.active {
  opacity: 1;
}

/* Particules décoratives flottantes */
.hero::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-blob 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes hero-gradient-move {
  0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%, 0% 0%; }
  33% { background-position: 100% 50%, 0% 0%, 100% 0%, 50% 100%; }
  66% { background-position: 50% 100%, 50% 50%, 0% 100%, 100% 0%; }
}

@keyframes float-blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.1); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  margin-bottom: 1.5rem;
}

/* Titre +25% (clamp augmenté) */
.hero-title-main {
  font-family: var(--font-hero);
  font-size: clamp(3.1rem, 7.5vw, 5.625rem);
  color: var(--chocolat);
  display: block;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.hero-title-animated {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  color: var(--orange);
  display: inline-block;
  line-height: 1.2;
  min-height: 1.3em;
  position: relative;
}

/* Animation Animated Skew */
@keyframes skewIn {
  0% {
    opacity: 0;
    transform: skewY(-8deg) translateY(30px);
    filter: blur(4px);
  }
  60% {
    opacity: 1;
    transform: skewY(2deg) translateY(-5px);
  
  }
  100% {
    opacity: 1;
    transform: skewY(0deg) translateY(0);
  
  }
}

.hero-title-animated .word-enter {
  animation: skewIn 0.7s ease-out forwards;
  display: inline-block;
}

.hero-description {
  font-size: clamp(0.95rem, 2vw, 1.375rem);
  color: #5a3010;
  opacity: 1;
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Mobile : cacher boutons desktop, afficher boutons mobile */
.hero-buttons-mobile {
  display: none;
  justify-content: center;
  order: 2;
}

/* ============================================================
   5b. CARROUSEL CARDS INCLINÉES — Style "Fan Spread"
   ============================================================ */
.hero-carousel-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  overflow: visible;
}

.carousel-fan {
  position: relative;
  width: 100%;
  height: 483px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-fan-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-fan-item {
  position: absolute;
  width: 322px;
  height: 322px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: 3px solid rgba(255, 255, 255, 0.6);
}

.carousel-fan-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
  transition: transform 0.5s ease;
}

.carousel-fan-item:hover img {
  transform: scale(1.08);
}

.carousel-fan-item.center {
  z-index: 10;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.9);
  width: 368px;
  height: 368px;
}

/* Nom de la crêpe */
.carousel-crepe-name {
  text-align: center;
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--chocolat);
  transition: all 0.5s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

/* Indicateurs */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 0.75rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(139, 69, 19, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--orange);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(255, 69, 0, 0.4);
}

/* Boutons navigation */
.carousel-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 69, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all var(--transition-base);
  color: var(--chocolat);
}

.carousel-nav:hover {
  background: var(--orange);
  color: var(--blanc);
  border-color: var(--orange);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav--prev { left: -15px; }
.carousel-nav--next { right: -15px; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(5deg); }
  50% { transform: translateY(-25px) rotate(-3deg); }
  75% { transform: translateY(-10px) rotate(2deg); }
}

/* ============================================================
   6. BOUTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--blanc);
  border-color: var(--orange);
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 69, 0, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--chocolat);
  border-color: var(--chocolat);
}

.btn-outline:hover {
  background: var(--chocolat);
  color: var(--blanc);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--blanc);
  border-color: #25D366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1DA851;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.btn-white {
  background: var(--blanc);
  color: var(--orange);
  border-color: var(--blanc);
}

.btn-white:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
}

/* ============================================================
   7. GLASSMORPHISME
   ============================================================ */
.glass {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
}

.glass-strong {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
}

.glass-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.glass-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

/* ============================================================
   8. SECTION "LE MONDE DE LA GOURMANDISE"
   ============================================================ */
.section-gourmandise {
  padding: var(--section-padding) 1.5rem;
  background: var(--blanc);
  position: relative;
}

.gourmandise-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1025px) {
  .gourmandise-grid {
    padding-left: 3rem;
  }

  .gourmandise-grid img {
    max-width: 418px !important;
    width: 418px !important;
    height: auto !important;
  }
}

.gourmandise-stars {
  display: flex;
  gap: 0.3rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.gourmandise-stars svg {
  color: var(--orange);
  width: 24px;
  height: 24px;
  fill: var(--orange);
}

/* ============================================================
   9. SECTION "4 VALEURS"
   ============================================================ */
.section-valeurs {
  padding: var(--section-padding) 1.5rem;
  background: var(--chocolat-light);
  position: relative;
  overflow: hidden;
}

.section-valeurs .section-title {
  color: var(--chocolat);
}

.section-valeurs .valeur-card h3 {
  color: var(--chocolat);
}

/* Motifs pâtisserie subtils en arrière-plan */
.section-valeurs::after,
.section-tarifs::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Cg fill='%234a4a4a' fill-rule='evenodd'%3E%3C!-- Crêpe roulée --%3E%3Cellipse cx='45' cy='30' rx='18' ry='8' /%3E%3Crect x='27' y='28' width='36' height='4' rx='2' /%3E%3C!-- Fouet --%3E%3Cpath d='M320 50c0-12 4-20 4-20s4 8 4 20-4 14-4 14-4-2-4-14z' /%3E%3Cpath d='M314 50c0-14 6-24 6-24s6 10 6 24-6 16-6 16-6-2-6-16z' /%3E%3Cline x1='320' y1='64' x2='320' y2='80' stroke='%234a4a4a' stroke-width='2' /%3E%3C!-- Étoile --%3E%3Cpolygon points='200,10 203,20 213,20 205,26 208,36 200,30 192,36 195,26 187,20 197,20' /%3E%3C!-- Cerise --%3E%3Ccircle cx='100' cy='180' r='7' /%3E%3Ccircle cx='112' cy='178' r='7' /%3E%3Cpath d='M100 173c0 0 3-12 10-15' fill='none' stroke='%234a4a4a' stroke-width='1.5' /%3E%3Cpath d='M112 171c0 0-1-10 2-14' fill='none' stroke='%234a4a4a' stroke-width='1.5' /%3E%3C!-- Cupcake --%3E%3Cpath d='M290 180c-3 0-5-4-5-8s4-8 10-8c2-4 6-6 10-6s8 2 10 6c6 0 10 4 10 8s-2 8-5 8z' /%3E%3Ctrapezoid /%3E%3Cpath d='M288 180l4 14h22l4-14z' /%3E%3C!-- Goutte chocolat --%3E%3Cpath d='M55 280c0 6-4 10-8 10s-8-4-8-10c0-8 8-18 8-18s8 10 8 18z' /%3E%3C!-- Toque chef --%3E%3Ccircle cx='350' cy='280' r='6' /%3E%3Ccircle cx='358' cy='276' r='6' /%3E%3Ccircle cx='342' cy='276' r='6' /%3E%3Crect x='340' y='282' width='20' height='10' rx='2' /%3E%3C!-- Petit cœur --%3E%3Cpath d='M200 290c0-3 2-5 5-5s5 2 5 5c0 5-5 8-5 8s-5-3-5-8z' /%3E%3Cpath d='M200 290c0-3-2-5-5-5s-5 2-5 5c0 5 5 8 5 8s5-3 5-8z' /%3E%3C!-- Rouleau pâtissier --%3E%3Crect x='130' y='350' width='40' height='10' rx='5' /%3E%3Crect x='122' y='353' width='10' height='4' rx='2' /%3E%3Crect x='168' y='353' width='10' height='4' rx='2' /%3E%3C!-- Flocon sucre --%3E%3Ccircle cx='320' cy='360' r='3' /%3E%3Ccircle cx='310' cy='350' r='2' /%3E%3Ccircle cx='330' cy='350' r='2' /%3E%3Ccircle cx='310' cy='370' r='2' /%3E%3Ccircle cx='330' cy='370' r='2' /%3E%3C!-- Croissant --%3E%3Cpath d='M50 360c8-6 20-6 28 0c-4-10-24-10-28 0z' /%3E%3Cpath d='M54 358c6-4 16-4 20 0c-2-8-18-8-20 0z' /%3E%3C/g%3E%3C/svg%3E");
  background-size: 250px 250px;
  background-repeat: repeat;
}

/* S'assurer que le contenu reste au-dessus des motifs */
.section-valeurs .container,
.section-tarifs .tarifs-container {
  position: relative;
  z-index: 1;
}

.valeurs-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.valeur-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 2px solid transparent;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
              border-color 0.4s ease,
              opacity 0.4s ease;
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

/* Spotlight : les cartes non-survolées se réduisent */
.valeurs-grid:hover .valeur-card {
  opacity: 0.7;
  transform: scale(0.97);
}

.valeurs-grid:hover .valeur-card:hover {
  opacity: 1;

  border-color: var(--orange);
  transform: translateY(-6px) scale(1.03);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 0 15px 1px rgba(255, 69, 0, 0.12);
}

.valeur-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 0 15px 1px rgba(255, 69, 0, 0.12);
}

.valeur-card:hover .valeur-icon {
  transform: scale(1.15) rotate(8deg);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.valeur-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.valeur-icon.orange-bg {
  background: var(--orange-light);
  color: var(--orange);
}

.valeur-icon.choco-bg {
  background: var(--chocolat-light);
  color: var(--chocolat);
}

.valeur-card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.valeur-card p {
  font-size: 0.92rem;
  color: var(--chocolat);
  opacity: 0.8;
  line-height: 1.6;
}

/* ============================================================
   10. SECTION "NOS CRÊPES SIGNATURES"
   ============================================================ */
.section-crepes {
  padding: var(--section-padding) 1.5rem;
  background: var(--blanc);
  position: relative;
}

.crepes-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.crepe-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 0.55s cubic-bezier(0.25, 0.8, 0.25, 1),
              opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  z-index: 1;
}

/* PC uniquement : zoom avant fluide au survol */
@media (hover: hover) and (min-width: 1025px) {
  .crepes-grid:hover .crepe-card {
    opacity: 0.6;
    transform: scale(0.95);
  }

  .crepes-grid:hover .crepe-card:hover {
    opacity: 1;
    z-index: 10;
    transform: scale(1.08);
    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.18),
      0 0 25px 3px rgba(var(--crepe-glow), 0.3),
      0 0 50px 6px rgba(var(--crepe-glow), 0.15);
  }

  .crepe-card:hover {
    z-index: 10;
    transform: scale(1.08);
    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.18),
      0 0 25px 3px rgba(var(--crepe-glow), 0.3),
      0 0 50px 6px rgba(var(--crepe-glow), 0.15);
  }

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

/* Mobile/tablette : hover simple sans zoom */
.crepe-card:hover .crepe-card-image {
  transform: scale(1.03);
}

.crepe-card-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: block;
}

.crepe-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.crepe-card-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.crepe-card-description {
  font-size: 0.88rem;
  line-height: 1.6;
  opacity: 0.9;
  flex: 1;
  margin-bottom: 1.25rem;
}

.crepe-card .btn {
  align-self: flex-start;
}

/* Couleurs par type de crêpe */
.crepe-card[data-crepe="elmordjene"] .crepe-card-body { background: var(--crepe-elmordjene); color: #fff; }
.crepe-card[data-crepe="viande"] .crepe-card-body { background: var(--crepe-viande); color: #fff; }
.crepe-card[data-crepe="nutella"] .crepe-card-body { background: var(--crepe-nutella); color: #fff; }
.crepe-card[data-crepe="cerelac"] .crepe-card-body { background: var(--crepe-cerelac); color: var(--chocolat); }
.crepe-card[data-crepe="elmordjene-nutella"] .crepe-card-body { background: var(--crepe-elmordjene-nutella); color: #fff; }
.crepe-card[data-crepe="caramel"] .crepe-card-body { background: var(--crepe-caramel); color: #fff; }
.crepe-card[data-crepe="speculos"] .crepe-card-body { background: var(--crepe-speculos); color: #fff; }
.crepe-card[data-crepe="jambon"] .crepe-card-body { background: var(--crepe-jambon); color: var(--chocolat); }
.crepe-card[data-crepe="triple-chocolat"] .crepe-card-body { background: var(--crepe-triple-chocolat); color: #fff; }

/* Couleurs glow néon par crêpe (format RGB pour rgba()) */
.crepe-card[data-crepe="elmordjene"]         { --crepe-glow: 255, 69, 0; }
.crepe-card[data-crepe="viande"]             { --crepe-glow: 139, 69, 19; }
.crepe-card[data-crepe="nutella"]            { --crepe-glow: 83, 54, 23; }
.crepe-card[data-crepe="cerelac"]            { --crepe-glow: 191, 165, 80; }
.crepe-card[data-crepe="elmordjene-nutella"] { --crepe-glow: 146, 118, 97; }
.crepe-card[data-crepe="caramel"]            { --crepe-glow: 182, 114, 51; }
.crepe-card[data-crepe="speculos"]           { --crepe-glow: 226, 134, 20; }
.crepe-card[data-crepe="jambon"]             { --crepe-glow: 168, 148, 72; }
.crepe-card[data-crepe="triple-chocolat"]    { --crepe-glow: 74, 44, 23; }

/* Boutons adaptés par crêpe */
.crepe-card[data-crepe] .btn-white {
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

/* Cartes sombres → bouton blanc avec texte de la couleur de la carte */
.crepe-card[data-crepe="elmordjene"] .btn-white {
  background: rgba(255,255,255,0.95);
  color: #FF4500;
  border-color: rgba(255,255,255,0.95);
}
.crepe-card[data-crepe="viande"] .btn-white {
  background: rgba(255,255,255,0.95);
  color: #8B4513;
  border-color: rgba(255,255,255,0.95);
}
.crepe-card[data-crepe="nutella"] .btn-white {
  background: rgba(255,255,255,0.95);
  color: #351803;
  border-color: rgba(255,255,255,0.95);
}
.crepe-card[data-crepe="elmordjene-nutella"] .btn-white {
  background: rgba(255,255,255,0.95);
  color: #927661;
  border-color: rgba(255,255,255,0.95);
}
.crepe-card[data-crepe="caramel"] .btn-white {
  background: rgba(255,255,255,0.95);
  color: #B67233;
  border-color: rgba(255,255,255,0.95);
}
.crepe-card[data-crepe="speculos"] .btn-white {
  background: rgba(255,255,255,0.95);
  color: #E28614;
  border-color: rgba(255,255,255,0.95);
}
.crepe-card[data-crepe="triple-chocolat"] .btn-white {
  background: rgba(255,255,255,0.95);
  color: #4A2C17;
  border-color: rgba(255,255,255,0.95);
}

/* Cartes claires → bouton coloré avec texte blanc */
.crepe-card[data-crepe="cerelac"] .btn-white {
  background: var(--chocolat);
  color: #fff;
  border-color: var(--chocolat);
}
.crepe-card[data-crepe="jambon"] .btn-white {
  background: var(--chocolat);
  color: #fff;
  border-color: var(--chocolat);
}

/* Hover commun */
.crepe-card[data-crepe] .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  filter: brightness(1.05);
}

/* ============================================================
   11. SECTION "NOS TARIFS"
   ============================================================ */
.section-tarifs {
  padding: var(--section-padding) 1.5rem;
  position: relative;
  overflow: hidden;
}

/* Fond animé aurora */
.section-tarifs::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 69, 0, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(139, 69, 19, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(255, 69, 0, 0.05) 0%, transparent 50%);
  background-size: 200% 200%;
  animation: aurora-crepe 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes aurora-crepe {
  0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%; }
  33% { background-position: 50% 100%, 0% 0%, 100% 0%; }
  66% { background-position: 100% 0%, 50% 100%, 0% 100%; }
}

.tarifs-container {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tarifs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.tarif-column {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
              opacity 0.4s ease;
}

/* Spotlight tarifs : effet fluide entre les colonnes */
.tarifs-grid:hover .tarif-column,
.section-tarifs:hover .tarifs-mixtes.tarif-column {
  opacity: 0.7;
  transform: scale(0.98);
}

.tarifs-grid:hover .tarif-column:hover,
.section-tarifs:hover .tarifs-mixtes.tarif-column:hover {
  opacity: 1;

  transform: translateY(-5px) scale(1.01);
  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.10),
    0 0 12px rgba(255, 69, 0, 0.08);
}

.tarif-column:hover {
  transform: translateY(-5px);
  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.10),
    0 0 12px rgba(255, 69, 0, 0.06);
}

.tarif-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blanc);
  margin-bottom: 1.5rem;
}

.tarif-badge.orange { background: var(--orange); }
.tarif-badge.chocolat { background: var(--chocolat); }
.tarif-badge.mixte { background: linear-gradient(135deg, var(--orange), var(--chocolat)); }

.tarif-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(139, 69, 19, 0.15);
}

.tarif-item:last-of-type {
  border-bottom: none;
}

.tarif-item-name {
  font-weight: 700;
  color: var(--chocolat);
  font-size: 0.95rem;
}

.tarif-item-tagline {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--chocolat);
  opacity: 0.65;
  margin-top: 0.25rem;
}

.tarif-item-price {
  font-weight: 700;
  color: var(--orange);
  font-size: 1rem;
  white-space: nowrap;
  margin-left: 1rem;
}

/* Section Mixtes */
.tarifs-mixtes {
  margin-top: 2rem;
}

.mixte-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  max-width: 900px;
  margin: 0 auto;
}

.mixte-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
              border-color 0.4s ease,
              opacity 0.4s ease;
  border: 2px solid rgba(139, 69, 19, 0.08);
  display: flex;
  flex-direction: column;
}

/* Spotlight mixte */
.mixte-grid:hover .mixte-card {
  opacity: 0.7;
  transform: scale(0.97);
}

.mixte-grid:hover .mixte-card:hover {
  opacity: 1;

  border-color: var(--orange);
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 0 15px 1px rgba(255, 69, 0, 0.10);
}

.mixte-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 0 15px 1px rgba(255, 69, 0, 0.10);
}

.mixte-card:hover .mixte-card-name {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.mixte-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px dashed rgba(139, 69, 19, 0.12);
}

.mixte-card-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--orange);
}

.mixte-card-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--orange);
  background: var(--orange-light);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.mixte-card-list {
  margin-bottom: 1.5rem;
  flex: 1;
}

.mixte-card-list li {
  font-size: 0.9rem;
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--chocolat);
}

.mixte-card-list li::before {
  content: '🥞';
  position: absolute;
  left: 0;
  font-size: 0.75rem;
}

.mixte-card .btn {
  align-self: stretch;
  text-align: center;
  justify-content: center;
  padding: 0.65rem 1.2rem;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
}

/* ============================================================
   12. SECTION "NOS HORAIRES" — Design moderne
   ============================================================ */
.section-horaires {
  padding: var(--section-padding) 1.5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0a02 0%, #2d1507 40%, #3d1d0c 70%, #1a0a02 100%);
  color: var(--blanc);
}

.section-horaires .section-title {
  color: var(--blanc);
}

.section-horaires .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.horaires-container {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.horaires-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  justify-items: center;
}

/* Centrer la 2e rangée (3 éléments) */
.horaires-grid .horaire-day-card:nth-child(5) {
  grid-column: 1;
}

.horaires-grid .horaire-day-card:nth-child(n+5) {
  justify-self: center;
}

/* Centrer les 3 cartes du bas sur la grille de 4 colonnes */
@media (min-width: 641px) {
  .horaires-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: none;
  }
  .horaires-grid .horaire-day-card:nth-child(5) { grid-column: 1; }
  .horaires-grid .horaire-day-card:nth-child(n+5) { justify-self: center; }

  .horaires-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
  }
  .horaires-grid .horaire-day-card {
    width: calc(25% - 1.25rem);
    min-width: 180px;
  }
}

.horaire-day-card {
  background: rgba(60, 30, 10, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
              background 0.4s ease,
              border-color 0.4s ease,
              box-shadow 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.horaire-day-card::before {
  display: none;
  transition: transform var(--transition-base);
}

.horaire-day-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  border-color: rgba(255, 69, 0, 0.35);
  box-shadow: 0 0 18px rgba(255, 69, 0, 0.10);
}

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

.horaire-day-card.open {
  border-color: rgba(255, 69, 0, 0.2);
}

.horaire-day-card.closed {
  opacity: 0.4;
}

.horaire-day-name {
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.horaire-day-card.closed .horaire-day-name {
  color: rgba(255, 255, 255, 0.4);
}

.horaire-day-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.horaire-day-icon svg {
  width: 24px !important;
  height: 24px !important;
}

.horaire-day-card.open .horaire-day-icon {
  background: rgba(255, 69, 0, 0.15);
  color: var(--orange);
}

.horaire-day-card.closed .horaire-day-icon {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.3);
}

.horaire-day-time {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.horaire-day-card.closed .horaire-day-time {
  color: rgba(255, 255, 255, 0.3);
}

.horaires-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   13. SECTION TÉMOIGNAGES — Marquee infini fluide
   ============================================================ */
.section-temoignages {
  padding: var(--section-padding) 0;
  background: var(--blanc);
  overflow: hidden;
}

.section-temoignages .container {
  padding-bottom: 2rem;
}

.temoignages-marquee {
  display: flex;
  align-items: stretch;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}

.temoignages-marquee:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.temoignage-card {
  width: 340px;
  flex-shrink: 0;
  margin: 0 0.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  cursor: grab;
  display: flex;
  flex-direction: column;
}

.temoignage-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.12),
    0 0 10px rgba(255, 69, 0, 0.06);
}

.temoignage-card-top {
  padding: 1.75rem;
  background: var(--blanc);
  flex: 1;
}

/* Alternance de couleurs des cartes témoignages */
.temoignage-card:nth-child(odd) .temoignage-card-top {
  background: #FFF1F1;
}

.temoignage-card:nth-child(even) .temoignage-card-top {
  background: #F3EFEF;
}

/* Étoiles orange pour cartes Elsa (3e) et Ange (4e) */
.temoignage-card:nth-child(4n+3) .temoignage-stars svg,
.temoignage-card:nth-child(4n) .temoignage-stars svg {
  fill: var(--orange);
  color: var(--orange);
}

.temoignage-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
}

.temoignage-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--chocolat);
  color: var(--chocolat);
}

.temoignage-stars svg.half {
  fill: url(#star-half-gradient);
}

.temoignage-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--orange);
  margin-bottom: 0.75rem;
  font-style: italic;
}

.temoignage-text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #4a4a4a;
  font-style: italic;
  opacity: 0.8;
}

.temoignage-card-bottom {
  padding: 1rem 1.75rem;
  background: var(--orange);
  color: var(--blanc);
  font-weight: 700;
  font-size: 1rem;
}

/* ============================================================
   14. SECTION QR CODES — Ambiance Orange / Bleu
   ============================================================ */
.section-qr {
  padding: var(--section-padding) 1.5rem;
  background: var(--blanc);
}

.qr-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.qr-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
              border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Ambiance Orange Money */
.qr-card--orange {
  background: linear-gradient(145deg, #FFF5EE, #FFE8D6, #FFDBC2);
  border: 2px solid rgba(255, 102, 0, 0.2);
  box-shadow: 0 6px 25px rgba(255, 102, 0, 0.1);
}

.qr-card--orange::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.qr-card--orange:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 10px 35px rgba(255, 102, 0, 0.15),
    0 0 20px rgba(255, 102, 0, 0.10);
  border-color: rgba(255, 102, 0, 0.4);
}

.qr-card--orange .qr-card-label {
  color: #E65C00;
}

/* Ambiance Wave Bleu */
.qr-card--wave {
  background: linear-gradient(145deg, #F0F8FF, #E0F0FF, #D0EAFF);
  border: 2px solid rgba(29, 196, 233, 0.2);
  box-shadow: 0 6px 25px rgba(29, 196, 233, 0.1);
}

.qr-card--wave::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(29, 196, 233, 0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.qr-card--wave:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 10px 35px rgba(29, 196, 233, 0.15),
    0 0 20px rgba(29, 196, 233, 0.10);
  border-color: rgba(29, 196, 233, 0.4);
}

.qr-card--wave .qr-card-label {
  color: #0099BB;
}

.qr-card img {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  transition: transform 0.4s ease;
}

.qr-card:hover img {
  transform: scale(1.05);
}

.qr-card-label {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-display);
}

/* ============================================================
   15. SECTION CTA "COMMANDEZ"
   ============================================================ */
.section-cta {
  padding: var(--section-padding) 1.5rem;
  background: linear-gradient(135deg, var(--orange), #E63E00);
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.cta-container {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--blanc);
  margin-bottom: 2rem;
}

/* Collage dynamique avec chevauchement */
.cta-collage {
  position: relative;
  width: 100%;
  max-width: 750px;
  height: 420px;
  margin: 0 auto 2.5rem;
}

.cta-collage-item {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  border: 4px solid rgba(255, 255, 255, 0.7);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.cta-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 4px);
  transition: transform 0.5s ease;
}

.cta-collage-item:hover {
  z-index: 10 !important;
  transform: scale(1.08) rotate(0deg) !important;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}

.cta-collage-item:hover img {
  transform: scale(1.05);
}

/* Position de chaque image — disposition en éventail chevauchant */
.cta-collage-item:nth-child(1) {
  width: 280px; height: 210px;
  top: 20px; left: 0;
  z-index: 3;
  transform: rotate(-4deg);
}

.cta-collage-item:nth-child(2) {
  width: 260px; height: 200px;
  bottom: 20px; left: 60px;
  z-index: 4;
  transform: rotate(2deg);
}

.cta-collage-item:nth-child(3) {
  width: 290px; height: 230px;
  top: calc(50% - 115px); left: calc(50% - 145px);
  transform: rotate(0deg);
  z-index: 5;
}

.cta-collage-item:nth-child(4) {
  width: 260px; height: 200px;
  top: 10px; right: 0;
  z-index: 2;
  transform: rotate(5deg);
}

.cta-collage-item:nth-child(5) {
  width: 270px; height: 210px;
  bottom: 10px; right: 30px;
  z-index: 3;
  transform: rotate(-3deg);
}

/* ============================================================
   16. CHOCOLATE DRIPPING SEPARATOR
   ============================================================ */
.chocolate-drip {
  position: relative;
  width: 100%;
  height: 80px;
  overflow: hidden;
  margin-top: -1px;
}

.chocolate-drip svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  animation: wave-flow 6s linear infinite;
}

.chocolate-drip svg:nth-child(1) {
  animation-duration: 6s;
}

.chocolate-drip svg path:first-child {
  animation: wave-morph 4s ease-in-out infinite alternate;
}

@keyframes wave-flow {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.chocolate-drip-top {
  margin-bottom: -1px;
}

.chocolate-drip-top svg {
  top: 0;
  bottom: auto;
}

/* ============================================================
   17. FORMULAIRE DE COMMANDE
   ============================================================ */
.order-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--blanc);
  margin-bottom: 0.4rem;
  opacity: 0.9;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.15);
  color: var(--blanc);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-base);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blanc);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.15);
}

/* ============================================================
   FORM CARDS — Anniversaire & Cadeau (design premium)
   ============================================================ */
.form-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: background 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
              border-color 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.form-card:has(.form-switch input:checked) {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.form-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  cursor: pointer;
  user-select: none;
  margin: 0;
}

.form-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blanc);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-card-icon--pink {
  background: linear-gradient(135deg, #ff6b9d, #ff4577);
  box-shadow: 0 4px 15px rgba(255, 69, 119, 0.35);
}

.form-card-icon--orange {
  background: linear-gradient(135deg, #ff8a3d, var(--orange));
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.35);
}

.form-card:has(.form-switch input:checked) .form-card-icon {
  transform: scale(1.08) rotate(-6deg);
}

.form-card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.form-card-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--blanc);
  line-height: 1.2;
}

.form-card-subtitle {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
}

/* Switch toggle moderne */
.form-switch {
  position: relative;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
}

.form-switch input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  z-index: 2;
}

.form-switch-track {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.form-switch-track::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: var(--blanc);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: left 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}

.form-switch input:checked + .form-switch-track {
  background: var(--chocolat);
  border-color: #6e3510;
}

.form-switch input:checked + .form-switch-track::after {
  left: 23px;
}

/* Corps conditionnel — animation fluide */
.form-card-body {
  padding: 0 1.1rem 1.1rem;
  margin-top: -0.25rem;
  animation: form-card-body-in 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.form-card-body[hidden] {
  display: none;
}

@keyframes form-card-body-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-card-body-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.form-card-body-input,
.form-date-input {
  width: 100%;
  padding: 0.8rem 1.1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--blanc);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.form-card-body-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-card-body-input:focus,
.form-date-input:focus {
  outline: none;
  border-color: var(--blanc);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

/* ============================================================
   DATE PICKER CUSTOM — Glassmorphisme moderne
   ============================================================ */
.date-picker {
  position: relative;
  width: 100%;
}

.date-picker-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--blanc);
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.date-picker-trigger:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
}

.date-picker-trigger svg {
  flex-shrink: 0;
  color: var(--blanc);
}

.date-picker-value {
  flex: 1;
  text-align: left;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.date-picker.has-value .date-picker-value {
  color: var(--blanc);
  font-weight: 600;
}

.date-picker-chevron {
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.date-picker.open .date-picker-chevron {
  transform: rotate(180deg);
}

.date-picker.open .date-picker-trigger {
  border-color: var(--blanc);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

/* Panel calendrier glassmorphisme */
.date-picker-panel {
  display: none;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  animation: date-picker-in 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes date-picker-in {
  from { opacity: 0; transform: translateY(-8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.date-picker.open .date-picker-panel {
  display: block;
}

.date-picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.date-picker-nav {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: var(--blanc);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.date-picker-nav:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.08);
}

.date-picker-nav:active {
  transform: scale(0.95);
}

.date-picker-month-label {
  flex: 1;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--blanc);
  text-transform: capitalize;
  letter-spacing: 0.02em;
}

.date-picker-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 0.5rem;
}

.date-picker-weekdays span {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  padding: 0.3rem 0;
}

.date-picker-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.date-picker-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--blanc);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.date-picker-day:not(.empty):hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.08);
}

.date-picker-day.empty {
  cursor: default;
  pointer-events: none;
}

.date-picker-day.selected {
  background: linear-gradient(135deg, #ff8a3d, var(--orange));
  color: var(--blanc);
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
  font-weight: 700;
}

.date-picker-day.today {
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--chocolat);
  color: var(--blanc);
}

/* ---- Custom Select Dropdown ---- */
.custom-select {
  position: relative;
}

.custom-select-trigger {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.15);
  color: var(--blanc);
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-base);
  text-align: left;
}

.custom-select-trigger:focus {
  outline: none;
  border-color: var(--blanc);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.15);
}

.custom-select-value {
  opacity: 0.55;
  transition: opacity 0.2s;
}

.custom-select.has-value .custom-select-value {
  opacity: 1;
}

.custom-select-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  transform: rotate(180deg);
}

.custom-select.open .custom-select-arrow {
  transform: rotate(0deg);
}

.custom-select-dropdown {
  position: absolute;
  top: auto;
  bottom: calc(100% + 6px);
  left: 0;
  right: 0;
  background: rgba(139, 69, 19, 0.97);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  z-index: 100;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.25s ease;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.custom-select.open .custom-select-dropdown {
  max-height: 360px;
  opacity: 1;
  overflow-y: auto;
}

.custom-select-dropdown::-webkit-scrollbar {
  width: 6px;
}

.custom-select-dropdown::-webkit-scrollbar-track {
  background: transparent;
}

.custom-select-dropdown::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
}

.custom-select-group {
  padding: 0.25rem 0;
}

.custom-select-group + .custom-select-group {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.custom-select-group-label {
  padding: 0.6rem 1rem 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.custom-select-option {
  padding: 0.65rem 1rem 0.65rem 1.5rem;
  color: var(--blanc);
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s ease;
  border-radius: 6px;
  margin: 2px 6px;
}

.custom-select-option:hover {
  background: rgba(255, 255, 255, 0.15);
}

.custom-select-option.selected {
  background: rgba(255, 69, 0, 0.35);
  font-weight: 700;
}

/* ============================================================
   18. FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(135deg, #1a0a02 0%, #2d1507 40%, #3d1d0c 70%, #1a0a02 100%);
  color: var(--blanc);
  padding: 3rem 1.5rem 1.5rem;
  position: relative;
}

.footer-logo img {
  height: 275px;
  width: auto;
  margin: 0 auto 1.5rem;
  border-radius: 0;
}

.footer-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-socials {
  justify-content: center;
}

.footer-stars {
  justify-content: center;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--orange);
  margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanc);
  transition: all var(--transition-base);
}

.footer-socials a:hover {
  background: var(--chocolat);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.45);
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-stars {
  display: flex;
  gap: 0.3rem;
}

.footer-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--orange);
}

/* ============================================================
   19. WHATSAPP FLOTTANT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--orange) 0%, var(--chocolat) 100%);
  color: var(--blanc);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(255, 69, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(255, 69, 0, 0.45);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: var(--blanc);
  flex-shrink: 0;
}

.whatsapp-float-label {
  display: inline;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 69, 0, 0.25);
  animation: pulse-wa 2.5s ease-in-out infinite;
}

@keyframes pulse-wa {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0; }
}

/* Bouton retour en haut */
.scroll-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanc);
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
  transition: all var(--transition-base);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--orange-hover);
  transform: translateY(-3px);
}

/* ============================================================
   20. PAGE QUI-SOMMES-NOUS
   ============================================================ */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--orange), var(--chocolat));
  transform: translateX(-50%);
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 1.5rem;
}

.timeline-item:nth-child(odd) {
  padding-right: 3rem;
  text-align: right;
}

.timeline-item:nth-child(even) {
  margin-left: 50%;
  padding-left: 3rem;
}

.timeline-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--orange);
  border: 3px solid var(--blanc);
  border-radius: 50%;
  top: 2rem;
  box-shadow: 0 0 0 4px var(--orange-light);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -9px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -9px;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.timeline-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 8px 30px rgba(139, 69, 19, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(139, 69, 19, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.timeline-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--chocolat);
  margin-bottom: 0.5rem;
}

.timeline-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--chocolat);
  opacity: 0.8;
}

/* Section fondatrice */
.fondatrice-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.fondatrice-photo-wrapper {
  position: relative;
  width: 100%;
  max-width: 300px;
  border-radius: var(--radius-lg);
}

.fondatrice-photo-wrapper::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: calc(var(--radius-lg) + 6px);
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.35) 0%, transparent 50%, rgba(139, 69, 19, 0.35) 100%);
  z-index: -1;
}

.fondatrice-photo-wrapper::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--radius-lg) + 12px);
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.12) 0%, transparent 50%, rgba(139, 69, 19, 0.12) 100%);
  z-index: -2;
}

.fondatrice-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  box-shadow:
    -8px 0 20px rgba(255, 69, 0, 0.15),
    8px 0 20px rgba(139, 69, 19, 0.15);
}

.fondatrice-photo-placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--orange-light), var(--chocolat-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--chocolat);
  font-size: 0.9rem;
  opacity: 0.6;
  border: 2px dashed var(--orange);
}

/* Nos Valeurs */
.valeurs-apropos-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Glassmorphisme sur les cartes valeurs de la page À Propos */
.section-apropos .valeur-card,
#nos-valeurs .valeur-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 30px rgba(139, 69, 19, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.4) inset;
}

.section-apropos .valeur-card:hover,
#nos-valeurs .valeur-card:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 40px rgba(139, 69, 19, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

/* Citation */
.citation-block {
  max-width: 700px;
  margin: 3rem auto;
  text-align: center;
  padding: 2rem;
  border-left: 4px solid var(--orange);
  border-right: 4px solid var(--orange);
  border-radius: var(--radius-md);
  background: var(--orange-light);
}

.citation-block blockquote {
  font-family: var(--font-decorative);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--chocolat);
  line-height: 1.6;
}

.citation-block cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--orange);
  font-style: normal;
  font-weight: 700;
}

/* ============================================================
   20b. PAGES SECONDAIRES — padding-top pour navbar grand logo
   ============================================================ */
.section-apropos,
.section-fondatrice {
  padding: var(--section-padding) 1.5rem;
  position: relative;
}

.section-apropos {
  padding-top: calc(140px + 3rem);
  background:
    radial-gradient(ellipse at 60% 20%, rgba(139, 69, 19, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 70%, rgba(139, 69, 19, 0.04) 0%, transparent 50%),
    linear-gradient(135deg, #FDFAF7 0%, #F8F1E8 40%, #F3EBDF 100%);
}

.section-fondatrice {
  background: var(--blanc);
}

/* ============================================================
   21. PAGE BLOG
   ============================================================ */
.blog-hero {
  padding: calc(140px + 3rem) 1.5rem 3rem;
  background: var(--blanc-rose);
  text-align: center;
}

.blog-search {
  max-width: 500px;
  margin: 2rem auto 0;
  position: relative;
}

.blog-search input {
  width: 100%;
  padding: 1rem 1.5rem 1rem 3rem;
  border: 2px solid rgba(255, 69, 0, 0.2);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--chocolat);
  background: var(--blanc);
  transition: all var(--transition-base);
}

.blog-search input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 69, 0, 0.1);
}

.blog-search svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  width: 20px;
  height: 20px;
}

.blog-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: var(--section-padding) 1.5rem;
}

.blog-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--chocolat);
  opacity: 0.6;
}

.blog-empty p {
  font-family: var(--font-body);
  font-size: 1.15rem;
  max-width: 400px;
  line-height: 1.6;
}

/* ============================================================
   22. PAGES LÉGALES
   ============================================================ */
.legal-page {
  padding: calc(140px + 3rem) 1.5rem 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.legal-page .legal-subtitle {
  font-size: 1rem;
  color: var(--chocolat);
  opacity: 0.75;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.legal-page h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--chocolat);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--orange-light);
}

.legal-page h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.legal-page p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--chocolat);
  opacity: 0.85;
  margin-bottom: 0.75rem;
}

.legal-page ul {
  margin: 0.5rem 0 1rem 1.5rem;
}

.legal-page ul li {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--chocolat);
  opacity: 0.85;
  list-style: disc;
  margin-bottom: 0.3rem;
}

/* ============================================================
   23. ANIMATIONS D'ENTRÉE (Motion One targets)
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
}

[data-animate="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
}

[data-animate="fade-left"] {
  opacity: 0;
  transform: translateX(-40px);
}

[data-animate="fade-right"] {
  opacity: 0;
  transform: translateX(40px);
}

[data-animate="scale-in"] {
  opacity: 0;
  transform: scale(0.9);
}

[data-animate="fade-up"].animated,
[data-animate="fade-left"].animated,
[data-animate="fade-right"].animated,
[data-animate="scale-in"].animated {
  opacity: 1;
  transform: none;
  transition: opacity 0.85s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Boutons — pulse subtil en boucle */
.btn-primary {
  animation: btn-pulse 3s ease-in-out infinite;
}

@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3); }
  50% { box-shadow: 0 6px 25px rgba(255, 69, 0, 0.5); }
}

.btn-primary:hover {
  animation: none;
}

/* Icônes sociales — rotation au hover */
.footer-socials a svg {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-socials a:hover svg {
  transform: rotate(15deg) scale(1.15);
}

/* Étoiles — scintillement subtil */
.gourmandise-stars svg,
.footer-stars svg {
  animation: star-twinkle 2s ease-in-out infinite;
}

.gourmandise-stars svg:nth-child(2) { animation-delay: 0.2s; }
.gourmandise-stars svg:nth-child(3) { animation-delay: 0.4s; }
.gourmandise-stars svg:nth-child(4) { animation-delay: 0.6s; }
.gourmandise-stars svg:nth-child(5) { animation-delay: 0.8s; }

@keyframes star-twinkle {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.8; }
}

/* Horaires cards — glow en boucle sur les jours ouverts */
.horaire-day-card.open {
  animation: horaire-glow 4s ease-in-out infinite;
}

.horaire-day-card.open:nth-child(2) { animation-delay: 0.5s; }
.horaire-day-card.open:nth-child(4) { animation-delay: 1s; }
.horaire-day-card.open:nth-child(5) { animation-delay: 1.5s; }
.horaire-day-card.open:nth-child(6) { animation-delay: 2s; }

@keyframes horaire-glow {
  0%, 100% { border-color: rgba(255, 69, 0, 0.15); box-shadow: 0 0 0 rgba(255, 69, 0, 0); }
  50% { border-color: rgba(255, 69, 0, 0.35); box-shadow: 0 0 20px rgba(255, 69, 0, 0.08); }
}

.horaire-day-card.open:hover {
  animation: none;
}

/* Stagger delay for children */
[data-stagger] > * {
  transition-delay: calc(var(--stagger-index, 0) * 0.1s);
}

/* ============================================================
   24. RESPONSIVE
   ============================================================ */

/* Protection touch — désactive les hover sur appareils tactiles */
@media (hover: none) {
  .crepe-card:hover,
  .valeur-card:hover,
  .mixte-card:hover,
  .tarif-column:hover,
  .horaire-day-card:hover,
  .qr-card--orange:hover,
  .qr-card--wave:hover,
  .temoignage-card:hover {
    transform: none;
    box-shadow: var(--shadow-card);
  }

  .crepe-card:hover .crepe-card-image {
    transform: none;
  }

  .valeur-card:hover .valeur-icon {
    transform: none;
  }
}

/* Tablette */
@media (max-width: 1024px) {
  .navbar-menu {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  /* Ordre mobile : titre(0) → carrousel(1) → boutons(2) */
  .hero-container {
    gap: 0.75rem;
  }

  .hero-text-block {
    order: 0;
    max-width: 100%;
    margin-bottom: 0;
  }

  .hero-description {
    margin-bottom: 0.5rem;
    font-size: 1.46rem;
  }

  .hero-title-main {
    font-size: 5.04rem;
  }

  .hero-title-animated {
    font-size: 3.58rem;
  }

  /* Logo dans le menu mobile — triplé sur tablette */
  .mobile-menu-header img {
    height: 150px;
  }

  .hero-carousel-wrapper {
    order: 1;
    min-height: 460px;
  }

  .hero-buttons-desktop {
    display: none;
  }

  .hero-buttons-mobile {
    display: flex;
    justify-content: center;
  }

  .hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .carousel-fan { height: 437px; }

  .carousel-fan-item {
    width: 276px;
    height: 276px;
  }

  .carousel-fan-item.center {
    width: 310px;
    height: 310px;
  }

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

  .gourmandise-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

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

  .fondatrice-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fondatrice-photo,
  .fondatrice-photo-placeholder,
  .fondatrice-photo-wrapper {
    margin: 0 auto;
  }

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

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

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

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

  .timeline::before {
    left: 0;
  }

  .timeline-item {
    width: 100%;
    padding-left: 2.5rem !important;
    padding-right: 0 !important;
    text-align: left !important;
  }

  .timeline-item:nth-child(even) {
    margin-left: 0;
  }

  .timeline-dot {
    left: -9px !important;
    right: auto !important;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .navbar-container {
    height: 70px;
    padding: 0.5rem 1rem;
  }

  .navbar-logo img {
    height: 76px;
  }

  .navbar-toggle {
    width: 40px;
    height: 40px;
  }

  .mobile-menu-header img {
    height: 75px;
  }

  .hero-carousel-wrapper {
    min-height: 360px;
  }

  .carousel-fan { height: 300px; }

  .carousel-fan-item {
    width: 180px;
    height: 180px;
    border-radius: 14px;
  }

  .carousel-fan-item img { border-radius: 12px; }

  .carousel-fan-item.center {
    width: 220px;
    height: 220px;
  }

  .carousel-nav {
    width: 34px;
    height: 34px;
  }

  .carousel-nav--prev { left: 0px; }
  .carousel-nav--next { right: 0px; }

  .carousel-crepe-name {
    font-size: 1rem;
  }

  html {
    scroll-padding-top: 80px;
  }

  .hero {
    padding-top: 70px;
    min-height: auto;
    padding-bottom: 2rem;
  }

  .hero-title-main {
    font-size: clamp(3.15rem, 12.9vw, 4.4rem);
  }

  .hero-title-animated {
    font-size: clamp(2.15rem, 10vw, 2.86rem);
  }

  .hero-description {
    font-size: 1.26rem;
    margin-bottom: 0.25rem;
  }

  /* Overflow mobile fix */
  .section-gourmandise,
  .section-valeurs,
  .section-crepes,
  .section-tarifs,
  .section-horaires,
  .section-temoignages,
  .section-qr,
  .section-cta {
    overflow-x: hidden;
  }

  .gourmandise-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    padding: 0;
    max-width: 100%;
  }

  .gourmandise-grid > div {
    max-width: 100%;
    overflow: hidden;
    padding: 0 0.5rem;
  }

  .gourmandise-grid p {
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    text-align: center;
    max-width: 100%;
  }

  .gourmandise-grid img {
    max-width: 220px !important;
    width: 220px !important;
    height: auto !important;
    margin: 0 auto;
    border-radius: var(--radius-lg);
  }

  .crepes-grid {
    grid-template-columns: 1fr;
    padding: 0;
    max-width: 100%;
  }

  .crepes-grid .crepe-card {
    width: 100%;
    max-width: 100%;
  }

  .section-crepes {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

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

  .valeurs-apropos-grid {
    grid-template-columns: 1fr;
  }

  /* QR codes masqués sur mobile */
  .section-qr {
    display: none;
  }

  .cta-collage {
    height: 300px;
    max-width: 340px;
    margin: 0 auto 2rem;
  }

  .cta-collage-item:nth-child(1) {
    width: 150px; height: 115px;
    top: 5px; left: 10px;
  }

  .cta-collage-item:nth-child(2) {
    width: 145px; height: 110px;
    bottom: 5px; left: 20px;
  }

  .cta-collage-item:nth-child(3) {
    width: 160px; height: 130px;
    top: calc(50% - 65px); left: calc(50% - 80px);
  }

  .cta-collage-item:nth-child(4) {
    width: 145px; height: 110px;
    top: 5px; right: 10px;
  }

  .cta-collage-item:nth-child(5) {
    width: 150px; height: 115px;
    bottom: 5px; right: 15px;
  }

  /* Horaires mobile : 2 colonnes, pas de carré */
  .horaires-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0 0.25rem;
  }

  .horaire-day-card {
    aspect-ratio: auto;
    padding: 1.25rem 1rem;
    width: 100%;
  }

  /* Centrer la dernière carte (Dimanche) seule sur sa ligne */
  .horaires-grid .horaire-day-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

  .horaire-day-name {
    font-size: 0.75rem;
  }

  .horaire-day-time {
    font-size: 0.75rem;
  }

  /* Témoignages mobile */
  .temoignage-card {
    width: 280px;
  }

  .temoignage-card-top {
    padding: 1.25rem;
  }

  .temoignage-text {
    font-size: 0.82rem;
  }

  /* Boutons mobile — empêcher overflow */
  .btn {
    white-space: normal;
    word-break: break-word;
  }

  .btn-lg {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }

  /* Form mobile */
  .order-form {
    padding: 0 0.5rem;
  }

  .order-form > div {
    grid-template-columns: 1fr !important;
  }

  .form-group input,
  .form-group select {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .form-group label {
    font-size: 0.85rem;
  }

  .cta-title {
    font-size: 2.25rem;
  }

  .section-cta .btn-lg {
    width: 100%;
    max-width: 100%;
    padding: 0.85rem 1.25rem;
  }

  /* Custom select mobile */

  .custom-select-trigger {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .whatsapp-float {
    padding: 0.85rem;
    border-radius: 50%;
    bottom: 20px;
    right: 16px;
  }

  .whatsapp-float-label {
    display: none;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .scroll-top {
    width: 42px;
    height: 42px;
    bottom: 16px;
    left: 16px;
  }

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

  .section-title {
    font-size: clamp(1.875rem, 7vw, 2.5rem);
  }

  .chocolate-drip {
    height: 50px;
  }

  /* Pages secondaires mobile */
  .section-apropos {
    padding-top: calc(80px + 2rem);
  }

  .blog-hero {
    padding-top: calc(80px + 2rem);
  }

  .legal-page {
    padding-top: calc(80px + 2rem);
  }

  .fondatrice-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fondatrice-photo-placeholder,
  .fondatrice-photo-wrapper {
    max-width: 280px;
    margin: 0 auto;
  }

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

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

  .footer-tagline {
    font-size: 1.28em !important;
  }

  /* Footer mobile fix */
  .footer-logo img {
    height: 120px;
  }

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

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* Petits mobiles (5.4 pouces - iPhone SE) */
@media (max-width: 375px) {
  .hero-title-main {
    font-size: 2.08rem;
  }

  .hero-title-animated {
    font-size: 1.69rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
    justify-content: center;
  }

  .temoignage-card {
    min-width: 260px;
  }
}

/* Grands mobiles (6.7-6.9 pouces - Pro Max) */
@media (min-width: 414px) and (max-width: 640px) {
  .hero-title-main {
    font-size: 2.86rem;
  }

  .hero-title-animated {
    font-size: 2.275rem;
  }
}

/* ============================================================
   25. UTILITAIRES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-chocolat { color: var(--chocolat); }
.text-white { color: var(--blanc); }
.bg-blanc-rose { background-color: var(--blanc-rose); }
.bg-orange-light { background-color: var(--orange-light); }

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

/* Print */
@media print {
  .navbar, .whatsapp-float, .scroll-top, .mobile-menu, .mobile-overlay {
    display: none !important;
  }

  body {
    color: #000;
  }

  .hero {
    min-height: auto;
    padding-top: 0;
  }
}
