/* ============================================================
   MATCHA AVIS — Stylesheet
   Charte graphique inspirée de Matcha & Co
   Polices : Playfair Display + Inter (Google Fonts)
   ============================================================ */

/* ===== VARIABLES ===== */
:root {
  --beige:       #F5EDE3;
  --beige-mid:   #EDE0D4;
  --beige-dark:  #DDD0C1;
  --black:       #1A1A1A;
  --green:       #3D6B35;
  --green-light: #5A9050;
  --green-dark:  #2A4B23;
  --green-pale:  #D6EBD0;
  --white:       #FFFFFF;
  --gray:        #6B6B6B;
  --gray-light:  #A89F97;
  --border:      #DDD0C3;
  --gold:        #F5C842;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --radius:    14px;
  --radius-sm: 8px;
  --shadow:    0 4px 24px rgba(26,26,26,.08);
  --shadow-lg: 0 12px 48px rgba(26,26,26,.16);
  --transition: all .28s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--beige);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4 { font-family: var(--font-heading); line-height: 1.2; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-size: .73rem; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--green); margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--black); margin-bottom: 14px;
}
.section-header p {
  font-size: 1.05rem; color: var(--gray);
  max-width: 540px; margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-family: var(--font-body); font-size: .9rem;
  font-weight: 600; letter-spacing: .4px;
  cursor: pointer; border: none; transition: var(--transition);
}
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: var(--green); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-green   { background: var(--green);  color: var(--white); }
.btn-green:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--black); border: 2px solid var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-white   { background: var(--white); color: var(--green); font-weight: 700; }
.btn-white:hover { background: var(--black); color: var(--white); }
.btn-lg { padding: 18px 38px; font-size: 1rem; }

/* ===== AFFILIATE BANNER ===== */
.affiliate-bar {
  background: var(--green-pale);
  border-bottom: 1px solid rgba(61,107,53,.2);
  padding: 9px 24px;
  text-align: center;
  font-size: .8rem; color: var(--green-dark);
}
.affiliate-bar a { color: var(--green); font-weight: 600; text-decoration: underline; }
.affiliate-bar a:hover { color: var(--green-dark); }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(245,237,227,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: var(--transition);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 38px; height: 38px; flex-shrink: 0; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: .875rem; font-weight: 500;
  color: var(--gray); letter-spacing: .3px;
  transition: var(--transition);
}
.nav .btn { color: var(--white); }
.nav a:hover, .nav a.active { color: var(--black); }
.nav .btn { margin-left: 8px; padding: 10px 22px; font-size: .85rem; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--black); border-radius: 2px;
  transition: var(--transition);
}
.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: var(--beige); z-index: 300;
  flex-direction: column; align-items: center;
  justify-content: center; gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1.4rem; font-family: var(--font-heading); }
.mobile-nav-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none;
  font-size: 1.8rem; cursor: pointer; color: var(--black);
}

/* ===== WHY / BENEFITS CARDS ===== */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.why-card {
  text-align: center; padding: 40px 28px;
  border-radius: var(--radius);
  background: var(--beige);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.why-icon {
  width: 62px; height: 62px;
  background: var(--green-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 1.5rem;
}
.why-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.why-card p  { font-size: .875rem; color: var(--gray); line-height: 1.65; }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 96px 0;
  background: var(--black); color: var(--white);
}
.testimonials-section .section-header h2 { color: var(--white); }
.testimonials-section .section-label     { color: var(--green-pale); }
.testimonials-section .section-header p  { color: rgba(255,255,255,.55); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testi-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 34px;
  transition: var(--transition);
}
.testi-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-4px);
}
.testi-stars { margin-bottom: 14px; }
.testi-stars span { color: var(--gold); font-size: 1rem; }
.testi-text {
  font-size: .93rem; line-height: 1.78;
  color: rgba(255,255,255,.82);
  margin-bottom: 22px; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .95rem; flex-shrink: 0;
}
.testi-name  { font-weight: 600; font-size: .88rem; }
.testi-detail{ font-size: .76rem; color: rgba(255,255,255,.45); }
.testi-verified {
  display: flex; align-items: center; gap: 4px;
  font-size: .68rem; color: var(--green-pale); margin-top: 2px;
}
.testi-overall {
  display: flex; align-items: center; justify-content: center; gap: 32px;
  margin-top: 52px; padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.overall-stat { text-align: center; }
.overall-stat .big {
  font-family: var(--font-heading);
  font-size: 2.4rem; font-weight: 700; color: var(--white);
  display: block; line-height: 1;
}
.overall-stat .sm { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 4px; }

/* ===== CTA BANNER ===== */
.cta-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  text-align: center; color: var(--white);
}
.cta-section h2 { font-size: clamp(1.9rem,4vw,3rem); color: var(--white); margin-bottom: 14px; }
.cta-section p {
  font-size: 1.08rem; color: rgba(255,255,255,.85);
  max-width: 520px; margin: 0 auto 36px;
}
.cta-section .btn-white:hover { background: var(--black); color: var(--white); }
.cta-note { margin-top: 18px; font-size: .8rem; color: rgba(255,255,255,.6); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.65);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-main { color: var(--white); }
.footer-brand .logo-sub  { color: rgba(255,255,255,.4); }
.footer-brand p {
  font-size: .85rem; line-height: 1.7;
  margin-top: 12px; max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: .88rem; color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: .84rem; color: rgba(255,255,255,.55);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-legal-box {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-sm);
  padding: 18px;
}
.footer-legal-box h4 { font-size: .82rem; margin-bottom: 10px; }
.footer-legal-box p  { font-size: .75rem; line-height: 1.65; color: rgba(255,255,255,.42); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; font-size: .78rem; flex-wrap: wrap; gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,.45); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ===== MODAL LEGAL ===== */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.7); z-index: 500;
  align-items: center; justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white); border-radius: var(--radius);
  max-width: 760px; width: 100%;
  max-height: 80vh; overflow-y: auto;
  padding: 40px; position: relative;
}
.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none;
  font-size: 1.5rem; cursor: pointer; color: var(--gray);
  transition: var(--transition);
}
.modal-close:hover { color: var(--black); }
.modal-box h2 { font-size: 1.6rem; margin-bottom: 24px; }
.modal-box h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 700; margin: 24px 0 8px; }
.modal-box p  { font-size: .875rem; color: var(--gray); line-height: 1.75; margin-bottom: 12px; }
.modal-box ul { padding-left: 18px; margin-bottom: 12px; }
.modal-box ul li { font-size: .875rem; color: var(--gray); line-height: 1.7; }

/* ===== AVIS PAGE ===== */
.review-hero {
  padding: 76px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.review-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.review-tags { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.review-tag {
  background: var(--green-pale); color: var(--green);
  font-size: .72rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 13px; border-radius: 50px;
}
.review-date { font-size: .8rem; color: var(--gray-light); }
.review-hero h1 { font-size: clamp(1.7rem,3.5vw,2.6rem); margin-bottom: 14px; }
.review-intro { font-size: 1.03rem; color: var(--gray); line-height: 1.75; margin-bottom: 26px; }
.rating-block {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px;
  background: var(--beige); border-radius: var(--radius-sm);
}
.rating-big { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; line-height: 1; }
.rating-stars span { color: var(--gold); font-size: 1.1rem; }
.rating-label { font-size: .8rem; color: var(--gray); }
.review-img-wrap {
  aspect-ratio: 4/5; border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, var(--beige-mid), var(--green-pale));
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; box-shadow: var(--shadow-lg);
}
.review-img-wrap img { width:100%; height:100%; object-fit:cover; }

.review-body-section { padding: 80px 0; }
.review-layout {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 60px; align-items: start;
}
.review-article h2 { font-size: 1.6rem; margin: 40px 0 14px; }
.review-article h2:first-child { margin-top: 0; }
.review-article p { font-size: .96rem; color: var(--gray); line-height: 1.82; margin-bottom: 16px; }
.review-article ul { padding-left: 20px; margin-bottom: 16px; }
.review-article ul li { font-size: .96rem; color: var(--gray); line-height: 1.7; margin-bottom: 8px; }
.review-article blockquote {
  border-left: 3px solid var(--green);
  padding: 12px 20px; margin: 24px 0;
  background: var(--beige); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic; color: var(--gray); font-size: .95rem;
}

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 32px 0; }
.pros-box, .cons-box { padding: 24px; border-radius: var(--radius-sm); }
.pros-box { background: var(--green-pale); }
.cons-box { background: #FFEAEA; }
.pros-box h4, .cons-box h4 {
  font-size: .8rem; font-weight: 700; font-family: var(--font-body);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px;
}
.pros-box h4 { color: var(--green-dark); }
.cons-box h4 { color: #B03030; }
.pros-box ul, .cons-box ul { padding-left: 16px; }
.pros-box ul li { font-size: .875rem; color: var(--green-dark); margin-bottom: 8px; }
.cons-box ul li { font-size: .875rem; color: #B03030; margin-bottom: 8px; }

.verdict-card {
  background: var(--green); color: var(--white);
  border-radius: var(--radius); padding: 36px;
  text-align: center; margin: 40px 0;
}
.verdict-card h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 10px; }
.verdict-card p  { color: rgba(255,255,255,.85); margin-bottom: 24px; }
.verdict-stars span { color: var(--gold); font-size: 1.4rem; }

.review-sidebar { position: sticky; top: 96px; }
.sidebar-widget {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px; margin-bottom: 18px;
}
.sidebar-widget h4 {
  font-size: .78rem; font-weight: 700; font-family: var(--font-body);
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--gray); margin-bottom: 18px;
}
.rating-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.rating-bar-row .lbl { font-size: .78rem; color: var(--gray); min-width: 88px; }
.bar-track { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.bar-fill   { height: 100%; background: var(--green); border-radius: 3px; }
.rating-bar-row .sc { font-size: .78rem; font-weight: 700; min-width: 22px; text-align: right; }
.sidebar-product {
  display: flex; gap: 12px; align-items: center;
  padding-bottom: 14px; border-bottom: 1px solid var(--border); margin-bottom: 14px;
}
.sidebar-thumb {
  width: 58px; height: 58px; border-radius: 8px;
  background: var(--beige-mid); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; overflow: hidden;
}
.sidebar-thumb img { width:100%; height:100%; object-fit:cover; }
.sidebar-name  { font-size: .88rem; font-weight: 600; margin-bottom: 2px; }
.sidebar-price { font-size: 1rem; font-weight: 700; color: var(--green); }

/* ===== FAQ ===== */
.faq-section { padding: 80px 0; background: var(--beige); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer;
  font-weight: 600; font-size: .93rem;
  transition: var(--transition); user-select: none;
}
.faq-q:hover   { background: var(--beige); }
.faq-q.active  { color: var(--green); }
.faq-toggle {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--beige-mid); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: var(--transition);
}
.faq-q.active .faq-toggle { background: var(--green); color: var(--white); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 22px;
}
.faq-a.open { max-height: 220px; padding: 0 22px 18px; }
.faq-a p { font-size: .875rem; color: var(--gray); line-height: 1.72; }

/* ===== LANDING PAGE SECTIONS ===== */

/* Stats strip */
.stats-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.stats-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.strip-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.strip-stat-icon {
  font-size: 1.6rem;
  line-height: 1;
}
.strip-stat .num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  display: block;
  line-height: 1;
}
.strip-stat .lbl {
  font-size: .78rem;
  color: var(--gray);
  letter-spacing: .3px;
}
.strip-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero plein écran */
.hero-full {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-full-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-full-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,26,26,.82) 0%,
    rgba(26,26,26,.35) 50%,
    rgba(26,26,26,.08) 100%
  );
}
.hero-full-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 80px 0;
  max-width: 720px;
}
.hero-full-content .hero-tag {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
}
.hero-full-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.1;
}
.hero-full-content h1 em { color: #A8D89A; }
.hero-full-content .hero-desc {
  color: rgba(255,255,255,.8);
  max-width: 520px;
}
.hero-full-content .hero-note { color: rgba(255,255,255,.55); }
.hero-full-content .hero-stats {
  border-top-color: rgba(255,255,255,.15);
}
.hero-full-content .hero-stat .num { color: var(--white); }
.hero-full-content .hero-stat .lbl { color: rgba(255,255,255,.5); }
.hero-stars { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.hero-stars span { color: var(--gold); font-size: 1.1rem; }
.hero-stars small { color: rgba(255,255,255,.7); font-size: .82rem; }

/* Editorial split sections */
.editorial-section { padding: 96px 0; }
.editorial-section.bg-white  { background: var(--white); }
.editorial-section.bg-beige  { background: var(--beige); }
.editorial-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.editorial-inner.reverse { direction: rtl; }
.editorial-inner.reverse > * { direction: ltr; }
.editorial-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--beige-mid);
}
.editorial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.editorial-img-wide {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/2;
  background: var(--beige-mid);
}
.editorial-img-wide img { width:100%; height:100%; object-fit:cover; display:block; }
.editorial-text .tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.editorial-text h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  margin-bottom: 18px;
  line-height: 1.2;
}
.editorial-text p {
  font-size: .97rem;
  color: var(--gray);
  line-height: 1.82;
  margin-bottom: 14px;
}
.editorial-text .btn { margin-top: 16px; }

/* Full-width cinematic break */
.cinematic-break {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.cinematic-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.cinematic-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,26,26,.7) 0%, transparent 100%);
  padding: 40px;
  color: var(--white);
}
.cinematic-caption p {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  max-width: 700px;
}

/* Gamme éditoriale */
.gamme-section { padding: 96px 0; background: var(--black); color: var(--white); }
.gamme-section .section-header h2 { color: var(--white); }
.gamme-section .section-label     { color: var(--green-pale); }
.gamme-section .section-header p  { color: rgba(255,255,255,.55); }
.gamme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.gamme-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  background: rgba(255,255,255,.06);
  cursor: pointer;
  transition: var(--transition);
}
.gamme-card:hover { transform: scale(1.02); }
.gamme-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.gamme-card:hover img { transform: scale(1.06); }
.gamme-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,.8) 0%, transparent 55%);
}
.gamme-card-label {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  color: var(--white);
}
.gamme-card-label h3 { font-size: 1.1rem; margin-bottom: 4px; }
.gamme-card-label p  { font-size: .8rem; color: rgba(255,255,255,.65); }
.gamme-cta { text-align: center; }

/* Preparation grid */

/* ===== PRODUITS ===== */
.produits-section { padding: 96px 0; background: var(--beige); }

.produits-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 22px;
}
.produit-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.produit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.produit-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--beige-mid);
}
.produit-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.produit-card:hover .produit-img img { transform: scale(1.05); }

.produit-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.produit-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.produit-body p  { font-size: .84rem; color: var(--gray); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.produit-body .btn { width: 100%; justify-content: center; }

/* Produit featured (pleine largeur) */
.produit-card-featured {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: grid;
  grid-template-columns: 340px 1fr;
}
.produit-card-featured:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.produit-featured-img {
  overflow: hidden;
  background: var(--beige-mid);
}
.produit-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.produit-card-featured:hover .produit-featured-img img { transform: scale(1.04); }
.produit-featured-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.produit-featured-tag {
  display: inline-block;
  font-size: .7rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--green); margin-bottom: 12px;
}
.produit-featured-body h3 { font-size: 1.6rem; margin-bottom: 14px; }
.produit-featured-body p  { font-size: .95rem; color: var(--gray); line-height: 1.75; margin-bottom: 28px; }
.produit-featured-body .btn { align-self: flex-start; }

@media (max-width: 900px) {
  .produits-grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .produits-grid-3 { grid-template-columns: 1fr; }
  .produit-card-featured { grid-template-columns: 1fr; }
  .produit-featured-img { aspect-ratio: 16/9; }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, background .2s ease;
  pointer-events: none;
  z-index: 150;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--green); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: calc(100% - 48px);
  max-width: 780px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 48px rgba(26,26,26,.18);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 400;
  border: 1px solid var(--border);
  transition: opacity .35s ease, transform .35s ease;
  flex-wrap: wrap;
}
.cookie-banner.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}
.cookie-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.cookie-text {
  font-size: .84rem;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
}
.cookie-text strong { color: var(--black); }
.cookie-text a { color: var(--green); text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-accept {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: .84rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.cookie-accept:hover { background: var(--green-light); transform: translateY(-1px); }
.cookie-refuse {
  background: transparent;
  color: var(--gray);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: .84rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.cookie-refuse:hover { color: var(--black); border-color: var(--black); }
@media (max-width: 600px) {
  .cookie-banner { bottom: 12px; padding: 18px; }
  .cookie-actions { width: 100%; justify-content: flex-end; }
}

/* ===== SCROLL ANIMATION ===== */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .review-layout { grid-template-columns: 1fr; }
  .review-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .review-hero-inner { grid-template-columns: 1fr; }
  .review-img-wrap { display: none; }
  .pros-cons { grid-template-columns: 1fr; }
  .review-sidebar { display: block; }
  /* Landing page responsive */
  .editorial-inner { grid-template-columns: 1fr; gap: 36px; }
  .editorial-inner.reverse { direction: ltr; }
  .cinematic-break { height: 300px; }
  .gamme-grid { grid-template-columns: 1fr; }
  .stats-strip-inner { gap: 28px; }
  .strip-divider { display: none; }
  .hero-full-content { padding: 48px 0; }
}
@media (max-width: 480px) {
  .testi-overall { gap: 20px; }
}
