/* === CSS BASE (commun à toutes les pages) === */


/* ============ RESET & VARIABLES ============ */
:root {
  --white: #FFFFFF;
  --cream: #FFF7E8;
  --cream-deep: #FBEED2;
  --ink: #14110F;
  --ink-soft: #6E6862;
  --line: #ECE4D2;
  --red: #D93820;
  --red-deep: #A6271A;
  --red-soft: #FCEEEA;
  --jade: #5D9F31;
  --jade-soft: #EAF4DD;
  --orange: #FF6B35;
  --yellow: #FFD93D;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; }
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
}

/* ============ HEADER ============ */
header {
  position: sticky;
  top: 0;
  background: rgba(255, 247, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 50;
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 56px; width: auto; display: block; }
nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  font-size: 0.92rem;
  font-weight: 600;
}
nav a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
nav a:hover, nav a[aria-current="page"] { color: var(--red); }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.phone-btn {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.phone-btn svg { color: var(--red); }
.cart-btn {
  background: var(--ink);
  color: var(--white);
  border: none;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  transition: background 0.2s;
  text-decoration: none;
}
.cart-btn:hover { background: var(--red); }
.cart-count {
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--ink);
  color: var(--white);
  padding: 1.1rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(20,17,15,0.2); }
.btn-red { background: var(--red); }
.btn-red:hover { background: var(--red-deep); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--white); }

/* ============ PAGE HERO (sub-pages) ============ */
.page-hero {
  position: relative;
  padding: 5rem 2rem 5rem;
  text-align: center;
  overflow: hidden;
}
.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.page-hero .breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.page-hero .breadcrumb a:hover { color: var(--red); border-color: var(--red); }
.page-hero .breadcrumb span { color: var(--ink); }
.page-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
}
.page-hero h1 em { font-style: normal; color: var(--red); }
.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--ink-soft);
}

/* ============ HOME HERO ============ */
.hero {
  position: relative;
  padding: 4rem 2rem 8rem;
  text-align: center;
  overflow: hidden;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.15rem;
  background: var(--white);
  color: var(--red);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px rgba(217, 56, 32, 0.1);
}
/* Quand .hero-eyebrow est utilisé sur un H1 (home), on neutralise les règles
   .hero h1 (qui sont prévues pour un gros titre) afin de préserver le look pill. */
.hero h1.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.06em;
  margin: 0 0 2rem;
  max-width: none;
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero h1 {
  font-size: clamp(4rem, 13vw, 11rem);
  font-weight: 900;
  line-height: 0.9;
  margin: 0 auto 2rem;
  max-width: 1100px;
  letter-spacing: -0.04em;
  position: relative;
}
.hero h1 .red { color: var(--red); display: inline-block; }
.hero h1 .underline { position: relative; display: inline-block; }
.hero h1 .underline svg {
  position: absolute;
  left: 0; bottom: -0.15em;
  width: 100%; height: auto;
}
.hero p {
  max-width: 540px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  color: var(--ink-soft);
}
.hero-actions {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============ FLOATING PEPPERS (utility) ============ */
.floating {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.floating img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(168, 30, 18, 0.25));
}

.float-1 { top: 14%; left: 2%; width: 220px; animation: floatA 7s ease-in-out infinite; }
.float-2 { top: 8%; right: 3%; width: 200px; animation: floatB 8s ease-in-out infinite; }
.float-3 { bottom: 14%; left: 4%; width: 170px; animation: floatC 6s ease-in-out infinite; }
.float-4 { bottom: 10%; right: 3%; width: 220px; animation: floatD 9s ease-in-out infinite; }
.float-5 { top: 50%; left: 10%; width: 110px; animation: floatE 5s ease-in-out infinite; }
.float-6 { top: 45%; right: 10%; width: 140px; animation: floatF 7s ease-in-out infinite; }

@keyframes floatA { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(15px, -25px) rotate(6deg); } }
@keyframes floatB { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(-20px, -18px) rotate(-5deg); } }
@keyframes floatC { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(10px, 15px) rotate(8deg); } }
@keyframes floatD { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(-15px, 20px) rotate(-7deg); } }
@keyframes floatE { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(20px, -30px) rotate(10deg); } }
@keyframes floatF { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(-25px, -20px) rotate(-8deg); } }

/* Decorative section floats (smaller, more transparent) */
.b-float {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
}
.b-float img { width: 100%; height: auto; display: block; filter: drop-shadow(0 6px 18px rgba(168, 30, 18, 0.15)); }
.b-float-1 { top: 4%; left: -3%; width: 160px; animation: floatA 9s ease-in-out infinite; }
.b-float-2 { top: 22%; right: -2%; width: 140px; animation: floatB 11s ease-in-out infinite; }
.b-float-3 { bottom: 18%; left: 1%; width: 130px; animation: floatC 8s ease-in-out infinite; }
.b-float-4 { bottom: 4%; right: 0%; width: 150px; animation: floatD 10s ease-in-out infinite; }

.a-float {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
}
.a-float img { width: 100%; height: auto; display: block; filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.25)); }
.a-float-1 { top: 8%; left: 3%; width: 140px; animation: floatA 10s ease-in-out infinite; }
.a-float-2 { top: 60%; right: 2%; width: 120px; animation: floatB 9s ease-in-out infinite; }
.a-float-3 { bottom: 10%; left: 8%; width: 100px; animation: floatC 8s ease-in-out infinite; }

/* ============ MARQUEE / ETAPES (used on home only) ============ */
.wave-divider {
  position: relative;
  height: 80px;
  line-height: 0;
  overflow: hidden;
}
.wave-divider svg {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
}
.wave-cream-to-white svg { fill: var(--white); }
.wave-white-to-red svg { fill: var(--red); }
.wave-red-to-cream svg { fill: var(--cream); }
.wave-cream-to-ink svg { fill: var(--ink); }

/* ============ SECTIONS ============ */
section { padding: 6rem 3rem; position: relative; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.section-eyebrow {
  color: var(--red);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
  display: inline-block;
}
.section-head h2 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 1rem;
  font-weight: 900;
}
.section-head h2 em { color: var(--red); font-style: normal; }
.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

/* ============ BOUTIQUE / PRODUCTS ============ */
.bestsellers {
  background: var(--white);
  padding: 5rem 3rem;
  position: relative;
  overflow: hidden;
}
.bestsellers .section-head, .bestsellers .filter-row, .bestsellers .product-grid {
  position: relative; z-index: 2;
}

.filter-row {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}
.filter {
  background: transparent;
  border: 2px solid var(--line);
  color: var(--ink);
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 600;
}
.filter:hover { border-color: var(--ink); }
.filter.active { background: var(--red); color: var(--white); border-color: var(--red); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  max-width: 1300px;
  margin: 0 auto;
}
.product {
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: transform 0.4s ease;
}
.product:hover { transform: translateY(-12px); }
.product-img {
  width: 240px;
  height: 240px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
}
.pi-1 { background: radial-gradient(circle at 30% 30%, #FCEEEA, #F0D2C7); }
.pi-2 { background: radial-gradient(circle at 30% 30%, #FDF5E6, #F5E5C4); }
.pi-3 { background: radial-gradient(circle at 30% 30%, #E5F0E9, #CADFD0); }
.pi-4 { background: radial-gradient(circle at 30% 30%, #FCEEEA, #E8B5A8); }
.pi-5 { background: radial-gradient(circle at 30% 30%, #FBEED2, #E8C97A); }
.pi-6 { background: radial-gradient(circle at 30% 30%, #E5F0E9, #B8D6C0); }

.product:hover .product-img { transform: scale(1.05); }
.product-img > svg { width: 70%; height: 70%; transition: transform 0.5s ease; }
.product:hover .product-img > svg { transform: rotate(-8deg) scale(1.05); }

.product-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--red);
  color: var(--white);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 2;
}
.product-tag.new { background: var(--jade); }

.heat-badge {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red);
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.product-origin {
  font-size: 0.78rem;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.product-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.product-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.product-meta .sep { width: 4px; height: 4px; background: var(--ink-soft); border-radius: 50%; opacity: 0.4; }
.product-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--red);
  margin-bottom: 1.25rem;
}
.add-cart-btn {
  background: var(--ink);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.add-cart-btn:hover { background: var(--red); }

/* ============ ABOUT TEASER (home) & FULL ABOUT ============ */
.about-section {
  background: var(--red);
  color: var(--white);
  padding: 6rem 3rem;
  position: relative;
  overflow: hidden;
}
.about-section::before, .about-section::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.about-section::before { top: -60px; left: -60px; }
.about-section::after { bottom: -60px; right: -60px; }

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.about-photo {
  aspect-ratio: 1/1;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-photo svg { width: 78%; height: 78%; }
.about-photo .ring {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  animation: rotate 40s linear infinite;
}
@keyframes rotate { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.about-badge {
  position: absolute;
  top: 8%; right: -8%;
  background: var(--white);
  color: var(--red);
  padding: 1.1rem 1.4rem;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  transform: rotate(8deg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-text h2 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 1.5rem;
  font-weight: 900;
}
.about-text h2 em { font-style: normal; color: var(--cream); }
.about-text .section-eyebrow { color: var(--cream); }
.about-text .lead {
  font-size: 1.3rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.about-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  max-width: 36rem;
}
.about-list { list-style: none; margin: 2rem 0; }
.about-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.98rem;
}
.about-list li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
.about-list-check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--white);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}
.signature {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--cream);
  margin-top: 1.5rem;
  letter-spacing: -0.01em;
}

/* ============ STEPS ============ */
.steps-section {
  background: var(--cream);
  padding: 6rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 4rem auto 0;
}
.step { position: relative; }
.step-icon {
  width: 100px; height: 100px;
  margin: 0 auto 1.5rem;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  color: var(--red);
  position: relative;
}
.step-num {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--red);
  color: var(--white);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
}
.step h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  font-weight: 800;
}
.step p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 280px;
  margin: 0 auto;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: var(--white);
  padding: 6rem 3rem;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial {
  background: var(--cream);
  padding: 2rem;
  border-radius: 24px;
  position: relative;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--red);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
}
.testimonial-meta {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* ============ FAQ ============ */
.faq-section {
  background: var(--cream);
  padding: 6rem 3rem;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer;
  padding: 1.4rem 1.6rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--red);
  font-weight: 600;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--red); }
.faq-item .faq-answer {
  padding: 0 1.6rem 1.4rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============ USAGE CONTENT (SEO) ============ */
.usage-section {
  background: var(--white);
  padding: 6rem 3rem;
}
.usage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.usage-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 2.5rem;
  transition: transform 0.3s ease;
}
.usage-card:hover { transform: translateY(-6px); }
.usage-card-icon {
  width: 60px; height: 60px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
}
.usage-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 800;
}
.usage-card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin-bottom: 0.75rem;
}
.usage-card p:last-child { margin-bottom: 0; }
.usage-card strong { color: var(--ink); }

/* ============ CONTACT ============ */
#contact {
  background: var(--ink);
  color: var(--white);
  padding: 6rem 3rem;
  position: relative;
  overflow: hidden;
}
#contact .section-eyebrow { color: var(--red); }
#contact .section-head h2 { color: var(--white); }
#contact .section-head h2 em { color: var(--red); }
#contact .section-head p { color: rgba(255,255,255,0.7); }

.contact-grid {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.contact-form {
  background: rgba(255,255,255,0.04);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
}
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.55rem;
  font-weight: 700;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 0.95rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--white);
  outline: none;
  transition: all 0.2s;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--red);
  background: rgba(255,255,255,0.06);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.contact-form .btn {
  background: var(--red);
  color: var(--white);
  width: 100%;
  justify-content: center;
}
.contact-form .btn:hover { background: var(--white); color: var(--ink); }

/* ============ EMPTY CART (panier) ============ */
.cart-page {
  background: var(--cream);
  min-height: 75vh;
  position: relative;
  padding: 4rem 2rem 6rem;
  text-align: center;
  overflow: hidden;
}
.fire-stage {
  position: relative;
  width: 320px;
  height: 380px;
  margin: 1rem auto 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.fire-pepper {
  position: relative;
  z-index: 3;
  width: 200px;
  filter: drop-shadow(0 12px 30px rgba(168, 30, 18, 0.5));
  animation: pepperBob 3s ease-in-out infinite;
}
@keyframes pepperBob {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-8px) rotate(3deg); }
}
/* Flames behind the pepper */
.flames {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
}
.flame {
  position: absolute;
  bottom: 30px;
  width: 70px;
  height: 130px;
  background: radial-gradient(ellipse at 50% 100%,
    var(--yellow) 0%,
    var(--orange) 40%,
    var(--red) 75%,
    var(--red-deep) 100%);
  border-radius: 50% 50% 30% 30% / 60% 60% 40% 40%;
  filter: blur(4px);
  opacity: 0.85;
  mix-blend-mode: multiply;
  transform-origin: 50% 100%;
}
.flame-1 { left: calc(50% - 70px); animation: flicker1 1.2s ease-in-out infinite; }
.flame-2 { left: calc(50% - 35px); width: 90px; height: 170px; animation: flicker2 0.9s ease-in-out infinite; }
.flame-3 { left: calc(50% + 0px); width: 80px; height: 150px; animation: flicker3 1.1s ease-in-out infinite; }
.flame-4 { left: calc(50% + 30px); width: 60px; height: 120px; animation: flicker4 1s ease-in-out infinite; }
@keyframes flicker1 {
  0%, 100% { transform: scale(1, 1) translateY(0); opacity: 0.85; }
  25% { transform: scale(0.9, 1.15) translateY(-5px); opacity: 0.95; }
  50% { transform: scale(1.05, 0.95) translateY(0); opacity: 0.75; }
  75% { transform: scale(0.95, 1.1) translateY(-3px); opacity: 0.9; }
}
@keyframes flicker2 {
  0%, 100% { transform: scale(1, 1) translateY(0) translateX(0); opacity: 0.9; }
  33% { transform: scale(0.92, 1.18) translateY(-8px) translateX(-2px); opacity: 1; }
  66% { transform: scale(1.08, 0.92) translateY(-2px) translateX(3px); opacity: 0.8; }
}
@keyframes flicker3 {
  0%, 100% { transform: scale(1, 1) translateY(0); opacity: 0.85; }
  50% { transform: scale(0.88, 1.2) translateY(-10px); opacity: 0.95; }
}
@keyframes flicker4 {
  0%, 100% { transform: scale(1, 1) translateY(0) rotate(2deg); opacity: 0.8; }
  50% { transform: scale(0.95, 1.12) translateY(-6px) rotate(-3deg); opacity: 0.95; }
}
/* Sparks rising up */
.spark {
  position: absolute;
  width: 6px; height: 6px;
  background: radial-gradient(circle, var(--yellow), var(--orange));
  border-radius: 50%;
  filter: blur(0.8px);
  opacity: 0;
}
.spark-1 { left: 35%; bottom: 100px; animation: rise 2.5s ease-in 0s infinite; }
.spark-2 { left: 50%; bottom: 100px; animation: rise 3s ease-in 0.4s infinite; }
.spark-3 { left: 60%; bottom: 100px; animation: rise 2.2s ease-in 1s infinite; }
.spark-4 { left: 45%; bottom: 100px; animation: rise 2.8s ease-in 1.6s infinite; }
.spark-5 { left: 55%; bottom: 100px; animation: rise 2.6s ease-in 2.1s infinite; }
@keyframes rise {
  0% { transform: translateY(0) translateX(0); opacity: 1; }
  50% { transform: translateY(-150px) translateX(15px); opacity: 1; }
  100% { transform: translateY(-280px) translateX(-10px); opacity: 0; }
}
/* Orange glow background under flames */
.glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 350px;
  height: 80px;
  background: radial-gradient(ellipse at center top,
    rgba(255, 107, 53, 0.4) 0%,
    rgba(255, 107, 53, 0) 70%);
  transform: translateX(-50%);
  z-index: 1;
  filter: blur(8px);
}

.cart-page h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
  font-weight: 900;
}
.cart-page h1 em { color: var(--red); font-style: normal; }
.cart-page > p {
  max-width: 480px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: var(--ink-soft);
}

/* ============ FOOTER ============ */
footer {
  background: var(--ink);
  color: var(--white);
  padding: 4rem 3rem 2rem;
  position: relative;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand img {
  height: 80px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--red);
  color: var(--white);
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.25s;
}
.footer-instagram:hover { background: var(--white); color: var(--ink); transform: translateY(-2px); }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
  opacity: 0.5;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.93rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============ ANIMATIONS COMMON ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero > .hero-eyebrow,
.hero > h1,
.hero > p,
.hero > .hero-actions { animation: fadeUp 0.85s ease-out backwards; }
.hero-eyebrow { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.2s; }
.hero p { animation-delay: 0.45s; }
.hero-actions { animation-delay: 0.6s; }

/* Burger button — caché en desktop */
.burger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 101;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: all 0.25s ease;
  border-radius: 2px;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ RESPONSIVE ============ */
@media (max-width: 880px) {
  header { padding: 1rem 1.25rem; position: relative; }
  .burger { display: flex; }
  .phone-btn { display: none; }
  .cart-btn span:not(.cart-count) { display: none; }

  /* Menu mobile : panneau qui descend */
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 1.5rem 1.25rem;
    z-index: 100;
    box-shadow: 0 8px 16px rgba(20, 17, 15, 0.06);
  }
  nav.is-open {
    display: block;
  }
  nav ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  nav li {
    border-bottom: 1px solid var(--line);
  }
  nav li:last-child {
    border-bottom: none;
  }
  nav a {
    display: block;
    padding: 1rem 0.5rem;
    font-size: 1.05rem;
  }

  .hero, .bestsellers, .about-section, .steps-section, .testimonials, .faq-section, .usage-section, #contact, footer, .page-hero {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .hero { padding-top: 2rem; padding-bottom: 5rem; }
  .bestsellers, .about-section, .steps-section, .testimonials, .faq-section, .usage-section, #contact { padding-top: 4rem; padding-bottom: 4rem; }
  .float-1, .float-3 { width: 110px; }
  .float-2, .float-4 { width: 130px; }
  .float-5, .float-6 { display: none; }
  .b-float-2, .b-float-3, .a-float-3 { display: none; }
  .b-float-1 { width: 90px; top: 2%; left: -5%; }
  .b-float-4 { width: 90px; }
  .a-float-1 { width: 90px; }
  .a-float-2 { width: 80px; }
  .product-grid, .steps-grid, .about-grid, .testimonial-grid, .usage-grid { grid-template-columns: 1fr; gap: 2rem; }
  .product-img { width: 200px; height: 200px; }
  .about-grid { gap: 3rem; }
  .about-badge { right: 0; top: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .wave-divider { height: 50px; }
  .fire-stage { width: 240px; height: 320px; }
  .fire-pepper { width: 150px; }
}




/* === CSS PANIER === */


  /* Tweaks specific to cart page */
  .cart-page .breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: var(--ink-soft);
  }
  .cart-page .breadcrumb a {
    color: var(--ink-soft);
    text-decoration: none;
    border-bottom: 1px solid transparent;
  }
  .cart-page .breadcrumb a:hover { color: var(--red); border-color: var(--red); }
  .cart-page .breadcrumb span { color: var(--ink); }

  .cart-suggestion {
    margin-top: 4rem;
    text-align: center;
  }
  .cart-suggestion p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  .cart-suggestion .badges {
    display: inline-flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .cart-suggestion .badge {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    transition: all 0.2s;
  }
  .cart-suggestion .badge:hover { background: var(--red); color: var(--white); border-color: var(--red); }

  .cart-floating-pepper {
    position: absolute;
    pointer-events: none;
    opacity: 0.35;
    z-index: 0;
  }
  .cart-fp-1 { top: 10%; left: 5%; width: 130px; animation: floatA 8s ease-in-out infinite; }
  .cart-fp-2 { top: 20%; right: 6%; width: 120px; animation: floatB 9s ease-in-out infinite; }
  .cart-fp-3 { bottom: 15%; left: 8%; width: 100px; animation: floatC 10s ease-in-out infinite; }
  .cart-fp-4 { bottom: 25%; right: 4%; width: 140px; animation: floatD 7s ease-in-out infinite; }

  @media (max-width: 880px) {
    .cart-fp-1, .cart-fp-3 { width: 70px; }
    .cart-fp-2, .cart-fp-4 { width: 80px; }
  }



/* === CSS CONTACT === */


  /* Specific styles for contact page */
  .contact-page {
    background: var(--ink);
    color: var(--white);
    padding: 5rem 3rem 6rem;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
  }
  .contact-page .floating { opacity: 0.4; }
  .contact-page .breadcrumb a, .contact-page .breadcrumb span { color: rgba(255,255,255,0.6); }
  .contact-page h1 { color: var(--white); }
  .contact-page h1 em { color: var(--red); }
  .contact-page > .breadcrumb {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
  }
  .contact-page .page-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
  }
  .contact-page .page-header h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.25rem;
  }
  .contact-page .page-header p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
  }

  .contact-options {
    max-width: 720px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    position: relative;
    z-index: 2;
  }
  .contact-option {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
  }
  .contact-option-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    font-weight: 700;
    margin-bottom: 0.4rem;
  }
  .contact-option-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
  }

  @media (max-width: 880px) {
    .contact-page { padding-left: 1.25rem; padding-right: 1.25rem; padding-top: 3rem; }
    .contact-options { grid-template-columns: 1fr; }
  }



/* === CSS QUI SUIS-JE === */


  /* Specific styles for this page */
  .story-section {
    background: var(--cream);
    padding: 5rem 3rem;
    position: relative;
    overflow: hidden;
  }
  .story-content {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .story-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin: 3rem 0 1.5rem;
    font-weight: 800;
  }
  .story-content h2:first-child { margin-top: 0; }
  .story-content h2 em { font-style: normal; color: var(--red); }
  .story-content p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: var(--ink);
  }
  .story-content p.lead {
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--red);
  }
  .story-content blockquote {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--red);
    border-left: 4px solid var(--red);
    padding: 1rem 0 1rem 2rem;
    margin: 2.5rem 0;
    letter-spacing: -0.02em;
  }
  .timeline {
    margin: 3rem 0;
    padding: 0;
    list-style: none;
  }
  .timeline li {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 2rem;
    border-left: 2px solid var(--line);
    margin-left: 1rem;
  }
  .timeline li:last-child { border-left: 2px solid transparent; padding-bottom: 0; }
  .timeline li::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    width: 18px; height: 18px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--cream);
  }
  .timeline .year {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--red);
    margin-bottom: 0.4rem;
  }
  .timeline h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  .timeline p {
    font-size: 0.98rem;
    color: var(--ink-soft);
    margin: 0;
  }

  .values-section {
    background: var(--white);
    padding: 5rem 3rem;
  }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 3rem auto 0;
  }
  .value-card {
    text-align: center;
  }
  .value-card .value-icon {
    width: 70px; height: 70px;
    background: var(--red-soft);
    color: var(--red);
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .value-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
  }
  .value-card p {
    color: var(--ink-soft);
    font-size: 0.95rem;
  }

  .cta-band {
    background: var(--white);
    color: var(--ink);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-band h2 {
    color: var(--red);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 900;
  }
  .cta-band p {
    color: var(--ink-soft);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto; margin-right: auto;
  }
  /* Bouton : on garde le .btn-red par défaut (fond rouge, texte blanc). */

  @media (max-width: 880px) {
    .story-section, .values-section, .cta-band { padding-left: 1.25rem; padding-right: 1.25rem; padding-top: 3rem; padding-bottom: 3rem; }
    .values-grid { grid-template-columns: 1fr; gap: 2rem; }
  }

/* ============================================================================
   PIMOS — Styles additionnels (panier rempli, contact, detail produit, flashes)
   ============================================================================ */

/* --- Flash messages --- */
.flash-zone {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  padding: 0 2rem;
}
.flash {
  padding: 0.875rem 1.25rem;
  margin-bottom: 0.75rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
}
.flash-success { background: #E5F0E9; border-color: #1F5E3A; color: #1F5E3A; }
.flash-error   { background: #FCEEEA; border-color: #D93820; color: #A6271A; }
.flash-info    { background: #FFF7E8; border-color: #FFD93D; color: #6E5818; }

/* --- Panier rempli : layout 2 colonnes --- */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
  text-align: left;
}
@media (max-width: 880px) {
  .cart-layout { grid-template-columns: 1fr; }
}

/* Lignes panier */
.cart-lines { display: flex; flex-direction: column; gap: 1rem; }
.cart-line {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto;
  gap: 1.25rem;
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}
@media (max-width: 600px) {
  .cart-line { grid-template-columns: 64px 1fr auto; row-gap: 0.75rem; }
  .cart-line-price { grid-column: 2 / 4; text-align: right; }
  .cart-line-remove { grid-column: 3; }
}
.cart-line-img {
  width: 80px; height: 80px;
  border-radius: 10px;
  background: var(--cream-deep);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.cart-line-img img, .cart-line-img svg { width: 100%; height: 100%; object-fit: cover; }
.cart-line-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0.125rem 0;
  letter-spacing: -0.01em;
}
.cart-line-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  font-weight: 600;
}
.cart-line-meta {
  font-size: 0.825rem;
  color: var(--ink-soft);
  display: flex;
  gap: 0.75rem;
}
.cart-line-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.cart-line-qty button {
  width: 32px; height: 32px;
  background: white;
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  transition: background 120ms;
}
.cart-line-qty button:hover:not(:disabled) { background: var(--cream-deep); }
.cart-line-qty button:disabled { opacity: 0.3; cursor: not-allowed; }
.cart-line-qty span {
  min-width: 32px;
  text-align: center;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
}
.cart-line-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  white-space: nowrap;
}
.cart-line-remove button {
  background: transparent;
  border: none;
  color: var(--ink-soft);
  font-size: 1.125rem;
  cursor: pointer;
  width: 32px; height: 32px;
  border-radius: 8px;
  transition: all 120ms;
}
.cart-line-remove button:hover { background: var(--red-soft); color: var(--red); }

/* Récapitulatif */
.cart-summary {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem;
  position: sticky;
  top: 100px;
  height: fit-content;
}
.cart-summary h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cart-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}
.cart-summary-faint { color: var(--ink-soft); font-size: 0.85rem; }
.cart-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 0.75rem;
  padding-top: 1rem;
  border-top: 2px solid var(--ink);
  font-family: 'Montserrat', sans-serif;
}
.cart-summary-total span { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.cart-summary-total strong { font-size: 1.5rem; font-weight: 900; }
.cart-checkout-btn { width: 100%; justify-content: center; margin-top: 1.25rem; }
.cart-summary-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.cart-shipping-mode {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.cart-shipping-mode label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
}
.cart-free-progress {
  background: var(--cream-deep);
  padding: 0.625rem 0.875rem;
  border-radius: 8px;
  font-size: 0.825rem;
  margin: 0.75rem 0;
  text-align: center;
}

/* --- Contact --- */
.contact-page {
  max-width: 1100px;
  margin: 2rem auto 4rem;
  padding: 2rem;
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }

.contact-intro h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  margin: 0.5rem 0 1rem;
}
.contact-intro h1 em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--red);
}
.contact-intro p { color: var(--ink-soft); margin-bottom: 1.5rem; }

.contact-info {
  display: flex; flex-direction: column; gap: 1rem;
  margin-top: 2rem;
}
.contact-info-block h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 0.25rem;
}
.contact-info-block a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--red);
}

.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .contact-form .form-row { grid-template-columns: 1fr; } }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.contact-form label > span { color: var(--ink); }
.contact-form input, .contact-form textarea {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 0.75rem 0.875rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  width: 100%;
  transition: border-color 120ms;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
}
.contact-form textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.contact-form button { align-self: flex-start; }
.form-error {
  font-style: normal;
  font-size: 0.8125rem;
  color: var(--red);
  font-weight: 500;
  margin-top: 0.125rem;
}

/* --- Qui suis-je --- */
.page-hero {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
}
.page-hero h1 {
  font-size: clamp(2.25rem, 6vw, 4rem);
  margin: 0.5rem 0 1rem;
}
.page-hero h1 em, .about-text h2 em, .story-section h2 em, .values-section h2 em, .cta-band h2 em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--red);
}
.page-hero p { color: var(--ink-soft); max-width: 600px; margin: 0 auto; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; } }
.about-image { text-align: center; }
.about-image img { max-width: 320px; }
/* about-text colors : surcharges retirées pour ne pas casser le design rouge d'origine.
   Le design rouge utilise du blanc pour le texte (défini ligne ~537+). */

.story-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 700px) { .story-timeline { grid-template-columns: 1fr; } }
.story-step {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  border: 1px solid var(--line);
  position: relative;
}
.story-step-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--red);
  opacity: 0.15;
  line-height: 1;
}
.story-step h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  margin: 0.5rem 0 0.75rem;
}
.story-step p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 700px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  text-align: center;
  background: transparent;
  padding: 1rem;
  border: none;
}
.value-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.value-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.value-card p { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.5; }

.cta-band {
  background: var(--white);
  color: var(--ink);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 {
  color: var(--red);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  font-weight: 900;
}
.cta-band h2 em { color: var(--red); font-style: italic; }
.cta-band p {
  color: var(--ink-soft);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
/* Bouton : on laisse le .btn-red par défaut (fond rouge / texte blanc),
   pas d'override ici. Le hover reste celui de .btn-red (red-deep). */
@media (max-width: 880px) {
  .cta-band { padding: 3rem 1.25rem; }
}

/* --- Detail produit --- */
.product-detail {
  max-width: 1100px;
  margin: 2rem auto 4rem;
  padding: 0 2rem;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 2rem 0 4rem;
}
@media (max-width: 800px) { .product-detail-grid { grid-template-columns: 1fr; } }
.product-detail-img {
  background: var(--cream-deep);
  border-radius: 24px;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-img svg { width: 60%; height: 60%; }

.product-detail-info h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0.5rem 0;
}
.product-detail-spice { font-size: 1.125rem; margin: 1rem 0; }
.product-detail-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--red);
  margin: 1rem 0;
}
.product-detail-desc {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.product-detail-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--cream);
  padding: 1.25rem;
  border-radius: 12px;
  font-size: 0.9rem;
  margin: 1.5rem 0;
}
.product-detail-meta strong { font-weight: 700; }
.product-detail-add { margin-top: 1.5rem; }
.product-detail-add .btn-red { font-size: 1rem; padding: 1rem 1.75rem; }
.product-detail-stock-warn {
  color: var(--red);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.5rem;
}
.product-detail-suggestions { margin-top: 4rem; }
.product-detail-suggestions h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

/* ============================================================================
   Pages légales (CGV, mentions, confidentialité)
   ============================================================================ */
.legal-page {
  max-width: 820px;
  margin: 2rem auto 4rem;
  padding: 0 2rem;
}
.legal-page h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 1rem 0 0.5rem;
}
.legal-update {
  color: var(--ink-soft);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}
.legal-content {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2.5rem 3rem;
  font-size: 0.95rem;
  line-height: 1.7;
}
@media (max-width: 600px) { .legal-content { padding: 1.5rem 1.25rem; } }
.legal-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 2.25rem 0 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  letter-spacing: -0.01em;
}
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
  color: var(--red);
}
.legal-content p { margin-bottom: 0.875rem; color: var(--ink); }
.legal-content ul, .legal-content ol {
  margin: 0.75rem 0 1rem 1.5rem;
  color: var(--ink);
}
.legal-content li { margin-bottom: 0.375rem; }
.legal-content a {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}
.legal-content code {
  background: var(--cream-deep);
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 0.85rem;
}
.legal-meta { list-style: none; margin: 0; padding: 0; }
.legal-meta li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.legal-meta li:last-child { border-bottom: none; }
.legal-meta strong { min-width: 200px; }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.875rem;
}
.legal-table th {
  background: var(--cream);
  text-align: left;
  padding: 0.625rem 0.875rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--ink);
}
.legal-table td {
  padding: 0.625rem 0.875rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

/* ============================================
   FICHE PRODUIT
   ============================================ */
.product-page-bg {
  background: white;
}
.product-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 2rem 4rem;
}

.product-page .breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-light);
  margin-bottom: 2rem;
}
.product-page .breadcrumb a {
  color: var(--red);
  text-decoration: none;
}
.product-page .breadcrumb a:hover {
  text-decoration: underline;
}

.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}

.product-hero-img {
  position: relative;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.product-hero-img svg {
  width: 65%;
  height: 65%;
}

.product-spice-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink);
}

.product-hero-info .section-eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.product-hero-info h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  color: var(--ink);
}
.product-hero-info h1 em {
  color: var(--red);
  font-style: italic;
}

.product-hero-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--red);
  margin: 0 0 1.5rem;
}

.product-hero-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-light);
  margin: 0 0 2rem;
  text-align: justify;
}

.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.product-spec {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.875rem 1rem;
}

.product-spec-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.product-spec-val {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}

.product-add-form {
  margin-bottom: 0.75rem;
}

.product-stock-ok {
  font-size: 0.85rem;
  color: #1F5E3A;
  font-weight: 500;
  margin: 0.5rem 0 0;
}

.product-stock-warn {
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 500;
  margin: 0.5rem 0 0;
}

.product-section {
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.product-section h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.75rem;
  margin: 0 0 1.25rem;
  color: var(--ink);
}
.product-section h2 em {
  color: var(--red);
  font-style: italic;
}

.product-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}
.product-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-light);
  margin: 0;
}

.product-section-note {
  font-size: 0.8rem;
  color: var(--ink-light);
  margin-top: 0.75rem;
  font-style: italic;
}

.product-allergens {
  margin-bottom: 1rem;
}

.product-allergen-tag {
  display: inline-block;
  background: #FCEBEB;
  color: #A6271A;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  margin: 0 0.375rem 0.375rem 0;
}

.product-conservation {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-light);
  margin: 0;
}

.product-pairings {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem 1.5rem;
}

.product-pairings li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-light);
}

.product-pairing-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.product-section-suggestions .section-head {
  text-align: center;
  margin-bottom: 2rem;
}
.product-section-suggestions .section-head h2 {
  margin-top: 0.5rem;
}
.product-section-suggestions .product-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .product-page {
    padding: 1rem;
  }
  .product-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .product-spec-grid {
    grid-template-columns: 1fr;
  }
  .product-pairings {
    grid-template-columns: 1fr;
  }
  .product-section-suggestions .product-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA "Voir toute la boutique" sur la home */
.bestsellers-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  width: 100%;
}
.bestsellers-cta-count {
  font-size: 0.85rem;
  opacity: 0.8;
  margin: 0 0.25rem;
}

/* ============================================
   CHECKOUT (tunnel de commande)
   ============================================ */
.checkout-page-bg {
  background: white;
}
.checkout-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
}

.checkout-page .breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-light);
  margin-bottom: 1rem;
}
.checkout-page .breadcrumb a {
  color: var(--red);
  text-decoration: none;
}

.checkout-page .page-header {
  margin-bottom: 1.5rem;
}
.checkout-page h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.5rem;
}
.checkout-page h1 em {
  color: var(--red);
  font-style: italic;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

.checkout-section {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.checkout-section:last-child {
  border-bottom: none;
}
.checkout-section h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.35rem;
  margin: 0 0 1.25rem;
}
.checkout-section h2 em {
  color: var(--red);
  font-style: italic;
}

.checkout-form .form-row {
  margin-bottom: 1rem;
}
.checkout-form .form-row label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: var(--ink);
}
.checkout-form .form-row input,
.checkout-form .form-row textarea,
.checkout-form .form-row select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: white;
  color: var(--ink);
}
.checkout-form .form-row select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23857c75' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
  cursor: pointer;
}
.checkout-form .form-row input:focus,
.checkout-form .form-row textarea:focus,
.checkout-form .form-row select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(217, 56, 32, 0.1);
}
.checkout-form .form-hint {
  display: block;
  font-size: 0.8rem;
  color: var(--ink-light);
  margin-top: 0.375rem;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* Options de livraison (radios stylisés) */
.shipping-options {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.shipping-option {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s ease;
  background: white;
}
.shipping-option:hover {
  border-color: var(--ink-light);
}
.shipping-option.is-selected {
  border-color: var(--red);
  background: #FFF8F4;
  box-shadow: 0 0 0 1px var(--red);
}
.shipping-option input[type="radio"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}
.shipping-option-body {
  flex: 1;
}
.shipping-option-name {
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.shipping-option-meta {
  font-size: 0.8rem;
  color: var(--ink-light);
}
.shipping-option-price {
  font-weight: 500;
  color: var(--red);
  font-size: 0.95rem;
}

/* Récap commande à droite */
.checkout-summary {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem;
  position: sticky;
  top: 2rem;
}
.checkout-summary h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.25rem;
  margin: 0 0 1rem;
}
.checkout-summary h2 em {
  color: var(--red);
  font-style: italic;
}

.checkout-items {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.cart-summary-shipping {
  align-items: flex-start !important;
}
.checkout-summary-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-light);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}
.checkout-items li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--line);
}
.form-hint-inline {
  font-weight: 400;
  color: var(--ink-light);
  font-size: 0.85em;
}
.checkout-items li:last-child {
  border-bottom: none;
}
.checkout-item-qty {
  flex-shrink: 0;
  font-weight: 500;
  color: var(--red);
  min-width: 24px;
}
.checkout-item-name {
  flex: 1;
}
.checkout-item-price {
  font-weight: 500;
}

.checkout-totals {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin-bottom: 1.25rem;
}
.checkout-line {
  display: flex;
  justify-content: space-between;
  padding: 0.375rem 0;
  font-size: 0.9rem;
}
.checkout-total {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  border-top: 1px solid var(--line);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
}
.checkout-total span:last-child {
  color: var(--red);
}

.btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.checkout-secure {
  font-size: 0.75rem;
  color: var(--ink-light);
  text-align: center;
  margin: 1rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

@media (max-width: 880px) {
  .checkout-page { padding: 1rem 0.75rem 3rem; }
  .checkout-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .checkout-summary { position: static; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .checkout-section { padding-bottom: 1.5rem; margin-bottom: 1.5rem; }
}
@media (max-width: 480px) {
  .checkout-page { padding: 1rem 0.5rem 3rem; }
}

/* ============================================
   PAGE CONFIRMATION
   ============================================ */
.confirm-page-bg {
  background: white;
}
.confirm-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  text-align: center;
}
.confirm-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.confirm-page h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
}
.confirm-page h1 em {
  color: var(--red);
  font-style: italic;
}
.confirm-lead {
  font-size: 1.1rem;
  color: var(--ink-light);
  margin: 0 0 2.5rem;
  line-height: 1.6;
}
.confirm-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.75rem;
  text-align: left;
  margin-bottom: 2rem;
}
.confirm-card-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.confirm-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.confirm-value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--red);
}
.confirm-section {
  margin-bottom: 1.5rem;
}
.confirm-section:last-child {
  margin-bottom: 0;
}
.confirm-section h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.05rem;
  margin: 0 0 0.625rem;
}
.confirm-items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.confirm-items li {
  display: flex;
  justify-content: space-between;
  padding: 0.375rem 0;
  font-size: 0.9rem;
  border-bottom: 1px dashed var(--line);
}
.confirm-items li:last-child {
  border-bottom: none;
}
.confirm-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

/* Status badges (admin) */
.status-badge {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.status-pending { background: #FFF7E8; color: #856404; }
.status-paid { background: #E5F0E9; color: #1F5E3A; }
.status-shipped { background: #E6F1FB; color: #0C447C; }
.status-delivered { background: #E5F0E9; color: #1F5E3A; }
.status-cancelled { background: #FCEBEB; color: #A6271A; }
.status-refunded { background: #F1EFE8; color: #5F5E5A; }

.order-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 880px) {
  .order-detail-grid { grid-template-columns: 1fr; }
}

/* Case à cocher "Livrer à une autre adresse" */
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  cursor: pointer;
  padding: 0.875rem 1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.15s ease;
  margin-bottom: 0;
}
.checkbox-row:hover {
  border-color: var(--ink-light);
}
.checkbox-row input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--red);
  cursor: pointer;
}

/* Bloc adresse de livraison révélable */
.ship-address-block {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--line);
}
.ship-address-block h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.15rem;
  margin: 0 0 1rem;
}
.ship-address-block h3 em {
  color: var(--red);
  font-style: italic;
}

/* ============================================
   FIX : page contact en fond noir (toutes résolutions)
   La règle d'origine était coincée dans une media query mobile.
   Wrapper pleine largeur en fond noir + contenu centré max 1100px
   pour continuité visuelle avec le footer noir.
   Les règles plus bas surchargent .contact-form blanc (ligne 1696)
   ============================================ */
.contact-page-bg {
  background: var(--cream);
  width: 100%;
  margin: 0;
  padding: 0;
}
.contact-page {
  background: var(--cream);
  color: var(--ink);
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 3rem 6rem;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
}
.contact-page .floating { opacity: 0.5; }
.contact-page .breadcrumb,
.contact-page .breadcrumb a,
.contact-page .breadcrumb span { color: rgba(20,17,15,0.55); }
.contact-page .breadcrumb a:hover { color: var(--red); }
.contact-page .page-header { color: var(--ink); text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.contact-page h1 { color: var(--ink); font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 900; margin-bottom: 1.25rem; }
.contact-page h1 em { color: var(--red); font-style: italic; }
.contact-page .page-header p { color: rgba(20,17,15,0.7); font-size: 1.1rem; }

/* --- Formulaire en crème --- */
.contact-page .contact-grid {
  display: block;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.contact-page .contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(20,17,15,0.08);
  box-shadow: 0 2px 12px rgba(20,17,15,0.04);
  display: block;
}
.contact-page .form-row { margin-bottom: 1.25rem; display: block; }
.contact-page .form-row label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(20,17,15,0.55);
  margin-bottom: 0.55rem;
  font-weight: 700;
}
.contact-page .form-row input,
.contact-page .form-row textarea,
.contact-page .form-row select,
.contact-page .contact-form input,
.contact-page .contact-form textarea,
.contact-page .contact-form select {
  width: 100%;
  background: var(--cream);
  border: 1px solid rgba(20,17,15,0.12);
  border-radius: 12px;
  padding: 0.95rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: all 0.2s;
}
.contact-page .form-row input::placeholder,
.contact-page .form-row textarea::placeholder { color: rgba(20,17,15,0.35); }
.contact-page .form-row input:focus,
.contact-page .form-row textarea:focus,
.contact-page .form-row select:focus {
  border-color: var(--red);
  background: var(--white);
}
.contact-page .form-row textarea { resize: vertical; min-height: 120px; }
.contact-page .form-row select option { background: var(--white); color: var(--ink); }
.contact-page .contact-form .btn {
  background: var(--red);
  color: var(--white);
  width: 100%;
  justify-content: center;
}
.contact-page .contact-form .btn:hover { background: var(--white); color: var(--ink); }

@media (max-width: 880px) {
  .contact-page { padding: 3rem 1.25rem 4rem; }
  .contact-page .contact-form { padding: 1.5rem; }
}

/* ============================================
   FIX : page panier centrée dans une box 800px max
   ============================================ */
.cart-page h1,
.cart-page > p,
.cart-page .cart-layout,
.cart-page .cart-suggestion {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
/* En 800px, le grid 1fr + 360px devient trop étroit, on empile */
.cart-page .cart-layout {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* ============================================
   FOOTER BEIGE (surcharge la version sombre)
   ============================================ */
footer {
  background: var(--cream-deep);
  color: var(--ink);
  border-top: 1px solid rgba(20, 17, 15, 0.08);
}
footer .footer-brand img {
  filter: none;
}
footer .footer-brand p {
  color: rgba(20, 17, 15, 0.65);
}
footer .footer-col h4 {
  color: var(--ink);
  opacity: 0.45;
}
footer .footer-col a {
  color: rgba(20, 17, 15, 0.78);
}
footer .footer-col a:hover {
  color: var(--red);
}
footer .footer-bottom {
  border-top: 1px solid rgba(20, 17, 15, 0.08);
  color: rgba(20, 17, 15, 0.5);
}
footer .footer-instagram {
  background: var(--red);
  color: var(--white);
}
footer .footer-instagram:hover {
  background: var(--ink);
  color: var(--white);
}

/* Crédit agence en footer */
.footer-bottom a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: var(--red);
}

/* ============================================
   AJUSTEMENTS DEMANDÉS
   ============================================ */

/* Bouton "Ajouter au panier" en vert tige piment */
.add-cart-btn,
button.add-cart-btn {
  background: var(--jade) !important;
  color: var(--white) !important;
}
.add-cart-btn:hover,
button.add-cart-btn:hover {
  background: #4a7e26 !important;
}

/* Filtres catégories : hover vert avec texte blanc */
.filter-row .filter:not(.active):hover,
.category-filters .filter-btn:not(.is-active):hover,
.category-filters button:not(.is-active):hover,
.boutique-filters a:not(.is-active):hover,
.boutique-filters button:not(.is-active):hover,
.filter-pill:not(.is-active):hover,
.cat-pill:not(.is-active):hover {
  background: var(--jade) !important;
  color: var(--white) !important;
  border-color: var(--jade) !important;
}

/* Titres colonnes footer en rouge */
footer .footer-col h4 {
  color: var(--red) !important;
  opacity: 1 !important;
}

/* ============================================
   HERO HOME : logo en gros animé
   ============================================ */
.hero-logo-wrap {
  margin: 1.5rem auto 1.5rem;
  text-align: center;
  display: block;
  font-size: 0; /* enlever espace fantôme du span */
}
.hero-logo {
  width: clamp(280px, 45vw, 520px);
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 12px 24px rgba(217, 56, 32, 0.18));
  animation: heroLogoFloat 8s ease-in-out infinite;
}
@keyframes heroLogoFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(15px, -25px) rotate(6deg); }
}
@media (max-width: 880px) {
  .hero-logo { width: clamp(220px, 70vw, 360px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-logo { animation: none; }
}

/* ============================================
   POPUP AJOUT AU PANIER
   ============================================ */
.cart-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.cart-popup.is-open {
  display: flex;
  animation: cartPopupFadeIn 0.2s ease-out;
}
.cart-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 15, 0.55);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.cart-popup-card {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 2rem 2rem 1.75rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(20, 17, 15, 0.25);
  animation: cartPopupSlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cart-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: rgba(20, 17, 15, 0.4);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: all 0.15s;
}
.cart-popup-close:hover {
  background: rgba(20, 17, 15, 0.06);
  color: var(--ink);
}
.cart-popup-check {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: var(--jade);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cartPopupCheck 0.45s ease-out 0.1s backwards;
}
.cart-popup-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}
.cart-popup-product {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--cream);
  padding: 0.875rem 1rem;
  border-radius: 14px;
  margin-bottom: 1.5rem;
  text-align: left;
}
.cart-popup-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--white);
}
.cart-popup-img:not([src]),
.cart-popup-img[src=""] {
  display: none;
}
.cart-popup-info { flex: 1; min-width: 0; }
.cart-popup-name {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
  word-wrap: break-word;
}
.cart-popup-price {
  color: var(--red);
  font-weight: 800;
  font-size: 1rem;
}
.cart-popup-actions {
  display: flex;
  gap: 0.6rem;
  flex-direction: column;
}
.cart-popup-actions .btn {
  width: 100%;
  justify-content: center;
}
@media (min-width: 480px) {
  .cart-popup-actions { flex-direction: row; }
  .cart-popup-actions .btn {
    width: auto;
    flex: 1;
    padding: 0.65rem 1.1rem;
    font-size: 0.85rem;
  }
}
@keyframes cartPopupFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes cartPopupSlideUp {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes cartPopupCheck {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .cart-popup.is-open,
  .cart-popup-card,
  .cart-popup-check { animation: none; }
}

/* ============================================
   BLOC TEXTE SEO (référencement) - bas de la home
   ============================================ */
.seo-text {
  background: var(--cream-deep);
  padding: 4rem 2rem;
  border-top: 1px solid rgba(20, 17, 15, 0.06);
}
.seo-text-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.seo-text h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  text-align: center;
}
.seo-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(20, 17, 15, 0.7);
  margin-bottom: 1rem;
  text-align: justify;
}
.seo-text p:last-child { margin-bottom: 0; }
.seo-text strong {
  color: var(--ink);
  font-weight: 600;
}
@media (max-width: 880px) {
  .seo-text { padding: 3rem 1.25rem; }
}

/* Bouton Panier du header en vert tige */
.cart-btn {
  background: var(--jade) !important;
}
.cart-btn:hover {
  background: #4a7e26 !important;
}

/* Titre au-dessus des filtres boutique */
.bestsellers .filter-title,
.filter-title {
  text-align: center !important;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 1rem auto 0.5rem;
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.bestsellers .filter-subtitle,
.filter-subtitle {
  text-align: center !important;
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 0 auto 1.75rem;
  max-width: 500px;
  position: relative;
  z-index: 2;
}


/* ============================================
   BANDEAU COOKIES
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--jade);
  color: var(--white);
  box-shadow: 0 -8px 32px rgba(20, 17, 15, 0.25);
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
  padding: 1.25rem 1.5rem;
}
.cookie-banner.is-visible {
  transform: translateY(0);
}
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner-text { flex: 1; min-width: 280px; }
.cookie-banner-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.cookie-banner-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.5;
}
.cookie-banner-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.cookie-banner-actions .btn {
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
}
.cookie-banner-actions .btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.cookie-banner-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 700px) {
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; justify-content: center; }
}

/* Modal personnalisation */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.cookie-modal.is-open { display: flex; }
.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 15, 0.6);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.cookie-modal-card {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(20, 17, 15, 0.25);
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: rgba(20, 17, 15, 0.4);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
}
.cookie-modal-close:hover { background: rgba(20, 17, 15, 0.06); color: var(--ink); }
.cookie-modal-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}
.cookie-modal-intro {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.cookie-category {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}
.cookie-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.4rem;
}
.cookie-category-head strong {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 800;
}
.cookie-category p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}
.cookie-toggle.is-locked {
  font-size: 0.75rem;
  color: var(--jade);
  font-weight: 700;
  background: rgba(93, 159, 49, 0.12);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.cookie-switch input { opacity: 0; width: 0; height: 0; }
.cookie-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(20, 17, 15, 0.15);
  border-radius: 999px;
  transition: 0.2s;
}
.cookie-slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: 0.2s;
}
.cookie-switch input:checked + .cookie-slider { background: var(--jade); }
.cookie-switch input:checked + .cookie-slider::before { transform: translateX(20px); }
.cookie-modal-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.cookie-modal-actions .btn { flex: 1; justify-content: center; }

/* Photo dans le bloc "Trois ans, trois pays" */
.about-photo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* ============================================
   GALERIE PHOTOS FICHE PRODUIT
   ============================================ */
.product-thumbs {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.product-thumb {
  width: 64px;
  height: 64px;
  padding: 0;
  border: 2px solid transparent;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-thumb:hover {
  border-color: rgba(217, 56, 32, 0.3);
  transform: translateY(-1px);
}
.product-thumb.is-active {
  border-color: var(--red);
}
@media (max-width: 600px) {
  .product-thumb { width: 56px; height: 56px; }
}

/* ============================================
   PAGE 404 — Erreur introuvable
   ============================================ */
.error-code {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 900;
  line-height: 1;
  color: var(--red);
  letter-spacing: -0.05em;
  margin: 1rem 0 1rem;
  text-shadow: 0 12px 32px rgba(217, 56, 32, 0.18);
}
.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.error-categories {
  padding: 3rem 2rem 5rem;
  text-align: center;
}
.error-categories h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  margin-bottom: 2rem;
  color: var(--ink);
}
.error-categories-list {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}
