/* =======================
   GlobeKooker — style.css (clean)
   ======================= */

/* --------- Base & variables --------- */
:root{
  --header-h: 72px;
  --paper: #ffffff;
  --ink: #222;
  --muted: #6b7280;
  --brand: #b6892f;   /* gold accent */
  --card: #fafafa;
  --shadow: 0 10px 25px rgba(0,0,0,.08);
}

*{ box-sizing: border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0;
  color:var(--ink);
  background:var(--paper);
  font: 16px/1.5 "Heebo", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3{ margin:0 0 .5rem; line-height:1.2; font-family:"Cormorant Garamond", Georgia, serif; }
p{ margin:0 0 1rem; }

/* Section anchors: avoid being hidden by sticky header */
section[id]{ scroll-margin-top: calc(var(--header-h) + 12px); }

/* Utility */
.container{ width:min(1100px, 92vw); margin-inline:auto; }
.grid{ display:grid; gap:20px; }
.sr-only{
  position:absolute !important; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* =======================
   HEADER / NAV — version unique (checkbox)
   ======================= */
.site-header{
  position: sticky; top:0; z-index:40;
  background:var(--paper);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  display:flex; align-items:center; gap:.5rem;
  padding:10px 16px;
}
.site-header > *{ min-width:0; }

.site-header .brand{
  display:flex; align-items:center; gap:.4rem;
  flex:1 1 auto; min-width:0; overflow:visible;
}
.site-header .brand .logo{ width:clamp(28px,8vw,40px); height:auto; }
.brand-name{
  font-family:"Cormorant Garamond", Georgia, serif;
  line-height:1; white-space:nowrap; letter-spacing:.3px;
  font-size:clamp(14px,5.2vw,28px);
  direction:ltr; unicode-bidi:isolate-override;
}

.main-nav{ display:flex; gap:18px; margin-left:auto; }
.main-nav a{ padding:8px 6px; border-radius:8px; color:#222; }
.main-nav a.is-active{ color:var(--brand); font-weight:700; }
.main-nav a:hover{ color:var(--brand); }

.lang-switch{ margin-left:8px; }
.lang-switch select{
  padding:6px 10px; border-radius:10px; border:1px solid #e5e7eb; background:var(--paper);
}
.social-icons{ display:flex; gap:10px; margin-left:8px; }
.social-icons a{ font-size:1.15rem; opacity:.85; }
.social-icons a:hover{ opacity:1; color:var(--brand); }

/* checkbox + bouton */
.nav-toggle{ position:absolute; left:-9999px; }
.menu-toggle{
  display:none;
  margin-left:auto;
  border:0; background:var(--paper); padding:8px 10px; border-radius:10px;
  font-size:1.25rem; cursor:pointer;
  z-index:1002;
}

/* Scrim */
.nav-scrim{
  position: fixed; inset: var(--header-h) 0 0 0;
  background: rgba(0,0,0,.38);
  opacity:0; pointer-events:none;
  transition: opacity .2s ease;
  z-index:1000;
}

@media (max-width: 900px){
  .menu-toggle{ display:block; }
  .main-nav{
    position: fixed; inset: var(--header-h) 0 auto 0;
    background:var(--paper); border-top:1px solid #eee;
    transform: translateY(-120%);
    transition: transform .28s ease, opacity .2s ease;
    flex-direction: column; padding:14px 16px; gap:10px;
    z-index:1001;
    opacity:.001; pointer-events:none;
  }
  #nav-toggle:checked ~ .main-nav{
    transform: translateY(0); opacity:1; pointer-events:auto;
  }
  #nav-toggle:checked ~ .nav-scrim{
    opacity:1; pointer-events:auto;
  }
  .lang-switch{ margin-left:0; }
}

/* RTL support (auto via dir="rtl") */
html[dir="rtl"] body{ direction:rtl; text-align:initial; }
html[dir="rtl"] .main-nav{ margin-left:0; margin-right:auto; }
html[dir="rtl"] .note{ border-left:none; border-right:4px solid var(--brand); }
html[dir="rtl"] .brand-name{ direction:ltr; unicode-bidi:isolate-override; }
.ltr{ direction:ltr; unicode-bidi:bidi-override; } /* utilitaire pour numéros/emails */

@media (max-width: 380px){
  .site-header{ flex-wrap:wrap; }
  .site-header .brand{ flex-basis:100%; justify-content:center; }
}

/* =======================
   HERO
   ======================= */
.hero{
  position:relative;
  height: clamp(360px, 58vw, 560px);
  background: url("images/hero.jpg") center/cover no-repeat;
  display:grid; place-items:center;
  text-align:center; color:#fff;
}
.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.55));
}
.hero-content{ position:relative; z-index:2; padding:0 16px; }
.hero-title{ font-size: clamp(2.2rem, 6vw, 3.6rem); font-weight:700; letter-spacing:.5px; }
.hero-slogan{
  font-size: clamp(1.2rem, 3.2vw, 1.8rem);
  font-style: italic;
  position: relative;
  display: inline-block;
  padding: 0 .15em;
}
/* Guillemets FR par défaut */
.hero-slogan::before{ content: "«\202F"; }
.hero-slogan::after { content: "\202F»"; }
/* Guillemets EN/HE */
html[lang="en"] .hero-slogan::before,
html[lang="he"] .hero-slogan::before{ content: "“"; }
html[lang="en"] .hero-slogan::after,
html[lang="he"] .hero-slogan::after { content: "”"; }

/* =======================
   INTRO
   ======================= */
#intro{ padding: 42px 0 34px; }
#intro .intro-container{
  width: min(900px, 92vw);
  margin: 0 auto;
  background:var(--paper);
  border: 1px solid #eeeeee;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(0,0,0,.06);
  padding: clamp(18px, 3.4vw, 28px) clamp(16px, 3.2vw, 30px);
  text-align: center;
  position: relative;
}
#intro .intro-container::before{
  content:"";
  position:absolute; left:50%; transform:translateX(-50%); top:-10px;
  width: clamp(80px, 18vw, 220px); height: 8px; background:#000; border-radius:6px;
}
#intro .intro-text:first-of-type{
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 3.2vw, 1.75rem);
  line-height: 1.35;
  font-style: italic;
  color:#111; margin: 0 0 .6rem;
  position: relative; display:inline-block; padding: 0 .15em;
}
#intro .intro-text:first-of-type::before{ content:"\00AB\202F"; }
#intro .intro-text:first-of-type::after { content:"\202F\00BB"; }
html[lang="en"] #intro .intro-text:first-of-type::before,
html[lang="he"] #intro .intro-text:first-of-type::before{ content:"\201C"; }
html[lang="en"] #intro .intro-text:first-of-type::after,
html[lang="he"] #intro .intro-text:first-of-type::after { content:"\201D"; }
#intro .intro-text:last-of-type{
  font-size: clamp(1.02rem, 2.4vw, 1.15rem);
  color:#2b2b2b; margin: .2rem auto 0; max-width: 60ch;
}
#intro .intro-text strong{ color:#000; font-weight:700; }
#intro .intro-text em{ color:#444; font-style:italic; }
@media (max-width:520px){
  #intro .intro-container{ border-radius: 16px; }
  #intro .intro-text:last-of-type{ max-width: 66ch; }
}
html[dir="rtl"] #intro .intro-container{ direction: rtl; }
html[dir="rtl"] #intro .intro-text:first-of-type{ direction: rtl; }

/* =======================
   ABOUT
   ======================= */
.about{ padding:56px 0; background:var(--paper); }
.about-wrap{
  width:min(1100px, 92vw); margin:0 auto;
  display:grid; gap:28px; grid-template-columns: 1.1fr .9fr; align-items:center;
}
.about-text p{ color:#333; }
.about-media img{ border-radius:18px; box-shadow: var(--shadow); }
.about-photo--mobile{ display:none; border-radius:16px; margin:14px 0; }

.option-badge{
  display:inline-block; background:var(--brand); color:#fff;
  padding:4px 10px; border-radius:999px; font-size:.8rem; margin:12px 0 6px;
}
.h3{ font: 700 1.35rem "Cormorant Garamond", Georgia, serif; margin:.2rem 0 .4rem; }
.accomp-list{ margin:.4rem 0 1rem; padding-left:1rem; list-style:disc; }
.note{ background:#f7f7f7; border-left:4px solid var(--brand); padding:10px 12px; border-radius:8px; }
.cta-inline .btn-ghost{
  display:inline-block; border:1.5px solid var(--brand); color:var(--brand);
  padding:10px 16px; border-radius:999px; transition:.2s;
}
.cta-inline .btn-ghost:hover{ background:var(--brand); color:#fff; }

@media (max-width: 900px){
  .about-wrap{ grid-template-columns: 1fr; }
  .about-media{ display:none; }
  .about-photo--mobile{ display:block; }
}

/* =======================
   SLOGAN BAND
   ======================= */
.slogan-band{
  background:#0e0e0e; color:#fff; text-align:center;
  padding:18px 12px; font: 600 1.05rem "Cormorant Garamond", serif;
}

/* =======================
   CONCEPT
   ======================= */
.concept{ padding:56px 0 40px; }
.concept .grid{ grid-template-columns: repeat(3, 1fr); }
.concept .card{
  background:var(--card); padding:16px; border-radius:16px; box-shadow: var(--shadow);
}
.card-img{ margin-top:10px; border-radius:12px; }
@media (max-width: 900px){ .concept .grid{ grid-template-columns: 1fr; } }

/* =======================
   QUOTE
   ======================= */
.quote-bridge{ padding:36px 12px; }
.section-quote{
  width:min(900px, 92vw); margin:0 auto;
  text-align:center; font-size:1.15rem; color:#333;
}
.section-quote blockquote{ margin:0; font-style:italic; }

/* =======================
   JOURNÉE
   ======================= */
.journee{ padding:48px 0; background:var(--paper); }
.meals{ display:grid; gap:20px; grid-template-columns: repeat(3, 1fr); }
.meal-card{
  background:var(--paper); border-radius:16px; overflow:hidden; box-shadow: var(--shadow);
}
.meal-card img{ aspect-ratio: 4 / 3; object-fit:cover; }
.meal-content{ padding:12px 14px; }
@media (max-width: 900px){ .meals{ grid-template-columns: 1fr; } }

/* =======================
   PLATS (grille)
   ======================= */
.plats{ padding:56px 0 40px; background:var(--paper); }
.plats > h2, .plats > .plats-sub{ text-align:center; }
.plats-sub{ color:var(--muted); margin-bottom:20px; }

.plats-grid{
  width:min(1100px, 92vw); margin:0 auto;
  display:grid; gap:16px;
  grid-template-columns: repeat(4, 1fr);
}
.plats-card{ background:var(--paper); border-radius:14px; box-shadow: var(--shadow); overflow:hidden; }
.plats-card img{ width:100%; aspect-ratio: 4/3; object-fit:cover; }
.plats-card figcaption{ padding:10px 12px; font-weight:600; text-align:center; }

@media (max-width: 1100px){ .plats-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px){
  .plats-grid{ display:flex; gap:12px; overflow-x:auto; scroll-snap-type:x mandatory; padding:4px 6px 12px; }
  .plats-card{ scroll-snap-align:center; min-width:80%; }
}
@media (max-width: 460px){ .plats-grid{ grid-template-columns: 1fr; } }

/* =======================
   DESTINATIONS (masonry)
   ======================= */
.destinations{ padding:56px 0; }
.destinations h2{ text-align:center; margin-bottom:16px; }
.masonry{
  width:min(1100px, 92vw); margin:0 auto;
  column-count: 3; column-gap: 16px;
}
.tile{ break-inside: avoid; margin-bottom:16px; background:var(--paper); border-radius:14px; box-shadow: var(--shadow); overflow:hidden; }
.tile img{ width:100%; height:auto; display:block; }
.tile h3{ padding:10px 12px; font-size:1.05rem; text-align:center; }

@media (max-width: 900px){ .masonry{ column-count:2; } }
@media (max-width: 520px){ .masonry{ column-count:1; } }

/* =======================
   “IDÉES DE LOCATION”
   ======================= */
.experience{ padding:48px 0; background:var(--paper); }
.experience h2{ text-align:center; margin-bottom:16px; }
.experience .grid.cards{ width:min(1100px, 92vw); margin:0 auto; grid-template-columns: repeat(3, 1fr); }
.experience .card{ background:var(--paper); border-radius:16px; box-shadow: var(--shadow); overflow:hidden; }
.experience .card img{ width:100%; aspect-ratio: 4/3; object-fit:cover; }
.experience .card h3{ padding:10px 12px 0; }
.experience .card p{ padding:0 12px 14px; color:#333; }
@media (max-width: 900px){ .experience .grid.cards{ grid-template-columns: 1fr; } }

/* =======================
   TITRES & ALIGNEMENTS (communs)
   ======================= */
:where(h1,h2,h3){ text-align:center; }

/* H2 sections avec surlignage noir */
.about h2,
.plats h2,
.destinations h2,
.experience h2,
.contact-section h2,
.faq h2{
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto 28px;
  text-align: center;
}
@supports not (width: fit-content){
  .about h2, .plats h2, .destinations h2, .experience h2, .contact-section h2, .faq h2{ display: table; }
}
.about h2::after,
.plats h2::after,
.destinations h2::after,
.experience h2::after,
.contact-section h2::after,
.faq h2::after{
  content: "";
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: -10px; width: clamp(90px, 18vw, 220px); height: 8px; background: #000; border-radius: 6px;
}

/* H3 “trait noir” unifié */
.concept .card h3,
.journee .meal-card h3,
.experience .card h3,
.masonry .tile h3{
  position: relative;
  display: block;
  width: fit-content;
  margin: .5rem auto 1.1rem;
  text-align: center;
}
@supports not (width: fit-content){
  .concept .card h3,
  .journee .meal-card h3,
  .experience .card h3,
  .masonry .tile h3{
    display: table; margin-inline:auto;
  }
}
.concept .card h3::after,
.journee .meal-card h3::after,
.experience .card h3::after,
.masonry .tile h3::after{
  content:"";
  position:absolute; left:50%; transform:translateX(-50%);
  bottom:-8px; width: clamp(60px, 14vw, 140px); height: 6px; background:#000; border-radius:5px;
}

/* =======================
   LIGHTBOX (unifiée)
   ======================= */
.lightbox{
  display:none;
  position:fixed; inset:0; background:rgba(0,0,0,.8);
  z-index:60;
}
.lightbox img.lightbox-content{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  max-width:min(92vw, 1100px); max-height:82vh; border-radius:12px; box-shadow:0 10px 30px rgba(0,0,0,.4);
}
#lightbox-caption{
  position:absolute; left:50%; transform:translateX(-50%);
  bottom:24px; color:#fff; font-weight:600; text-align:center; width:90vw;
}
.lightbox .close{
  position:absolute; top:14px; right:16px; font-size:2rem; color:#fff;
  background:transparent; border:0; cursor:pointer; z-index:1001;
}

/* =======================
   CONTACT
   ======================= */
.contact-section{ padding:56px 0; background:var(--paper); width:min(900px, 92vw); margin:0 auto; }
.contact-form{
  background:var(--paper); border:1px solid #eee; border-radius:16px; box-shadow: var(--shadow);
  padding:16px;
}
.contact-form .form-row{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.contact-form input,
.contact-form textarea{
  width:100%; padding:12px 12px; border:1px solid #e5e7eb; border-radius:12px; font:inherit;
}
.contact-form button{
  margin-top:12px; padding:12px 16px; border-radius:12px; border:0;
  background:var(--brand); color:#fff; font-weight:700; cursor:pointer;
}
.contact-form button:hover{ filter:brightness(.95); }

.whatsapp-button{
  display:inline-flex; align-items:center; gap:8px;
  margin-top:14px; padding:10px 14px; border-radius:999px;
  background:#25D366; color:#fff; font-weight:700;
}

/* Floating WhatsApp bubble */
.wa-float{
  position:fixed; right:18px; bottom:18px; z-index:45;
  background:#25D366; color:#fff; display:flex; align-items:center; gap:8px;
  padding:10px 14px; border-radius:999px; box-shadow:0 8px 20px rgba(37,211,102,.35);
  font-weight:700;
}
.wa-float i{ font-size:1.2rem; }
.wa-float:hover{ filter:brightness(.95); }

/* =======================
   FOOTER
   ======================= */
.site-footer{ background:#0b0b0b; color:#e7e7e7; padding:28px 16px; margin-top:40px; }
.footer-inner{ width:min(1100px, 92vw); margin:0 auto; display:grid; gap:20px; grid-template-columns: 1.1fr .9fr .9fr; }
.footer-logo{ width:108px; border-radius:8px; margin-bottom:8px; } /* x2 comme souhaité */
.footer-title{ font: 700 1.15rem "Cormorant Garamond", Georgia, serif; color:#fff; margin-bottom:6px; }
.footer-nav a{ color:#e7e7e7; }
.footer-nav a:hover{ color:#fff; }
.footer-contact a{ color:#e7e7e7; text-decoration:underline; text-underline-offset:3px; }
.footer-contact a:hover{ color:#fff; }
.footer-contact i{ width:18px; text-align:center; margin-right:6px; }
@media (max-width: 900px){ .footer-inner{ grid-template-columns:1fr; } }

/* =======================
   FAQ (unifiée)
   ======================= */
.faq{ padding:56px 0; background:var(--paper); }
.faq .container{ width:min(900px, 92vw); margin:0 auto; text-align:center; }

.faq h2{
  position: relative;
  display: block; width: fit-content;
  margin: 0 auto 24px;
}
@supports not (width: fit-content){ .faq h2{ display: table; } }
.faq h2::after{
  content:"";
  position:absolute; left:50%; transform:translateX(-50%);
  bottom:-10px; width: clamp(90px, 18vw, 220px); height: 8px; background:#000; border-radius:6px;
}

.faq-item{
  background:var(--paper);
  border:1px solid #e5e7eb;
  border-radius:14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
  margin:12px 0;
  overflow:hidden;
}
.faq-item > summary{
  list-style:none; cursor:pointer;
  padding:14px 16px;
  display:flex; align-items:center; gap:10px; justify-content:space-between;
  font-weight:700; position: relative; padding-right: 40px;
}
.faq-item > summary::-webkit-details-marker{ display:none; }
.faq-item > summary .badge{
  background:#f1f5f9; color:#111; font-weight:700;
  padding:4px 10px; border-radius:999px; font-size:.8rem;
}
.faq-item[open] > summary{ border-bottom:1px solid #eee; }
.faq-item .faq-content{ padding:14px 16px; color:#333; line-height:1.55; }

/* chevron animé */
.faq-item > summary::after{
  content:"";
  position:absolute; right:16px; top:50%; transform:translateY(-50%) rotate(0deg);
  width:10px; height:10px; border-right:2px solid #111; border-bottom:2px solid #111;
  transition: transform .2s ease; transform-origin:50% 50%; clip-path: inset(0 round 2px);
}
.faq-item[open] > summary::after{ transform: translateY(-50%) rotate(45deg); }

/* =======================
   INTERACTIONS / ACCESSIBILITÉ
   ======================= */
.btn-ghost{ outline:none; }
.btn-ghost:focus-visible{
  box-shadow: 0 0 0 3px rgba(182,137,47,.25);
}
.main-nav a:focus-visible,
.footer-nav a:focus-visible,
.footer-contact a:focus-visible{
  outline: 3px solid rgba(182,137,47,.35);
  outline-offset: 3px; border-radius: 6px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}
/* Mini-carrousel horizontal (cartes) */
.mini-carousel{
  display:flex; gap:.75rem; overflow-x:auto;
  scroll-snap-type:x mandatory; padding:.25rem .25rem .5rem; margin-top:.5rem;
}
.mini-carousel figure{
  flex:0 0 66%; max-width:280px; scroll-snap-align:start;
  background:var(--card, #fff); border-radius:10px; overflow:hidden;
  box-shadow:var(--shadow, 0 10px 25px rgba(0,0,0,.08)); margin:0;
}
.mini-carousel img{ width:100%; height:150px; object-fit:cover; display:block; }
.mini-carousel figcaption{ font-size:.85rem; padding:.4rem .6rem .6rem; color:var(--muted, #6b7280); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.mini-carousel::-webkit-scrollbar{ height:6px; }
.mini-carousel::-webkit-scrollbar-thumb{ background:rgba(0,0,0,.15); border-radius:10px; }
@media (min-width: 720px){
  .mini-carousel figure{ flex-basis:40%; }
  .mini-carousel img{ height:160px; }
}
/* === HOTFIX 2025-09-29 — Veg block: slider + captions centered === */

/* 1) Slider horizontal (swipe/touch sur mobile, slide sur tous supports) */
#veg-experience .mini-carousel{
  display: flex;
  gap: .75rem;
  overflow-x: auto;              /* défilement horizontal */
  overflow-y: hidden;
  scroll-snap-type: x mandatory; /* effet "slide" qui accroche */
  -webkit-overflow-scrolling: touch;
  padding: .25rem 0 .5rem;
}

/* Chaque item "occupe" une largeur adaptée : 1 à 3 visibles selon l'écran */
#veg-experience .mini-carousel figure{
  flex: 0 0 75%;                 /* mobile: ~1 carte à l'écran */
  max-width: 520px;
  scroll-snap-align: start;
  margin: 0;
  background: var(--card, #fff);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow, 0 10px 25px rgba(0,0,0,.08));
}

@media (min-width: 640px){
  #veg-experience .mini-carousel figure{ flex-basis: 50%; }  /* tablette: 2 cartes */
}
@media (min-width: 1024px){
  #veg-experience .mini-carousel figure{ flex-basis: 33%; }  /* desktop: 3 cartes */
}

/* Hauteur d'image maîtrisée pour éviter l'effet "pavé" trop long */
#veg-experience .mini-carousel img{
  width: 100%;
  height: 180px;                 /* mobile */
  object-fit: cover;
  display: block;
}
@media (min-width: 720px){
  #veg-experience .mini-carousel img{ height: 200px; }       /* tablette */
}
@media (min-width: 1200px){
  #veg-experience .mini-carousel img{ height: 220px; }       /* desktop */
}

/* 2) Légendes centrées */
#veg-experience .mini-carousel figcaption{
  text-align: center;
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted, #6b7280);
  padding: .45rem .6rem .6rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Barre de scroll discrète (optionnel) */
#veg-experience .mini-carousel::-webkit-scrollbar{ height: 6px; }
#veg-experience .mini-carousel::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,.15);
  border-radius: 10px;
}
/* === HOTFIX — Centrage du pavé + recadrage image "mix" === */

/* Centrer la section et la carte sur desktop */
#veg-experience{
  max-width: 1200px;     /* même logique que tes sections "wrap" */
  margin: 0 auto;
  padding: 0 16px;
}
#veg-experience .grid.cards{
  display: block;        /* on neutralise la grille pour 1 seule carte */
}
#veg-experience .card{
  max-width: 960px;      /* largeur contenue premium */
  margin: 0 auto;        /* centre le pavé horizontalement */
}

/* Le slider conserve le comportement "slide" (déjà posé plus haut) */
#veg-experience .mini-carousel{
  margin-left: auto;     /* centre visuellement le carrousel */
  margin-right: auto;
}

/* Légendes déjà centrées dans le hotfix précédent */

/* Recadrage spécifique de l'image "mix" (trop zoomée) */
#veg-experience .mini-carousel img[src*="mix"]{
  object-position: 50% 30%;   /* remonte le cadrage (ajuste 20–40% si besoin) */
  /* Alternative si tu veux encore moins de zoom :
     object-fit: contain; background:#000;  (à utiliser seulement si tu acceptes des bandes) */
}

/* (Optionnel) Si tu veux aussi centrer le titre + paragraphe du pavé :
#veg-experience .card h3,
#veg-experience .card p { text-align:center; }
*/

