﻿/* ==========================================================================
   TOP 99 RECETTES RAPIDES — Landing page
   Toutes les classes sont préfixées "t99-" pour une intégration WordPress
   sans conflit avec le thème (Elementor, bloc HTML, template personnalisé).
   ========================================================================== */

.t99-landing {
  --t99-bg: #ffffff;
  --t99-bg-alt: #faf8f5;
  --t99-ink: #14100b;
  --t99-ink-soft: #3a332c;
  --t99-muted: #6b6058;
  --t99-accent: #d9762f;
  --t99-accent-dark: #a84e1c;
  --t99-accent-soft: #fdf1e6;
  --t99-line: #e8e3db;
  --t99-white: #ffffff;

  --t99-font-display: Georgia, 'Times New Roman', serif;
  --t99-font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --t99-radius-s: 8px;
  --t99-radius-m: 14px;
  --t99-radius-l: 24px;

  --t99-shadow-s: 0 2px 10px rgba(20, 16, 11, 0.06);
  --t99-shadow-m: 0 12px 32px rgba(20, 16, 11, 0.10);
  --t99-shadow-l: 0 24px 60px rgba(20, 16, 11, 0.18);

  --t99-ease: cubic-bezier(0.22, 1, 0.36, 1);

  background: var(--t99-bg);
  color: var(--t99-ink);
  font-family: var(--t99-font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden; /* filet de sécurité pour les sections "pleine largeur" ci-dessous */
}

/* --------------------------- Pleine largeur (full-bleed) ------------------------
   Beaucoup de thèmes WordPress limitent le contenu à une colonne étroite
   (ex: 700-800px). Ce mixin fait "sortir" une section de cette colonne pour
   qu'elle occupe toute la largeur de l'écran, quel que soit le thème utilisé.
   Appliqué directement aux sections concernées (Hero, bandes alternées, CTA final)
   pour que la correction soit automatique, sans rien à modifier dans le HTML. */
.t99-hero,
.t99-section-alt,
.t99-final-cta,
.t99-guarantee {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* ----------------------------- Reset local ------------------------------ */
.t99-landing, .t99-landing *, .t99-landing *::before, .t99-landing *::after {
  box-sizing: border-box;
}
.t99-landing img { max-width: 100%; display: block; }
.t99-landing ul { list-style: none; margin: 0; padding: 0; }
.t99-landing a { color: inherit; text-decoration: none; }
.t99-landing button { font-family: inherit; }
.t99-landing h1, .t99-landing h2, .t99-landing h3, .t99-landing p, .t99-landing blockquote, .t99-landing figure {
  margin: 0;
}

/* ------------------------------ Accessibilité ---------------------------- */
.t99-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--t99-ink);
  color: #fff;
  padding: 0.8rem 1.2rem;
  z-index: 10000;
  border-radius: 0 0 var(--t99-radius-s) 0;
}
.t99-skip-link:focus {
  left: 0;
}
.t99-landing a:focus-visible,
.t99-landing button:focus-visible {
  outline: 3px solid var(--t99-accent-dark);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .t99-landing * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* -------------------------------- Layout --------------------------------- */
.t99-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.t99-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.t99-section-alt {
  background: var(--t99-bg-alt);
}

.t99-eyebrow {
  font-family: var(--t99-font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--t99-accent-dark);
  margin: 0 0 0.8rem;
}
.t99-h2 {
  font-family: var(--t99-font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  line-height: 1.15;
  font-weight: 400;
  max-width: 20ch;
  margin-bottom: 1.1rem;
  text-wrap: balance;
}
.t99-h3 {
  font-family: var(--t99-font-body);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.4rem;
}
.t99-lede {
  font-size: 1.05rem;
  color: var(--t99-muted);
  max-width: 56ch;
  margin-bottom: 2.5rem;
}

/* ------------------------------ Reveal on scroll -------------------------- */
.t99-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--t99-ease), transform 0.7s var(--t99-ease);
}
.t99-reveal.t99-in-view {
  opacity: 1;
  transform: translateY(0);
}
/* Décalage progressif des enfants directs dans une grille (effet "stagger") */
.t99-presentation-grid .t99-reveal:nth-child(2) { transition-delay: 0.06s; }
.t99-presentation-grid .t99-reveal:nth-child(3) { transition-delay: 0.12s; }
.t99-presentation-grid .t99-reveal:nth-child(4) { transition-delay: 0.18s; }
.t99-cards-grid .t99-reveal:nth-child(2) { transition-delay: 0.05s; }
.t99-cards-grid .t99-reveal:nth-child(3) { transition-delay: 0.10s; }
.t99-cards-grid .t99-reveal:nth-child(4) { transition-delay: 0.15s; }
.t99-cards-grid .t99-reveal:nth-child(5) { transition-delay: 0.20s; }
.t99-cards-grid .t99-reveal:nth-child(6) { transition-delay: 0.25s; }

/* --------------------------------- Buttons -------------------------------- */
.t99-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--t99-ease), box-shadow 0.25s var(--t99-ease), background 0.25s var(--t99-ease), border-color 0.25s var(--t99-ease);
  white-space: nowrap;
}
.t99-btn-primary {
  background: var(--t99-accent);
  color: #fff;
  box-shadow: var(--t99-shadow-m);
}
.t99-btn-primary:hover {
  background: var(--t99-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--t99-shadow-l);
}
.t99-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}
.t99-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}
.t99-btn-large {
  padding: 1.15rem 2.6rem;
  font-size: 1.1rem;
}

/* ---------------------------------- Hero ---------------------------------- */
.t99-hero {
  position: relative;
  min-height: min(100vh, 900px);
  min-height: min(100svh, 900px); /* hauteur fiable sur mobile (barre d'adresse), ignoré si non supporté */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.t99-hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #1a130c;
}
.t99-hero-video {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #1a130c;
}

/* Diaporama Ken Burns : visible tant qu'aucune vidéo n'est fournie (voir script.js) */
.t99-hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #1a130c;
}
.t99-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: t99-kenburns 36s ease-in-out infinite;
  will-change: opacity, transform;
}
.t99-hero-slide:nth-child(1) { animation-delay: 0s; }
.t99-hero-slide:nth-child(2) { animation-delay: -4s; }
.t99-hero-slide:nth-child(3) { animation-delay: -8s; }
.t99-hero-slide:nth-child(4) { animation-delay: -12s; }
.t99-hero-slide:nth-child(5) { animation-delay: -16s; }
.t99-hero-slide:nth-child(6) { animation-delay: -20s; }
.t99-hero-slide:nth-child(7) { animation-delay: -24s; }
.t99-hero-slide:nth-child(8) { animation-delay: -28s; }
.t99-hero-slide:nth-child(9) { animation-delay: -32s; }

@keyframes t99-kenburns {
  0%    { opacity: 0; transform: scale(1); }
  2%    { opacity: 1; }
  9%    { opacity: 1; transform: scale(1.12); }
  11%   { opacity: 0; transform: scale(1.12); }
  100%  { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .t99-hero-slide {
    animation: none;
    opacity: 0;
    transform: none;
  }
  .t99-hero-slide:first-child {
    opacity: 1;
  }
}

/* Quand le JS masque la vidéo (aucune source valide), le diaporama devient visible au premier plan */
.t99-hero-media.t99-hero-video-failed .t99-hero-slideshow {
  z-index: 2;
}

.t99-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(10, 8, 5, 0.55) 0%, rgba(10, 8, 5, 0.35) 40%, rgba(10, 8, 5, 0.75) 100%);
}
.t99-hero-content {
  position: relative;
  text-align: center;
  padding: 7rem 1.5rem 5rem;
  max-width: 760px;
}
.t99-hero-title {
  font-family: var(--t99-font-display);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 1.4rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}
.t99-accent-text { color: #f0a05c; }
.t99-hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 52ch;
  margin: 0 auto 2.4rem;
}
.t99-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.t99-hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}
.t99-stars {
  color: #f0a05c;
  letter-spacing: 0.1em;
}

.t99-scroll-cue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.t99-scroll-cue-dot {
  display: block;
  width: 5px;
  height: 5px;
  margin: 8px auto 0;
  border-radius: 50%;
  background: #fff;
  animation: t99-scroll-bounce 1.8s ease-in-out infinite;
}
@keyframes t99-scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(16px); opacity: 0.3; }
}

/* ------------------------------ Présentation ------------------------------ */
.t99-presentation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.t99-presentation-item {
  padding: 2rem 1.6rem;
  background: var(--t99-bg);
  border: 1px solid var(--t99-line);
  border-radius: var(--t99-radius-m);
  transition: transform 0.35s var(--t99-ease), box-shadow 0.35s var(--t99-ease), border-color 0.35s var(--t99-ease);
}
.t99-presentation-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--t99-shadow-m);
  border-color: transparent;
}
.t99-presentation-icon {
  display: inline-block;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.t99-presentation-item p {
  color: var(--t99-muted);
  font-size: 0.95rem;
}

/* -------------------------------- Cartes bénéfices ------------------------ */
.t99-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.t99-card {
  background: var(--t99-white);
  border-radius: var(--t99-radius-m);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--t99-shadow-s);
  transition: transform 0.35s var(--t99-ease), box-shadow 0.35s var(--t99-ease);
}
.t99-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--t99-shadow-m);
}
.t99-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--t99-accent-soft);
  border-radius: var(--t99-radius-s);
  margin-bottom: 1.2rem;
}
.t99-card p {
  color: var(--t99-muted);
  font-size: 0.95rem;
}

/* ---------------------------------- Galerie -------------------------------- */
.t99-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
  margin-top: 3rem;
}
.t99-gallery-item {
  position: relative;
  border-radius: var(--t99-radius-m);
  overflow: hidden;
  box-shadow: var(--t99-shadow-s);
}
.t99-gallery-item--wide {
  grid-row: span 2;
}
.t99-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--t99-ease);
}
.t99-gallery-item:hover img {
  transform: scale(1.08);
}
.t99-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.35s var(--t99-ease);
}
.t99-gallery-item:hover::after {
  opacity: 1;
}

/* --------------------------------- Recettes -------------------------------- */
.t99-recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.t99-recipe-card {
  background: var(--t99-white);
  border-radius: var(--t99-radius-m);
  overflow: hidden;
  box-shadow: var(--t99-shadow-s);
  transition: transform 0.35s var(--t99-ease), box-shadow 0.35s var(--t99-ease);
}
.t99-recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--t99-shadow-m);
}
.t99-recipe-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.t99-recipe-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--t99-ease);
}
.t99-recipe-card:hover .t99-recipe-media img {
  transform: scale(1.06);
}
.t99-recipe-tag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: rgba(20, 16, 11, 0.75);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.t99-recipe-body {
  padding: 1.3rem 1.4rem 1.5rem;
}
.t99-recipe-meta {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--t99-muted);
  margin-top: 0.5rem;
}
.t99-recipes-more {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--t99-muted);
  font-style: italic;
}

/* -------------------------------- Pourquoi acheter -------------------------- */
.t99-why-buy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.t99-why-buy-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--t99-line);
  font-size: 1.02rem;
}
.t99-why-buy-list li:last-child { border-bottom: none; }

/* ----------------------------------- Bonus ----------------------------------- */
.t99-bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.t99-bonus-card {
  text-align: center;
  background: var(--t99-white);
  border: 1px solid var(--t99-line);
  border-radius: var(--t99-radius-m);
  padding: 2rem 1.2rem;
  transition: transform 0.35s var(--t99-ease), box-shadow 0.35s var(--t99-ease), border-color 0.35s var(--t99-ease);
}
.t99-bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--t99-shadow-m);
  border-color: transparent;
}
.t99-bonus-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.t99-bonus-card .t99-h3 {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ------------------------------- Témoignages carrousel ------------------------ */
.t99-carousel {
  margin-top: 3rem;
  position: relative;
}
.t99-carousel-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.t99-carousel-track::-webkit-scrollbar { display: none; }
.t99-testimonial {
  flex: 0 0 min(420px, 85vw);
  scroll-snap-align: start;
  background: var(--t99-white);
  border-radius: var(--t99-radius-m);
  padding: 2.2rem;
  box-shadow: var(--t99-shadow-s);
}
.t99-testimonial p {
  font-size: 1.02rem;
  margin: 0.9rem 0 1.3rem;
  color: var(--t99-ink-soft);
}
.t99-testimonial cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--t99-muted);
}
.t99-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.8rem;
}
.t99-carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--t99-line);
  background: var(--t99-white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s var(--t99-ease), color 0.25s var(--t99-ease), transform 0.2s var(--t99-ease);
}
.t99-carousel-btn:hover {
  background: var(--t99-accent);
  color: #fff;
  transform: scale(1.08);
}
.t99-carousel-dots {
  display: flex;
  gap: 0.5rem;
}
.t99-carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--t99-line);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s var(--t99-ease), transform 0.25s var(--t99-ease);
}
.t99-carousel-dots button[aria-current="true"] {
  background: var(--t99-accent);
  transform: scale(1.3);
}

/* ------------------------------------ FAQ -------------------------------------- */
.t99-faq-container {
  max-width: 800px;
}
.t99-accordion-item {
  border-bottom: 1px solid var(--t99-line);
}
.t99-accordion-heading {
  margin: 0;
}
.t99-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: none;
  border: none;
  padding: 1.4rem 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--t99-ink);
  cursor: pointer;
}
.t99-accordion-icon {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}
.t99-accordion-icon::before,
.t99-accordion-icon::after {
  content: "";
  position: absolute;
  background: var(--t99-accent);
  border-radius: 2px;
  transition: transform 0.35s var(--t99-ease);
}
.t99-accordion-icon::before {
  top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%);
}
.t99-accordion-icon::after {
  top: 0; left: 50%; width: 2px; height: 100%; transform: translateX(-50%);
}
.t99-accordion-trigger[aria-expanded="true"] .t99-accordion-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.t99-accordion-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--t99-ease);
}
.t99-accordion-panel p {
  padding: 0 0 1.6rem;
  color: var(--t99-muted);
  max-width: 65ch;
}

/* ------------------------------------ Garantie ---------------------------------- */
.t99-guarantee {
  background: var(--t99-ink);
  color: #fff;
}
.t99-guarantee-inner {
  text-align: center;
  max-width: 640px;
}
.t99-guarantee .t99-h2 { color: #fff; max-width: none; }
.t99-guarantee .t99-lede { color: rgba(255, 255, 255, 0.72); margin: 0 auto; }
.t99-guarantee-badge {
  display: inline-block;
  font-size: 2.6rem;
  margin-bottom: 1.2rem;
}

/* --------------------------------- CTA final -------------------------------------- */
.t99-final-cta {
  background: linear-gradient(160deg, var(--t99-accent-soft) 0%, var(--t99-bg) 55%);
}
.t99-final-cta-inner {
  text-align: center;
  max-width: 640px;
}
.t99-final-cta .t99-h2 { margin: 0 auto 2rem; max-width: none; }
.t99-price-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.t99-price-old {
  font-size: 1.4rem;
  color: var(--t99-muted);
  text-decoration: line-through;
}
.t99-price-new {
  font-family: var(--t99-font-display);
  font-size: 3.2rem;
  color: var(--t99-ink);
}
.t99-price-badge {
  background: var(--t99-accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}
.t99-promo-code {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1.4rem;
  padding: 0.5rem 1.1rem;
  border: 1.5px dashed var(--t99-accent);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--t99-ink-soft);
  background: var(--t99-accent-soft);
}
.t99-promo-code strong {
  color: var(--t99-accent-dark);
  letter-spacing: 0.04em;
}
.t99-final-cta .t99-btn-primary {
  color: #fff;
}
.t99-final-cta-note {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--t99-muted);
}

/* -------------------------------------- Footer -------------------------------------- */
.t99-footer {
  padding: 2.2rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--t99-muted);
  border-top: 1px solid var(--t99-line);
}

/* ============================== RESPONSIVE ================================= */

/* Laptop / petits desktops (1081px - 1080px et moins) */
@media (max-width: 1080px) {
  .t99-container { padding: 0 1.25rem; }
  .t99-presentation-grid { grid-template-columns: repeat(2, 1fr); }
  .t99-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .t99-recipes-grid { grid-template-columns: repeat(2, 1fr); }
  .t99-bonus-grid { grid-template-columns: repeat(3, 1fr); }
  .t99-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Tablette (≤ 820px) */
@media (max-width: 820px) {
  .t99-hero-content { padding: 6.5rem 1.5rem 4.5rem; }
  .t99-why-buy-grid { grid-template-columns: 1fr; gap: 2rem; }
  .t99-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .t99-gallery-item--wide { grid-row: span 2; grid-column: span 2; }
  .t99-bonus-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Petites tablettes / grands mobiles (≤ 680px) */
@media (max-width: 680px) {
  .t99-presentation-grid,
  .t99-cards-grid,
  .t99-recipes-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
  }
}

/* Mobile (≤ 560px) */
@media (max-width: 560px) {
  .t99-section { padding: 3.2rem 0; }
  .t99-container { padding: 0 1.1rem; }

  .t99-presentation-grid,
  .t99-cards-grid,
  .t99-recipes-grid,
  .t99-bonus-grid {
    grid-template-columns: 1fr;
  }

  .t99-hero-content { padding: 5.5rem 1.25rem 4rem; }
  .t99-hero-title { font-size: clamp(2.1rem, 10vw, 2.8rem); }
  .t99-hero-subtitle { font-size: 1rem; }
  .t99-hero-actions { flex-direction: column; align-items: stretch; gap: 0.8rem; }
  .t99-btn { justify-content: center; width: 100%; }
  .t99-scroll-cue { bottom: 1.2rem; }

  .t99-gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .t99-gallery-item--wide { grid-column: span 1; grid-row: span 1; }

  .t99-price-box { gap: 0.5rem 0.8rem; }
  .t99-price-new { font-size: 2.4rem; }
  .t99-price-old { font-size: 1.15rem; }

  .t99-testimonial { flex: 0 0 88vw; padding: 1.7rem; }

  .t99-h2 { font-size: clamp(1.6rem, 6.5vw, 2rem); max-width: none; }
  .t99-lede { margin-bottom: 1.8rem; }
}

/* Très petits écrans (≤ 380px) */
@media (max-width: 380px) {
  .t99-hero-title { font-size: 1.9rem; }
  .t99-eyebrow { letter-spacing: 0.12em; }
  .t99-price-new { font-size: 2rem; }
  .t99-btn-large { padding: 1rem 1.6rem; font-size: 1rem; }
}
