/* =====================================================
   LA NIR - La Nouvelle Imprimerie Reprographie
   Feuille de styles principale — Version corrigée
   ===================================================== */

/* --- Variables CSS --- */
:root {
  --orange: #E8750A;
  --orange-light: #FFF3E6;
  --orange-dark: #C46008;
  --green: #1B6332;
  --green-emerald: #27AE60;
  --green-dark: #145226;
  --white: #FFFFFF;
  --off-white: #F9F5F0;
  --gray: #3D3D3D;
  --gray-light: #E0E0E0;
  --gray-medium: #888;
  --shadow: 0 4px 15px rgba(0,0,0,0.1);
  --shadow-hover: 0 8px 25px rgba(0,0,0,0.18);
  --transition: all 0.3s ease;
  --radius: 8px;
  --radius-lg: 16px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Source Sans Pro', 'Work Sans', Arial, sans-serif;
  color: var(--gray);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul, ol {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* --- Typographie --- */
h1 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  line-height: 1.1;
}

h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

h3, h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  line-height: 1.3;
}

.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--green);
}

.section-subtitle {
  text-align: center;
  color: var(--gray-medium);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
}

/* --- Utilitaires --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

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

/* --- Boutons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.8rem;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,117,10,.35);
}

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

.btn-green:hover {
  background: var(--green-emerald);
  border-color: var(--green-emerald);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,99,50,.35);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}

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

.btn-sm {
  padding: .6rem 1.2rem;
  font-size: .85rem;
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.15rem;
}

/* =====================================================
   NAVIGATION — CORRIGÉE POUR MOBILE
   ===================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 0;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--orange);
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  gap: .5rem;
  z-index: 1002;
  position: relative;
}

.nav-logo span {
  color: var(--green);
  font-size: .7rem;
  font-family: 'Source Sans Pro', sans-serif;
  letter-spacing: 0;
  display: block;
  line-height: 1.2;
}

/* Liens navigation desktop */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--gray);
  position: relative;
  padding: .3rem 0;
}

.nav-links a:not(.btn-commander)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: var(--transition);
}

.nav-links a:not(.btn-commander):hover::after,
.nav-links a:not(.btn-commander).active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--orange);
}

/* Bouton Commander dans la nav */
.nav-links .btn-commander {
  background: var(--orange);
  color: var(--white) !important;
  padding: .6rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  animation: pulse-btn 2s infinite;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.nav-links .btn-commander::after {
  display: none !important;
}

.nav-links .btn-commander:hover {
  background: var(--orange-dark);
  transform: scale(1.05);
  color: var(--white) !important;
}

@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,117,10,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(232,117,10,0); }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
  position: relative;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--gray);
  border-radius: 3px;
  transition: var(--transition);
  transform-origin: center;
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* Overlay mobile */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 60px;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--orange-light) 50%, #e8f5e9 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(232,117,10,0.06);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: rgba(27,99,50,0.05);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  background: linear-gradient(135deg, var(--orange), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 8px;
  margin-bottom: .5rem;
}

.hero-fullname {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: var(--green);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-slogan {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

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

/* Formes décoratives hero */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shapes .shape {
  position: absolute;
  border: 2px solid rgba(232,117,10,0.1);
  border-radius: 4px;
  transform: rotate(15deg);
}

.hero-shapes .shape:nth-child(1) {
  width: 80px;
  height: 110px;
  top: 15%;
  left: 8%;
  animation: float 7s ease-in-out infinite;
}

.hero-shapes .shape:nth-child(2) {
  width: 60px;
  height: 85px;
  bottom: 20%;
  right: 10%;
  border-color: rgba(27,99,50,0.1);
  animation: float 9s ease-in-out infinite reverse;
}

.hero-shapes .shape:nth-child(3) {
  width: 40px;
  height: 55px;
  top: 30%;
  right: 20%;
  animation: float 6s ease-in-out infinite;
}

/* =====================================================
   SLIDER / DIAPORAMA TEXTUEL
   ===================================================== */
.slider-section {
  background: var(--green-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  min-height: 250px;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.slide-text {
  color: var(--white);
  padding: 1rem;
}

/* Styles variés pour chaque slide */
.slide-style-1 .slide-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  letter-spacing: 6px;
  text-shadow: 2px 2px 30px rgba(232,117,10,0.3);
}

.slide-style-2 .slide-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2.5rem;
  color: var(--orange-light);
}

.slide-style-3 .slide-text {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.slide-style-3 .slide-text span {
  color: var(--orange);
}

.slide-style-4 .slide-text {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-style: italic;
  background: linear-gradient(90deg, var(--orange), #FFD700, var(--green-emerald));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slide-style-5 .slide-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 4px;
}

.slide-style-5 .slide-text em {
  font-family: 'Playfair Display', serif;
  color: var(--orange);
  font-style: italic;
}

.slide-style-6 .slide-text {
  font-family: 'Oswald', sans-serif;
  font-size: 2.6rem;
  text-transform: uppercase;
  letter-spacing: 10px;
}

.slide-style-7 .slide-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  text-shadow: 3px 3px 0 var(--orange), 6px 6px 0 rgba(232,117,10,0.2);
}

.slide-style-8 .slide-text {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-style: italic;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 2rem 3rem;
  border-radius: var(--radius);
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1.5rem;
  position: relative;
  z-index: 5;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 5;
}

.slider-arrow:hover {
  background: var(--orange);
}

.slider-arrow.prev {
  left: 0;
}

.slider-arrow.next {
  right: 0;
}

/* =====================================================
   AVIS CLIENTS
   ===================================================== */
.reviews-section {
  padding: 80px 0;
  background: var(--off-white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transition: var(--transition);
}

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

.review-card:nth-child(1)::before { background: var(--orange); }
.review-card:nth-child(2)::before { background: var(--green); }
.review-card:nth-child(3)::before { background: #E91E63; }
.review-card:nth-child(4)::before { background: #00BCD4; }
.review-card:nth-child(5)::before { background: #FF9800; }
.review-card:nth-child(6)::before { background: #9C27B0; }

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
}

.review-card:nth-child(1) .review-avatar { background: var(--orange); }
.review-card:nth-child(2) .review-avatar { background: var(--green); }
.review-card:nth-child(3) .review-avatar { background: #E91E63; }
.review-card:nth-child(4) .review-avatar { background: #00BCD4; }
.review-card:nth-child(5) .review-avatar { background: #FF9800; }
.review-card:nth-child(6) .review-avatar { background: #9C27B0; }

.review-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--gray);
}

.review-stars {
  color: #FFB300;
  font-size: .95rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: .95rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1rem;
}

.review-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  padding: .3rem .8rem;
  border-radius: 50px;
  font-size: .8rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .5px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--white);
  letter-spacing: 5px;
  margin-bottom: .5rem;
}

.footer-logo-sub {
  font-size: .85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.footer h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer ul li {
  margin-bottom: .6rem;
}

.footer ul li a:hover {
  color: var(--orange);
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: .8rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: .85rem;
  color: rgba(255,255,255,0.5);
}

/* =====================================================
   PAGE COMMANDER
   ===================================================== */
.page-banner {
  padding: 120px 0 50px;
  text-align: center;
  background: linear-gradient(135deg, var(--orange-light), #e8f5e9);
}

.page-banner h1 {
  font-size: 3rem;
  color: var(--green-dark);
  margin-bottom: .5rem;
}

.page-banner p {
  font-size: 1.15rem;
  color: var(--gray);
}

/* Barre de progression */
.progress-bar-container {
  padding: 2rem 0;
  background: var(--white);
  position: sticky;
  top: 65px;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.progress-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
  z-index: 1;
}

.progress-step .step-number {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--gray-light);
  color: var(--gray-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.progress-step .step-label {
  font-size: .75rem;
  margin-top: .4rem;
  color: var(--gray-medium);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: var(--transition);
}

.progress-step.active .step-number {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 0 0 5px rgba(232,117,10,0.2);
}

.progress-step.active .step-label {
  color: var(--orange);
  font-weight: 600;
}

.progress-step.completed .step-number {
  background: var(--green);
  color: var(--white);
}

.progress-step.completed .step-label {
  color: var(--green);
}

.progress-line {
  flex: 1;
  height: 3px;
  background: var(--gray-light);
  position: relative;
  top: -12px;
  z-index: 0;
  margin: 0 -10px;
}

.progress-line.active {
  background: var(--green);
}

/* Formulaire */
.form-section {
  padding: 3rem 0 5rem;
  background: var(--off-white);
}

.form-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.form-step {
  display: none;
  padding: 2.5rem;
  animation: fadeInUp 0.4s ease;
}

.form-step.active {
  display: block;
}

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

.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.step-desc {
  color: var(--gray-medium);
  margin-bottom: 2rem;
  font-size: .95rem;
}

/* Produits / Services */
.product-item {
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.product-item.selected {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,117,10,0.1);
}

.product-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}

.product-header:hover {
  background: var(--orange-light);
}

.product-check {
  width: 22px;
  height: 22px;
  border: 2px solid var(--gray-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  font-size: .8rem;
  color: transparent;
}

.product-item.selected .product-check {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.product-emoji {
  font-size: 1.5rem;
}

.product-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
}

.product-options {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  background: var(--off-white);
}

.product-item.selected .product-options {
  max-height: 2000px;
  padding: 1.5rem;
}

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

.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: .4rem;
  color: var(--gray);
}

.form-group label .required {
  color: red;
  margin-left: 2px;
}

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

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="url"],
select,
textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: .95rem;
  transition: var(--transition);
  background: var(--white);
}

input:focus, select:focus, textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,117,10,0.1);
}

textarea {
  resize: vertical;
  min-height: 80px;
}

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233D3D3D' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2.5rem;
}

.file-note {
  background: var(--orange-light);
  padding: .8rem 1rem;
  border-radius: var(--radius);
  font-size: .85rem;
  color: var(--orange-dark);
  margin-top: .5rem;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  line-height: 1.5;
}

/* Étape 2 - Infos personnelles */
.personal-form {
  max-width: 600px;
}

/* Étape 3 - Mode de récupération */
.delivery-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.delivery-card {
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.delivery-card:hover {
  border-color: var(--orange);
  background: var(--orange-light);
}

.delivery-card.selected {
  border-color: var(--orange);
  background: var(--orange-light);
  box-shadow: 0 0 0 3px rgba(232,117,10,0.15);
}

.delivery-card .delivery-icon {
  font-size: 3rem;
  margin-bottom: .5rem;
}

.delivery-card h3 {
  font-size: 1.1rem;
  margin-bottom: .3rem;
}

.delivery-card p {
  font-size: .85rem;
  color: var(--gray-medium);
}

.delivery-details {
  display: none;
  animation: fadeInUp 0.3s ease;
}

.delivery-details.active {
  display: block;
}

.delivery-info-box {
  background: var(--off-white);
  padding: 1.2rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-size: .9rem;
  line-height: 1.7;
}

/* Étape 4 - Récapitulatif */
.recap-section {
  margin-bottom: 2rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.recap-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: var(--off-white);
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-dark);
}

.recap-header .btn-edit {
  font-size: .8rem;
  color: var(--orange);
  cursor: pointer;
  font-family: 'Source Sans Pro', sans-serif;
  background: none;
  border: none;
  text-decoration: underline;
}

.recap-header .btn-edit:hover {
  color: var(--orange-dark);
}

.recap-body {
  padding: 1.5rem;
}

.recap-item {
  display: flex;
  gap: .5rem;
  margin-bottom: .5rem;
  font-size: .93rem;
}

.recap-item strong {
  min-width: 140px;
  color: var(--gray);
  flex-shrink: 0;
}

.recap-product {
  background: var(--orange-light);
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: .8rem;
}

.recap-product h4 {
  font-family: 'Oswald', sans-serif;
  color: var(--orange-dark);
  margin-bottom: .5rem;
}

.recap-product ul {
  padding-left: 1rem;
}

.recap-product ul li {
  font-size: .9rem;
  margin-bottom: .2rem;
  list-style: disc;
}

.order-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 1rem 1.5rem;
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
}

.order-meta span {
  font-size: .9rem;
}

.order-meta strong {
  color: var(--orange-light);
}

.form-buttons {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-light);
  flex-wrap: wrap;
}

.final-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 1.5rem;
}

/* Section Suivi */
.tracking-section {
  padding: 60px 0;
  background: var(--white);
  text-align: center;
}

.tracking-box {
  max-width: 600px;
  margin: 0 auto;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.tracking-box h2 {
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: .5rem;
}

.tracking-box p {
  margin-bottom: 1.5rem;
  color: var(--gray);
  font-size: .95rem;
}

.tracking-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.tracking-note {
  font-size: .85rem;
  color: var(--gray-medium);
  font-style: italic;
}

/* =====================================================
   PAGE CONTACT
   ===================================================== */
.about-section {
  padding: 80px 0;
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text h2 {
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.value-card {
  background: var(--off-white);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}

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

.value-icon {
  font-size: 2rem;
  margin-bottom: .5rem;
}

.value-card h4 {
  font-family: 'Oswald', sans-serif;
  color: var(--green);
  margin-bottom: .3rem;
}

.value-card p {
  font-size: .85rem;
  color: var(--gray-medium);
}

.location-section {
  padding: 80px 0;
  background: var(--off-white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.location-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.location-info p {
  margin-bottom: .8rem;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  line-height: 1.6;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.hours-table td {
  padding: .6rem .8rem;
  border-bottom: 1px solid var(--gray-light);
  font-size: .95rem;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--gray);
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table .closed {
  color: #e53935;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form-section {
  padding: 80px 0;
  background: var(--white);
}

.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--off-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: .5rem;
}

.contact-form-wrapper .section-subtitle {
  margin-bottom: 2rem;
}

.social-section {
  padding: 60px 0;
  background: var(--off-white);
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: 1rem 2rem;
  background: var(--white);
  border-radius: 50px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--gray);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.social-link i {
  font-size: 1.4rem;
}

.social-link.facebook:hover { background: #1877F2; color: #fff; }
.social-link.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.social-link.tiktok:hover { background: #000; color: #fff; }
.social-link.whatsapp:hover { background: #25D366; color: #fff; }
.social-link.linkedin:hover { background: #0A66C2; color: #fff; }

/* =====================================================
   MODAL / REÇU
   ===================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: fadeInUp 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
  border: none;
  z-index: 1;
}

.modal-close:hover {
  background: var(--orange);
  color: var(--white);
}

.receipt {
  padding: 2.5rem;
}

.receipt-header {
  text-align: center;
  border-bottom: 2px dashed var(--gray-light);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.receipt-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--orange);
  letter-spacing: 4px;
}

.receipt-header h3 {
  font-family: 'Oswald', sans-serif;
  color: var(--green);
  font-size: 1.2rem;
  margin-top: .3rem;
}

.receipt-header .receipt-type {
  font-family: 'Oswald', sans-serif;
  background: var(--green);
  color: #fff;
  display: inline-block;
  padding: .3rem 1rem;
  border-radius: 50px;
  margin-top: .5rem;
  font-size: .9rem;
}

.receipt-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--off-white);
  border-radius: var(--radius);
}

.receipt-meta p {
  font-size: .9rem;
}

.receipt-meta strong {
  color: var(--gray);
}

.receipt-section {
  margin-bottom: 1.5rem;
}

.receipt-section h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: .8rem;
  padding-bottom: .3rem;
  border-bottom: 1px solid var(--gray-light);
}

.receipt-note {
  background: var(--orange-light);
  padding: 1rem;
  border-radius: var(--radius);
  font-size: .9rem;
  text-align: center;
  margin-top: 1.5rem;
  line-height: 1.6;
  color: var(--orange-dark);
}

.receipt-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px dashed var(--gray-light);
}

/* =====================================================
   ERREURS FORMULAIRE
   ===================================================== */
.error-msg {
  color: #e53935;
  font-size: .8rem;
  margin-top: .3rem;
  display: none;
}

.error-msg.visible {
  display: block;
}

input.error, select.error, textarea.error {
  border-color: #e53935;
}

.toast {
  position: fixed;
  top: 90px;
  right: 20px;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  z-index: 3000;
  transform: translateX(120%);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-hover);
  max-width: 350px;
}

.toast.show {
  transform: translateX(0);
}

.toast.error {
  background: #e53935;
}

.toast.success {
  background: var(--green);
}

/* =====================================================
   ANIMATIONS AU SCROLL
   ===================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* =====================================================
   RESPONSIVE — CORRIGÉ POUR MOBILE
   ===================================================== */
@media (max-width: 992px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-content {
    grid-template-columns: 1fr;
  }

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

  .map-container {
    height: 300px;
  }
}

@media (max-width: 768px) {
  /* ===== MENU MOBILE CORRIGÉ ===== */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 100px;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
    gap: 0;
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.15rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-light);
    display: block;
    width: 100%;
    color: var(--gray);
  }

  .nav-links a:not(.btn-commander)::after {
    display: none;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links .btn-commander {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 1rem;
    border-radius: var(--radius);
    font-size: 1.1rem;
    display: flex;
  }

  /* Hero responsive */
  .hero-logo {
    font-size: 3.5rem;
  }

  .hero-slogan {
    font-size: 1.3rem;
  }

  .hero-fullname {
    font-size: 1rem;
    letter-spacing: 2px;
  }

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

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* Slider responsive */
  .slide-style-1 .slide-text { font-size: 2rem; }
  .slide-style-2 .slide-text { font-size: 1.6rem; }
  .slide-style-3 .slide-text { font-size: 1.8rem; letter-spacing: 4px; }
  .slide-style-4 .slide-text { font-size: 1.5rem; }
  .slide-style-5 .slide-text { font-size: 2rem; }
  .slide-style-6 .slide-text { font-size: 1.6rem; letter-spacing: 5px; }
  .slide-style-7 .slide-text { font-size: 2rem; }
  .slide-style-8 .slide-text { font-size: 1.3rem; padding: 1rem 1.5rem; }

  /* Reviews responsive */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* Page banner responsive */
  .page-banner h1 {
    font-size: 2.2rem;
  }

  /* Formulaire responsive */
  .delivery-options {
    grid-template-columns: 1fr;
  }

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

  .form-row-3 {
    grid-template-columns: 1fr;
  }

  .progress-step .step-label {
    font-size: .6rem;
  }

  .progress-step .step-number {
    width: 36px;
    height: 36px;
    font-size: .9rem;
  }

  .form-step {
    padding: 1.5rem;
  }

  .order-meta {
    flex-direction: column;
    gap: .5rem;
  }

  .final-buttons {
    flex-direction: column;
  }

  .final-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .form-buttons {
    flex-direction: column-reverse;
    gap: .8rem;
  }

  .form-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Receipt responsive */
  .receipt-meta {
    grid-template-columns: 1fr;
  }

  .receipt {
    padding: 1.5rem;
  }

  .receipt-actions {
    flex-direction: column;
  }

  .receipt-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer responsive */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  /* Contact page responsive */
  .values-grid {
    grid-template-columns: 1fr;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
  }

  .social-link {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* Tracking responsive */
  .tracking-buttons {
    flex-direction: column;
    align-items: center;
  }

  .tracking-buttons .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .recap-item {
    flex-direction: column;
    gap: .2rem;
  }

  .recap-item strong {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    font-size: 2.8rem;
    letter-spacing: 5px;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .slider-section {
    padding: 50px 0;
  }

  .slider-wrapper {
    min-height: 200px;
  }

  .container {
    width: 92%;
  }

  .page-banner {
    padding: 100px 0 40px;
  }

  .page-banner h1 {
    font-size: 1.8rem;
  }

  .step-title {
    font-size: 1.5rem;
    flex-wrap: wrap;
  }

  .product-header {
    padding: .8rem 1rem;
  }

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

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .nav-logo {
    font-size: 1.6rem;
    letter-spacing: 2px;
  }

  .nav-logo span {
    font-size: .6rem;
  }
}

/* --- Print Styles --- */
@media print {
  .navbar, .footer, .modal-close, .receipt-actions, .no-print {
    display: none !important;
  }

  .modal-overlay {
    position: static;
    background: none;
  }

  .modal {
    max-width: 100%;
    box-shadow: none;
    max-height: none;
  }

  .receipt {
    padding: 1rem;
  }
}