/* GLOBAL VARS */
:root {
  --pure-white: #fff;
  --pure-black: #111;
  --gold: #EAA900;
  --very-soft-grey: #F8F8F8;
  --light-grey: #BFBFBF;
  --soft-vert-sauge: #DEE4E2;
  --vert-sauge: #9CCCBB;
  --light-pink: #EDC6CD;
  --light-blue: #C8DFF0;

  --bg-color-or: #EAA900;
  --bg-color-red: #CE122D;
  --bg-color-pink: #E82E8A;
  --bg-color-blue: #137FB3;

  --bottle-red: #CE122D;
  --bottle-orange: #EE7202;
  --bottle-pink: #E82E8A;
  --bottle-blue: #137FB3;

  --btn-gold: #E4AD42;
  --btn-grey: #999;
  --btn-blue: #137FB3;
  --btn-green: #9CCCBB;
  --btn-pink: #E82E8A;

}

/* FONTS */
@font-face {
  font-family: 'Myanmar Text Regular';
  src: url('/assets/fonts/myanmar-text-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Myanmar Text Bold';
  src: url('/assets/fonts/myanmar-text-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Syncopate Regular';
  src: url('/assets/fonts/Syncopate-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Syncopate Bold';
  src: url('/assets/fonts/Syncopate-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* 0. COLORS */
.gold {
  color: var(--gold);
}

.bg-gold {
  background-color: var(--gold);
}

.green {
  color: var(--vert-sauge);
}

.bg-green {
  background-color: var(--vert-sauge);
}

.pink {
  color: var(--light-pink);
}

.bg-pink {
  background-color: var(--light-pink);
}

.blue {
  color: var(--light-blue);
}

.bg-blue {
  background-color: var(--light-blue);
}

/* 1. RESET / NORMALISATION */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  color: var(--pure-black);
  background-color: var(--pure-white);
}

/* 2. TYPOGRAPHIE */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1em;
}

/* 6. LAYOUT UTILITIES */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1em;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

/* bottle displayer */
#bottleDisplayer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12rem 2rem;
  padding: 8rem;
}

#bottleDisplayer .bottle-wrapper {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: auto;
  margin-left: auto;
}

#bottleDisplayer .backgrounds {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#bottleDisplayer .circle-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

#bottleDisplayer .pattern {
  position: absolute;
  width: 80%;
  height: 80%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s ease, width 0.6s ease, height 0.6s ease;
  transform-origin: center center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#bottleDisplayer .bottle-wrapper:hover .pattern {
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) rotate(90deg);
}

#bottleDisplayer .bottle {
  position: relative;
  z-index: 2;
  height: 120%;
}

#bottleDisplayer .bottle-caption {
  position: absolute;
  bottom: -6rem;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  z-index: 2;
  font-family: 'Syncopate Bold';
  text-transform: uppercase;
}

#bottleDisplayer .badge-new {
  position: absolute;
  top: 60px;
  right: 23px;
  width: 115px;
  z-index: 10;
}

/*/ HOME PAGE /*/
#homeResponsiveVideo {
  width: 100%;
}

.title-home-bottles-container {
  display: flex;
  flex-direction: row;
  position: relative;
  margin: 6rem auto 0;
  width: 45rem;
}

.title-home-bottles-container .titles,
#homeCocktails .cocktails-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-right: 1rem;
  text-align: right;
}

.title-home-bottles-container .titles h1,
#homeCocktails .cocktails-header h1,
.bloc-image-text .text-container h1 {
  font-size: 50px;
  color: var(--gold);
  text-transform: uppercase;
  font-family: 'Syncopate Bold';
}

.title-home-bottles-container .titles h1 span,
#homeCocktails .cocktails-header span,
.bloc-image-text .text-container h1 span {
  color: var(--light-grey);
  font-size: 30px;
  font-family: 'Syncopate Regular';
}

.title-home-bottles-container .titles .separator {
  margin-left: 3rem;
  margin-top: 1rem;
  height: 5rem;
  width: 2px;
  background-color: var(--gold);
}

.title-home-bottles-container .content {
  font-family: 'Myanmar Text Regular';
  padding: 1rem 2rem;
}

.title-home-bottles-container .content strong {
  font-family: 'Myanmar Text Bold';
}

.btn-container {
  text-align: center;
  margin: 3rem 0;
}

.space-btn {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.125em;
  padding: 1em 2em;
  background: none;
  border: none;
  color: var(--btn-grey);
  cursor: pointer;
  font-weight: bold;
  font-family: sans-serif;
  overflow: hidden;
}

.btn-gold {
  color: var(--btn-gold);
}

.btn-blue {
  color: var(--btn-blue);
}

.btn-pink {
  color: var(--btn-pink);
}

.btn-green {
  color: var(--btn-green);
}


/* Soulignement haut et bas en gris (état initial) */
.space-btn::before,
.space-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--btn-grey);
  pointer-events: none;
}

.space-btn.btn-gold::before,
.space-btn.btn-gold::after {
  background-color: var(--btn-gold);
}

.space-btn.btn-blue::before,
.space-btn.btn-blue::after {
  background-color: var(--btn-blue);
}

.space-btn.btn-pink::before,
.space-btn.btn-pink::after {
  background-color: var(--btn-pink);
}

.space-btn.btn-green::before,
.space-btn.btn-green::after {
  background-color: var(--btn-green);
}

.space-btn::before {
  top: 0;
  left: 0;
}

.space-btn::after {
  bottom: 0;
  right: 0;
}

.space-btn:hover {
  color: var(--btn-gold);
}

.space-btn:hover::before {
  background-color: transparent;
  animation: hoverShadowBefore 1s forwards;
  box-shadow: inset 1px 1px 0 0 var(--btn-gold);
}

.space-btn.btn-blue:hover::before {
  box-shadow: inset 1px 1px 0 0 var(--btn-blue);
}

.space-btn.btn-pink:hover::before {
  box-shadow: inset 1px 1px 0 0 var(--btn-pink);
}

.space-btn.btn-green:hover::before {
  box-shadow: inset 1px 1px 0 0 var(--btn-green);
}

.space-btn:hover::after {
  background-color: transparent;
  animation: hoverShadowAfter 1s forwards;
  box-shadow: inset -1px -1px 0 0 var(--btn-gold);
}

.space-btn.btn-blue:hover::after {
  box-shadow: inset -1px -1px 0 0 var(--btn-blue);
}

.space-btn.btn-pink:hover::after {
  box-shadow: inset -1px -1px 0 0 var(--btn-pink);
}

.space-btn.btn-green:hover::after {
  box-shadow: inset -1px -1px 0 0 var(--btn-green);
}

.btn-blue:hover {
  color: var(--btn-blue);
}

.btn-pink:hover {
  color: var(--btn-pink);
}

.btn-green:hover {
  color: var(--btn-green);
}

/* new bottle bloc */
#newContainer {
  position: relative;
  height: 50vw;
  background-image: url('../img/background-desalcoolise/fond-kriter-desalcolise-desktop.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

#newContainer .titles-new {
  text-align: center;
  margin-top: 3vw;
}

#newContainer .titles-new img {
  width: 14vw;
}

#newContainer .titles-new h1 {
  font-family: 'Syncopate Bold';
  color: var(--bottle-blue);
  text-transform: uppercase;
  letter-spacing: .2vw;
  font-size: 1.5vw;
}

#newContainer .bg-svg {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

#newContainer .bg-svg img {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  width: 23vw;
}

#newContainer .bg-svg .crante {
  width: 16vw;
  transition: width 1s ease;
  z-index: -1;
}

#newContainer .bg-svg .crante.crante-mobile {
  display: none;
}


#newContainer .bottle {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 9vw;
}

#newContainer .lines {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6vw;
  z-index: 3;
  font-size: 1vw;
}

#newContainer .blue-line {
  display: none;
}

#newContainer .lines.left {
  text-align: right;
  left: 25vw;
  width: 15vw;
}

#newContainer .lines.right {
  right: 25vw;
  width: 15vw;
}

#newContainer .lines span {
  display: block;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.6s ease;
}

#newContainer.active .crante {
  width: 23vw;
}

#newContainer.active .lines.left span,
#newContainer.active .lines.right span {
  opacity: 1;
  transform: translateX(0);
}

#newContainer .lines.left .span-decal {
  padding-right: 3vw;
  padding-top: 1vw;
}

#newContainer .lines.right .span-decal {
  padding-left: 3vw
}

/* Spans gauche */
.new-container.active .lines.left span:nth-child(1) {
  transition-delay: 0.2s;
}

.new-container.active .lines.left span:nth-child(2) {
  transition-delay: 0.4s;
}

.new-container.active .lines.left span:nth-child(3) {
  transition-delay: 0.6s;
}

/* Spans droite — commencent après ceux de gauche */
.new-container.active .lines.right span:nth-child(1) {
  transition-delay: 0.8s;
}

.new-container.active .lines.right span:nth-child(2) {
  transition-delay: 1s;
}

.new-container.active .lines.right span:nth-child(3) {
  transition-delay: 1.2s;
}

/* HOME COCKTAILS */
#homeCocktails {
  padding: 4rem 4vw;
  position: relative;
}

#homeCocktails .cocktails-header {
  justify-content: flex-end;
  margin-right: 3rem;
  margin-bottom: 3rem;
}

/* Slider wrapper */
#homeCocktails .slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 2rem;
}

#homeCocktails .slider-arrow {
  background: none;
  border: none;
  width: 1vw;
  cursor: pointer;
  color: #e2a631;
  z-index: 10;
  padding: 0 1vw;
}

#homeCocktails .slider-arrow.left {
  margin-right: -1vw;
  width: 5vw;
}

#homeCocktails .slider-arrow.right {
  margin-left: -1vw;
  width: 5vw;
}

/* Container scrollable */
#homeCocktails .img-round-container {
  display: flex;
  gap: .1vw;
  overflow: hidden;
  scroll-behavior: smooth;
  transition: transform 0.5s ease;
  width: 100%;
}

/* Items */
#homeCocktails a {
  text-decoration: none;
  color: black;
}

#homeCocktails .cocktail-item {
  flex: 0 0 25%;
  /* 4 items visibles */
  text-align: center;
  position: relative;
  min-width: 200px;
}

#homeCocktails .img-wrapper {
  position: relative;
  width: 15vw;
  height: 15vw;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

#homeCocktails .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  display: block;
  cursor: pointer;
}

#homeCocktails .overlay {
  position: absolute;
  z-index: 10;
  inset: 0;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  font-size: 1.2vw;
  text-align: center;
  padding: 1rem;
  cursor: pointer;
}

#homeCocktails .overlay.brut {
  background-color: var(--bg-color-red);
}

#homeCocktails .overlay.rose {
  background-color: var(--bg-color-pink);
}

#homeCocktails .overlay.demi-sec {
  background-color: var(--bg-color-or);
}

#homeCocktails .overlay.desalcoolise {
  background-color: var(--bg-color-blue);
}

#homeCocktails .cocktail-item:hover .img-wrapper .overlay {
  opacity: 1;
}

#homeCocktails .cocktail-item h2 {
  margin-top: 1rem;
  font-size: 1vw;
  letter-spacing: .1vw;
  cursor: pointer;
  transition: all 0.5s ease;
}

#homeCocktails .cocktail-item:hover h2.brut {
  color: var(--bg-color-red);
}

#homeCocktails .cocktail-item:hover h2.demi-sec {
  color: var(--bg-color-or);
}

#homeCocktails .cocktail-item:hover h2.rose {
  color: var(--bg-color-pink);
}

#homeCocktails .cocktail-item:hover h2.desalcoolise {
  color: var(--bg-color-blue);
}

.slider-arrow.hidden {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* BLOC photo / text */
.bloc-image-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 4rem 0;
}

.bloc-image-text.reverse {
  flex-direction: row-reverse;
}

.bloc-image-text .image-container {
  width: 40vw;
  height: 40vw;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.bloc-image-text .image-container img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.bloc-image-text .text-container {
  width: 40vw;
  padding: 0 8vw;
  font-family: 'Myanmar Text Regular';
  letter-spacing: .06em;
}


.bloc-image-text .text-container h1 span {
  font-family: 'Syncopate Bold';
}

.bloc-image-text .text-container .btn-container {
  text-align: left;
}

.bloc-image-text .text-container .separator {
  margin-top: .5rem;
  margin-bottom: 2rem;
  height: 2px;
  width: 6rem;
  background-color: var(--gold);
}

.bloc-image-text .text-container p {
  text-align: justify;
}

.bloc-image-text.bloc-column {
  flex-direction: column;
  margin: 10rem 0;
}

.bloc-image-text.bloc-column .text-container {
  width: 100%;
  text-align: center;
}

.bloc-image-text.bloc-column .text-container h1 {
  font-size: 40px;
}

.bloc-image-text.bloc-column img {
  width: 100%;
}

@media screen and (max-width: 768px) {

  .bloc-image-text.bloc-column {
    margin: 0rem 0 6rem;
  }

  .bloc-image-text.bloc-column .text-container {
    padding: 1rem 0;
  }

  .bloc-image-text.bloc-column .text-container h1 {
    font-size: 20px;
  }

  .bloc-image-text.bloc-column .text-container h1 span {
    font-size: 20px;
  }
}

/* - PAGES - */
/* nos vins */

.nos-vins .titles {
  margin-top: 4rem;
  text-align: center;
}

.nos-vins .titles h1 {
  color: var(--light-pink);
  margin: 0;
  letter-spacing: .1em;
  font-family: 'Syncopate Bold';
}

.nos-vins .titles img {
  width: 30rem;
  position: relative;
  margin-top: -1.5rem;
}

.nos-vins .text-container.brut h1,
.nos-cocktails .text-container.brut h1 {
  color: var(--bottle-red);
}

.nos-vins .text-container.brut .separator,
.nos-cocktails .text-container.brut .separator {
  background-color: var(--bottle-red);
}

.nos-vins .text-container.demi-sec h1,
.nos-cocktails .text-container.demi-sec h1 {
  color: var(--bg-color-or);
}

.nos-vins .text-container.demi-sec .separator,
.nos-cocktails .text-container.demi-sec .separator {
  background-color: var(--bg-color-or);
}

.nos-vins .text-container.rose h1,
.nos-cocktails .text-container.rose h1 {
  color: var(--bottle-pink);
}

.nos-vins .text-container.rose .separator,
.nos-cocktails .text-container.rose .separator {
  background-color: var(--bottle-pink);
}

.nos-vins .text-container.desalcoolise h1,
.nos-cocktails .text-container.desalcoolise h1 {
  color: var(--bottle-blue);
}

.nos-vins .text-container.desalcoolise .separator,
.nos-cocktails .text-container.desalcoolise .separator {
  background-color: var(--bottle-blue);
}

/* nos cocktails */
.nos-cocktails .bloc-image-text {
  padding: 6rem 0;
  margin: 0;
}

.nos-cocktails .bloc-image-text:nth-child(odd) {
  background-color: var(--very-soft-grey);
}

.nos-cocktails .bloc-image-text .image-container {
  border-radius: 50%;
  width: 30vw;
  height: 30vw;
}

.nos-cocktails .bloc-image-text ul {
  width: 96%;
  margin-left: 4%;
}

/* notre histoire */

.notre-histoire .titles {
  margin-top: 5rem;
  text-align: center;
}

.notre-histoire .titles h1 {
  color: var(--gold);
  margin: 0;
  letter-spacing: .1em;
  font-family: 'Syncopate Bold';
  font-size: 2.4em;
}

.notre-histoire .titles img {
  width: 26rem;
  position: relative;
  margin-top: -1.5rem;
}

.notre-histoire .intro {
  font-family: 'Myanmar Text Regular';
  max-width: 60rem;
  margin: 3rem auto;
  padding: 0 2rem;
}

.notre-histoire .intro div {
  width: 45rem;
  margin-left: auto;
  margin-right: auto;
}

.notre-histoire .intro .decoration {
  position: absolute;
  right: 0;
  width: 600px;
}

button.disabled {
  display:none;
  cursor: not-allowed;
  pointer-events: none;
}


/* ---- frise chrono ---- */

/* ===== Frise chronologique sticky ===== */
.timeline {
  position: sticky;
  top: 0;
  z-index: 50;
}

.timeline__inner {
  width: 500px;
  font-family: 'Syncopate Bold';
  margin: 0 auto;
  padding: .5rem 0rem;
  /* espace pour le soulignage */
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  overflow-x: auto;
  scrollbar-width: thin;
  position: relative;
}

.timeline a {
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  color: #111;
  padding: .25rem 0;
  font-weight: 700;
  letter-spacing: .06em;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.timeline__underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 56px;
  /* taille fixe */
  background: #111;
  transform: translateX(0);
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
  /* coulissement fluide */
  will-change: transform;
  z-index: 2;
  pointer-events: none;
}

.timeline__inner::after {
  content: "";
  display: none;
}

/* ===== Section / blocs ===== */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) 1.5rem;
}

.feature {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.feature--reverse {
  flex-direction: row-reverse;
}

@media (max-width: 900px) {
  .feature, .feature--reverse {
    flex-direction: column;
  }
}

/* ===== Media (bouteille + anneau animé) ===== */
.feature__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 380px;
  aspect-ratio: 1.4/1;
}

.bottle {
  height: 400px;
  position: relative;
  z-index: 2;
}

.ring {
  position: absolute;
  inset: 3rem 0 0 0;
  margin: 0 auto;
  width: min(300px, 95%);
  height: auto;
  z-index: 1;
  animation: spin 40s linear infinite;
  opacity: 1;
  pointer-events: none;
}

.ring circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-dasharray: 4 10;
  opacity: .9;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ring {
    animation: none;
  }

  .timeline__underline {
    transition: none;
  }
}

/* ===== Contenu ===== */

.feature__content h1 {
  font-family: 'Syncopate Regular';

}

.feature__content h2 {
  font-family: 'Syncopate Bold';
  margin: 0 0 .5rem 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 800;
}

.underline {
  width: 5rem;
  height: 3px;
  transform-origin: left center;
  margin-bottom: 1rem;
}

.feature__content p {
  margin: 0 0 1rem 0;
  color: #6b7280;
  max-width: 60ch;
  font-size: 1rem;
}

.btn-primary {
  cursor: pointer;
  appearance: none;
  padding: .6rem 1rem;
  border: none;
  font-weight: 700;
  background: transparent;
}

/* nos astuces */
.nos-astuces .titles {
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--very-soft-grey);
}

.nos-astuces .titles img {
  width: 45rem;
}

.nos-astuces .titles .mobile {
  display: none;
}

.nos-astuces .titles span {
  font-family: 'Myanmar Text Regular';
  letter-spacing: .04em;
}

.nos-astuces .bloc-txt-video {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.nos-astuces .bloc-txt-video.grey {
  background-color: var(--very-soft-grey);
}

.nos-astuces .bloc-txt-video.reverse {
  flex-direction: row-reverse;
}

.nos-astuces .bloc-txt-video .video-container {
  width: 20vw;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.nos-astuces .bloc-txt-video .video-container .cercle {
  position: absolute;
  width: 20vw;
  z-index: 0;
  margin-top: 10%;
  right: -6vw;
}

.nos-astuces .bloc-txt-video.grey .video-container .cercle {
  position: absolute;
  width: 20vw;
  z-index: 0;
  margin-top: -10%;
  left: -6vw;
}

.nos-astuces .bloc-txt-video .video-container video {
  z-index: 1;
}

.nos-astuces .bloc-txt-video .video-container img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.nos-astuces .bloc-txt-video .text-container {
  width: 50vw;
  padding: 4rem 6vw;
  letter-spacing: .06em;
}


.nos-astuces .bloc-txt-video .text-container h1 {
  font-family: 'Syncopate Bold';
  text-transform: uppercase;
  color: var(--gold);
  font-size: 30px;
  letter-spacing: .1em;
  margin-bottom: 2rem;
}

.nos-astuces .bloc-txt-video .text-container p {
  line-height: 1.8em;
  font-family: 'Myanmar Text Regular';
}

.nos-astuces .bloc-txt-video .text-container .btn-container {
  text-align: left;
}

.nos-astuces .bloc-txt-video .text-container .separator {
  margin-top: .5rem;
  margin-bottom: 2rem;
  height: 2px;
  width: 6rem;
  background-color: var(--gold);
}

/* notre expertise */
.notre-expertise {
  background-color: var(--soft-vert-sauge);
}

.notre-expertise .titles {
  padding: 6rem 0;
  text-align: center;
  font-family: 'Syncopate Bold';
  text-transform: uppercase;
  letter-spacing: .3em;
}

.notre-expertise .titles h1 {
  font-size: 50px;
  color: var(--vert-sauge);
}

.notre-expertise .titles h1 span {
  font-size: 35px;
  color: black;
}

.notre-expertise .bloc-wide-text .image-wide {
  height: 25rem;
  overflow: hidden;
}

.notre-expertise .bloc-wide-text .image-wide img {
  width: 100%;
  margin-top: -20rem;
}

.notre-expertise .bloc-wide-text .text {
  width: 45vw;
  margin-left: auto;
  margin-right: auto;
  padding: 6rem 0;
}

.notre-expertise .bloc-wide-text .text .mention {
  height: 4rem;
}

.notre-expertise .bloc-wide-text .text.justify-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.notre-expertise .bloc-wide-text .text.justify-right h1 {
  text-align: right;
}

.notre-expertise .bloc-wide-text .text h1 {
  color: var(--vert-sauge);
  font-size: 35px;
  text-transform: uppercase;
  font-family: 'Syncopate Bold';
  letter-spacing: .1em;
  /* margin-top: -2rem; */
  margin-bottom: 2rem;
}

.notre-expertise .bloc-wide-text .text .separator {
  margin-top: .5rem;
  margin-bottom: 2rem;
  height: 2px;
  width: 6rem;
  background-color: var(--vert-sauge);
}

.notre-expertise .bloc-wide-text .text p {
  font-family: 'Myanmar Text Regular';
  letter-spacing: .1em;
  line-height: 1.8em;
  text-align: justify;
}

.notre-expertise .bloc-wide-text .filigrane-right {
  position: absolute;
  width: 20rem;
  right: 0;
  margin-top: -20rem;
}

.notre-expertise .bloc-wide-text .filigrane-left {
  position: absolute;
  width: 20rem;
  left: 0;
}

.notre-expertise .bloc-wide-text .logos-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.notre-expertise .bloc-wide-text .logos-container img {
  height: 6rem;
  margin: 0 1rem 10rem;
}

/* contact */
.page-contact h1 {
  font-family: 'Syncopate Bold';
  text-align: center;
  letter-spacing: .2em;
  margin: 4rem 0 1rem;
  text-transform: uppercase;
  color: var(--gold);
}

.page-contact #contact {
  width: 60rem;
  margin-right: auto;
  margin-bottom: 4rem;
  margin-left: auto;
}

.page-contact .separator {
  margin-right: auto;
  margin-bottom: 2rem;
  margin-left: auto;
  height: 2px;
  width: 6rem;
  background-color: var(--gold);
}

form.contact label,
form.contact legend,
form.contact label[for] {
  font-family: 'Syncopate Bold';
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .8em;
}


form.contact .fieldset select,
form.contact .fieldset textarea,
form.contact .fieldset input:not([type="submit"]) {
  background-color: var(--very-soft-grey);
  font-family: 'Myanmar Text Regular';
  letter-spacing: .1em;
}

form.contact #newsletter-label,
form.contact #rgpd-label {
  color: var(--gold);
}

form.contact .button {
  background-color: var(--very-soft-grey);
  transition: all .2s ease-in-out;
  font-family: 'Myanmar Text Regular';
  letter-spacing: .1em;
}

form.contact .button:hover {
  background-color: var(--bg-color-or);
}

/* 404 error */
.error-page {
  text-align: center;
  padding: 50px;
  min-height: 80vh;
}

.error-page h1 {
  font-size: 50px;
  margin-top: 20vh;
  margin-bottom: 20px;
  color: var(--gold);
}

.error-page p {
  font-family: 'Myanmar Text Regular';
  font-size: 20px;
  margin-bottom: 30px;
}

/* 7. ANIMATIONS */

@keyframes hoverShadowBefore {
  0% {
    width: 100%;
    height: 1px;
    top: 0;
    left: 0;
  }

  33% {
    width: 1px;
    height: 100%;
    top: 0;
    left: 0;
  }

  66% {
    width: 1px;
    height: 1px;
    top: calc(100% - 1px);
    left: 0;
  }

  100% {
    width: 100%;
    height: 1px;
    top: calc(100% - 1px);
    left: 0;
  }
}

@keyframes hoverShadowAfter {
  0% {
    width: 100%;
    height: 1px;
    bottom: 0;
    right: 0;
  }

  33% {
    width: 1px;
    height: 100%;
    bottom: 0;
    right: 0;
  }

  66% {
    width: 1px;
    height: 1px;
    bottom: calc(100% - 1px);
    right: 0;
  }

  100% {
    width: 100%;
    height: 1px;
    bottom: calc(100% - 1px);
    right: 0;
  }
}


/* 8. RESPONSIVE BREAKPOINTS */
@media screen and (max-width: 1920px) {
  #bottleDisplayer {
    padding: 7vw;
  }

  #bottleDisplayer .bottle-wrapper {
    width: 300px;
    height: 300px;
  }
}


@media screen and (max-width: 1600px) {
  .bloc-image-text .text-container {
    padding: 0px 4vw;
  }

  .title-home-bottles-container .titles h1,
  #homeCocktails .cocktails-header h1,
  .bloc-image-text .text-container h1 {
    font-size: 44px;
  }
}

@media screen and (max-width: 1460px) {
  #bottleDisplayer {
    gap: 10rem 0rem;
    padding: 4rem 0rem;
  }

  #bottleDisplayer .bottle-wrapper {
    width: 240px;
    height: 240px;
  }

  #bottleDisplayer .bottle-caption {
    bottom: -5rem;
  }

  #bottleDisplayer .badge-new {
    right: 4px;
    width: 95px;
  }

  .title-home-bottles-container .titles h1,
  #homeCocktails .cocktails-header h1,
  .bloc-image-text .text-container h1 {
    font-size: 37px;
  }

  .title-home-bottles-container .titles h1 span,
  #homeCocktails .cocktails-header h1 span,
  .bloc-image-text .text-container h1 span {
    font-size: 33px;
  }

}

@media screen and (max-width: 1150px) {
  #bottleDisplayer {
    grid-template-columns: repeat(2, 1fr);
    gap: 10rem 2rem;
    padding: 4rem 5vw;
  }

  .space-btn {
    position: relative;
    display: inline-block;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 0.125em;
    padding: 1em 2em;
    background: none;
    border: none;
    color: var(--btn-gold);
    cursor: pointer;
    font-weight: bold;
    font-family: sans-serif;
    overflow: hidden;
  }

  .space-btn::before,
  .space-btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--btn-gold);
    pointer-events: none;
  }

  .space-btn.btn-blue {
    color: var(--btn-blue);
  }

  .space-btn.btn-green {
    color: var(--btn-green);
  }

  .space-btn.btn-pink {
    color: var(--btn-pink);
  }

  #newContainer {
    height: 130vw;
    background-image: url('../img/background-desalcoolise/fond-kriter-desalcolise-mobile.jpg');
  }

  #newContainer .titles-new {
    margin-top: 6vw;
  }

  #newContainer .titles-new img {
    width: 25vw;
  }

  #newContainer .titles-new h1 {
    font-size: 3vw;
  }

  #newContainer .lines {
    gap: 1.5vw;
    font-size: 2.5vw;
  }

  #newContainer .lines.left,
  #newContainer .lines.right {
    text-align: center;
    left: 10vw;
    width: 80vw;
  }


  #newContainer .lines.left {
    top: 85vw;
  }

  #newContainer .lines.right {
    top: 104vw;
  }

  #newContainer .blue-line {
    display: block;
    margin: auto;
    background-color: var(--bottle-blue);
    content: '';
    width: 7vw;
    height: .3vw;
  }

  #newContainer .bottle {
    top: 36%;
    max-width: 13vw;
  }

  #newContainer .bg-svg {
    top: 38%;
  }

  #newContainer .bg-svg img {
    width: 38vw;
  }

  #newContainer.active .crante {
    width: 33vw;
  }

  #newContainer .bg-svg .crante.crante-desktop {
    display: none;
  }

  #newContainer .bg-svg .crante.crante-mobile {
    display: block;
  }

  .title-home-bottles-container .titles h1,
  #homeCocktails .cocktails-header h1,
  .bloc-image-text .text-container h1 {
    font-size: 30px;
  }

  .title-home-bottles-container .titles h1 span,
  #homeCocktails .cocktails-header h1 span,
  .bloc-image-text .text-container h1 span {
    font-size: 25px;
  }

  #homeCocktails {
    padding: 4rem 0;
  }

  #homeCocktails .slider-arrow {
    display: none;
  }

  #homeCocktails .img-round-container {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    /* IE / Edge */
    scrollbar-width: none;
    /* Firefox */
    overflow-x: auto;
    overflow-y: hidden;
  }

  #home-cocktails .img-round-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
  }

  #homeCocktails .cocktail-item {
    flex: 0 0 auto;
    min-width: 160px;
  }

  #homeCocktails .img-round-container {
    gap: 3rem;
    padding: 1rem;
  }

  #homeCocktails .img-wrapper {
    width: 17rem;
    height: 17rem;
  }

  #homeCocktails .cocktail-item h2 {
    font-size: 1rem;
  }

  .nos-astuces .titles {
    padding: 4rem 2rem;
  }

  .nos-astuces .titles img {
    width: 30rem;
  }

  .nos-astuces .titles span {
    margin-top: 1rem;
    text-align: center;
  }

  .nos-astuces .titles .desktop {
    display: none;
  }

  .nos-astuces .titles .mobile {
    display: block;
  }

  .nos-astuces .bloc-txt-video {
    flex-direction: column-reverse;
    padding: 4rem 0;
  }

  .nos-astuces .bloc-txt-video.reverse {
    flex-direction: column-reverse;
    padding: 4rem 0;
  }

  .nos-astuces .bloc-txt-video .video-container {
    width: 60vw;
  }

  .nos-astuces .bloc-txt-video .text-container {
    width: 60vw;
    padding: 4rem 0;
  }


  .nos-astuces .bloc-txt-video.grey .video-container .cercle {
    display: none;
  }

  .notre-expertise .bloc-wide-text .image-wide {
    height: 25rem;
  }

  .notre-expertise .bloc-wide-text .image-wide img {
    margin-top: -5rem;
  }

  .notre-expertise .bloc-wide-text .text {
    width: 70vw;
  }

  .page-contact #contact {
    width: 90vw;
    margin-bottom: 6rem;
  }
}


@media screen and (max-width: 768px) {
  .title-home-bottles-container {
    flex-direction: column;
    width: 100vw;
  }

  .title-home-bottles-container .titles {
    padding-right: inherit;
    text-align: center;
    justify-content: center;
  }

  .title-home-bottles-container .titles h1,
  #homeCocktails .cocktails-header h1,
  .bloc-image-text .text-container h1 {
    font-size: 30px;
  }

  .title-home-bottles-container .titles h1 span,
  #homeCocktails .cocktails-header h1 span,
  .bloc-image-text .text-container h1 span {
    font-size: 25px;
  }

  .title-home-bottles-container .separator {
    display: none;
  }

  .title-home-bottles-container .content {
    text-align: center;
  }

  #bottleDisplayer {
    grid-template-columns: repeat(2, 1fr);
    gap: 10rem 0rem;
  }

  #newContainer {
    height: 170vw;
  }

  #newContainer .bg-svg {
    top: 36%;
  }

  #newContainer .bg-svg img {
    width: 13rem;
  }

  #newContainer.active .crante {
    width: 11.3rem;
  }

  #newContainer .bottle {
    height: 240px;
    max-width: inherit;
  }

  #newContainer .titles-new img {
    width: 35vw;
  }

  #newContainer .titles-new h1 {
    font-size: 3.5vw;
  }

  #newContainer .lines {
    font-size: 4vw;
    gap: 2.5vw;
  }

  #newContainer .lines.left {
    top: 116vw;
  }

  #newContainer .lines.right {
    top: 145vw;
  }

  #newContainer .blue-line {
    height: .5vw;
  }

  #homeCocktails .img-round-container {
    padding: 1rem 10vw;
  }

  #homeCocktails .cocktails-header {
    margin-right: 1rem;
  }

  #homeCocktails .overlay {
    display: none;
  }

  .bloc-image-text {
    flex-direction: column;
  }

  .bloc-image-text.reverse {
    flex-direction: column;
  }

  .bloc-image-text .image-container {
    width: 60vw;
  }

  .bloc-image-text .text-container {
    padding: 3rem 0;
    width: 60vw;
  }

  .bloc-image-text .text-container h1 {
    text-align: center;
  }

  .bloc-image-text .text-container .separator {
    margin-left: auto;
    margin-right: auto;
  }

  .bloc-image-text .text-container .btn-container {
    text-align: center;
  }

  .nos-vins .titles img {
    width: 20rem;
    margin-top: -1rem;
  }

  .nos-vins .bloc-image-text .image-container {
    width: 100vw;
    height: 100vw;
  }

  .notre-histoire .titles img {
    width: 20rem;
  }

  .notre-histoire .titles h1 {
    font-size: 1.5em;
  }

  .notre-histoire .intro div {
    width: 80vw;
  }

  .notre-histoire .intro .decoration {
    width: 250px;
  }

  .nos-cocktails .bloc-image-text .image-container {
    width: 60vw;
    height: 60vw;
  }

  .nos-astuces .titles img {
    width: 90%;
  }

  .notre-expertise .titles h1 {
    font-size: 40px;
  }

  .notre-expertise .titles h1 span {
    font-size: 28px;
  }

  .notre-expertise .bloc-wide-text .image-wide {
    height: inherit;
  }

  .notre-expertise .bloc-wide-text .image-wide img {
    margin-top: inherit;
  }

  .notre-expertise .bloc-wide-text .text .mention {
    height: 2.2rem;
  }

  .notre-expertise .bloc-wide-text .text h1 {
    font-size: 25px;
  }

  .notre-expertise .bloc-wide-text .text {
    width: 90vw;
  }

  .notre-expertise .bloc-wide-text .text p {
    line-height: 1.6em;
  }

}

@media screen and (max-width: 620px) {
  #bottleDisplayer {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem 1.5rem;
    padding: 3rem 1rem;
  }

  #bottleDisplayer .bottle-caption {
    bottom: -3rem;
  }

  #bottleDisplayer .bottle {
    height: 100%;
  }

  .bloc-image-text .image-container {
    width: 80vw;
  }

  .bloc-image-text .text-container {
    width: 80vw;
  }

  .nos-cocktails .bloc-image-text {
    padding: 3rem 0;
  }

  .nos-cocktails .bloc-image-text .image-container {
    width: 90vw;
    height: 90vw;
  }

  .nos-astuces .titles {
    padding: 4rem 10vw 0;
  }

  .nos-astuces .bloc-txt-video {
    padding: 3rem 0;
  }

  .nos-astuces .bloc-txt-video .text-container {
    width: 80vw;
    padding: 2rem 0;
  }

  .nos-astuces .bloc-txt-video .text-container h1 {
    font-size: 22px;
  }

  .nos-astuces .bloc-txt-video .video-container {
    width: 80vw;
  }
}

@media (max-width: 480px) {

  /* tu peux ajouter des ajustements ici si nécessaire */
  .nos-astuces .titles img {
    width: 100%;
  }

  .notre-expertise .bloc-wide-text .text .mention {
    height: 1.9rem;
  }
}