.hero {
  height: 62rem;
  width: 100vw;
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    var(--herourl);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.cursor {
  position: absolute;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background-color: white; /* Couleur initiale du curseur */
  pointer-events: none;
  mix-blend-mode: exclusion; /* Choisissez le mode de mélange souhaité */
  z-index: 5;
  transition: transform 0.4s ease, opacity 0.4s ease, width 0.4s ease,
    height 0.4s ease;
}

.titre-hero {
  position: absolute;
  width: 25%;
  bottom: 1rem;
  left: 2rem;
  animation: moveUp 1s ease-in-out forwards;
}

@keyframes moveUp {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}

.titre-hero h1 {
  color: var(--title_color);
  font-family: var(--font-family-anton);
  font-size: 11rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 10rem;
  margin-bottom: -1rem;
  margin-left: 3rem;
  text-transform: uppercase;
  width: 38rem;
}

header {
  margin-top: 2rem;
  margin-left: 1rem;
  margin-right: 1rem;
}

#content {
  margin-top: 5rem;
}

/* ================================
header-line-1
================================= */

.cart-count-badge {
  background-color: red;
  color: white;
  border-radius: 50%;
  /* padding: 5px 10px; */
  font-size: 12px;
  position: absolute;
  top: 14px;
  right: 34px;
  width: 15px;
  height: 15px;
}

header .header-line-1 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

header .infolettre {
  width: 360px;
  height: 40px;
  display: block;
}

.infolettre form .mc4wp-form-fields {
  margin-top: -1rem;
}

header .user-options {
  display: flex;
  height: 40px;
  width: 300px;
}

.heart {
  cursor: pointer;
}

.connection {
  color: var(--header_color) !important;
  text-transform: uppercase;
}

.connection a {
  color: var(--header_color) !important;
  text-decoration: none;
}

.connection a:hover {
  color: var(--header_color) !important;
  text-decoration: none;
}

.right {
  position: relative;
  width: 100px;
  height: 40px;
  text-align: center;
}

.helveticaneue-bold-black-10-5px {
  color: var(--black);
  font-family: var(--font-family-helvetica_neue-bold);
  font-size: 10.5px;
  font-style: normal;
  font-weight: 700;
}

.infolettre form .mc4wp_label {
  display: none;
}

.infolettre form .mc4wp_input {
  width: 100%;
  background-color: #fffefa;
  border: none;
  font-family: var(--font-family-helvetica_neue-medium);
  font-size: 11.4px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0;
  color: #878787;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  padding: 5px 10px;
}

.infolettre form .mc4wp_input::placeholder {
  text-transform: uppercase;
}

.infolettre form .mc4wp_input:focus {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.infolettre form .mc4wp_submit {
  background-color: #fffefa;
  font-family: var(--font-family-helvetica_neue-medium);
  font-size: 11.4px;
  font-weight: 500;
  border: none;
  border-left: 1px solid;
  letter-spacing: 0;
  line-height: normal;
  border-left: 1px solid black;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  padding-right: 9px;
  text-transform: uppercase;
  height: 30px;
  width: 120px;
}

/* ===========================
header-line-2
=========================== */

.header-line-2 {
  display: flex;
  border-bottom: 1px solid var(--header_color);
  justify-content: space-between;
  margin-top: 1rem;
  position: relative;
}

.search-lang {
  display: flex;
  align-items: center;
  justify-content: center;
}

.imagem-widgets {
  width: 20rem;
}

.hamburguer {
  display: flex;
  border: none;
  border-right: 1px solid var(--header_color);
  background-color: transparent;
  align-items: center;
  padding: 10px;
}

.burger {
  width: 32px;
  height: 32px;
  cursor: pointer;
  position: relative;
  z-index: 101;
}

.burger span {
  width: 100%;
  height: 2px;
  background-color: var(--header_color);
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.1s ease-in-out, transform 0.5s ease;
}

.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--header_color);
  left: 0%;
}

.burger span::before {
  transform: translateY(-10px);
}

.burger span::after {
  transform: translateY(10px);
}

.burger.active span {
  background-color: transparent;
  transition: background-color 0.1s ease-in-out;
  transform: rotateZ(45deg);
  z-index: 101;
}

.burger.active span::before {
  background-color: white;
  transform: translateY(0px) rotateZ(0deg);
  transition: background-color 0.3s ease-in-out, transform 0.5s ease;
  z-index: 101;
}

.burger.active span::after {
  background-color: white;
  transform: translateY(0px) rotateZ(-90deg);
  transition: background-color 0.3s ease-in-out, transform 0.5s ease;
  z-index: 101;
}

/* .hamburguer svg {
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.bar1,
.bar2,
.bar3 {
    width: 35px;
    height: 3px;
    background-color: white;
    margin: 6px 0;
    transition: 0.4s;
} */

.search {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.2vw;
}

div.menu-langues-container {
  margin-left: 2vw;
}

ul#menu-langues {
  color: var(--header_color);
  font-family: var(--font-family-barlow);
  font-size: var(--font-size-xxs);
  font-weight: 400;
  letter-spacing: 0;
  line-height: normal;
  width: 61px;
  display: flex;
  align-items: center;
  margin-bottom: 0 !important;
  padding-left: 0;
  height: 100%;
}

ul#menu-langues li {
  padding-left: 10px;
  padding-right: 10px;
}

ul#menu-langues li a {
  text-decoration: none;
  color: var(--header_color);
  text-transform: uppercase;
}

ul#menu-langues li:first-child {
  border-right: 1px solid var(--header_color);
}

.brand {
  display: flex;
  object-fit: cover;
  width: 140px;
  height: 40px;
  position: absolute;
  left: 45%;
}

.brand img {
  width: 140px;
  height: auto;
}

.header-line-2 .menu-header nav > ul {
  color: var(--header_color);
  font-family: var(--font-family-barlow);
  font-size: var(--font-size-xxs);
  font-weight: 500;
  letter-spacing: 0;
  line-height: normal;
  width: 38vw;
  margin-right: 2vw;
  align-items: center;
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.header-line-2 .menu-header nav a {
  color: var(--header_color);
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.header-line-2 .menu-header nav a::before {
  position: absolute;
  cursor: pointer;
}

.svg-design {
  content: "";
  width: 6rem;
  height: 2rem;
  fill-opacity: 0;
  stroke: #fff;
  stroke-width: 3px;
  stroke-dashoffset: 0;
  stroke-dasharray: 1000;
  position: absolute;
  transform: translate(-90%, -10%);
  cursor: pointer;
  opacity: 0;
}

.svg-design:hover {
  opacity: 1;
  animation: svg-design 0.5s ease-in-out;
}

@keyframes svg-design {
  0% {
    stroke-dashoffset: 1000;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

/* ==================

Animation surrounded links menu

===================== */

.surroundLink {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.surroundLink .surrounded {
  background: none;
  outline: none;
  color: black;
  text-decoration: none;
}

.surroundLink svg {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 110%;
  height: 140%;
  pointer-events: none;
}

.surroundLink path {
  stroke: white;
  stroke-width: 5px;
  stroke-dasharray: 0 1500;
}

.surroundLinkCommon path {
  stroke: black;
  stroke-width: 5px;
  stroke-dasharray: 0 1500;
}

.surroundLink:hover path {
  animation: draw 1s forwards;
}

@keyframes draw {
  from {
    stroke-dasharray: 0 1500;
  }

  to {
    stroke-dasharray: 1500 1500;
  }
}

/* =====================
Nav Hamburguer Menu 
======================*/

.hidden {
  display: none;
  opacity: 0;
  z-index: -100;
  transform: translatex(-100vw);
}

nav#hamburguer-menu {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: -0.5rem;
  background-color: #19111c;
  z-index: 100;
  transition: all 0.4s linear;
}

nav#hamburguer-menu ul.principal > li {
  font-family: var(--font-family-anton);
  font-size: 87px;
  line-height: 1.2em;
}

nav#hamburguer-menu ul.principal li a {
  text-decoration: none;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  text-transform: uppercase;
}

nav#hamburguer-menu ul.principal li a:hover {
  color: #fff;
}

nav#hamburguer-menu aside ul {
  padding-left: 0;
  margin-bottom: 4rem;
}

nav#hamburguer-menu aside ul.secondary li {
  font-family: var(--font-family-baskerville-semibold);
  font-size: 24px;
}

nav#hamburguer-menu aside ul.secondary li a {
  text-decoration: none;
  color: #fff;
}

/* animation sur li du menu principal */

.svg {
  width: 23rem;
  height: 7rem;
  fill-opacity: 0;
  stroke: #fff;
  stroke-width: 3px;
  stroke-dashoffset: 0;
  stroke-dasharray: 1000;
  position: absolute;
  transform: translate(-85%, -10%);
  cursor: pointer;
  opacity: 0;
}

.svg:hover {
  opacity: 1;
  animation: svg 0.5s ease-in-out;
}

@keyframes svg {
  0% {
    stroke-dashoffset: 1000;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

/* animation sur li du menu principal */

/* animation sur li du menu secondary*/

nav#hamburguer-menu aside ul.secondary li.animated-link {
  position: relative;
  overflow: hidden;
  width: max-content;
}

nav#hamburguer-menu aside ul.secondary li.animated-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff; /* Couleur de la ligne */
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-in-out;
}

nav#hamburguer-menu aside ul.secondary li.animated-link:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* fin animation */

ul.social li {
  font-family: var(--font-family-helvetica-regular) !important;
  font-size: 16px !important;
  text-transform: uppercase;
}

nav#hamburguer-menu aside {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 40px;
}

nav#hamburguer-menu aside h5 {
  font-family: var(--font-family-baskerville-regular);
  font-size: 21px;
  color: #fff;
  margin-bottom: 2rem;
}

nav#hamburguer-menu aside .email {
  color: #fff;
  text-decoration: none;
}

.close-menu {
  position: absolute;
  left: 0;
  top: 0;
  margin: 40px;
  background-color: transparent;
  border: none;
}

@keyframes moveUpLinks {
  0% {
    transform: translateY(100%);
    clip-path: inset(0 0 80% 0); /* Masque les 20% inférieurs du texte */
  }
  90% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    transform: translateY(0%);
    transition: clip-path 1s ease-in-out;
    clip-path: none; /* Montre tout le contenu */
  }
}

/* Animation sur les liens du menu principal et de l'aside menu */
.animate {
  animation: moveUpLinks 1s ease-in-out forwards;
}

/* =================
Search form
================= */

form#searchform {
  position: relative;
  transition: all 1s;
  width: 50px;
  height: 50px;
  display: block;
}

form#searchformPhone {
  display:none;
}

form#searchformPhone {
  display: none;
}

form#searchform input {
  width: 100%;
  height: 42.5px;
  line-height: 30px;
  outline: 0;
  border: 1px solid black;
  font-size: 1rem;
  border-radius: 20px;
  padding: 0 20px;
  color: black;
  display: none;
}

form#searchformPhone input {
  width: 120px;
  height: 42.5px;
  line-height: 30px;
  outline: 0;
  border: 1px solid black;
  font-size: 1rem;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 0 10px;
  color: black;
}

.searchsubmit {
  box-sizing: border-box;
  padding: 5px 10px 10px 5px;
  width: 42.5px;
  height: 42.5px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
  border: none;
  text-align: center;
  font-size: 1.2em;
  transition: all 1s;
}

.searchsubmitPhone {
  box-sizing: border-box;
  padding: 5px 10px 10px 5px;
  width: 42.5px;
  height: 42.5px;
  background-color: rgb(7, 5, 26);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  color: white;
  border: none;
  text-align: center;
  font-size: 1.2rem;
  transition: all 1s;
}

.searchsubmit svg:hover, .searchsubmitPhone svg:hover  {
  transform: rotate(-25deg) scale(1.1);
}

/* Masquer le champ d'entrée lorsqu'il perd le focus */
form#searchform input:not(:focus) {
  display: none;
}

@media (max-width: 1400px) {
  .menu-header {
    display: none;
  }

   form#searchform {
    display: none;
  }

  form#searchformPhone {
    display:flex;
    width: max-content;
  }
}

@media (max-width: 1150px) {
  .header-line-2 {
    display: inline;
  }

  .search {
    margin-left: 1rem;
  }

  .search-lang {
    justify-content:flex-start;
  }

  .brand {
    display: none;
  }

  .brand img {
    opacity: 0;
  }

  /* .brand {
    left: 0rem;
    top: 1rem;
  } */

  header .infolettre {
    width: 230px;
  }

  form#searchform:hover {
    width: 180px;
  }
  .cursor {
    width: 6rem;
    height: 6rem;
  }
}

@media (max-width: 900px) {
  .titre-hero h1 {
    font-size: 6rem;
    width: 27rem;
    line-height: 6rem;
    margin-left: 1rem;
  }

  nav#hamburguer-menu {
    width: 101vw;
  }

  nav#hamburguer-menu ul.principal {
    margin-left: 30%;
  }

  nav#hamburguer-menu ul.principal > li {
    font-family: var(--font-family-anton);
    font-size: 87px;
    line-height: 1.2em;
  }

  nav#hamburguer-menu ul.principal li a {
    text-decoration: none;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
    text-transform: uppercase;
  }
}

@media (max-width: 700px) {
  header .infolettre {
    width: 200px;
  }

  header .user-options {
    width: 200px;
    margin-right: 1rem;
  }

  form#searchform:hover {
    width: 150px;
  }

  nav#hamburguer-menu ul.principal > li {
    font-size: 60px;
  }

  .svg {
    width: 15rem;
    height: 5rem;
    transform: translate(-85%, -7%);
  }

  nav#hamburguer-menu aside ul.secondary li {
    font-size: 15px;
  }

  ul.social li {
    font-size: 9px;
  }

  nav#hamburguer-menu aside {
    margin: 40px;
  }

  nav#hamburguer-menu aside h5 {
    font-size: 11px;
    margin-bottom: 1rem;
  }

  .cursor {
    width: 4rem;
    height: 4rem;
  }

  .cursor span {
    font-size: 0.5rem;
  }
}

@media (max-width: 600px) {
  .cursor {
    display: none;
  }

  /* .brand {
    top: 1.4rem;
  }

  .brand img {
    width: 7rem;
    height: auto;
  } */

  form#searchform:hover {
    width: 7rem;
  }
}

@media (max-width: 556px) {
  .titre-hero h1 {
    font-size: 4rem;
    width: 15rem;
    line-height: 4rem;
    margin-left: 0rem;
  }

  .hero {
    height: 40rem;
  }

  header .infolettre {
    width: 200px;
    height: 30px;
  }

  header .user-options {
    width: 12rem;
    margin-right: 1rem;
  }

  nav#hamburguer-menu {
    width: 102vw;
  }

  nav#hamburguer-menu ul.principal > li {
    font-size: 40px;
  }

  .svg {
    width: 10rem;
    height: 4rem;
    transform: translate(-90%, -10%);
  }

  /* .imagem-widgets {
    margin-left: 15vw;
  } */

  /* .brand {
    left: -0.5rem;
    top: 1.8rem;
  }

  .brand img {
    width: 5rem;
    height: auto;
  } */
}

@media (max-width: 500px) {
  /* .imagem-widgets {
    margin-left: 17vw;
  } */
  .infolettre form .mc4wp_input::placeholder {
    font-size: 7.5px;
  }
}
