/* page-nos-vins.css — styles spécifiques à la page page-nos-vins (v17) */

/* ── INTRO APPELLATION ── */
.appellation-intro { background:#FDFAF4; padding:60px; max-width:1300px; margin:0 auto 2px; display:grid; grid-template-columns:1fr 2fr; gap:60px; align-items:center; border-bottom:1px solid rgba(107,31,42,.08); }
.appellation-label { font-family:'Montserrat',sans-serif; font-size:10px; letter-spacing:4px; text-transform:uppercase; color:var(--or); margin-bottom:10px; }
.appellation-name  { font-family:'Cormorant Garamond',serif; font-size:36px; font-weight:300; color:var(--bordeaux); }
.appellation-desc  { font-family:'Lato',sans-serif; font-size:15px; line-height:1.8; color:#5a4a3a; font-weight:300; }

/* ── GRILLE VINS ── */
#vins { padding:80px 60px 120px; background:#F5F0E8; }
.vins-header { max-width:1300px; margin:0 auto 60px; display:flex; justify-content:space-between; align-items:flex-end; }
.vins-filter { display:flex; gap:8px; flex-wrap:wrap; }
.filter-btn { font-family:'Montserrat',sans-serif; font-size:10px; letter-spacing:2px; text-transform:uppercase; padding:8px 18px; background:none; border:1px solid rgba(107,31,42,.3); color:#6B1F2A; cursor:pointer; transition:all .3s; }
.filter-btn:hover, .filter-btn.active { border-color:var(--bordeaux); color:var(--bordeaux); background:rgba(107,31,42,.06); }
.vins-grid { max-width:1300px; margin:0 auto; display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }

/* Carte vin — maintenant un <a> pour navigation directe vers la page dédiée */
.vin-card { position:relative; overflow:hidden; background:#111; aspect-ratio:3/4; display:block; text-decoration:none; color:inherit; }
.vin-card-bg { position:absolute; inset:0; overflow:hidden; transition:transform .7s var(--transition),filter .5s; filter:brightness(.55) saturate(.7); }
.vin-card-bg img { width:100%; height:100%; object-fit:cover; object-position:center; display:block; }
.vin-card:hover .vin-card-bg { transform:scale(1.08); filter:brightness(.4) saturate(.5); }
.vin-card-content { position:absolute; inset:0; padding:36px; display:flex; flex-direction:column; justify-content:flex-end; }
.vin-appellation  { font-family:'Montserrat',sans-serif; font-size:9px; letter-spacing:3px; text-transform:uppercase; color:#D4AF55; margin-bottom:8px; }
.vin-name         { font-family:'Cormorant Garamond',serif; font-size:28px; font-weight:300; color:var(--blanc); line-height:1.1; margin-bottom:6px; }
.vin-card-cepages { font-family:'Lato',sans-serif; font-size:12px; font-weight:300; letter-spacing:.5px; color:rgba(255,255,255,.65); font-style:italic; margin-bottom:12px; }
.vin-type-dot { width:10px; height:10px; border-radius:50%; display:inline-block; margin-right:8px; }
.vin-type { font-family:'Montserrat',sans-serif; font-size:10px; letter-spacing:2px; color:rgba(255,255,255,.85); text-transform:uppercase; display:flex; align-items:center; margin-bottom:20px; }
.vin-hover { max-height:0; overflow:hidden; transition:max-height .5s var(--transition); }
.vin-card:hover .vin-hover { max-height:200px; }
.vin-desc { font-family:'Lato',sans-serif; font-size:14px; line-height:1.6; color:rgba(255,255,255,.85); margin-bottom:16px; }
.vin-link { font-family:'Montserrat',sans-serif; font-size:10px; letter-spacing:2px; color:var(--or); text-decoration:none; text-transform:uppercase; display:inline-flex; align-items:center; gap:8px; }
.vin-link-arrow { transition:transform .3s; }
.vin-card:hover .vin-link-arrow { transform:translateX(6px); }
.vin-medal { position:absolute; top:20px; right:20px; width:48px; height:48px; background:var(--or); clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%); display:flex; align-items:center; justify-content:center; }
.vin-medal-star { color:var(--noir); font-size:18px; }

/* Filtrage : visibility + opacity pour éviter layout shift */
.vin-card { transition:opacity .3s ease, visibility .3s ease; }
.vin-card[aria-hidden="true"] { visibility:hidden; opacity:0; pointer-events:none; }

/* ════════════════════════════════════════════════
   PAGE DÉDIÉE VIN (v17) — template vin-detail
════════════════════════════════════════════════ */

/* ── HERO ── v32 : split diagonal, bouteille grand format ── */

/*
  ARCHITECTURE DU HÉRO :
  • Panneau GAUCHE (42%) : noir profond + clip diagonal → titre, appellation, type
  • Panneau DROITE (58%) : ivoire + fond atmosphérique → bouteille pleine hauteur
  • Barre de couleur en bas : signature chromatique de la cuvée
*/

.vin-detail-hero {
  position: relative;
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: clamp(640px, 92vh, 980px);
  overflow: hidden;
}

/* ── Panneau GAUCHE — noir absolu avec bord diagonal ── */
.vin-detail-hero-left {
  position: relative;
  background: #0d0b09;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 56px 52px 72px 72px;
  z-index: 2;
  /* Découpe diagonale côté droit : chevauche légèrement la droite */
  clip-path: polygon(0 0, 100% 0, calc(100% - 72px) 100%, 0 100%);
  margin-right: -72px;
  color: #fff;
}

/* Grain de texture subtil sur le fond noir */
.vin-detail-hero-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .03;
  pointer-events: none;
  z-index: 0;
}

/* Ligne verticale dorée — repère gauche */
.vin-detail-hero-left::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(184,151,58,.55) 25%,
    rgba(184,151,58,.55) 75%,
    transparent
  );
  z-index: 1;
}

/* Monogramme décoratif en très grand fond */
.vin-detail-hero::before {
  content: 'CG';
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(200px, 28vw, 380px);
  font-weight: 300;
  color: rgba(255,255,255,.022);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -8px;
  z-index: 1;
  white-space: nowrap;
}

/* Fil d'ariane — ancré en haut */
.vin-detail-breadcrumb {
  position: absolute;
  top: 44px;
  left: 72px;
  right: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.vin-detail-breadcrumb a,
.vin-detail-breadcrumb span {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  text-decoration: none;
  transition: color .2s;
}
.vin-detail-breadcrumb a:hover { color: var(--or); }
.vin-detail-breadcrumb-sep { color: rgba(255,255,255,.18) !important; font-size: 11px; }

/* Conteneur texte bas-gauche */
.vin-detail-hero-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Badge appellation avec tiret précédent */
.vin-detail-appellation-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.vin-detail-appellation-badge::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--or);
  opacity: .6;
  flex-shrink: 0;
}

/* Titre cuvée — très grand, typographie raffinée */
.vin-detail-hero .vin-detail-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(60px, 6.2vw, 96px);
  font-weight: 300;
  color: #fff !important;
  line-height: .95;
  margin-bottom: 30px;
  letter-spacing: -1px;
}
/* Le second mot (souvent la partie distinctive) en italique */
.vin-detail-hero .vin-detail-h1 em {
  font-style: italic;
  color: rgba(255,255,255,.72);
}

/* Filet or séparateur */
.vin-hero-rule {
  width: 36px;
  height: 1px;
  background: var(--or);
  margin-bottom: 22px;
  opacity: .65;
}

/* Ligne type + médaille */
.vin-detail-type-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.vin-detail-type-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
  display: flex;
  align-items: center;
  gap: 9px;
}
.vin-detail-medal-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0d0b09;
  background: var(--or);
  padding: 5px 14px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  white-space: nowrap;
}

/* ── v39 : Buy box — bouton d'achat (lien direct vers la fiche produit WooCommerce) ── */
.vin-buy-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}
.vin-buy-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--blanc, #fff);
}
.vin-buy-price .woocommerce-Price-amount { color: var(--or); }
.vin-buy-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--noir);
  background: var(--or);
  padding: 15px 32px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background .3s, transform .2s;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.vin-buy-btn:hover { background: #cfa84a; transform: translateX(2px); }
.vin-buy-btn:focus-visible { outline: 2px solid var(--or); outline-offset: 3px; }
.vin-buy-stock-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
@media (max-width: 600px) {
  .vin-buy-box { gap: 14px; margin-top: 22px; }
  .vin-buy-btn { padding: 14px 26px; width: 100%; justify-content: center; }
}

/* ── Panneau DROITE — ivoire, bouteille en pleine lumière ── */
.vin-detail-hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: var(--ivoire);
}

/* Fond atmosphérique léger selon le type de vin */
.vin-detail-hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 50% at 50% 105%, rgba(184,151,58,.14) 0%, transparent 65%),
    radial-gradient(ellipse 55% 55% at 65% 8%,   rgba(212,175,85,.06) 0%, transparent 55%);
}
.vin-detail-hero[data-type="rose"] .vin-detail-hero-right::before {
  background:
    radial-gradient(ellipse 90% 50% at 50% 105%, rgba(232,160,154,.18) 0%, transparent 65%),
    radial-gradient(ellipse 55% 55% at 65% 8%,   rgba(232,160,154,.07) 0%, transparent 55%);
}
.vin-detail-hero[data-type="rouge"] .vin-detail-hero-right::before {
  background:
    radial-gradient(ellipse 90% 50% at 50% 105%, rgba(107,31,42,.16) 0%, transparent 65%),
    radial-gradient(ellipse 55% 55% at 65% 8%,   rgba(139,26,42,.06) 0%, transparent 55%);
}

/* Mot décoratif en grand fond (type de vin) */
.vin-detail-bottle-spotlight {
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(110px, 15vw, 200px);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -4px;
  z-index: 0;
  /* Texte via CSS — on réutilise l'élément existant du DOM */
  color: transparent;
}
/* Variantes par type */
.vin-detail-hero[data-type="blanc"]  .vin-detail-bottle-spotlight::after {
  content: 'Blanc';
  color: rgba(180,150,60,.07);
}
.vin-detail-hero[data-type="rose"]   .vin-detail-bottle-spotlight::after {
  content: 'Rosé';
  color: rgba(200,100,110,.08);
}
.vin-detail-hero[data-type="rouge"]  .vin-detail-bottle-spotlight::after {
  content: 'Rouge';
  color: rgba(100,20,30,.07);
}

/* ── Bouteille — grand format, naturelle, sans contrainte de largeur ── */
.vin-detail-bottle-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: 0;
}

.vin-detail-hero-bottle {
  display: block;
  /* Hauteur généreuse — la bouteille remplit presque toute la hauteur du héro */
  height: clamp(540px, 91vh, 1000px);
  /* Pas de max-width contraignant : la bouteille s'affiche à sa taille naturelle */
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  /* Ombres douces et réalistes sur fond clair */
  filter:
    drop-shadow(-16px 0 48px rgba(0,0,0,.09))
    drop-shadow(16px  0 48px rgba(0,0,0,.07))
    drop-shadow(0   56px 80px rgba(0,0,0,.14));
  transition:
    transform 1s  cubic-bezier(.23,1,.32,1),
    filter    .6s ease;
  transform-origin: bottom center;
}

/* Ombre colorée subtile selon le type */
.vin-detail-hero[data-type="rose"]  .vin-detail-hero-bottle {
  filter:
    drop-shadow(-16px 0 48px rgba(0,0,0,.08))
    drop-shadow(0   56px 80px rgba(0,0,0,.13))
    drop-shadow(0    0  70px rgba(232,160,154,.10));
}
.vin-detail-hero[data-type="blanc"] .vin-detail-hero-bottle {
  filter:
    drop-shadow(-16px 0 48px rgba(0,0,0,.08))
    drop-shadow(0   56px 80px rgba(0,0,0,.13))
    drop-shadow(0    0  70px rgba(212,175,85,.08));
}
.vin-detail-hero[data-type="rouge"] .vin-detail-hero-bottle {
  filter:
    drop-shadow(-16px 0 48px rgba(0,0,0,.08))
    drop-shadow(0   56px 80px rgba(0,0,0,.13))
    drop-shadow(0    0  70px rgba(107,31,42,.12));
}

/* Hover : légère élévation */
.vin-detail-hero:hover .vin-detail-hero-bottle {
  transform: translateY(-18px) scale(1.012);
  filter:
    drop-shadow(-20px 0 60px rgba(0,0,0,.12))
    drop-shadow(20px  0 60px rgba(0,0,0,.09))
    drop-shadow(0   80px 100px rgba(0,0,0,.18));
}

/* Ellipse reflet au sol (gardé dans DOM mais simplifié) */
.vin-detail-bottle-floor {
  width: 90px;
  height: 10px;
  border-radius: 50%;
  margin-top: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.12) 0%, transparent 100%);
  filter: blur(6px);
  transition: transform 1s cubic-bezier(.23,1,.32,1), opacity .6s;
  flex-shrink: 0;
}
.vin-detail-hero[data-type="rose"]  .vin-detail-bottle-floor {
  background: radial-gradient(ellipse at center, rgba(200,120,120,.22) 0%, transparent 100%);
}
.vin-detail-hero[data-type="blanc"] .vin-detail-bottle-floor {
  background: radial-gradient(ellipse at center, rgba(180,150,60,.2) 0%, transparent 100%);
}
.vin-detail-hero[data-type="rouge"] .vin-detail-bottle-floor {
  background: radial-gradient(ellipse at center, rgba(107,31,42,.22) 0%, transparent 100%);
}
.vin-detail-hero:hover .vin-detail-bottle-floor {
  transform: scaleX(.7);
  opacity: .55;
}

/* Placeholder si pas d'image */
.vin-detail-hero-bottle-placeholder {
  width: 80px;
  height: 380px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 6px;
  background: rgba(0,0,0,.03);
}

/* ── Barre chromatique bas de page — signature de la cuvée ── */
.vin-detail-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 10;
  pointer-events: none;
}
.vin-detail-hero[data-type="rose"]::after  { background: linear-gradient(90deg, #0d0b09 42%, #E8A09A 42%); }
.vin-detail-hero[data-type="blanc"]::after { background: linear-gradient(90deg, #0d0b09 42%, #D4AF55 42%); }
.vin-detail-hero[data-type="rouge"]::after { background: linear-gradient(90deg, #0d0b09 42%, #8B1A2A 42%); }

/* Supprime l'ancien bg qui n'est plus utilisé */
.vin-detail-hero-bg { display: none; }

/* Corps principal */
.vin-detail-body {
  background: var(--ivoire);
}

/* Description grande */
.vin-detail-desc-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 60px 60px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.vin-detail-desc-left {
  position: sticky;
  top: 100px;
}
.vin-detail-desc-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #7B3040;
  margin-bottom: 18px;
}
.vin-detail-aromes-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--bordeaux);
  line-height: 1.6;
  font-style: italic;
}
.vin-detail-description {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  line-height: 1.85;
  color: #5a4a3a;
  font-weight: 300;
  margin-bottom: 48px;
}

/* Grille technique */
.vin-detail-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(107,31,42,.08);
  border: 1px solid rgba(107,31,42,.08);
  margin-bottom: 24px;
}
.vin-detail-tech-cell {
  background: #FDFAF4;
  padding: 20px 22px;
}
.vin-detail-tech-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7B3040;
  margin-bottom: 7px;
}
.vin-detail-tech-val {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--noir);
  font-weight: 300;
}

/* Élevage */
.vin-detail-elevage {
  padding: 18px 22px;
  background: rgba(107,31,42,.04);
  border-left: 2px solid var(--or);
  margin-bottom: 28px;
}
.vin-detail-elevage-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7B3040;
  margin-bottom: 6px;
}
.vin-detail-elevage-val {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: var(--noir);
  font-weight: 300;
}

/* Médaille détail */
.vin-detail-medaille {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 10px 18px;
  background: rgba(184,151,58,.08);
  border: 1px solid rgba(184,151,58,.25);
}
.vin-detail-medaille-star {
  color: var(--or);
  font-size: 16px;
}
.vin-detail-medaille-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bordeaux);
  font-weight: 600;
}

/* Accords mets & vins — liste intégrée dans la fiche technique (v18) */
.vin-detail-accords-list {
  margin-top: 8px;
}
.vin-detail-accord-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 0.5px solid rgba(107,31,42,.1);
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #5a4a3a;
  line-height: 1.3;
}
.vin-detail-accord-item:last-child { border-bottom: none; }
.vin-detail-accord-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--or);
  flex-shrink: 0;
}

/* Navigation inter-vins */
/* Navigation inter-vins — v23 : fond bordeaux sombre pour se distinguer du footer */
.vin-detail-nav {
  background: #3a0e15;
  border-top: 2px solid var(--or);
  padding: 0;
}
.vin-detail-nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
}
.vin-detail-nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 40px;
  text-decoration: none;
  transition: background .25s;
  border-right: 1px solid rgba(255,255,255,.1);
}
.vin-detail-nav-link:hover { background: rgba(0,0,0,.15); }
.vin-detail-nav-link.next { justify-content: flex-end; border-right: none; border-left: 1px solid rgba(255,255,255,.1); }
.vin-detail-nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 40px;
  text-decoration: none;
  border-left: 1px solid rgba(255,255,255,.1);
  border-right: 1px solid rgba(255,255,255,.1);
  transition: background .25s;
}
.vin-detail-nav-center:hover { background: rgba(0,0,0,.15); }
.vin-detail-nav-arrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  color: rgba(255,255,255,.45);
  transition: color .2s, transform .2s;
}
.vin-detail-nav-link:hover .vin-detail-nav-arrow,
.vin-detail-nav-center:hover .vin-detail-nav-arrow { color: var(--or); }
.vin-detail-nav-link:hover .vin-detail-nav-arrow.left { transform: translateX(-4px); }
.vin-detail-nav-link.next:hover .vin-detail-nav-arrow.right { transform: translateX(4px); }
.vin-detail-nav-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  /* v28 : contraste WCAG AA */
  color: rgba(255,255,255,.82);
  margin-bottom: 4px;
}
.vin-detail-nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  /* v23 : nom de cuvée bien visible */
  color: #ffffff;
  line-height: 1.2;
}
.vin-detail-nav-center-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.82); /* v28 : contraste WCAG AA */
  text-align: center;
}

@media (max-width: 640px) {
  .vin-detail-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 12px;
  }
}

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
  /* Grille */
  #vins { padding:60px 30px; }
  .vins-grid { grid-template-columns:1fr 1fr; }
  .vins-header { flex-direction:column; gap:24px; align-items:flex-start; }
  .appellation-intro { grid-template-columns:1fr; gap:20px; padding:40px 30px; }
  /* Détail vin */
  .vin-detail-hero { grid-template-columns: 44% 56%; min-height: clamp(520px, 80vh, 800px); }
  .vin-detail-hero-left { padding: 48px 44px 60px 52px; clip-path: polygon(0 0, 100% 0, calc(100% - 52px) 100%, 0 100%); margin-right: -52px; }
  .vin-detail-hero-left::before { left: 28px; }
  .vin-detail-breadcrumb { top: 44px; left: 52px; right: 44px; }
  .vin-detail-hero-bottle { height: clamp(420px, 74vh, 720px); max-width: none; }
  .vin-detail-bottle-wrap { padding-bottom: 0; }
  .vin-detail-desc-section { grid-template-columns:1fr; gap:32px; padding:50px 40px; }
  .vin-detail-desc-left { position:static; }

  .vin-detail-nav-inner { grid-template-columns:1fr 1fr; }
  .vin-detail-nav-center { display:none; }
}
@media (max-width:640px) {
  .vins-grid { grid-template-columns:1fr; }
  .vin-detail-tech-grid { grid-template-columns:1fr 1fr; }
  .vin-detail-hero { grid-template-columns: 1fr; min-height: auto; }
  .vin-detail-hero::before { font-size: 160px; left: 50%; }
  .vin-detail-hero-left {
    padding: 52px 28px 52px 36px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
    margin-right: 0;
    margin-bottom: -40px;
  }
  .vin-detail-hero-left::before { display: none; }
  .vin-detail-breadcrumb { top: 44px; left: 36px; right: 28px; }
  .vin-detail-hero .vin-detail-h1 { font-size: clamp(48px, 12vw, 72px); }
  .vin-detail-hero-right { min-height: clamp(360px, 70vw, 500px); align-items: flex-end; }
  .vin-detail-hero-bottle { height: clamp(320px, 65vw, 480px); max-width: none; }
  .vin-detail-desc-section { padding:36px 24px; }
  .vin-detail-nav-inner { grid-template-columns:1fr 1fr; }
  .vin-detail-nav-link { padding:24px 20px; }
}
/* fin page-nos-vins.css — v32 */
