﻿:root {
  --black: #000;
  --white: #fff;
  --gold: #d4af37;
  --grey: #c8c8c7;
  --taupe: #817b73;
  --blue: #193153;
  --text: #1f1f1f;
  --serif: Didot, "Bodoni 72", "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding-top: 136px;
  background: #fff;
  color: var(--text);
  font-family: var(--sans);
  letter-spacing: 0;
}

a { color: inherit; }

.vinea-news-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 5000;
  background: var(--black);
  color: var(--white);
  border-bottom: 1px solid #202020;
  font-family: var(--sans);
}

.vinea-news-live {
  min-height: 26px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 6px 24px;
  background: #f2f2f2;
  color: #000;
  border-bottom: 1px solid #e5e5e5;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.vinea-news-live strong {
  grid-column: 2;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
}

.vinea-news-lang,
.vinea-menu-lang {
  justify-self: end;
  display: inline-flex;
  gap: 5px;
  align-items: center;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .8px;
}

.vinea-news-lang button,
.vinea-menu-lang button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.vinea-news-lang button.is-active,
.vinea-menu-lang button.is-active {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vinea-news-main {
  height: 76px;
  display: grid;
  grid-template-columns: minmax(120px, 220px) 1fr minmax(280px, 360px);
  align-items: center;
  padding: 0 24px;
  border-bottom: 1px solid #1d1d1d;
  position: relative;
}

.vinea-news-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.vinea-icon-button {
  width: 26px;
  height: 26px;
  border: 0;
  background: transparent;
  color: #fff;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.vinea-icon-button:hover,
.vinea-news-action:hover,
.vinea-news-nav a:hover {
  color: var(--gold);
}

.vinea-burger-lines {
  width: 21px;
  height: 14px;
  display: grid;
  align-content: space-between;
}

.vinea-burger-lines span {
  display: block;
  height: 1px;
  background: currentColor;
}

.vinea-picto {
  width: 16px;
  height: 16px;
  display: block;
  position: relative;
  margin: 0 auto 3px;
  color: currentColor;
}

.vinea-picto-svg svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vinea-picto-svg::before,
.vinea-picto-svg::after {
  display: none !important;
}

.vinea-picto-heart.vinea-picto-svg svg {
  fill: none;
}

.vinea-news-action:hover .vinea-picto-heart.vinea-picto-svg svg {
  fill: currentColor;
}

.vinea-picto-search::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 8px;
  height: 8px;
  border: 1.35px solid currentColor;
  border-radius: 50%;
}

.vinea-picto-search::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 11px;
  width: 6px;
  height: 1.35px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.vinea-picto-heart::before {
  content: "\2661";
  position: absolute;
  inset: -4px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 16px;
  font-weight: 400;
}

.vinea-picto-bag::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 6px;
  width: 10px;
  height: 8px;
  border: 1.35px solid currentColor;
  border-radius: 1px;
}

.vinea-picto-bag::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 6px;
  border: 1.35px solid currentColor;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}

.vinea-picto-user::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 6px;
  border: 1.35px solid currentColor;
  border-radius: 50%;
}

.vinea-picto-user::after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 1px;
  width: 12px;
  height: 6px;
  border: 1.35px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.vinea-news-brand {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  justify-self: center;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.vinea-news-logo {
  display: block;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .35px;
}

.vinea-news-slogan {
  display: block;
  margin-top: 5px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.vinea-news-actions {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
}

.vinea-news-action {
  min-width: 52px;
  min-height: 42px;
  display: grid;
  justify-items: center;
  align-content: center;
  position: relative;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 8.5px;
  font-weight: 400;
  line-height: 1.12;
  text-transform: uppercase;
}

.vinea-news-action:hover { font-weight: 700; }

.vinea-news-action.vinea-cart {
  min-width: 54px;
  min-height: 42px;
  padding: 4px 7px;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.vinea-news-nav {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 46px);
  padding: 0 16px;
}

.vinea-news-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .9px;
  text-transform: uppercase;
  white-space: nowrap;
}

.vinea-news-nav a.is-active,
.vinea-burger-panel a.is-active {
  color: var(--gold);
}

.vinea-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 5900;
  background: rgba(0,0,0,.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

body.vinea-menu-open .vinea-menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.vinea-burger-panel {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6000;
  width: min(392px, calc(100vw - 28px));
  max-height: 100vh;
  overflow-y: auto;
  background: #fff;
  color: #000;
  box-shadow: 8px 0 28px rgba(0,0,0,.28);
  transform: translateX(-105%);
  transition: transform .22s ease;
  font-family: var(--sans);
}

body.vinea-menu-open .vinea-burger-panel {
  transform: translateX(0);
}

.vinea-menu-top {
  position: sticky;
  top: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: start;
  gap: 8px;
  padding: 10px 12px 9px;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.vinea-menu-close {
  border: 0;
  background: #fff;
  color: #000;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  text-align: left;
}

.vinea-menu-brand {
  text-align: center;
}

.vinea-menu-brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.vinea-menu-brand span {
  display: block;
  margin-top: 3px;
  font-size: 8.6px;
  font-weight: 400;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.vinea-menu-login {
  padding: 8px 12px;
  border-bottom: 1px solid #ededed;
  font-size: 10px;
  text-transform: uppercase;
}

.vinea-menu-login a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #000;
  text-decoration: none;
}

.vinea-menu-login .vinea-picto { margin: 0; }

.vinea-menu-search {
  display: grid;
  grid-template-columns: 1fr 34px;
  box-sizing: border-box;
  margin: 10px 0 7px;
  width: 100%;
  background: #f5f5f5;
}

.vinea-menu-search input {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 9px 10px;
  outline: 0;
  font-size: 12px;
  text-transform: uppercase;
}

.vinea-menu-search button {
  border: 0;
  background: #000;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.vinea-menu-section,
.vinea-menu-shortcut {
  border-bottom: 1px solid #ededed;
}

.vinea-menu-heading,
.vinea-menu-shortcut {
  width: 100%;
  min-height: 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border: 0;
  background: var(--grey);
  color: var(--taupe);
  padding: 9px 12px;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: .15px;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
}

.vinea-menu-section:has(.vinea-menu-list a.is-active) > .vinea-menu-heading {
  color: #6f675d;
  font-weight: 700;
}

.vinea-menu-section:has(.vinea-menu-list a.is-active) > .vinea-menu-heading .chev {
  color: #6f675d;
}

.vinea-menu-heading:hover,
.vinea-menu-shortcut:hover {
  transform: scale(1.01);
  color: #111;
}

.vinea-menu-heading .chev,
.vinea-menu-shortcut span:last-child {
  color: #111;
  font-size: 15px;
  transition: transform .18s ease;
}

.vinea-menu-section.is-collapsed .vinea-menu-heading .chev {
  transform: rotate(-90deg);
}

.vinea-menu-content {
  padding: 8px 12px 14px;
  font-size: 11px;
  line-height: 1.35;
}

.vinea-menu-section.is-collapsed .vinea-menu-content {
  display: none;
}

.vinea-menu-list {
  display: grid;
  gap: 7px;
}

.vinea-menu-list a,
.vinea-menu-line {
  color: var(--taupe);
  text-decoration: none;
  text-transform: uppercase;
}

.vinea-menu-list a:hover,
.vinea-menu-feature a:hover {
  color: #111;
  font-weight: 700;
}

.vinea-menu-feature {
  margin: 12px 0 0;
}

.vinea-menu-feature strong {
  display: block;
  color: var(--taupe);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
}

.vinea-menu-feature p {
  margin: 4px 0 8px;
  color: var(--taupe);
  font-size: 10.5px;
  text-transform: uppercase;
}

.mini-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.vinea-shopping-advice .mini-actions {
  grid-template-columns: 1fr;
  justify-items: center;
}

.vinea-shopping-advice {
  text-align: center;
}

.vinea-shopping-advice .mini-actions a {
  width: auto;
  min-width: 156px;
  max-width: 190px;
  padding-left: 14px;
  padding-right: 14px;
}

.mini-actions a {
  min-height: 30px;
  display: grid;
  place-items: center;
  background: #000;
  color: #fff;
  padding: 7px 8px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.mini-actions a:hover {
  background: var(--blue);
  color: #fff;
}

.hero {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 80px 24px;
  background: #f2f2f2;
  text-align: center;
}

.hero-with-photo {
  min-height: 0;
  display: block;
  padding: 0 0 18px;
}

.hero-photo-block {
  position: relative;
  width: 100vw;
  max-width: none;
  min-height: clamp(360px, 42vw, 500px);
  margin: 0 calc(50% - 50vw) 18px;
  padding: clamp(8px, 2.8vw, 34px) clamp(26px, 8vw, 128px) clamp(134px, 14.5vw, 188px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #090909;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.58) 48%, rgba(0,0,0,.34));
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  isolation: isolate;
}

.hero-photo-block::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.38));
}

.hero-photo-block .kicker,
.hero-photo-block h1,
.hero-photo-block .hero-chapo {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.hero-bottle-left,
.hero-bottle-right {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero-bottle-left {
  left: clamp(-42px, -2.4vw, -18px);
  bottom: clamp(-10px, -.5vw, -2px);
  width: clamp(168px, 13vw, 210px);
  height: 78%;
  transform: scale(1.12);
  transform-origin: left bottom;
}

.hero-bottle-side {
  position: absolute;
  bottom: 0;
  width: auto;
  object-fit: contain;
  transform: none;
  transform-origin: 50% 100%;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.58));
}

.hero-bottle-center {
  left: 50%;
  z-index: 3;
  height: 96%;
  transform: translateX(-50%);
}

.hero-bottle-side-left {
  left: 2%;
  z-index: 2;
  height: 82%;
}

.hero-bottle-side-right {
  right: 2%;
  z-index: 2;
  height: 82%;
}

.hero-bottle-right {
  right: clamp(18px, 5.8vw, 112px);
  bottom: clamp(0px, .5vw, 10px);
  height: 80%;
}

.hero-bottle-right img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: contain;
  transform: none;
  filter: drop-shadow(0 24px 34px rgba(0,0,0,.62));
}

.hero .kicker {
  margin: 0 0 12px;
  color: var(--taupe);
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.hero-photo-block .kicker {
  margin-bottom: clamp(7px, .9vw, 12px);
  color: #d8c18b;
  transform: translateY(clamp(-18px, -1.5vw, -12px));
}

.hero-kicker-stack {
  display: grid;
  gap: 1px;
  justify-items: center;
  line-height: 1.08;
  text-align: center;
}

.hero-kicker-stack span {
  display: block;
}

.hero-kicker-stack span:first-child {
  color: #d8c18b;
  font-size: 11px;
  letter-spacing: 1.6px;
  line-height: 1.05;
}

.hero-kicker-stack span:last-child {
  color: #fff;
  font-size: 13px;
  letter-spacing: 1.45px;
  line-height: 1.08;
}

.hero-photo-block h1 {
  margin-bottom: clamp(14px, 1.82vw, 22px);
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,.35);
}

.hero-photo-block .hero-chapo {
  margin-top: 0;
  color: rgba(255,255,255,.94);
  text-shadow: 0 1px 10px rgba(0,0,0,.32);
}

.hero h1 {
  max-width: 920px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  text-wrap: balance;
  text-transform: uppercase;
}

.hero-photo-block h1 {
  margin: 0 auto clamp(22px, 2.4vw, 32px);
}

.hero h1,
.product-showcase-kicker,
.product-showcase-kicker span,
.article-surtitre,
.article-titre,
.article-intertitre,
.article-encadre-titre,
.prestige-card h3,
.footer-column h3,
.footer-column h4 {
  overflow-wrap: normal;
  text-wrap: balance;
}

.hero p {
  max-width: 760px;
  margin: 18px auto 0;
  line-height: 1.7;
}

.hero .hero-chapo {
  max-width: min(618px, 92vw);
  font-size: 16.5px;
  line-height: 1.78;
  column-count: 1;
  text-align: center;
  text-justify: auto;
}

.seo-read-more {
  max-width: 980px;
  margin: 18px auto 0;
  text-align: left;
}

.seo-read-more summary {
  width: max-content;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto;
  gap: 0;
  align-items: center;
  color: #000;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: .9px;
  text-transform: uppercase;
  list-style: none;
}

.seo-read-more summary::-webkit-details-marker {
  display: none;
}

.seo-read-more summary::after {
  content: "";
  display: none;
  place-items: center;
  color: #111;
  font-size: 13px;
  line-height: 1;
  transition: transform .18s ease;
}

.seo-read-more[open] summary::after {
  transform: rotate(180deg);
}

.seo-read-more-content {
  width: min(100%, 980px);
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #d8d8d8;
  color: #333;
  overflow: visible;
}

.hero-with-photo .seo-read-more {
  position: relative;
  z-index: 5;
  margin-top: clamp(-196px, -14vw, -154px);
  text-align: center;
}

.hero-with-photo .seo-read-more summary {
  padding: 10px 14px;
  color: #fff;
  background: rgba(0,0,0,.42);
  border: 1px solid rgba(255,255,255,.55);
  backdrop-filter: blur(3px);
}

.hero-with-photo .seo-read-more summary::after {
  color: #fff;
}

.hero-with-photo .seo-read-more-content {
  margin-top: clamp(76px, 7vw, 104px);
  text-align: left;
}

.seo-read-more[open] {
  width: min(100%, 980px);
  padding-bottom: 12px;
}

.seo-read-more-content h2 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.seo-read-more-content h3 {
  max-width: 900px;
  margin: 18px auto 0;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
  line-height: 1.35;
  text-transform: uppercase;
}

.seo-read-more-content p {
  max-width: 900px;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.72;
  text-align: justify;
  text-justify: inter-word;
}

/* Article typography system */
.article-surtitre {
  max-width: 900px;
  margin: 0 auto 10px !important;
  color: #6f675d;
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.35 !important;
  text-align: center !important;
  text-transform: uppercase;
}

.article-titre {
  max-width: 900px;
  margin: 0 auto 16px;
  color: #111;
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 400;
  line-height: 1.08;
  text-align: center;
}

.article-chapo {
  max-width: 900px;
  margin: 12px auto 0 !important;
  color: #222;
  font-size: 15px !important;
  line-height: 1.78 !important;
  text-align: justify !important;
  text-justify: inter-word;
}

.article-chapo::first-letter {
  float: left;
  margin: 7px 9px 0 0;
  color: #6f675d;
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 400;
  line-height: .78;
}

.article-intro-grid {
  max-width: 1040px;
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, .72fr);
  gap: 24px;
  align-items: start;
}

.article-intro-grid .article-chapo {
  max-width: none;
  margin: 0 !important;
}

.article-chapo-2cols {
  column-count: 2;
  column-gap: 28px;
  column-rule: 1px solid rgba(111, 103, 93, .18);
  text-align: justify !important;
  text-justify: inter-word;
}

.article-intro-grid .article-encadre {
  max-width: none;
  margin: 0;
}

.article-intro-grid .article-encadre-titre {
  font-size: 19px;
}

.article-intro-grid .article-encadre ol {
  font-size: 13px;
  line-height: 1.56;
}

.article-columns {
  max-width: 1040px;
  margin: 20px auto 0;
  column-count: 3;
  column-gap: 34px;
  column-rule: 1px solid #e2ded8;
  column-fill: balance;
}

.article-columns .article-intertitre,
.article-columns .article-texte {
  max-width: none;
}

.article-columns .article-intertitre {
  break-after: avoid;
  break-inside: avoid;
  margin-top: 15px !important;
}

.article-columns .article-intertitre:first-child {
  margin-top: 0 !important;
}

.article-columns .article-texte {
  break-inside: auto;
  margin-top: 7px !important;
  margin-bottom: 12px !important;
}

.article-texte {
  max-width: 900px;
  margin: 12px auto 0 !important;
  color: #333;
  font-size: 14px !important;
  line-height: 1.72 !important;
  text-align: justify !important;
  text-justify: inter-word;
}

.article-intertitre {
  max-width: 900px;
  margin: 20px auto 0 !important;
  color: #111;
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: .4px;
  line-height: 1.35 !important;
  text-transform: uppercase;
}

.article-encadre {
  max-width: 900px;
  margin: 22px auto 4px;
  padding: 18px 20px;
  border: 1px solid #d8d4ce;
  background: #f7f7f6;
  color: #222;
}

.article-encadre-titre {
  margin: 0 0 12px;
  color: #6f675d;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
}

.article-encadre ol {
  counter-reset: article-advantage;
  list-style: none;
  margin: 0;
  padding-left: 0;
  font-size: 13.5px;
  line-height: 1.62;
}

.article-encadre li {
  counter-increment: article-advantage;
  position: relative;
  margin-top: 8px;
  padding-left: 34px;
}

.article-encadre li::before {
  content: counter(article-advantage);
  position: absolute;
  left: 0;
  top: .1em;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.article-encadre strong {
  color: #111;
}

.article-legende-photo {
  max-width: 900px;
  margin: 8px auto 0;
  color: #6f675d;
  font-size: 11px;
  font-style: italic;
  line-height: 1.45;
  text-align: center;
}

.seo-advantages-box {
  max-width: 900px;
}

.seo-faq {
  max-width: 900px;
  margin: 14px auto 0;
  padding-left: 22px;
  color: #333;
  font-size: 13.5px;
  line-height: 1.68;
}

.seo-faq li {
  margin-top: 10px;
}

.seo-faq strong {
  color: #111;
}

@media (max-width: 1100px) {
  .hero-bottle-left {
    left: -44px;
    width: 188px;
    height: 72%;
    opacity: .7;
    transform: scale(1.34);
  }

  .hero-bottle-right {
    right: clamp(0px, 3.8vw, 42px);
    bottom: 0;
    height: 100%;
    opacity: .8;
  }

  .article-columns {
    column-count: 2;
    column-gap: 28px;
  }
}

@media (min-width: 1101px) and (max-width: 1366px) {
  .hero-bottle-left {
    transform: scale(1.4);
  }

  .hero-bottle-right {
    height: 90%;
  }
}

@media (min-width: 721px) and (max-width: 900px) {
  .hero .hero-chapo {
    font-size: 14.85px;
    line-height: 1.52;
  }

  .hero-bottle-right {
    height: 90%;
  }
}

@media (max-width: 720px) {
  .hero-with-photo {
    padding: 0 0 16px;
  }

  .hero-photo-block {
    min-height: 455px;
    margin-bottom: 16px;
    padding: 12px 18px 138px;
    background-image:
      linear-gradient(180deg, rgba(0,0,0,.78), rgba(0,0,0,.62));
    background-position: center;
    background-size: cover;
  }

  .hero-bottle-right {
    right: -98px;
    bottom: -26px;
    height: 66%;
    opacity: .42;
  }

  .hero-bottle-left {
    display: none;
  }

  .hero h1 {
    max-width: 92vw;
    font-size: clamp(30px, 8.4vw, 42px);
    line-height: 1.08;
  }

  .product-showcase-kicker {
    max-width: 92vw;
  }

  .product-showcase {
    margin-top: 30px;
    padding: 0 14px 34px;
  }

  .product-showcase > .product-showcase-kicker {
    margin-bottom: 8px;
  }

  .product-showcase > .product-showcase-kicker span:first-child {
    font-size: 10.5px;
  }

  .product-showcase > .product-showcase-kicker span:last-child {
    font-size: 15px;
  }

  .product-showcase-kicker span {
    display: block;
    max-width: 100%;
  }

  .article-intertitre,
  .article-encadre-titre {
    max-width: 92vw;
  }

  .article-intro-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .article-chapo-2cols {
    column-count: 1;
    column-gap: 0;
    column-rule: 0;
  }

  .article-intro-grid .article-encadre {
    padding: 16px;
  }

  .article-columns {
    column-count: 1;
    column-gap: 0;
    column-rule: 0;
    margin-top: 18px;
  }

  .article-chapo::first-letter {
    font-size: 46px;
    margin-top: 5px;
  }
}

.content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 24px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.content article {
  border: 1px solid #ddd;
  padding: 24px;
  background: #fff;
}

.product {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
}

.product img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.product-showcase {
  position: relative;
  z-index: 7;
  margin-top: clamp(26px, 3.2vw, 44px);
  padding: 0 24px 42px;
  background: transparent;
}

.product-showcase > h2 {
  max-width: 920px;
  margin: 0 auto 22px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
}

.product-showcase > .product-showcase-kicker {
  display: grid;
  gap: 3px;
  max-width: 560px;
  margin: 0 auto 8px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #800000;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.3px;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.product-showcase > .product-showcase-kicker span {
  display: block;
}

.product-showcase > .product-showcase-kicker span:first-child {
  color: #817b73;
  font-size: 11px;
  letter-spacing: 1.6px;
}

.product-showcase > .product-showcase-kicker span:last-child {
  color: #800000;
  font-size: 17px;
  letter-spacing: 1.45px;
}

.product-showcase-intro {
  max-width: 680px;
  margin: 0 auto 30px;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.vinea-catalog-loader {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin: 18px auto 0;
  text-align: center;
}

.vinea-catalog-loader.is-complete {
  opacity: .65;
}

.vinea-catalog-loader p {
  margin: 0;
  color: #666;
  font-size: 11px;
  letter-spacing: .9px;
  text-transform: uppercase;
}

.vinea-catalog-load-more {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.vinea-catalog-load-more:hover,
.vinea-catalog-load-more:focus-visible {
  background: transparent;
  border-color: transparent;
  color: #193153;
}

.vinea-catalog-load-more[disabled] {
  cursor: default;
  opacity: .42;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 6200;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #000;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #193153;
  transform: translateY(-2px);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.whatsapp-tooltip {
  position: fixed;
  right: 90px;
  bottom: 36px;
  z-index: 6190;
  padding: 7px 10px;
  background: #fff;
  border: 1px solid #ddd;
  color: #111;
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity .18s ease, transform .18s ease;
}

.whatsapp-float:hover + .whatsapp-tooltip,
.whatsapp-float:focus-visible + .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-modal {
  position: fixed;
  right: 22px;
  bottom: 98px;
  z-index: 6210;
  width: min(310px, calc(100vw - 34px));
  display: none;
  padding: 18px 16px 16px;
  background: #fff;
  border: 1px solid #d8d8d8;
  color: #111;
  font-family: var(--sans);
  box-shadow: 0 18px 42px rgba(0,0,0,.25);
}

.whatsapp-modal.is-visible {
  display: block;
}

.whatsapp-modal .modal-close {
  position: absolute;
  top: 7px;
  right: 8px;
  width: 25px;
  height: 25px;
  border: 0;
  background: transparent;
  color: #000;
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
}

.whatsapp-modal-header {
  margin: 4px 22px 14px 0;
  font-size: 13px;
  line-height: 1.35;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.whatsapp-modal .modal-option {
  width: 100%;
  display: block;
  margin: 7px 0;
  padding: 9px 10px;
  border: 1px solid #ddd;
  background: #f8f8f8;
  color: #111;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.whatsapp-modal .modal-option:hover,
.whatsapp-modal .modal-option:focus-visible {
  background: #193153;
  border-color: #193153;
  color: #fff;
}

@media (min-width: 768px) and (max-width: 1440px) {
  .whatsapp-float {
    width: 46px;
    height: 46px;
  }

  .whatsapp-float svg {
    width: 19px;
    height: 19px;
  }

  .whatsapp-tooltip {
    right: 78px;
    bottom: 31px;
  }

  .whatsapp-modal {
    bottom: 82px;
  }
}

.vinea-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: -2px auto 30px;
  padding: 0 20px;
}

.vinea-product-card {
  min-width: 0;
  height: auto;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border: 1px solid #ddd;
  background: #f9f9f9;
  padding: 20px;
  text-align: center;
  cursor: pointer;
}

.prestige-card .wine-bottle-img,
.prestige-card img.wine-bottle-img {
  display: block;
  width: 145px;
  height: 310px;
  max-width: 145px;
  object-fit: contain;
  object-position: center bottom;
  margin: -48px auto 10px;
}

.prestige-card h3 {
  min-height: 0;
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.15;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.prestige-info {
  min-height: 0;
  margin: 0 0 10px;
  color: #555;
  font-size: 12px;
  line-height: 1.25;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.prestige-price-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  padding: 0 10px;
}

.prestige-price-left {
  display: none;
}

.prestige-price-right {
  flex: 1 1 100%;
  padding: 0 5px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.15;
  text-align: center;
}

.prestige-price-right .price {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

.prestige-price-right .unit-price {
  display: block;
  font-size: 12.5px;
  white-space: nowrap;
}

.product-visual {
  height: 228px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 36px 0 14px;
  overflow: hidden;
  text-decoration: none;
}

.product-visual img {
  width: auto;
  max-width: 92%;
  max-height: 222px;
  object-fit: contain;
  transition: transform .28s ease;
}

.product-visual:hover img {
  transform: scale(1.18);
}

.product-favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  z-index: 2;
}

.product-favorite::before {
  content: "\2661";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
}

.product-favorite.is-selected::before {
  content: "\2665";
  color: #000;
}

.product-body {
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-body h3 {
  min-height: 52px;
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.15;
}

.product-appellation {
  min-height: 42px;
  margin: 0 0 10px;
  color: #555;
  font-size: 12px;
  line-height: 1.35;
}

.product-price {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.product-unit {
  margin: 4px 0 12px;
  color: #555;
  font-size: 12px;
  line-height: 1.25;
}

.product-actions {
  position: relative;
  z-index: 4;
  order: 30;
  display: flex;
  width: 100%;
  gap: 0;
  margin: auto 0 10px;
  align-items: stretch;
}

.product-quantity-heading,
.prestige-quantity-header {
  order: 20;
  display: none;
  margin: 8px 0 5px;
  text-align: center;
}

.product-quantity-heading strong,
.prestige-quantity-header strong {
  display: block;
  color: #800000;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.product-quantity-heading span,
.prestige-quantity-subheader {
  display: block;
  order: 20;
  display: none;
  margin-top: 7px;
  color: #555;
  font-size: 10.5px;
  line-height: 1.25;
  text-align: center;
}

.product-learn,
.product-express {
  min-width: 0;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #111;
  text-decoration: none;
  font-family: var(--sans);
  font-size: clamp(9px, .7vw, 11px);
  line-height: 1;
  letter-spacing: .05px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.product-learn {
  flex: 1 1 31%;
  background: #f9f9f9;
  color: #111;
  margin-right: 3px;
}

.product-express {
  flex: 2 1 69%;
  background: #000;
  color: #fff;
  margin-left: 3px;
}

.product-learn:hover,
.product-express:hover {
  background: var(--grey);
  color: #111;
}

.vinea-product-card.is-quantity-open .product-actions {
  display: flex;
}

.vinea-product-card.is-quantity-open .product-learn {
  display: flex;
}

.vinea-product-card.is-quantity-open .product-express {
  flex: 2 1 69%;
  margin-left: 3px;
  background: #000;
  border-color: #111;
  color: #fff;
  font-size: clamp(9px, .7vw, 11px);
}

.vinea-product-card.is-quantity-selected .product-learn {
  display: none;
}

.vinea-product-card.is-quantity-selected .product-express {
  flex: 1 1 100%;
  margin-left: 0;
  background: var(--blue);
  border-color: var(--blue);
}

.product-quantities {
  order: 21;
  display: none;
  position: static;
  width: 100%;
  height: 130px;
  max-height: 130px;
  overflow-y: scroll;
  scrollbar-gutter: stable;
  border: 1px solid #eee;
  margin: 0 0 10px;
  background: #fff;
  box-shadow: none;
}

.product-quantities::-webkit-scrollbar {
  width: 8px;
}

.product-quantities::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.product-quantities::-webkit-scrollbar-thumb {
  background: #817b73;
}

.vinea-product-card.is-quantity-open .product-quantities {
  display: block;
}

.vinea-product-card.is-quantity-open .product-quantity-heading,
.vinea-product-card.is-quantity-open .prestige-quantity-header,
.vinea-product-card.is-quantity-open .prestige-quantity-subheader {
  display: block;
}

.vinea-product-card.is-quantity-open .prestige-price-container {
  display: none;
}

.product-quantities button,
.product-quantities .prestige-quantity-option {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  border: 0;
  border-bottom: 1px solid #eee;
  background: #fff;
  padding: 8px 10px;
  color: #222;
  font-family: var(--sans);
  font-size: clamp(11px, .78vw, 12px);
  line-height: 1.25;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
}

.product-quantities button > *:first-child,
.product-quantities button,
.product-quantities .prestige-quantity-option {
  min-width: 0;
}

.product-quantities button:hover,
.product-quantities button.is-selected,
.product-quantities .prestige-quantity-option:hover,
.product-quantities .prestige-quantity-option.is-selected {
  background: #f1f1f1;
}

.product-quantities strong,
.product-quantities .prestige-quantity-option span {
  white-space: nowrap;
  font-size: 1em;
  font-weight: 700;
}

.product-awards {
  position: absolute;
  top: 13px;
  left: 16px;
  right: 52px;
  z-index: 2;
  margin: 0;
  padding: 0;
  border-top: 0;
  color: #999;
  font-size: 11px;
  line-height: 1.3;
  list-style: none;
  text-align: left;
}

.vinea-product-card.is-quantity-open {
  z-index: 8;
}

.vinea-favorite-flyer {
  position: fixed;
  z-index: 8000;
  width: 44px;
  height: 88px;
  object-fit: contain;
  pointer-events: none;
  transition: transform .72s cubic-bezier(.2,.8,.2,1), opacity .72s ease;
  will-change: transform, opacity;
}

.vinea-badge {
  position: absolute;
  top: -7px;
  right: -5px;
  width: 21px;
  min-width: 21px;
  height: 21px;
  display: none;
  place-items: center;
  border-radius: 50%;
  background: #861a22;
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.vinea-news-action.has-count {
  position: relative;
}

.vinea-news-action.vinea-cart .vinea-badge {
  top: -8px;
  right: -8px;
}

.vinea-news-action.has-count .vinea-badge {
  display: grid;
}

.vinea-cart-popin {
  width: min(360px, calc(100vw - 30px));
  position: fixed;
  top: 146px;
  right: 24px;
  z-index: 5200;
  display: none;
  background: #fff;
  color: #111;
  border: 1px solid #ddd;
  box-shadow: 0 14px 34px rgba(0,0,0,.2);
  padding: 16px;
}

.vinea-cart-popin.is-visible {
  display: block;
}

.cart-popin-top,
.cart-popin-total,
.cart-popin-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.cart-popin-top {
  margin-bottom: 14px;
  font-size: 16px;
}

.cart-popin-count {
  min-width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #861a22;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.cart-popin-product h4 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.15;
}

.cart-popin-product p {
  margin: 0 0 5px;
  color: #555;
  font-size: 12px;
  line-height: 1.35;
}

.cart-popin-line {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.25;
}

.cart-popin-line span {
  max-width: 210px;
}

.cart-popin-total {
  margin: 14px 0;
  padding-top: 12px;
  border-top: 1px solid #ddd;
  font-size: 15px;
}

.cart-popin-button {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .4px;
}

.footer {
  background: #000;
  color: #fff;
  padding: 42px 5vw 26px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.28fr 1fr 1fr 1fr;
  gap: 34px;
  max-width: 1320px;
  margin: 0 auto;
  align-items: start;
}

.footer-column {
  min-width: 0;
}

.two-lines {
  font-family: var(--serif);
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 12px;
  text-transform: none;
}

.footer-separator {
  width: 100%;
  height: 1px;
  background: #fff;
  margin: 0 0 16px;
}

.footer-inner-separator {
  margin: 22px 0 14px;
}

.footer-text {
  margin: 0 0 12px;
  color: #ddd;
  font-size: 11px;
  line-height: 1.68;
  text-align: justify;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}

.social-icons a {
  width: 28px;
  height: 28px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
}

.social-icons svg {
  width: 15px;
  height: 15px;
  display: block;
  margin: 0 !important;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translate(0, 0);
}

.social-icons a:first-child svg {
  fill: currentColor;
  stroke: none;
  width: 14px;
  height: 14px;
  transform: translateY(.5px);
}

.social-icons a:nth-child(2) svg {
  transform: translateY(.2px);
}

.social-icons a:nth-child(3) svg {
  transform: translate(.4px, .2px);
}

.social-icons a:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: #fff;
  color: #000;
  font-size: 10px;
  padding: 4px 6px;
}

.shopping-title,
.event-section,
.mag-title {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .4px;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.two-columns-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin-bottom: 16px;
}

.footer-links,
.product-link,
.footer-column a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .45px;
  line-height: 1.32;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.footer-links:hover,
.product-link:hover,
.footer-column a:hover {
  color: var(--gold);
}

.footer-service-copy,
.annuaire {
  margin: 16px 0 8px;
  color: #ddd;
  font-size: 11px;
  line-height: 1.35;
  text-align: left;
  text-transform: uppercase;
}

.service-item {
  color: #fff;
  font-size: 11px;
  line-height: 1.25;
  margin: 12px 0 5px;
  text-transform: uppercase;
}

.service-spaced {
  margin-top: 18px;
}

.service-link {
  margin-left: 18px;
}

.footer-appointment,
.bordered-box,
.footer-mag-button,
.black-box {
  display: inline-grid !important;
  place-items: center;
  min-height: 27px;
  padding: 7px 10px;
  background: #111;
  color: #fff !important;
  text-align: center;
  text-decoration: none;
}

.bordered-box {
  width: 100%;
  border: 1px solid #fff;
  background: transparent;
  margin: 6px 0;
}

.bordered-box:hover,
.footer-appointment:hover,
.footer-mag-button:hover,
.black-box:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff !important;
}

.footer-mag-text {
  text-align: left;
  margin-bottom: 10px;
}

.footer-link-stack {
  display: grid;
  gap: 7px;
  margin-bottom: 20px;
}

.partner-access {
  text-align: center;
  margin: 20px 0;
}

.two-columns-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 18px;
}

.two-columns-table td {
  width: 50%;
  vertical-align: top;
  padding: 0 6px 7px 0;
}

.supplier-box {
  margin-bottom: 14px;
}

.reduced-spacing {
  display: grid;
  gap: 4px;
}

.vinea-footer-commitments {
  margin-top: 28px;
}

.vinea-footer-subtitle {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 16px;
}

.engagement-text,
.payment-text,
.engagement-subtext {
  color: #ddd;
  font-size: 11px;
  line-height: 1.55;
}

.engagement-text {
  text-transform: uppercase;
}

.engagement-subtext {
  margin: 4px 0 16px;
}

.commitment-gap {
  margin-top: 16px;
}

.contact-box {
  width: 100%;
  min-height: 27px;
  margin: 10px 0 10px;
  padding: 7px 10px;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: .45px;
  text-transform: uppercase;
}

.footer-bottom {
  max-width: 1040px;
  margin: 30px auto 0;
  color: #ccc;
  text-align: center;
  font-size: 11px;
  line-height: 1.6;
}

.footer-bottom p {
  margin: 5px 0;
}

.footer-legal {
  max-width: 1040px;
  margin: 18px auto 0;
  color: #ccc;
  text-align: center;
  font-size: 8px;
  line-height: 1.42;
  text-transform: uppercase;
}

.footer-legal p {
  margin: 3px 0;
}

@media (max-width: 900px) {
  body {
    padding-top: 0;
  }

  .vinea-news-header {
    position: relative;
  }

  .vinea-news-live {
    min-height: 22px;
    padding: 6px 12px;
    font-size: 10px;
    letter-spacing: .9px;
  }

  .vinea-news-main {
    height: auto;
    min-height: 64px;
    grid-template-columns: 84px 1fr 144px;
    padding: 0 12px;
  }

  .vinea-news-logo {
    font-size: 26px;
  }

  .vinea-news-actions {
    right: 12px;
    gap: 10px;
  }

  .vinea-news-action {
    min-width: 34px;
    min-height: 40px;
    font-size: 8.5px;
  }

  .vinea-news-action:not(.vinea-cart) span:last-child {
    display: none;
  }

  .vinea-news-action.vinea-cart {
    min-height: 40px;
    padding: 4px 7px;
  }

  .vinea-badge,
  .vinea-news-action.vinea-cart .vinea-badge {
    top: -7px;
    right: -7px;
  }

  .vinea-news-nav {
    height: 32px;
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
    padding: 0 12px;
  }

  .vinea-news-nav a {
    font-size: 11px;
  }

  .grid,
  .product,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .vinea-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vinea-product-card {
    min-height: 450px;
  }

  .product-actions {
    display: flex;
  }

  .product-learn,
  .product-express {
    font-size: 9px;
  }

  .vinea-cart-popin {
    top: 92px;
    right: 12px;
  }

  .footer-column p {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .vinea-products-grid {
    grid-template-columns: 1fr;
  }

  .vinea-product-card {
    min-height: 450px;
  }

  .product-actions {
    display: flex;
  }
}

@media (max-width: 430px) {
  .vinea-news-live {
    min-height: 20px;
    padding: 5px 9px;
    font-size: 9px;
    line-height: .95;
    letter-spacing: .72px;
  }

  .vinea-news-lang {
    gap: 3px;
    font-size: 8.1px;
    letter-spacing: .5px;
    white-space: nowrap;
  }

  .vinea-news-main {
    grid-template-columns: 78px 1fr 118px;
    padding: 0 10px;
  }

  .vinea-news-slogan {
    font-size: 8.1px;
    letter-spacing: 1.1px;
  }

  .vinea-news-actions {
    gap: 7px;
    right: 10px;
  }

  .vinea-news-action,
  .vinea-news-action.vinea-cart {
    min-width: 28px;
    min-height: 34px;
    padding: 2px;
  }

  .vinea-news-action span:last-child {
    display: none !important;
  }

  .vinea-news-action > span:not(.vinea-picto):not(.vinea-badge) {
    display: none !important;
  }

  .vinea-news-action:hover > span:not(.vinea-picto):not(.vinea-badge),
  .vinea-news-action:focus-visible > span:not(.vinea-picto):not(.vinea-badge) {
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    z-index: 40;
    display: block !important;
    min-width: max-content;
    padding: 2px 3px;
    background: rgba(0,0,0,.82);
    color: #fff;
    border: 1px solid rgba(255,255,255,.16);
    font-size: 6.4px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: .25px;
    text-align: center;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .vinea-news-action[href="../connexion/"]:hover > span:not(.vinea-picto):not(.vinea-badge),
  .vinea-news-action[href="../connexion/"]:focus-visible > span:not(.vinea-picto):not(.vinea-badge) {
    display: none !important;
  }

  .vinea-news-action[href="../connexion/"]:hover::after,
  .vinea-news-action[href="../connexion/"]:focus-visible::after {
    content: "SE CONNECTER";
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    z-index: 41;
    min-width: max-content;
    padding: 2px 3px;
    background: rgba(0,0,0,.82);
    color: #fff;
    border: 1px solid rgba(255,255,255,.16);
    font-size: 6.4px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: .25px;
    text-align: center;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .hero-kicker-stack span:first-child {
    font-size: 9.5px;
  }

  .hero-kicker-stack span:last-child {
    font-size: 11.7px;
  }

  .hero h1 {
    font-size: clamp(24px, 6.7vw, 34px);
    line-height: 1.08;
  }

  .hero .hero-chapo {
    max-width: 84vw;
    font-size: 13.2px;
    line-height: 1.58;
  }

  .hero-with-photo .seo-read-more summary {
    padding: 8px 12px;
    font-size: 9.4px;
    letter-spacing: .75px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 22px;
    width: 46px;
    height: 46px;
  }

  .whatsapp-float svg {
    width: 19px;
    height: 19px;
  }

  .whatsapp-tooltip {
    right: 70px;
    bottom: 28px;
  }
}

/* Clean priority layer for the Grands Crus product row, moved out of inline HTML. */
body.vinea-lemonde-ready .product-showcase .prestige-grid {
  align-items: stretch !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card {
  box-sizing: border-box !important;
  height: auto !important;
  min-height: 510px !important;
  padding: 64px 18px 6px !important;
  overflow: hidden !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card .wine-bottle-img {
  position: relative !important;
  z-index: 1 !important;
  width: auto !important;
  height: 249px !important;
  max-width: min(117px, 52%) !important;
  max-height: 249px !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  margin: 14px auto 10px !important;
  display: block !important;
  transform-origin: 50% 62% !important;
  transition: transform .28s ease, filter .28s ease, clip-path .28s ease !important;
  will-change: transform !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card:hover .wine-bottle-img,
body.vinea-lemonde-ready .product-showcase .prestige-card:focus-within .wine-bottle-img {
  clip-path: inset(30% 0 24% 0) !important;
  transform: scale(2.35) translateY(-8px) !important;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.14)) !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card.is-quantity-open:hover .wine-bottle-img,
body.vinea-lemonde-ready .product-showcase .prestige-card.is-quantity-open:focus-within .wine-bottle-img {
  transform: none !important;
  filter: none !important;
  clip-path: none !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card h3 {
  position: relative !important;
  z-index: 2 !important;
  min-height: 42px !important;
  margin: 0 0 4px !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-info {
  position: relative !important;
  z-index: 2 !important;
  min-height: 42px !important;
  margin: 0 0 8px !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-quantity-header,
body.vinea-lemonde-ready .product-showcase .prestige-quantity-subheader {
  display: none !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card.is-quantity-open .prestige-quantity-header,
body.vinea-lemonde-ready .product-showcase .prestige-card.is-quantity-open .prestige-quantity-subheader {
  display: block !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-quantity-header {
  margin: 9px 0 8px !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-quantity-subheader {
  margin: 0 0 7px !important;
  font-size: 11px !important;
  line-height: 1.22 !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-price-container {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  margin: 0 0 10px !important;
  padding: 0 !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-price-left {
  display: none !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-price-right {
  flex: 1 1 100% !important;
  text-align: center !important;
  padding: 0 !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-actions,
body.vinea-lemonde-ready .product-showcase .product-actions {
  position: relative !important;
  z-index: 3 !important;
  box-sizing: border-box !important;
  width: calc(100% + 20px) !important;
  max-width: calc(100% + 20px) !important;
  height: 32px !important;
  min-height: 32px !important;
  display: grid !important;
  grid-template-columns: minmax(99px, .88fr) minmax(0, 1.88fr) !important;
  gap: 4px !important;
  margin: 12px -10px 3px !important;
  padding: 0 !important;
  overflow: visible !important;
  align-items: stretch !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-savoir,
body.vinea-lemonde-ready .product-showcase .prestige-express,
body.vinea-lemonde-ready .product-showcase .product-learn,
body.vinea-lemonde-ready .product-showcase .product-express {
  box-sizing: border-box !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: 32px !important;
  min-height: 32px !important;
  max-height: 32px !important;
  margin: 0 !important;
  padding: 4px 7px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  line-height: 1 !important;
  letter-spacing: .05px !important;
  font-weight: 400 !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-savoir,
body.vinea-lemonde-ready .product-showcase .product-learn {
  font-size: clamp(9.4px, .72vw, 11px) !important;
  background: #f9f9f9 !important;
  border: 1px solid #d8d8d8 !important;
  color: #000 !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-express,
body.vinea-lemonde-ready .product-showcase .product-express {
  font-size: clamp(9.8px, .78vw, 11.8px) !important;
  background: #000 !important;
  border: 1px solid #000 !important;
  color: #fff !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card.is-quantity-open .prestige-price-container {
  display: none !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card.is-quantity-open .prestige-quantity-scroll {
  display: block !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-quantity-scroll,
body.vinea-lemonde-ready .product-showcase .product-quantities {
  box-sizing: border-box !important;
  display: none !important;
  width: calc(100% + 10px) !important;
  height: 132px !important;
  max-height: 132px !important;
  margin: 0 -5px 10px !important;
  border: 1px solid #eee !important;
  background: #fff !important;
  overflow-y: scroll !important;
  overflow-x: hidden !important;
  scrollbar-gutter: stable !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card.is-quantity-open .prestige-quantity-scroll,
body.vinea-lemonde-ready .product-showcase .prestige-card.is-quantity-open .product-quantities {
  display: block !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-quantity-option {
  box-sizing: border-box !important;
  width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 8px !important;
  min-height: 29px !important;
  padding: 7px 7px !important;
  border-bottom: 1px solid #eee !important;
  color: #222 !important;
  font-family: var(--sans) !important;
  font-size: clamp(10px, .78vw, 12px) !important;
  line-height: 1.12 !important;
  white-space: nowrap !important;
  cursor: pointer !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-quantity-option .quantity-label {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  overflow: visible !important;
  text-overflow: clip !important;
  text-align: left !important;
  white-space: nowrap !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-quantity-option span:last-child {
  flex: 0 0 auto !important;
  min-width: max-content !important;
  text-align: right !important;
  white-space: nowrap !important;
  font-weight: 700 !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-quantity-option:hover,
body.vinea-lemonde-ready .product-showcase .prestige-quantity-option.is-selected,
body.vinea-lemonde-ready .product-showcase .prestige-quantity-option.selected {
  background: #e9e9e9 !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card.is-quantity-selected .prestige-actions,
body.vinea-lemonde-ready .product-showcase .prestige-card.is-quantity-selected .product-actions {
  grid-template-columns: 1fr !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card.is-quantity-selected .prestige-savoir,
body.vinea-lemonde-ready .product-showcase .prestige-card.is-quantity-selected .product-learn {
  display: none !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card.is-quantity-selected .prestige-express,
body.vinea-lemonde-ready .product-showcase .prestige-card.is-quantity-selected .product-express {
  background: #193153 !important;
  border-color: #193153 !important;
  color: #fff !important;
  font-size: 11px !important;
  letter-spacing: .2px !important;
}

@media (min-width: 921px) and (max-width: 1450px) {
  .hero-photo-block h1 {
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.08;
  }

  .product-showcase {
    margin-top: clamp(42px, 4.2vw, 60px);
  }

  body.vinea-lemonde-ready .product-showcase .prestige-card {
    min-height: 484px !important;
    padding: 56px 16px 5px !important;
  }

  body.vinea-lemonde-ready .product-showcase .prestige-actions,
  body.vinea-lemonde-ready .product-showcase .product-actions {
    width: calc(100% + 20px) !important;
    max-width: calc(100% + 20px) !important;
    margin-left: -10px !important;
    margin-right: -10px !important;
  }

  body.vinea-lemonde-ready .product-showcase .prestige-card .wine-bottle-img {
    height: 222px !important;
    max-height: 222px !important;
    margin: 8px auto 8px !important;
  }

  body.vinea-lemonde-ready .product-showcase .prestige-card h3 {
    min-height: 38px !important;
    margin-bottom: 3px !important;
  }

  body.vinea-lemonde-ready .product-showcase .prestige-info {
    min-height: 38px !important;
    margin-bottom: 6px !important;
  }

  body.vinea-lemonde-ready .product-showcase .prestige-price-container {
    margin-bottom: 8px !important;
  }
}

@media (max-width: 920px) {
  body.vinea-lemonde-ready .product-showcase .prestige-card {
    min-height: 505px !important;
    padding-top: 58px !important;
    padding-bottom: 6px !important;
  }

  body.vinea-lemonde-ready .product-showcase .prestige-actions,
  body.vinea-lemonde-ready .product-showcase .product-actions {
    grid-template-columns: minmax(94px, .9fr) minmax(0, 1.9fr) !important;
    width: calc(100% + 14px) !important;
    max-width: calc(100% + 14px) !important;
    margin-left: -7px !important;
    margin-right: -7px !important;
  }
}

@media (max-width: 560px) {
  body.vinea-lemonde-ready .product-showcase .prestige-card {
    min-height: 488px !important;
    padding-top: 50px !important;
    padding-bottom: 6px !important;
  }

  body.vinea-lemonde-ready .product-showcase .prestige-card .wine-bottle-img {
    height: 229px !important;
    max-height: 229px !important;
    margin-top: 8px !important;
  }
}

/* Final responsive polish for the Grands Crus hero, product buttons and footer buttons. */
@media (min-width: 721px) and (max-width: 900px) {
  .hero h1 {
    font-size: clamp(30px, 4.75vw, 40px);
  }

  .hero .hero-chapo {
    max-width: min(556px, 86vw);
  }

  .hero-with-photo .seo-read-more {
    margin-top: clamp(-174px, -12.2vw, -132px);
  }
}

@media (max-width: 430px) {
  .hero .hero-chapo {
    max-width: 80vw;
  }
}

@media (min-width: 901px) {
  .hero .hero-chapo {
    max-width: min(587px, 86vw);
  }

  .hero-with-photo .seo-read-more {
    margin-top: clamp(-174px, -12.2vw, -132px);
  }

  .hero-bottle-left {
    left: clamp(-18px, -1vw, -4px);
    bottom: 0;
    transform: scale(1.18);
    transform-origin: left bottom;
  }

  .hero-bottle-right {
    right: clamp(-18px, 1vw, 18px);
    bottom: 0;
    height: 88%;
  }

  body.vinea-lemonde-ready .product-showcase .prestige-actions,
  body.vinea-lemonde-ready .product-showcase .product-actions {
    grid-template-columns: minmax(78px, .68fr) minmax(0, 2.25fr) !important;
  }
}

.footer-appointment,
.footer-discover-column .black-box,
.vinea-footer-commitments .contact-box {
  width: min(100%, 210px);
  min-height: 27px;
  margin: 10px auto;
  padding: 7px 10px;
  display: grid !important;
  place-items: center;
  background: #111;
  border: 1px solid #111;
  color: #fff !important;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: .25px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-appointment:hover,
.footer-discover-column .black-box:hover,
.vinea-footer-commitments .contact-box:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff !important;
}

.footer-description-column .footer-text {
  text-align: justify !important;
  text-align-last: left;
  hyphens: auto;
}

.product-filter-zone {
  position: relative;
  z-index: 8;
  width: min(100% - 32px, 1120px);
  margin: clamp(20px, 2.6vw, 34px) auto clamp(14px, 2vw, 24px);
}

.product-filter-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.product-filter-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.product-filter-chip,
.product-filter-toggle {
  box-sizing: border-box;
  min-height: 29px;
  padding: 7px 18px;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .35px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.product-filter-toggle {
  background: #111;
  color: #fff;
}

.product-filter-chip:hover,
.product-filter-chip:focus-visible,
.product-filter-toggle:hover,
.product-filter-toggle:focus-visible {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.product-filter-chip.is-active {
  background: #111;
  border-color: #111;
  color: #fff;
}

.product-filter-drawer {
  width: min(100%, 860px);
  margin: 12px auto 0;
  padding: 12px;
  border: 1px solid #111;
  background: #fff;
}

.product-filter-head {
  position: relative;
  min-height: 22px;
  margin: 0 0 10px;
  display: grid;
  align-items: center;
}

.product-filter-title {
  margin: 0;
  color: #817b73;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .6px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.product-filter-close {
  position: absolute;
  right: -3px;
  top: 50%;
  width: 22px;
  height: 22px;
  padding: 0;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #111;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.product-filter-close:hover,
.product-filter-close:focus-visible {
  color: #193153;
  font-weight: 700;
}

.product-filter-subtitle {
  margin: 12px 0 8px;
  color: #111;
  font-family: var(--sans);
  font-size: 9.8px;
  letter-spacing: .45px;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.product-filter-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.product-filter-field {
  min-height: 29px;
  padding: 7px 8px;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font-family: var(--sans);
  font-size: 9.3px;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.product-filter-field:hover,
.product-filter-field:focus-visible,
.product-filter-field.is-active {
  background: #111;
  border-color: #111;
  color: #fff;
}

.product-filter-values {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 7px;
}

.product-filter-values button {
  min-height: 28px;
  padding: 7px 8px;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font-family: var(--sans);
  font-size: 9.4px;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.product-filter-values button:hover,
.product-filter-values button:focus-visible,
.product-filter-values button.is-selected {
  background: #193153;
  border-color: #193153;
  color: #fff;
}

.product-filter-values .color-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.product-filter-values .color-filter::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border: 1px solid #111;
  border-radius: 50%;
}

.product-filter-values .color-red::before {
  background: #861a22;
}

.product-filter-values .color-white::before {
  background: #f7f2de;
}

.product-filter-values .color-rose::before {
  background: #e8a0a7;
}

.product-filter-values .color-filter:hover::before,
.product-filter-values .color-filter:focus-visible::before,
.product-filter-values .color-filter.is-selected::before {
  border-color: #fff;
}

@media (min-width: 721px) and (max-width: 1024px) {
  .product-filter-zone {
    width: min(100% - 28px, 820px);
  }

  .product-filter-chip,
  .product-filter-toggle {
    padding-inline: 13px;
    font-size: 9.5px;
  }

  .product-filter-values {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .product-filter-zone {
    width: min(100% - 28px, 178px);
    margin-top: 20px;
  }

  .product-filter-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px;
    align-items: start;
    gap: 9px;
  }

  .product-filter-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .product-filter-chip {
    width: 100%;
    min-height: 28px;
    padding: 7px 8px;
    font-size: 9.2px;
  }

  .product-filter-toggle {
    width: 38px;
    min-height: 74px;
    padding: 7px 4px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 9.2px;
  }

  .product-filter-drawer {
    width: min(100%, 178px);
    margin-top: 9px;
    padding: 8px;
  }

  .product-filter-values {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .product-filter-values button {
    min-height: 27px;
    font-size: 8.8px;
  }
}

@media (max-width: 560px) {
  .footer-appointment,
  .footer-discover-column .black-box,
  .vinea-footer-commitments .contact-box {
    width: min(100%, 190px);
    min-height: 26px;
    font-size: 9.5px;
  }
}

/* Final guard: no bottle/image zoom while the quantity table is open. */
body.vinea-lemonde-ready .product-showcase .prestige-card.is-quantity-open .wine-bottle-img,
body.vinea-lemonde-ready .product-showcase .vinea-product-card.is-quantity-open .product-visual img,
body.vinea-lemonde-ready .product-showcase .prestige-card.is-quantity-open:hover .wine-bottle-img,
body.vinea-lemonde-ready .product-showcase .prestige-card.is-quantity-open:focus-within .wine-bottle-img,
body.vinea-lemonde-ready .product-showcase .vinea-product-card.is-quantity-open .product-visual:hover img,
body.vinea-lemonde-ready .product-showcase .vinea-product-card.is-quantity-open:hover .product-visual img,
body.vinea-lemonde-ready .product-showcase .vinea-product-card.is-quantity-open:focus-within .product-visual img {
  transform: none !important;
  filter: none !important;
  clip-path: none !important;
  transition: none !important;
}

/* Hero bottle composition: final placement for the two image groups. */
@media (min-width: 901px) {
  .hero-bottle-left {
    left: clamp(-4px, .7vw, 12px) !important;
    bottom: clamp(10px, 1vw, 18px) !important;
    width: clamp(152px, 11vw, 184px) !important;
    height: 74% !important;
    transform: none !important;
    opacity: .96 !important;
  }

  .hero-bottle-center {
    height: 100% !important;
  }

  .hero-bottle-side-left,
  .hero-bottle-side-right {
    height: 86% !important;
  }

  .hero-bottle-side-left {
    left: 0 !important;
  }

  .hero-bottle-side-right {
    right: 0 !important;
  }

  .hero-bottle-right {
    right: clamp(-10px, 2.4vw, 42px) !important;
    bottom: clamp(14px, 1.2vw, 22px) !important;
    height: 74% !important;
    opacity: .94 !important;
  }
}

@media (min-width: 1451px) {
  .hero-bottle-left {
    left: clamp(2px, .8vw, 16px) !important;
    bottom: clamp(14px, 1.1vw, 22px) !important;
    width: clamp(216px, 12vw, 238px) !important;
    height: 76% !important;
  }

  .hero-bottle-left .hero-bottle-center {
    left: 50% !important;
    z-index: 4 !important;
    height: 100% !important;
    opacity: 1 !important;
  }

  .hero-bottle-left .hero-bottle-side-left,
  .hero-bottle-left .hero-bottle-side-right {
    z-index: 2 !important;
    height: 78% !important;
    opacity: .82 !important;
    filter: drop-shadow(0 18px 26px rgba(0,0,0,.48)) !important;
  }

  .hero-bottle-left .hero-bottle-side-left {
    left: 14% !important;
  }

  .hero-bottle-left .hero-bottle-side-right {
    right: 14% !important;
  }

  .hero-bottle-right {
    right: clamp(28px, 3.6vw, 68px) !important;
    height: 78% !important;
  }
}

@media (min-width: 721px) and (max-width: 900px) {
  .hero-bottle-left {
    left: -22px !important;
    bottom: 16px !important;
    width: 140px !important;
    height: 58% !important;
    transform: none !important;
    opacity: .42 !important;
  }

  .hero-bottle-right {
    right: -34px !important;
    bottom: 20px !important;
    height: 70% !important;
    opacity: .66 !important;
  }
}

/* Floating product filter: placed above WhatsApp and opened as a compact table. */
.product-filter-zone {
  position: fixed !important;
  right: 22px !important;
  bottom: 98px !important;
  z-index: 6250 !important;
  width: auto !important;
  margin: 0 !important;
}

.product-filter-zone .product-filter-panel {
  display: block !important;
}

.product-filter-zone .product-filter-options {
  display: none !important;
}

.product-filter-zone .product-filter-toggle {
  width: 46px !important;
  min-width: 46px !important;
  height: 86px !important;
  min-height: 86px !important;
  padding: 8px 5px !important;
  display: grid !important;
  place-items: center !important;
  writing-mode: vertical-rl !important;
  text-orientation: mixed !important;
  transform: rotate(180deg) !important;
  background: #111 !important;
  border-color: #111 !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.product-filter-zone.is-open .product-filter-toggle {
  background: #193153 !important;
  border-color: #193153 !important;
}

.product-filter-zone .product-filter-drawer {
  position: absolute !important;
  right: 0 !important;
  bottom: calc(100% + 10px) !important;
  width: min(330px, calc(100vw - 32px)) !important;
  max-height: min(70vh, 520px);
  margin: 0 !important;
  overflow: auto;
  box-shadow: 0 16px 36px rgba(0,0,0,.18);
}

.product-filter-zone .product-filter-values {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.product-filter-zone .product-filter-result[hidden] {
  display: none !important;
}

@media (min-width: 768px) and (max-width: 1440px) {
  .product-filter-zone {
    bottom: 84px !important;
  }

  .product-filter-zone .product-filter-toggle {
    width: 42px !important;
    min-width: 42px !important;
    height: 78px !important;
    min-height: 78px !important;
    font-size: 9.2px !important;
  }
}

@media (max-width: 560px) {
  .product-filter-zone {
    right: 16px !important;
    bottom: 78px !important;
    width: auto !important;
  }

  .product-filter-zone .product-filter-toggle {
    width: 38px !important;
    min-width: 38px !important;
    height: 74px !important;
    min-height: 74px !important;
    font-size: 8.8px !important;
  }

  .product-filter-zone .product-filter-drawer {
    width: min(260px, calc(100vw - 32px)) !important;
    padding: 10px !important;
  }

  .product-filter-zone .product-filter-groups,
  .product-filter-zone .product-filter-values {
    grid-template-columns: 1fr !important;
  }
}

/* Align floating filter on the same vertical axis as the WhatsApp button. */
.product-filter-zone {
  right: 28px !important;
}

@media (min-width: 768px) and (max-width: 1440px) {
  .product-filter-zone {
    right: 24px !important;
  }
}

@media (max-width: 560px) {
  .product-filter-zone {
    right: 20px !important;
  }
}

/* Final hero image offset: keep the three-bottle group fully visible on tablet and desktop. */
@media (min-width: 721px) and (max-width: 900px) {
  .hero-bottle-left {
    left: clamp(18px, 4.4vw, 38px) !important;
  }
}

@media (min-width: 901px) and (max-width: 1440px) {
  .hero-bottle-left {
    left: clamp(28px, 2.8vw, 46px) !important;
  }
}

@media (min-width: 1451px) {
  .hero-bottle-left {
    left: clamp(46px, 3.6vw, 72px) !important;
  }
}

/* Final trio visibility: central bottle forward, two side bottles visibly set back. */
@media (min-width: 721px) and (max-width: 900px) {
  .hero-bottle-left {
    width: clamp(190px, 26vw, 220px) !important;
  }

  .hero-bottle-left .hero-bottle-center {
    left: 50% !important;
    z-index: 4 !important;
    height: 100% !important;
  }

  .hero-bottle-left .hero-bottle-side-left,
  .hero-bottle-left .hero-bottle-side-right {
    z-index: 2 !important;
    height: 76% !important;
    opacity: .82 !important;
  }

  .hero-bottle-left .hero-bottle-side-left {
    left: 1% !important;
  }

  .hero-bottle-left .hero-bottle-side-right {
    right: 1% !important;
  }
}

@media (min-width: 901px) and (max-width: 1440px) {
  .hero-bottle-left {
    width: clamp(236px, 16vw, 282px) !important;
  }

  .hero-bottle-left .hero-bottle-center {
    left: 50% !important;
    z-index: 4 !important;
    height: 100% !important;
  }

  .hero-bottle-left .hero-bottle-side-left,
  .hero-bottle-left .hero-bottle-side-right {
    z-index: 2 !important;
    height: 80% !important;
    opacity: .86 !important;
  }

  .hero-bottle-left .hero-bottle-side-left {
    left: -1% !important;
  }

  .hero-bottle-left .hero-bottle-side-right {
    right: -1% !important;
  }
}

@media (min-width: 1451px) {
  .hero-bottle-left {
    width: clamp(286px, 15vw, 326px) !important;
  }

  .hero-bottle-left .hero-bottle-center {
    left: 50% !important;
    z-index: 4 !important;
    height: 100% !important;
  }

  .hero-bottle-left .hero-bottle-side-left,
  .hero-bottle-left .hero-bottle-side-right {
    z-index: 2 !important;
    height: 82% !important;
    opacity: .88 !important;
  }

  .hero-bottle-left .hero-bottle-side-left {
    left: -2% !important;
  }

  .hero-bottle-left .hero-bottle-side-right {
    right: -2% !important;
  }
}

/* Keep the floating filter narrower than the WhatsApp circle while sharing its center line. */
.product-filter-zone {
  right: 31px !important;
}

.product-filter-zone .product-filter-toggle {
  width: 40px !important;
  min-width: 40px !important;
}

@media (min-width: 768px) and (max-width: 1440px) {
  .product-filter-zone {
    right: 27px !important;
  }

  .product-filter-zone .product-filter-toggle {
    width: 36px !important;
    min-width: 36px !important;
  }
}

@media (max-width: 560px) {
  .product-filter-zone {
    right: 22px !important;
  }

  .product-filter-zone .product-filter-toggle {
    width: 34px !important;
    min-width: 34px !important;
  }
}

/* Final hero sizing: taller bottles on 17-inch screens and narrower chapo on tablet/desktop. */
@media (min-width: 721px) and (max-width: 900px) {
  .hero .hero-chapo,
  .hero-photo-block .hero-chapo {
    max-width: min(445px, 74vw) !important;
  }
}

@media (min-width: 901px) and (max-width: 1440px) {
  .hero .hero-chapo,
  .hero-photo-block .hero-chapo {
    max-width: min(470px, 68vw) !important;
    line-height: 1.48 !important;
  }
}

@media (min-width: 1451px) {
  .hero .hero-chapo,
  .hero-photo-block .hero-chapo {
    line-height: 1.5 !important;
  }

  .hero-bottle-left {
    height: 82% !important;
  }

  .hero-bottle-left .hero-bottle-center {
    height: 106% !important;
  }

  .hero-bottle-left .hero-bottle-side-left,
  .hero-bottle-left .hero-bottle-side-right {
    height: 88% !important;
  }

  .hero-bottle-right {
    height: 86% !important;
  }
}

/* Final anti-widow text handling and bottle lift for desktop/tablet wide formats. */
.hero-photo-block h1,
.hero-kicker-stack,
.hero .hero-chapo,
.hero-photo-block .hero-chapo {
  text-wrap: balance;
}

.hero .hero-chapo,
.hero-photo-block .hero-chapo {
  orphans: 2;
  widows: 2;
}

@supports (text-wrap: pretty) {
  .hero .hero-chapo,
  .hero-photo-block .hero-chapo {
    text-wrap: pretty;
  }
}

@media (min-width: 901px) and (max-width: 1440px) {
  .hero-bottle-left {
    bottom: clamp(24px, 2vw, 34px) !important;
  }

  .hero-bottle-right {
    bottom: clamp(30px, 2.2vw, 38px) !important;
  }
}

/* Final product zoom guard: keep only the label zoom visible, without covering notes or favorite. */
body.vinea-lemonde-ready .product-showcase .prestige-card {
  isolation: isolate !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card .wine-bottle-img {
  z-index: 1 !important;
  pointer-events: none !important;
  transform-origin: 50% 56% !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card:hover .wine-bottle-img,
body.vinea-lemonde-ready .product-showcase .prestige-card:focus-within .wine-bottle-img {
  clip-path: inset(34% 0 29% 0) !important;
  transform: scale(2.75) translateY(-5px) !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card .product-awards,
body.vinea-lemonde-ready .product-showcase .prestige-card .prestige-awards,
body.vinea-lemonde-ready .product-showcase .prestige-card .product-favorite {
  z-index: 20 !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card h3,
body.vinea-lemonde-ready .product-showcase .prestige-card .prestige-info,
body.vinea-lemonde-ready .product-showcase .prestige-card .prestige-price-container,
body.vinea-lemonde-ready .product-showcase .prestige-card .prestige-actions,
body.vinea-lemonde-ready .product-showcase .prestige-card .product-actions,
body.vinea-lemonde-ready .product-showcase .prestige-card .prestige-quantity-scroll,
body.vinea-lemonde-ready .product-showcase .prestige-card .product-quantities {
  position: relative !important;
  z-index: 10 !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card.is-quantity-open:hover .wine-bottle-img,
body.vinea-lemonde-ready .product-showcase .prestige-card.is-quantity-open:focus-within .wine-bottle-img {
  clip-path: none !important;
  transform: none !important;
}

/* Category product rows: same lifted position as Grands Crus, with the background aligned between cards. */
body.vinea-lemonde-ready .product-showcase {
  background: #f9f9f9 !important;
  padding-top: clamp(10px, 1.2vw, 18px) !important;
  padding-bottom: clamp(22px, 2vw, 34px) !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-grid {
  background: #f9f9f9 !important;
  gap: 0 !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card,
body.vinea-lemonde-ready .product-showcase .vinea-product-card {
  background: #f9f9f9 !important;
  margin-top: 0 !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card + .prestige-card {
  margin-left: -1px !important;
}

/* Uniform product cards across category pages: same behavior as the validated Grands Crus row. */
body.vinea-lemonde-ready .product-showcase .vinea-products-grid,
body.vinea-lemonde-ready .product-showcase .prestige-grid {
  width: min(100%, 1200px) !important;
  max-width: 1200px !important;
  margin: 0 auto 34px !important;
  padding: 0 clamp(12px, 2vw, 22px) !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  align-items: stretch !important;
}

body.vinea-lemonde-ready .product-showcase .vinea-product-card,
body.vinea-lemonde-ready .product-showcase .prestige-card {
  min-width: 0 !important;
  min-height: clamp(500px, 35vw, 536px) !important;
  height: auto !important;
  padding: clamp(54px, 4.3vw, 66px) 16px 6px !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card .wine-bottle-img {
  height: clamp(226px, 17vw, 254px) !important;
  max-height: clamp(226px, 17vw, 254px) !important;
  max-width: min(122px, 54%) !important;
  margin: 8px auto 10px !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card h3 {
  min-height: 42px !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-info {
  min-height: 40px !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-actions,
body.vinea-lemonde-ready .product-showcase .product-actions {
  width: calc(100% + 24px) !important;
  max-width: calc(100% + 24px) !important;
  margin: auto -12px 3px !important;
  grid-template-columns: minmax(86px, .72fr) minmax(0, 2.28fr) !important;
  gap: 4px !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-savoir,
body.vinea-lemonde-ready .product-showcase .product-learn,
body.vinea-lemonde-ready .product-showcase .prestige-express,
body.vinea-lemonde-ready .product-showcase .product-express {
  height: 32px !important;
  min-height: 32px !important;
  padding-inline: 6px !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-savoir,
body.vinea-lemonde-ready .product-showcase .product-learn {
  font-size: clamp(9.5px, .68vw, 11px) !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-express,
body.vinea-lemonde-ready .product-showcase .product-express {
  font-size: clamp(10px, .75vw, 12px) !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-quantity-scroll,
body.vinea-lemonde-ready .product-showcase .product-quantities {
  width: calc(100% + 12px) !important;
  margin-inline: -6px !important;
  height: 134px !important;
  max-height: 134px !important;
  overflow-y: scroll !important;
  scrollbar-width: thin !important;
  scrollbar-color: #817b73 #f1f1f1 !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-quantity-option {
  font-size: clamp(10.8px, .74vw, 12.2px) !important;
  min-height: 30px !important;
}

@media (max-width: 1024px) {
  body.vinea-lemonde-ready .product-showcase .vinea-products-grid,
  body.vinea-lemonde-ready .product-showcase .prestige-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  body.vinea-lemonde-ready .product-showcase .vinea-products-grid,
  body.vinea-lemonde-ready .product-showcase .prestige-grid {
    grid-template-columns: 1fr !important;
    padding-inline: 14px !important;
  }

  body.vinea-lemonde-ready .product-showcase .vinea-product-card,
  body.vinea-lemonde-ready .product-showcase .prestige-card {
    min-height: 500px !important;
  }

  body.vinea-lemonde-ready .product-showcase .prestige-actions,
  body.vinea-lemonde-ready .product-showcase .product-actions {
    grid-template-columns: minmax(92px, .76fr) minmax(0, 2.24fr) !important;
  }
}

/* vinea-right-hero-trio-20260702: right hero visual mirrors the left trio composition. */
.hero-bottle-right.hero-bottle-right-trio {
  width: clamp(230px, 23vw, 360px);
  height: min(62vh, 520px);
  right: clamp(12px, 3.6vw, 70px);
  bottom: 0;
  display: block;
  overflow: visible;
}
.hero-bottle-right-trio img {
  position: absolute;
  bottom: 0;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 16px 16px rgba(0,0,0,.25));
}
.hero-bottle-right-trio .hero-bottle-right-main {
  left: 50%;
  z-index: 3;
  height: min(61vh, 510px);
  transform: translateX(-50%);
}
.hero-bottle-right-trio .hero-bottle-right-side {
  z-index: 2;
  height: min(49vh, 410px);
  opacity: .96;
}
.hero-bottle-right-trio .hero-bottle-right-side-left {
  left: 3%;
  transform: translateX(-12%);
}
.hero-bottle-right-trio .hero-bottle-right-side-right {
  right: 0;
  transform: translateX(12%);
}
@media (min-width: 1500px) {
  .hero-bottle-right.hero-bottle-right-trio { right: 4vw; height: min(65vh, 560px); }
  .hero-bottle-right-trio .hero-bottle-right-main { height: min(64vh, 545px); }
  .hero-bottle-right-trio .hero-bottle-right-side { height: min(51vh, 440px); }
}
@media (max-width: 1366px) {
  .hero-bottle-right.hero-bottle-right-trio { right: 2.4vw; width: clamp(210px, 22vw, 310px); }
  .hero-bottle-right-trio .hero-bottle-right-main { height: min(56vh, 460px); }
  .hero-bottle-right-trio .hero-bottle-right-side { height: min(45vh, 365px); }
}
@media (max-width: 1024px) {
  .hero-bottle-right.hero-bottle-right-trio { right: 1.6vw; width: 210px; height: 390px; }
  .hero-bottle-right-trio .hero-bottle-right-main { height: 380px; }
  .hero-bottle-right-trio .hero-bottle-right-side { height: 300px; }
}
@media (max-width: 768px) {
  .hero-bottle-right.hero-bottle-right-trio { opacity: .55; right: -18px; width: 170px; height: 310px; }
  .hero-bottle-right-trio .hero-bottle-right-main { height: 300px; }
  .hero-bottle-right-trio .hero-bottle-right-side { height: 235px; }
}
@media (max-width: 560px) {
  .hero-bottle-right.hero-bottle-right-trio { display: none; }
}


/* vinea-product-article-uniform-20260702 */
body.vinea-lemonde-ready .product-showcase .vinea-products-grid,
body.vinea-lemonde-ready .product-showcase .prestige-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
@media (max-width: 760px) {
  body.vinea-lemonde-ready .product-showcase .vinea-products-grid,
  body.vinea-lemonde-ready .product-showcase .prestige-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 560px) {
  body.vinea-lemonde-ready .product-showcase .vinea-products-grid,
  body.vinea-lemonde-ready .product-showcase .prestige-grid {
    grid-template-columns: 1fr !important;
  }
}
body.vinea-lemonde-ready .product-showcase .prestige-awards,
body.vinea-lemonde-ready .product-showcase .product-awards,
body.vinea-lemonde-ready .product-showcase .product-favorite {
  position: relative !important;
  z-index: 8 !important;
}
body.vinea-lemonde-ready .product-showcase .prestige-card h3,
body.vinea-lemonde-ready .product-showcase .prestige-info,
body.vinea-lemonde-ready .product-showcase .prestige-price-container,
body.vinea-lemonde-ready .product-showcase .prestige-actions,
body.vinea-lemonde-ready .product-showcase .product-actions {
  position: relative !important;
  z-index: 7 !important;
}
body.vinea-lemonde-ready .product-showcase .prestige-card:hover .wine-bottle-img,
body.vinea-lemonde-ready .product-showcase .prestige-card:focus-within .wine-bottle-img {
  clip-path: inset(34% 0 30% 0) !important;
  transform: scale(2.85) translateY(-6px) !important;
}
body.vinea-lemonde-ready .product-showcase .prestige-card.is-quantity-open:hover .wine-bottle-img,
body.vinea-lemonde-ready .product-showcase .prestige-card.is-quantity-open:focus-within .wine-bottle-img {
  clip-path: none !important;
  transform: none !important;
}
body.vinea-lemonde-ready .product-showcase .prestige-price-container {
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr) !important;
  align-items: start !important;
  gap: 8px !important;
  margin: 0 0 6px !important;
  padding: 0 !important;
}
body.vinea-lemonde-ready .product-showcase .prestige-price-left {
  display: block !important;
  flex: none !important;
  text-align: left !important;
  color: #555 !important;
  font-size: clamp(10px, .72vw, 11.5px) !important;
  line-height: 1.18 !important;
  padding: 0 !important;
}
body.vinea-lemonde-ready .product-showcase .prestige-price-right {
  display: block !important;
  flex: none !important;
  text-align: right !important;
  padding: 0 !important;
}
body.vinea-lemonde-ready .product-showcase .prestige-actions,
body.vinea-lemonde-ready .product-showcase .product-actions {
  margin: 7px -12px 3px !important;
}
body.vinea-lemonde-ready .product-showcase .prestige-card.is-quantity-open .prestige-actions,
body.vinea-lemonde-ready .product-showcase .prestige-card.is-quantity-open .product-actions {
  margin-top: 7px !important;
}
.seo-read-more-content .article-intro-grid {
  display: block !important;
  max-width: 980px !important;
  margin: 0 auto !important;
}
.seo-read-more-content .article-chapo,
.seo-read-more-content .article-chapo-2cols {
  max-width: 900px !important;
  margin: 0 auto 18px !important;
  column-count: 1 !important;
  text-align: justify !important;
  text-justify: inter-word !important;
  font-size: 15.5px !important;
  line-height: 1.72 !important;
}
.seo-read-more-content .article-chapo::first-letter {
  float: left;
  font-family: var(--serif);
  font-size: 48px;
  line-height: .85;
  padding: 7px 8px 0 0;
  color: #111;
}
.seo-read-more-content .article-columns {
  max-width: 980px !important;
  margin: 0 auto !important;
  column-count: 2;
  column-gap: 42px;
}
.seo-read-more-content .article-columns .article-intertitre {
  break-after: avoid;
  margin-top: 0 !important;
  padding-top: 16px;
}
.seo-read-more-content .article-columns .article-texte {
  break-inside: avoid;
}
.seo-read-more-content .article-encadre {
  float: right;
  width: min(330px, 42%);
  margin: 6px 0 18px 28px !important;
  padding: 16px 18px !important;
  border: 1px solid #111;
  background: #f8f8f8;
  text-align: left;
}
.seo-read-more-content .article-encadre-titre {
  margin: 0 0 12px !important;
  font-family: var(--serif);
  font-size: 18px !important;
  line-height: 1.2 !important;
  text-align: center !important;
  font-weight: 400 !important;
}
.seo-read-more-content .article-encadre ol {
  margin: 0;
  padding: 0;
  counter-reset: encadre;
  list-style: none;
}
.seo-read-more-content .article-encadre li {
  counter-increment: encadre;
  position: relative;
  padding-left: 38px;
  margin: 0 0 12px;
  font-size: 12.5px;
  line-height: 1.45;
}
.seo-read-more-content .article-encadre li::before {
  content: counter(encadre);
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
@media (max-width: 900px) {
  .seo-read-more-content .article-columns { column-count: 1; }
  .seo-read-more-content .article-encadre {
    float: none;
    width: min(100%, 520px);
    margin: 18px auto !important;
  }
}

/* Header counters: fixed red circles, hidden when the count is zero. */
body.vinea-lemonde-ready .vinea-news-action .vinea-badge,
body.vinea-lemonde-ready .vinea-news-action .vinea-cart-badge,
body.vinea-lemonde-ready .vinea-news-action .vinea-selection-badge {
  position: absolute !important;
  top: -9px !important;
  right: -9px !important;
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  min-height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  border-radius: 50% !important;
  background: #861a22 !important;
  color: #fff !important;
  display: none;
  align-items: center !important;
  justify-content: center !important;
  place-items: center !important;
  text-align: center !important;
  font: 700 11px/1 Arial, Helvetica, sans-serif !important;
  line-height: 24px !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
  transform: none !important;
}

body.vinea-lemonde-ready .vinea-news-action.has-count .vinea-badge,
body.vinea-lemonde-ready .vinea-news-action.has-count .vinea-selection-badge,
body.vinea-lemonde-ready .vinea-news-action.has-items .vinea-cart-badge {
  display: inline-flex !important;
}

body.vinea-lemonde-ready .vinea-news-action:not(.has-count) .vinea-badge,
body.vinea-lemonde-ready .vinea-news-action:not(.has-count) .vinea-selection-badge,
body.vinea-lemonde-ready .vinea-news-action.vinea-cart:not(.has-items) .vinea-cart-badge {
  display: none !important;
}

/* Final product card width and filter color tuning. */
body.vinea-lemonde-ready .product-showcase .vinea-products-grid,
body.vinea-lemonde-ready .product-showcase .prestige-grid {
  width: min(1310px, calc(100vw - 22px)) !important;
  max-width: min(1310px, calc(100vw - 22px)) !important;
  gap: 12px !important;
  padding-left: 8px !important;
  padding-right: 8px !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card,
body.vinea-lemonde-ready .product-showcase .vinea-product-card {
  padding-left: clamp(12px, 1.1vw, 18px) !important;
  padding-right: clamp(12px, 1.1vw, 18px) !important;
}

body.vinea-lemonde-ready .product-showcase .product-favorite {
  position: absolute !important;
  top: 28px !important;
  right: 14px !important;
  z-index: 12 !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-price-container {
  grid-template-columns: minmax(0, .84fr) minmax(118px, 1.16fr) !important;
  column-gap: 6px !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-price-right .unit-price {
  display: block !important;
  white-space: nowrap !important;
  font-size: clamp(11px, .8vw, 12.5px) !important;
}

.product-filter-zone .product-filter-toggle,
.product-filter-zone.is-open .product-filter-toggle,
.product-filter-zone .product-filter-toggle:hover,
.product-filter-zone .product-filter-toggle:focus-visible {
  background: #111 !important;
  border-color: #111 !important;
  color: #fff !important;
}

body .product-filter-zone .product-filter-toggle,
body .product-filter-zone.is-open .product-filter-toggle,
body .product-filter-zone .product-filter-toggle[aria-expanded="true"],
body .product-filter-zone .product-filter-toggle:hover,
body .product-filter-zone .product-filter-toggle:focus-visible,
body.vinea-lemonde-ready .product-filter-zone .product-filter-toggle {
  background: #111 !important;
  border-color: #111 !important;
  color: #fff !important;
}

/* Final product label zoom: the magnified label never covers notes or product text. */
body.vinea-lemonde-ready .product-showcase .prestige-card .wine-bottle-img {
  z-index: 3 !important;
  transform-origin: 50% 53% !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card:hover .wine-bottle-img,
body.vinea-lemonde-ready .product-showcase .prestige-card:focus-within .wine-bottle-img {
  width: calc(100% - 6px) !important;
  max-width: calc(100% - 6px) !important;
  height: 240px !important;
  max-height: 240px !important;
  object-fit: cover !important;
  object-position: center 52% !important;
  clip-path: none !important;
  transform: none !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card .prestige-awards,
body.vinea-lemonde-ready .product-showcase .prestige-card .product-awards {
  position: relative !important;
  z-index: 40 !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card .prestige-awards,
body.vinea-lemonde-ready .product-showcase .prestige-card .product-awards {
  background: #f9f9f9 !important;
  box-shadow: 0 0 0 4px #f9f9f9 !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card h3,
body.vinea-lemonde-ready .product-showcase .prestige-card .prestige-info,
body.vinea-lemonde-ready .product-showcase .prestige-card .prestige-price-container,
body.vinea-lemonde-ready .product-showcase .prestige-card .prestige-actions,
body.vinea-lemonde-ready .product-showcase .prestige-card .product-actions {
  z-index: 35 !important;
  background: #f9f9f9 !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card.is-quantity-open:hover .wine-bottle-img,
body.vinea-lemonde-ready .product-showcase .prestige-card.is-quantity-open:focus-within .wine-bottle-img {
  clip-path: none !important;
  transform: none !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card .product-favorite {
  position: absolute !important;
  top: 13px !important;
  right: 14px !important;
  z-index: 45 !important;
}

/* Final awards/favorite placement: notes left, heart right on the first note line. */
body.vinea-lemonde-ready .product-showcase .prestige-card {
  position: relative !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card .prestige-awards,
body.vinea-lemonde-ready .product-showcase .prestige-card .product-awards {
  position: absolute !important;
  top: 13px !important;
  left: 16px !important;
  right: 52px !important;
  z-index: 44 !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-card .product-favorite {
  position: absolute !important;
  top: 13px !important;
  right: 14px !important;
  z-index: 45 !important;
  margin: 0 !important;
}

body.vinea-lemonde-ready .product-showcase .prestige-price-left {
  text-align: center !important;
  align-self: center !important;
}

/* Header : pictogramme au-dessus du libelle, notamment MA SELECTION. */
body.vinea-lemonde-ready .vinea-news-actions {
  align-items: center !important;
}

body.vinea-lemonde-ready .vinea-news-action {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 3px !important;
  text-align: center !important;
}

body.vinea-lemonde-ready .vinea-news-action .vinea-picto {
  display: block !important;
  margin: 0 auto !important;
  order: 0 !important;
}

body.vinea-lemonde-ready .vinea-news-action > span:not(.vinea-picto):not(.vinea-badge):not(.vinea-cart-badge):not(.vinea-selection-badge) {
  display: block !important;
  order: 1 !important;
  line-height: 1.05 !important;
}

@media (max-width: 430px) {
  body.vinea-lemonde-ready .vinea-news-action > span:not(.vinea-picto):not(.vinea-badge):not(.vinea-cart-badge):not(.vinea-selection-badge) {
    display: none !important;
  }

  body.vinea-lemonde-ready .vinea-news-action:hover > span:not(.vinea-picto):not(.vinea-badge):not(.vinea-cart-badge):not(.vinea-selection-badge),
  body.vinea-lemonde-ready .vinea-news-action:focus-visible > span:not(.vinea-picto):not(.vinea-badge):not(.vinea-cart-badge):not(.vinea-selection-badge) {
    position: absolute !important;
    top: calc(100% + 1px) !important;
    left: 50% !important;
    z-index: 40 !important;
    display: block !important;
    min-width: max-content !important;
    padding: 2px 3px !important;
    background: rgba(0,0,0,.82) !important;
    color: #fff !important;
    font-size: 6.4px !important;
    line-height: 1.05 !important;
    transform: translateX(-50%) !important;
    white-space: nowrap !important;
  }
}
