/*=============== GOOGLE FONTS ===============*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");


/*=============== VARIABLES CSS ===============*/
:root {
  /* background-color: var(--bg-1); */
  --bg-1: initial; /* Couleur par défaut */
  --txt-blue-wh: #0366d6;
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(0, 0%, 18%);
  --first-color-lighten: hsl(220, 68%, 97%);
  --title-color: hsl(0, 0%, 100%);
  --text-color: hsl(220, 12%, 45%);
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}


/* Styles pour le mode sombre */
[data-theme="dark"] {
  --contour: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  --trait-fin: #141B33;
  --batton-wh-grey: #141B33;
  --par-dessus: black;
  --texte-color: white;
  --titre-color: white;
  --txt-color: white;
  --icon-mode: white;
  --txt-grey-wh: white;
  --fond-wh-blue: #141B33;
  --bg-2: #20273D;
  --bg-1: #141B33 !important;
  --logo: invert(1) grayscale(1) brightness(3);
}

/* Styles pour le mode sombre */
[data-theme="eco"] {
  --contour: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  --trait-fin: black;
  --batton-wh-grey: black;
  --par-dessus: black;
  --texte-color: white;
  --titre-color: white;
  --txt-color: white;
  --icon-mode: white;
  --txt-grey-wh: white;
  --fond-wh-blue: black;
  --bg-2: #121212;
  --bg-1: black !important;
  --logo: invert(1) grayscale(1) brightness(3);
}

[data-theme="light"] {
  --trait-fin: #ddd;
  --batton-wh-grey: rgb(234, 234, 234);
  --par-dessus: beige;
  --texte-color: black;
  --titre-color: black;
  --icon-mode: black;
  --logo: invert(1) grayscale(1) brightness(0) sepia(1) saturate(1000%) hue-rotate(180deg);
  --bg-2: white;
  --txt-grey-wh: #000000;
  --fond-wh-blue: #e0e0e0;
  --txt-color: #000000;
  --bg-1: #F2F6FD !important;
}




@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }

}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

html.no-scroll {
  overflow: hidden;
}



body{
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--bg-1, transparent);
  color: var(--txt-color); 
  top: 0 !important;  

}


input, textarea {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--bg-2);
  color: var(--txt-color);
  top: 0 !important;
}

button, select, label{
  font-family: var(--body-font);
}

.histrapide{
  background-color: red;
}

.skiptranslate {
  display: none;
}


ul {
  list-style: none;
}

a {
  text-decoration: none;
}

#total1, #total2{
  text-align: right;
}
/* compatibilité */
.compatible{
  color: white;
  border-radius: 5px;
  box-shadow: var(--contour);
}

.compatible a{
  color: white;
  text-decoration: underline;
}
/* compatibilité fin*/

.blueunder{
  color: blue;
  text-decoration: underline;
}

/* debut MORE OPT */

/* all modal */
.modalmoreopt {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
}

.new-line {
  display: block;
  margin-bottom: 5px;
}


.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.cookieInput {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 4px;
  box-sizing: border-box;
  color: var(--txt-color);
  border: none;
  border: 1px solid #ddd;
}

.cookieInput:focus {
  outline: none;
  border-color: #4CAF50;
  box-shadow: 0 0 5px rgba(0, 128, 0, 0.5);
}

.cookieInput::placeholder {
  color: #ccc;
}

.invalid-input {
  border-color: #f44336;
  box-shadow: 0 0 5px rgba(244, 67, 54, 0.5);
}

/* FIN MORE OPT */

.never:hover {
  text-decoration: none;
  color: var(--txt-color);
}

.avert a {
  color: var(--txt-color);
  text-decoration: underline;
}

.avert a {
  color: var(--txt-color);
  text-decoration: underline;
}

.avert2 a {
  color: white;
  text-decoration: underline;
}

/* menu profil drowdown */

.action {
  position: fixed;
  top: 20px;
  right: 30px;
  z-index: 20; 
}

.action .profile {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}

.action .profile i {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.action .menu {
  background-color: var(--bg-2);
  position: absolute;
  top: 120px;
  right: -10px;
  padding: 10px 20px;
  width: 200px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1); /* Correction de box-sizing en box-shadow */
  border-radius: 15px;
  transition: 0.5s;
  display: none;
  opacity: 0;
  z-index: 9999; /* Augmenté pour être au-dessus de tout */
}

.action .menu.active {
  width: 300px;
  top: 44px;
  right: -19px;
  opacity: 1;
  display: inline-block; /* Changé de inline à inline-block pour meilleur rendu */
}

.action .menu::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 28px;
  width: 20px;
  height: 20px;
  background: var(--bg-2);
  transform: rotate(45deg);
  z-index: 29; 
}

.action .menu h3 {
  width: 100%;
  text-align: center;
  font-size: 18px;
  padding: 10px 0;
  font-weight: 500;
  color: var(--txt-color);
  line-height: 1.5em;
}

.action .menu h3 span {
  font-size: 14px;
  color: var(--bg-1);
  font-weight: 300;
}

.action .menu ul li {
  list-style: none;
  padding: 5px 0;
  border-top: 1px solid var(--fond-wh-blue);
  display: flex;
  align-items: center;
  color: var(--txt-color);
  font-weight: 500;
}

.action .menu ul li i {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fond-wh-blue);
  width: 35px;
  height: 35px;
  margin-right: 10px;
  transition: 0.5s;
  font-size: 15px;

}

.action .menu ul li a{
  color: var(--txt-color);
  font-weight: 500;
}

.action .menu ul li:hover i {
  opacity: 1;
}

.action .menu ul li a {
  display: inline-block;
  text-decoration: none;
  color: var(--txt-grey-wh);
  transition: 0.5s;
  font-weight: 500;
}


.action .menu ul li:hover{
  background-color: var(--fond-wh-blue);
  border-radius: 25px;
}

.country-select, .country-select2{
  border: 1px solid var(--bg-2);
  background: none;
  color: var(--txt-color);
  font-weight: 500;
  width: 10vh;
}
.stock{
  width: 78px;
}
#codePromo:hover{
  cursor: pointer;
}

.country-select:hover, .country-select2:hover{
  cursor: pointer;
}

.code-promo:hover{
  cursor: pointer;
}

.nomontreselect:hover{
  cursor: pointer;
}




.nomontreselect {
  border: 1px solid var(--bg-2);
  background: none;
  color: var(--txt-color);
  font-weight: 500;
  padding: 0;
  /* Appliquer un max-width pour éviter les débordements */
  width: 8vh;
  white-space: nowrap; /* Empêcher le texte de passer à la ligne */
}

/* Styles supplémentaires pour l'apparence */
.nomontreselect option {
  padding: 4px;
}


/* menu profil drowdown fin */



/* bouton*/
.title_h1 {
  display: flex;
  justify-content: center;
  padding: 10px 0 10px 0;
  text-align: center;
  color: var(--titre-color);
  align-items: center;
}

#fleche1 {
  display: none;
  color: var(--txt-color);
}

#fleche2 {
  display: flex;
  color: var(--txt-color);
}

#fleche2:hover {
  color: greenyellow;
}

.title_h1 .bx2 {
  display: flex;
  justify-content: center;
  margin: auto;
}

.title_h1 .bx1 i {
  font-size: 25px;
  color: var(--txt-color);
}


.btn-green-sombre {
  background-color: #a9ddaa;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 20px;
  transition: background-color 0.3s;
}

.btn-green-sombre:hover{
  cursor: not-allowed;
  color: red;
}

.btn-green i {
  color: white;
}

/* button*/
.btn-green {
  background-color: #50C878;
  border: none;
  font-weight: bold;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}


.btn-green:hover {
  background-color: #3ca761;
  transform: scale(1.05);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.btn-red {
  background-color: #f06c6c;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 20px;
  transition: background-color 0.3s;
  cursor: pointer;
}

.btn-red:hover {
  background-color: #ff3232;
}

.btn-cancel {
  border: none;
  color: black;
  padding: 10px 20px;
  text-align: center;
  display: inline-block;
  border-radius: 20px;
  transition: background-color 0.3s;
  cursor: pointer;
}

.btn-grey {
  background-color: #808080;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 20px;
  transition: background-color 0.3s;
  cursor: pointer;
}

.container_filtre {
  display: flex;
  gap: 20px;
  width: 100%;
}

.container_filtre .box1 {
  width: 20%;
  background-color: var(--bg-2);
  border-radius: 12px;
  padding: 10px;
  box-shadow: var(--contour);
}

.container_filtre .box2 {
  width: 80%;
}

.btn-grey:hover {
  background-color: #6c6c6c;
}

.hidden {
  display: none;
}

.coll {
  display: flex;
}

.containerv2_filtre {
  display: flex;
  gap: 20px;
  width: 100%;
  margin-top: 15px;
}

h2 {
  color: var(--txt-color);

}

.container_filtre .box1 {
  width: 20%;
  background-color: var(--bg-2);
  border-radius: 12px;
  padding: 10px;
  box-shadow: var(--contour);
}

.container_filtre .box2 {
  width: 80%;
}

i#bar-recherche {
  display: none;
  color: white;
  font-size: 1.25rem;
  margin-right: 5px;
  cursor: pointer;
}

i#icon-clss {
  font-size: 19px;
  color: white;
  margin-right: 20px;
  margin-top: 34px;
  display: flex;
  cursor: pointer;
  transition: transform 0.3s;
  /* Ajout d'une transition pour un effet fluide */
}

i#icon-clss:hover {
  color: white;
  transform: scale(1.5);
  /* Agrandissement au survol */
}


.add-product3 {
  display: flex;
  margin-top: 20px;
  margin-bottom: 10px;
  background-color: #F90;
  border: none;
  color: black;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 20px;
  transition: background-color 0.3s;
  cursor: pointer;
  font-weight: 600;
}




.add-product {
  background-color: #4c93e5;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 20px;
  transition: background-color 0.3s;
  cursor: pointer;
}

.ligne-mod {
  display: flex;
  align-items: center;
}



.add-product:hover {
  background-color: #6c6c6c;
}


.add-product3:hover {
  background-color: #6c6c6c;
}


.btn-rounded {
  background-color: #4c93e5;
  padding: 10px;
  border: none;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  cursor: pointer;
  font-size: 14px;
  font-size: 2.3vh;
}


.btn-rounded:hover {
  background-color: #2a6ebc;
}

.add-product i {
  margin-right: 5px;
}

.add-product3 i {
  margin-right: 5px;
}

.center {
  display: flex;
  margin: auto;
}

#right {
  display: flex;
  justify-content: right;
}

.nombre-find {
  text-align: right;
  font-size: 15px;
  font-weight: bold;
  color: var(--txt-color);
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  margin-inline: 10px;
  
}

.logos{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 20px;
}

.auth-links{
  display: flex;
  align-items: center;
}

.auth-links img{
  background-color: #dbdbdb;
  width: 30px;
  align-items: center;
  border-radius: 50%;
}

.drap img{
  width: 20px;
  display: flex;
  align-items: center;
}

.drap {
  color: var(--txt-color);
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.drap a {
  color: var(--txt-color);
}

.seco {
  font-weight: 600;
  white-space: nowrap;
  color: white;
  background: blueviolet;
  border-radius: 25px;
  text-align: center;
  margin-right: 20px;
  line-height: 38px; 
  padding: 0 20px; 
  display: inline-block; 
  text-decoration: none; 
}

.VIpgJd-ZVi9od-aZ2wEe-wOHMyf, .VIpgJd-ZVi9od-aZ2wEe-wOHMyf-ti6hGc{
  display: none;
}

.seco:hover{
  background: #8500ff;
}

.logo img {
  height: 45px;
  align-items: center;
  display: flex;
}

.logo2 img {
  height: 30px;
  align-items: center;
  display: flex;
}

.logo-img {
  filter: var(--bg-2);
}


.logo-img {
  filter: var(--logo);
}



/*=============== HEADER ===============*/
.header {
  position: initial;
  top: 0;
  left: 0;
  width: 100%;
  /*box-shadow: 0 2px 8px hsla(220, 68%, 12%, 0.1);*/
  background-color: var(--bg-2);
}

/*=============== NAV ===============*/

.navmob{
  display: none;
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  color: white;
  font-weight: var(--font-semi-bold);
  transition: color 0.3s;
  font-size: 20px;
}

.nav__logo i {
  font-size: 1.25rem;
}


.nav__toggle {
  position: relative;
  width: 32px;
}

.nav__toggle-menu,
.nav__toggle-close {
  color: var(--txt-color);
  position: absolute;
  display: grid;
  place-items: center;
  inset: 0;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}


.nav__toggle-close {
  opacity: 0;
}

/* recherche */
/* recherche */

.icon-cl{
  display: flex;
  white-space: nowrap;
}

.icon-cl a{
  color: var(--txt-color);
}

.icon-cl i{
  color: var(--txt-color);
}

.topnav {
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}

.split{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.topnav a{
  color: var(--txt-color);
}
.recherche {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0; /* Alignement vertical centré */
  position: relative;
}

.margenav {
  margin: 0 5%;
}



.recherche input {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding-left: 35px;
  border-radius: 25px;
  width: 100%;
  height: 100%;
  border: none;
  font-weight: bold;
  background-color: var(--fond-wh-blue);
  color: var(--txt-color);
}


.recherche i.here {
  position: absolute;
  color: #9396A1;
  left: 10px;
  top: 50%; /* Positionnement centré verticalement */
  transform: translateY(-50%); /* Ajustement pour centrer verticalement */
}

.btnv2{
  position: absolute;
  right: 0;
  display: inline-block;
  padding: 29px 10px 0 0;
}



.auth-links {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.auth-links a {
  text-decoration: none;
  color: white; /* Couleur des liens, ajustez selon vos besoins */
  font-size: 14px;
}

.vertical-line {
  color: grey;
  margin: 0 10px; /* Espacement autour de la ligne */
}


.center{
  text-align: center;
}

#nav-menu{
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding: 5px 0;
}

/* Style pour le bouton */
#toggleDarkMode {
  background: none; /* Supprimer l'arrière-plan */
  border: none; /* Supprimer la bordure */
  cursor: pointer; /* Définir le curseur comme pointer au survol */
  padding: 0; /* Supprimer le rembourrage */
}

/* Style pour agrandir l'icône */
#toggleDarkMode i {
  font-size: 25px; /* Taille de la police de l'icône */
  color: var(--txt-color);
}

.padrighti{
  margin-right: 5px;
}

.souligne2:hover{
  cursor: pointer;
  background-color: var(--fond-wh-blue);
  border-radius: 5px;
}

.icon-cl{
  display: flex;
  align-items: center;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
}

/* recherche fin */



/* DEBUT COOKIES */
.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 10px;
  z-index: 1000;
  display: none; /* Caché par défaut */
}

.cookie-banner p {
  margin-bottom: 10px;
}

.cookie-button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  border-radius: 5px;
  width: 100%;
  max-width: 20rem;
  border-radius: 25px;
}

.cookie-button:hover {
  background-color: #0056b3;
}

/* COOKIE FIN */

#goog-gt-tt{
  display: none;
}


#goog-gt-tt:hover{
  display: none;
  background-color: initial;
}

.VIpgJd-yAWNEb-VIpgJd-fmcmS-sn54Q{
  background-color: unset !important;
  box-shadow: none !important;
}

.VIpgJd-ZVi9od-ORHb-OEVmcd{
  display: none;
}

#goog-gt-vt{
  display: none;
}

.nav-mob-app {
  position: fixed;
  bottom: 0;
  background-color: black;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 10px 0;
  z-index: 1000; /* S'assurer que la barre est au-dessus du contenu */
}


.nav-mob-app{
  display: none;
}

.nav-mob-app ul {
  display: flex;
  justify-content: space-around;
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 600px; /* Optionnel: Limiter la largeur de la barre pour les grands écrans */
}

.nav-mob-app li {
  flex: 1;
  text-align: center;
}

.nav-mob-app i {
  font-size: 24px; /* Ajuster la taille des icônes */
  color: white;
  color: white;
}


#goog-gt-tt{
  background-color: red;
  border: none;
  display: none;
  position: absolute;
  top: 0px;
}


.skiptranslate{
  display: none;
}



.cookie-settings h2 {
  margin-bottom: 10px;
  color: white;
}

.setting {
  text-align: left;
  margin: 10px auto;
  width: 100%;
}

.setting label {
  display: block;
}

.setting p {
  margin: 5px 0;
}



.cookie-banner h2{
  color: white;
  margin-bottom: 10px;
}

.cookie-banner, .cookie-settings {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}
.cookie-button {
  margin: 5px;
}


/* FIN COOKIES */
 
/* DEBUT NAVSOUS */
.nav2sous {
  display: flex;
  align-items: center;
  position: relative;
}
.categsous {
  background-color: #35373b;
  padding: 5px 15px;
  border-radius: 10px;
  color: white;
  font-weight: 500;
  height: 40px;
  margin-right: 10px;
  font-size: 16px;
}
.categsous i {
  margin-right: 5px;
  color: white;
}
.scroll-arrow {
  cursor: pointer;
  user-select: none;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
  background:  #1d1f20;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
  color: white;
  font-size: 10px;
}
.scroll-arrow:hover {
  background: rgba(255, 255, 255, 1);
  color: black;
}
.left-arrow {
  left: -8px;
}
.right-arrow {
  right: -8px;
}
.soustest {
  overflow-x: auto;
  white-space: nowrap;
  padding: 15px 0;
  scrollbar-width: none;  /* Hide scrollbar in Firefox */
}

h1 {
    font-size: 28px;
}


/* FIN NAVSOUS */





@media screen and (max-width: 970px) {
  .nav__menu {
    background: linear-gradient(135deg, #ff464c, #fad0c4);
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 2.5rem);
    overflow: auto;
    padding-block: 1.5rem 4rem;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
    z-index: 10;

  }

  .nav__menu::-webkit-scrollbar {
    width: 0.5rem;
  }

  .nav__menu::-webkit-scrollbar-thumb {
    background-color: hsl(220, 12%, 70%);
  }


}

.nav__link {
  color: var(--txt-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.black{
  font-weight: 500;
  color: var(--txt-color);
}


/* Show menu */
.show-menu {
  opacity: 1;
  top: 54px;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__toggle-menu {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__toggle-close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__button {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.5rem;
  font-weight: initial;
  transition: transform 0.4s;
}

.dropdown__content,
.dropdown__group,
.dropdown__list {
  display: grid;
}

.dropdown__container {
  background-color: linear-gradient(135deg, #ff464c, #fad0c4);
  height: 0;
  overflow: hidden;
  transition: height 0.4s;
}


.dropdown__content {
  grid-template-columns: repeat(8, max-content);
  justify-content: center;
  margin-inline: auto;
  column-gap: 2.5rem;
  background: linear-gradient(135deg, #ff464c, #fad0c4);
}


.dropdown__group {
  padding-left: 5px;
  row-gap: 0.5rem;
}

.dropdown__group:first-child {
  margin-top: 1.25rem;
}

.dropdown__icon i {
  font-size: 1.25rem;
  color: var(--first-color);
}

.dropdown__icon {
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 0rem;
}

.dropdown__title {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: black;
  text-emphasis: none;
}

.dropdown__title:hover {
  text-decoration: underline;
}

.dropdown__list {
  row-gap: 0.25rem;
}



.dropdown__link {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
  transition: color 0.3s;
  color: black;
}

.dropdown__link:hover{
  text-decoration: underline;
}

/* Rotate dropdown icon */
.show-dropdown .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== TABLE ===============*/

.table-container {
  overflow-x: auto;
  box-shadow: var(--contour);
  border-radius: 12px;
  background-color: var(--bg-2);
  margin-bottom: 20px;
}

.table-container-2 {
  margin-bottom: 20px;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--bg-2);
}

td {
  padding: 6px;
  text-align: left;
  color: var(--txt-color);
}

th {
  padding: 8px;
  text-align: left;
  color: var(--txt-color);
}

.button-container {
  display: flex;
  gap: 10px;
  justify-content: right;
}

.button-container2 {
  display: flex;
  gap: 10px;
  justify-content: right;
}

sup {
  font-size: 10px;
}


table tr {
  border-top: 1px solid var(--trait-fin);
}

table tr:first-child {
  border-top: none;
}


.close:hover, .close:focus { color: black; text-decoration: none; cursor: pointer; }



/* Supprimer la bordure supérieure du premier td */


/*tr.nobar{
  border-bottom: none;
  border-top: none;
  
}

td.anultop{
  padding-top: 5px;
  padding-bottom: 5px;
}

#reduire{
  font-size: 12px;
  padding: 10px;
  background-color: rgb(243, 243, 243);
  color: black;
} */

td a {
  color: var(--txt-color);
}

td a.gras2 {
  color: var(--txt-color);
  font-weight: 600;
}

td a.gras2:hover {
  color: black;
  font-weight: 600;
  text-decoration: underline;
  color: blue;
}





td a.gras3 {
  color: var(--titre-color);
  font-weight: 600;
}

td a.gras3:hover {
  color: var(--titre-color);
  font-weight: 600;
  text-decoration: none;
}



/* Modal drapeau */
.drapeau {
  font-size: 30px;
  margin-left: 10px;
  position: relative;
  /* Ajouté pour positionner le menu par rapport au drapeau */
}


.envlog {
  display: flex;
}



.hidden {
  display: none;
  /* Classe pour cacher les éléments par défaut */
}

/* Modal drapeau fin */

.pad-right{
  display: flex;
}

.padright2{
  padding-left: 5px;
}


td a.green {
  color: #00b16a;
  font-weight: 600;
}



td a:hover {
  text-decoration: underline;
  color: blue;
}

.categorie a {
  color: #0366d6;
  font-weight: 600;
  text-decoration: underline;
}



tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}

tbody tr:hover,
tbody tr:nth-child(even):hover {
  background-color: var(--par-dessus);
}


tbody tr:nth-child(even) {
  background-color: initial;
  /*border-bottom: 1px solid var(--trait-fin);
  border-top: 1px solid var(--trait-fin); */

  /* Ou la couleur de fond par défaut */
}

.draggable-active tbody tr:hover,
.draggable-active tbody tr:nth-child(even):hover {
    background-color: var(--par-dessus);
    cursor: grab;
}



.logo-container img {
  object-fit: contain;
  background-color: white;
  padding: 3px;
  border-radius: 3px;
  width: 120px;
  height: 50px;
}


.img_vendor_logo{
  width: 100px;
  background-color: white;
  padding: 3px;
  border-radius: 3px;
}

.flex {
  display: flex;
  margin: 20px 0 0 0;
  justify-content: center;
}


/* Flèche pour remonter vers le haut */
.scroll-to-top {
  z-index: 9999;
  position: fixed;
  bottom: 10px;
  right: 5px;
  background-color: var(--bg-2);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  display: none;
  box-shadow: var(--contour);
  /* Caché par défaut */
}

.scroll-to-top i {
  color: var(--txt-color);
  padding: 8px 13px 8px 13px;

}

.info-container {
  /*box-shadow: var(--contour); */
  border-radius: 12px;
  max-height: 500px; /* 500 de base info belec */
  margin: 0 20px 20px 0px;
  background-color: var(--bg-2);
  box-shadow: var(--contour);
  padding-bottom: 20px;
}





.breadcrumb {
      padding: 0 0.5rem;
    }
    .breadcrumb ol {
      display: flex;
      flex-wrap: wrap;
      list-style: none;
      margin: 0;
      padding-bottom: 10px;
      align-items: center;
    }
    .breadcrumb li {
      display: flex;
      align-items: center;
    }
    /* Utilise une icône Font Awesome pour la flèche entre chaque élément */
    .breadcrumb li:not(:last-child)::after {
      content: "\f054";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      margin: 0 0.5rem;
      display: inline-block;
    }
    .breadcrumb a {
      text-decoration: none;
      color: #007bff;
    }
    .breadcrumb a:hover {
      text-decoration: underline;
    }








.tabledesc{
  margin: 0 30px 0px 0px;
  border-radius: 12px;
}

.tddesc{
  width: 50%;
}

.tabledescglob {
  padding: 24px;
  border-radius: 12px;
  background-color: var(--bg-2);
  margin-bottom: 20px;
}

.spec-category {
  margin-bottom: 20px;
}


.category-title {
  font-size: 15px;
  font-weight: bold;
  color: var(--txt-color);
  margin-bottom: 10px;
  border-left: 4px solid #007bff;
  padding-left: 10px;
}

.tabledesc {
  width: 100%;
  border-collapse: collapse;
}

.tabledesc tr {
  border-bottom: 1px solid var(--trait-fin);
}

.sub-category {
  font-size: 14px;
  font-weight: bold;
}


.sub-category {
    background-color: var(--bg-1) !important;
    font-weight: 500 !important;
    color: var(--color-txt) !important;
    border-right: 1px solid var(--border-fine) !important;
    vertical-align: top;
    padding: 12px !important;
    width: 40%;
    border-bottom: 1px solid var(--bg-2);
}


.clickable-category {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    width: 40%;
}

.spec-value {
  font-size: 14px;
  color: var(--txt-color);
}

.tabledesc tr:hover {
  background-color: var(--par-dessus);
}








.btn-rounded {
  display: inline-block;
  padding: 10px 20px;
  background-color: #3498db;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: none;
  margin-top: 10px;
}

.btn-roundedmin{
  white-space: nowrap;
  display: inline-block;
  padding: 7px 10px;
  background-color: #50C878;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: none;
  font-size: 13px;
}


.btn-rounded:hover {
  background-color: #2980b9;
  transform: scale(1.05);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.btn-roundedmin:hover {
  background-color: #3ca761;
  transform: scale(1.05);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}


.btn-green-sombre-v2{
  display: inline-block;
  padding: 7px 10px;
  background-color: #a9ddaa;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: none;
  font-size: 13px;
}

.btn-green-sombre-v2:hover {
  cursor: not-allowed;
  color: red;
}





.info-container button {
  margin: auto;
}

.image-big-container {

  width: 400px;
  height: 350px;
}

.image-big-container:hover{
  cursor: pointer;
}

.image-big-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px 0 0 0;
  background-color: white;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

/* Styles pour centrer verticalement l'image et la rendre carrée */
/* Nouveau style pour les images */
.small-image {
  display: flex;
  /* Utilisation de flexbox pour aligner verticalement */
  align-items: center;
  /* Centrer verticalement */
}

.small-imagev2 {
  display: flex;
  /* Utilisation de flexbox pour aligner verticalement */
  align-items: center;
  /* Centrer verticalement */
}

.titre-imagev2 {
  display: flex;
  position: absolute;
  top: 1px;
  left: 50px;
  overflow: hidden; /* Masque tout ce qui dépasse la hauteur ou la largeur */
  max-height: 25px;  /* Optionnel : limite la hauteur à celle du parent */
}

.small-image img {
  padding: 2px;
  color: black;
  width: 40px;
  /* Taille carrée */
  height: 40px;
  /* Taille carrée */
  object-fit: contain;
  /* Ajuster l'image pour qu'elle soit entièrement contenue */
  margin-right: 10px;
  /* Marge à droite pour l'espace entre l'image et le texte */
}


.small-imagev2 img {
  padding: 2px;
  color: black;
  width: 40px;
  /* Taille carrée */
  height: 40px;
  /* Taille carrée */
  object-fit: contain;
  /* Ajuster l'image pour qu'elle soit entièrement contenue */
  margin-right: 10px;
  /* Marge à droite pour l'espace entre l'image et le texte */
}

.souligne:hover{
  cursor: pointer;
}


.line {
  display: flex;
  align-items: center;
}

.allwd{
  height: 100%;
}

/*=============== LIST INFO ===============*/

.marge {
  margin: 0px 20vh 0 20vh;
}

.marge5 {
  margin: 0px 20vh 0 20vh;
}

.min-foot {
  min-height: calc(100vh);
}

.marge-2 {
  margin: 0px 20vh 0 20vh;
}



.nomabo {
  margin-bottom: 0px;
}

.last_update{
  display: flex;
  padding-top: 5px;
  justify-content: right;
}


.info {
  background-color: #ffffff;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: var(--contour);
  background-color: var(--bg-2);
}

.info-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 5px 0 5px;
}

.list-link {
  color: var(--txt-blue-wh);
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  background-color: var(--fond-wh-blue);
  padding: 10px;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: var(--contour);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lst_lnk{
  padding-bottom: 10px;
}

.succ-button{
  display: flex; gap:5px; overflow-x: auto; 
  margin-left: 20px;
  padding-bottom: 10px;
  scrollbar-width: none;  /* Hide scrollbar in Firefox */
}



.list-link:hover {
  background-color: rgb(220, 220, 220);
}

.info-box-search {
  background-color: var(--bg-2);
  margin-bottom: 10px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  box-shadow: var(--contour);
  border-radius: 30px;
}

#results {
  background-color: red;
  padding: 100px;
}

.info-box-search-2 {
  background-color: var(--bg-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  border-bottom: 1px solid var(--trait-fin);

}

.search-product {
  color: var(--txt-color);
  font-weight: bold;
  font-size: 16px;
  padding: 10px;
  cursor: pointer;
  width: 100%;
  border: none;
  background-color: var(--bg-2);
  outline: none;
  border-radius: 12px;
}

.pad3{
  margin-right: 10px;
  margin-left: 10px;
}



.search-button {
  background-color: #4c93e5;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 10px 18px;
  cursor: pointer;
  font-size: 16px;
}

.search-button-2 {
  display: none;
}

.search-button i {
  font-weight: bold;
  font-size: 20px;
}

.search-button:hover {
  background-color: #0056b3;
}


.button-opt {
  white-space: nowrap;
  box-shadow: var(--contour);
  display: inline-flex;
  align-items: center;
  background-color: var(--fond-wh-blue);
  color: var(--txt-grey-wh);
  text-decoration: none;
  /*transition: background-color 0.3s; */
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  padding: 9px;
  cursor: pointer;
  height: 44px;
}

.button-opt-2{
  display: inline-flex;
  align-items: center;
  color: var(--txt-grey-wh);
  text-decoration: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  height: 44px;
  background: none;
  padding: 15px;
  font-size: 24px;
}


.vdunique-button {
  display: inline-flex;
  align-items: center;
  background-color: var(--fond-wh-blue);
  color: var(--txt-grey-wh);
  text-decoration: none;
  /*transition: background-color 0.3s; */
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding-left: 9px;
  padding-right: 9px;
  box-shadow: var(--contour);
}

/* Animation de la lumière qui pulse (plus lent et plus petit) */
@keyframes pulse {
  0% {
      transform: scale(1);
      opacity: 0.7;
  }
  50% {
      transform: scale(1.1); /* Moins de grossissement */
      opacity: 1;
  }
  100% {
      transform: scale(1);
      opacity: 0.7;
  }
}

/* Point bleu clair */
.point-blue {
  background-color: #4BABFF; /* Bleu clair */
  border-radius: 50%;
  width: 8px; /* Point plus petit */
  height: 8px; /* Point plus petit */
  display: inline-block;
  margin-right: 5px;
  animation: pulse 3s infinite; /* Animation plus lente (3s au lieu de 1s) */
}

/* Point vert */
.point-green {
  background-color: #32CD32; /* Vert */
  border-radius: 50%;
  width: 8px; /* Point plus petit */
  height: 8px; /* Point plus petit */
  display: inline-block;
  margin-right: 5px;
  animation: pulse 3s infinite; /* Animation plus lente (3s au lieu de 1s) */
}

/* Point orange */
.point-orange {
  background-color: #FFA500; /* Orange */
  border-radius: 50%;
  width: 8px; /* Point plus petit */
  height: 8px; /* Point plus petit */
  display: inline-block;
  margin-right: 5px;
  animation: pulse 3s infinite; /* Animation plus lente (3s au lieu de 1s) */
}

/* Point rouge */
.point-red {
  background-color: #FF6347; /* Rouge */
  border-radius: 50%;
  width: 8px; /* Point plus petit */
  height: 8px; /* Point plus petit */
  display: inline-block;
  margin-right: 5px;
  animation: pulse 3s infinite; /* Animation plus lente (3s au lieu de 1s) */
}

/* Point par défaut (transparent) */
.point-default {
  background-color: transparent;
  width: 8px; /* Point plus petit */
  height: 8px; /* Point plus petit */
  display: inline-block;
  margin-right: 5px;
}


.entourer-grey{
  background: linear-gradient(135deg, #ff464c, #fad0c4);
}

.button-opt i {
  margin-right: 5px;
}

.button-opt:hover {
  background-color: #0366d6;
  color: white;
}


.price-info {
  font-size: 16px;
  text-align: center;
  padding: 5px 5px 10px 5px;
}

.price-info p {
  display: inline-block;
  margin: 0 10px;
  color: var(--txt-color);
}

.gras {
  color: black;
  font-weight: 600;
  font-size: 20px;
}

/*=============== FOOTER ===============*/

  footer {
      background-color: black;
      color: white;
      padding: 30px 0;
      margin-top: 20px;
      border-top: 1px solid #1c1c1c;
    }
    .footer-container {
      max-width: 1500px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
   
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      width: 100%;
    }
    .footer-section {
      flex: 1;
      margin: 0 10px;
      min-width: 200px;
    }
    .footer-section h4 {
      margin-top: 0;
      font-size: 16px;
      font-weight: bold;
      margin-bottom: 10px;
    }
    .footer-section a {
      text-decoration: none;
      color: white;
      display: block;
      margin: 5px 0;
      font-size: 14px;
    }
    .footer-section a:hover {
      text-decoration: underline;
    }
    .footer-copy {
      width: 100%;
      text-align: center; /* Centrer le texte des droits d'auteur */
      margin-top: 20px;
      font-size: 14px;
      font-weight: bold;
    }
    .footer-legal {
      margin-top: 20px;
      font-size: 14px;
      text-align: center;
    }
    .footer-legal p {
      margin: 10px 0;
    }

    /* Styles Responsifs */
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-links {
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-section {
        margin-bottom: 20px;
      }
    }



.message {
  margin-top: 10px;
  padding: 10px;
  background-color: var(--bg-1);
  border-left: 6px solid #4CAF50;
}


/* Style de la fenêtre modale */

#modalOkButton {
  margin-top: 10px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: var(--bg-2);
  margin: 5% auto;
  padding: 20px;
  box-shadow: var(--contour);
  width: 95%;
  max-width: 600px;
  border-radius: 8px;
  position: relative;
  max-height: 80vh;  /* Limite la hauteur de la modal à 80% de la hauteur de la vue */
  overflow-y: auto;  /* Permet de défiler verticalement si le contenu dépasse */
}


.modal-content label{
  cursor: pointer;
}

.redinfo{
    font-weight: 500;
    font-size: 13px;
    padding: 1px;
    border-radius: 5px;
    background-color: red;
    color: white;
}

.barreinfo{
  font-size: 13px; 
  text-decoration: line-through;
}



.modal-content h2{
  color: var(--txt-color);
  margin-bottom: 10px;
}

.modal-content h2 i{
  margin-right: 10px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


.red-text {
  color: red;
}

.nav-princip {
  display: flex;
  gap: 20px;
}



.modal li {
  margin-bottom: 5px;
  position: relative;
}

.bi.bi-caret-down {
  color: black;
  position: absolute;
  right: 10px;
  /* Ajustez la position de l'icône vers la droite selon vos besoins */
  top: 70%;
  /* Centrez l'icône verticalement */
  transform: translateY(-50%);
  /* Centrez l'icône verticalement */
}

/* Style pour la flèche à côté de "Sélectionner un vendeur spécifique" */
label[for="select_specifique"] {
  position: relative;
}

label[for="select_specifique"]+i.bi.bi-caret-down {
  position: absolute;

  right: 10px;
  /* Ajustez la position de l'icône vers la droite selon vos besoins */
  top: 71%;
  /* Centrez l'icône verticalement */
  transform: translateY(-50%);
  /* Centrez l'icône verticalement */
}

#euro-icon {
  color: black;
  position: absolute;
  right: 10px;
  /* Ajustez selon votre préférence */
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  /* Pour éviter que l'icône ne soit cliquable */
}

/* CSS pour bloquer le défilement lorsque la modal est ouverte */
body.modal-open {
  overflow: hidden;
}

.rounded-hr {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 5px;
  width: 30px;
  /* Adjust height as needed */
  background-color: var(--batton-wh-grey);
  /* Change color as desired */
  border: none;
  /* Remove default border */
  border-radius: 5px;
  /* Adjust corner roundness */
}

.rounded-divider {
    height: 5px;
    width: 30px;
    background-color: var(--batton-wh-grey);
    border: none;
    border-radius: 5px;
    margin-left: 20px; /* auto centre horizontalement */
}

        /* Style pour l'écran de chargement */
        #loading-screen {
          position: fixed;
          width: 100%;
          height: 100%;
          top: 0;
          left: 0;
          background-color: var(--bg-1);
          display: flex;
          justify-content: center;
          align-items: center;
          z-index: 1000; 
      }

      /* Animation de rotation simple pour un spinner */
      @keyframes spinner {
          to { transform: rotate(360deg); }
      }

      /* Exemple de spinner */
      .spinner {
          width: 50px;
          height: 50px;
          border: 6px solid #ccc;
          border-top-color: #fff; /* Couleur du haut du spinner */
          border-radius: 50%;
          animation: spinner 0.6s linear infinite;
      }

.diviser {
  display: flex;
  justify-content: space-between;
}



#iconrecherche {
  display: flex;
}

#iconfilter {
  display: none;
}

/*
.diviser i {
  cursor: pointer;
  font-size: 25px;
  color: var(--txt-color);
}

.diviser i:hover {
  color: greenyellow;
}
*/



/* Style pour l'input "Sélectionner un prix personnalisé" */
.prix_personnalise_input {
  color: grey;
  border: 1px solid #ddd;
  font-size: 16px;
  /* Supprime la bordure */
  outline: none;
  background-color: white;
  width: 100%;
  /* Définit la largeur à 100% */
  padding: 8px;
  /* Ajustez l'espacement interne selon vos besoins */
  border-radius: 5px;
  /* Ajoutez des coins arrondis */
}


/* Style pour le conteneur du label "Sélectionner un prix personnalisé" et de l'input */
li input[type="number"] {
  display: block;
  /* Afficher l'input en tant que bloc */
}

/* Style pour le conteneur du label "Sélectionner un prix personnalisé" */
li label[for="select_personnalise"] {
  margin-bottom: 5px;
  /* Ajoutez un espacement en bas entre le label et l'input */
}

.no-underline:hover {
  color: var(--txt-color);
  text-decoration: none;
}

.no-underlinev2:hover {
  color: var(--txt-color);
  cursor: pointer;
}


.link-convert a {
  color: var(--txt-blue-wh);
  text-decoration: underline;
}

.modal label {
  font-size: 17px;
  color: var(--txt-color);
  font-weight: 600;
}

.noaffnone{
  display: initial;
}

.noaffnoneinv{
  display: none;
}


tr.nepasreturn{
  display: flex;
  flex-wrap: wrap;
  padding: 0 5px;
}
.wiall{
  width: 100%;
}
.labelaff label {
  display: none;
}

.labelaffv2 label {
  display: none;
}

.labelaff2 label {
  display: flex;
}

.labelaff2 a {
  display: block; /* Fait que l'élément <a> occupe toute la largeur */
  text-align: left; /* Aligne le texte du lien à gauche */
}


.labelaff2 {

  color: grey;
  font-size: 13px;
  display: flex;
  flex-direction: column;
}

.iciwrap{
  display: flex;
  flex-wrap: wrap;
}


/* Style pour la ligne de menu */




/* Style de base pour la liste déroulante */
.select_vendeur {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 8px;
  font-size: 16px;
  width: 100%;
  cursor: pointer;
  outline: none;
  color: black;
}


/* Style des options de la liste déroulante */
option {
  background-color: black;
  color: white;
  padding: 8px;
}

.border-princ{
  border-bottom: 1px solid var(--trait-fin);
}


/* Style au survol des options de la liste déroulante */
.select_vendeur option:hover {
  background-color: #f0f0f0;
}

.select_vendeur:disabled {
  color: grey;
  /* Couleur de texte grise */
}

#marque_achete {
  /* color: grey; */
  font-size: 15px;
  font-weight: normal;
}


.noaff {
  display: none;
}

/* PAYPAL */
/* Style du bouton PayPal */
.paypal-tab {
  width: 100%;
  margin-top: 20px;
  padding: 10px 20px 10px 10px;
  background-color: var(--bg-2);
  border-radius: 5px;
  box-shadow: var(--contour);
}

#paypal-button {
  background-color: #007bff;
  color: #fff;
  padding: 13px 20px;
  border: none;
  font-size: 15px;
  border-radius: 5px;
  cursor: pointer;

}

#reseau-icon {
  background-color: #ff1ba7;
  font-size: 15px;
  color: #fff;
  padding: 13px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}






/* Style du message */
#message {
  margin-top: 10px;
}

#message span {
  font-weight: bold;
}

#support-link {
  color: #007bff;
  text-decoration: underline;
  cursor: pointer;
}

#support-link:hover {
  text-decoration: none;
}

/* Styles généraux */
.content-config {
  margin-top: 10px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  gap: 15px;
  text-align: center;
  background-color: var(--bg-2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.content-config h1 {
  font-size: 2rem; /* Taille de police pour les grands écrans */
  color: var(--txt-color);
}

.content-config p {
  font-size: 1em; /* Taille de police pour les grands écrans */
  color: var(--txt-color);
}

.btn-config {
  background-color: #4c93e5; /* Bleu vif */
  padding: 10px 20px;
  font-weight: 600;
  color: white;
  border-radius: 8px;
  display: inline-block;
  text-decoration: none;
  font-size: 1em; /* Taille de police pour les grands écrans */
  transition: background-color 0.3s ease;
  border-radius: 30px;
}

.btn-config a{
  color: white;
}

.btn-config:hover {
  background-color: #1a5d9b;
}

.categ-info {
  display: grid;
  grid-template-columns: repeat(7, 1fr); /* 7 colonnes de largeur égale */
  gap: 15px; /* Espacement entre les éléments */
  max-width: 100%; /* Assure que la grille ne dépasse pas la largeur de son conteneur */
  margin: 0 auto; /* Centre la grille horizontalement */
}

.categ-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 120; 
}



.categdessous {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px; /* Largeur fixe pour chaque bouton */
  height: 80px; /* Hauteur fixe pour chaque bouton */
  background-color: var(--fond-wh-blue); /* Couleur de fond */
  border-radius: 50%; /* Rend le bouton rond */
  text-decoration: none; /* Supprime le soulignement des liens */
  color: var(--txt-color); /* Couleur du texte */
  margin-bottom: 5px; /* Espacement entre l'icône et le texte */
  box-sizing: border-box; /* Inclut le padding et les bordures dans la largeur et la hauteur */
}

.categdessous:hover{
  transform: scale(1.05);
}

.categdessous i {
  font-size: 2em; /* Taille des icônes */
}



.categ-item span {
  font-size: 0.9em; /* Taille du texte */
  color: var(--txt-color);
  white-space: nowrap; /* Empêche le texte de se casser en plusieurs lignes */
  overflow: hidden; /* Cache le texte qui dépasse */
  text-overflow: ellipsis; /* Affiche des points de suspension */
  display: inline-block; /* Assure que le texte se comporte correctement pour les points de suspension */
  max-width: 100%; /* Assure que le texte n'excède pas la largeur de l'élément parent */
}

.categ-item span:hover{
  cursor: pointer;
  font-weight: 500;
  transform: scale(1.05);
}

/* Media query pour gérer les éléments en bas de la grille */
@media (min-width: 1024px) {
  .categ-info {
    grid-template-rows: auto auto; /* 2 lignes, une pour chaque rangée d'éléments */
    grid-template-columns: repeat(7, 1fr); /* 7 colonnes */
  }

  
}

@media (max-width: 1024px) {
  .categ-info {
    grid-template-rows: auto auto; /* 2 lignes pour les écrans plus petits */
    grid-template-columns: repeat(6, 1fr); /* 6 colonnes pour écrans plus petits */
  }
}

@media (max-width: 768px) {
  .categ-info {
    grid-template-rows: auto auto; /* 2 lignes pour les écrans plus petits */
    grid-template-columns: repeat(4, 1fr); /* 4 colonnes pour écrans plus petits */
  }

}

@media (max-width: 480px) {
  .categ-info {
    grid-template-rows: auto; /* Une seule ligne pour les écrans très petits */
    grid-template-columns: repeat(3, 1fr); /* 2 colonnes pour très petits écrans */
  }

  .tddesc{
    width: 100%;
  }

  .categdessous{
    width: 55px;
    height: 55px;
  }
}

.last-update{
  font-size: 14px;
}


@media (max-width: 350px) {
  .categ-info {
    grid-template-columns: repeat(2, 1fr); /* 2 colonnes pour très petits écrans */
  }

}


.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.view-all {
    font-size: 16px;
    white-space: nowrap;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    white-space: nowrap;
    padding: 5px 0;
    scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
}

.carousel-item, .carousel-item2 img {
    background-color: white;
    width: 100%;
    border-radius: 8px 8px 0 0;
}

.arrow {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    background: rgba(0,0,0,0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
}

.arrow.left {
    left: 5px;
}

.arrow.right {
    right: 5px;
}

.carousel-container {
  margin: 0 auto;
  padding: 5px 0 0 0;
  position: relative;
}


.carousel-title {
  font-size: 24px;
  font-weight: bold;
}

.view-all {
  font-size: 16px;
  color: #007bff;
  text-decoration: none;
}

.carousel::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
}

.carousel-item {
  background-color: white;
  flex: 0 0 auto;
  margin-right: 20px;
  background: var(--bg-2);
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden; /* Ensures no overflow issues */
  width: 220px;
}

.carousel-item2 {
  flex: 0 0 auto;
  margin-right: 20px;
  background: var(--bg-2);
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden; /* Ensures no overflow issues */
  width: 220px;
  padding-bottom: 5px;
}

.wall{
  width: 80%;
}

.wallcon{
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border: 2px solid #ddd;
}


.midle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 50vh;
  text-align: center;
}


.carousel-item img {
  background-color: white;
  width: 100%;
  padding: 10px;
  height: 150px; /* Fixed height for all images */
  object-fit: contain; /* Ensures images are not cut off */
}

.carousel-item2 img {
  width: 100%;
  padding: 10px;
  height: 150px; /* Fixed height for all images */
  object-fit: contain; /* Ensures images are not cut off */
}

.carousel a.green{
  font-weight: 600;
  font-size: 20px;
  color: #00b16a;

}


.carousel-item a.green{
  font-weight: 600;
  font-size: 20px;
  color: #00b16a;

}

.basic-color{
  color: var(--txt-color);
}


.carousel-item h3 {
  color: var(--txt-color);
  padding: 0 5px;
  font-size: 18px;
  white-space: nowrap; /* Prevent text from wrapping */
  overflow: hidden; /* Hide overflow */
  text-overflow: ellipsis; /* Add ellipsis */
}

.carousel-item2 h3 {
  color: var(--txt-color);
  padding: 0 5px;
  font-size: 18px;
  white-space: nowrap; /* Prevent text from wrapping */
  overflow: hidden; /* Hide overflow */
  text-overflow: ellipsis; /* Add ellipsis */
}

.padlefti{
  margin-left: 5px;
}
.offer-button {
  display: inline-block;
  margin: 10px 0;
  padding: 5px;
  font-size: 16px;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  width: 90%;
  transition: background-color 0.3s ease;
}

.offer-button:hover {
  background-color: #0056b3;
}

.arrow {
  position: absolute;
  top: 50%;
  width: 30px; /* Reduced size */
  height: 30px;
  background: rgba(0,0,0,0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
  transform: translateY(-50%);
  font-size: 16px; /* Adjusted size for icon */
  transition: background-color 0.3s ease;
  opacity: 0; /* Hidden by default */
}

.arrow.visible {
  opacity: 1; /* Visible when needed */
}



.arrow:hover {
  background-color: #0056b3;
}





/* INDEX PRINC */
.info-link {
  font-size: 0.9em; /* Taille de police pour les grands écrans */
}

.info-link p{
  color: #2c87c3;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}


.padrighti {
  margin-right: 8px;
}

/* Media Query pour écrans de moins de 970px */
@media (max-width: 970px) {

  .tabledesc tr:hover {
    background-color: initial;
  }
  

  .wall{
    width: 100%;
  }
  .content-config {
    padding: 15px; /* Réduction du padding */
    gap: 12px; /* Réduction de l'espacement */
  }

  .content-config h1 {
    font-size: 1.5rem; /* Réduction de la taille de la police */
  }

  .content-config p {
    font-size: 1rem; /* Réduction de la taille de la police */
  }

  .btn-config {
    padding: 8px 16px; /* Réduction du padding */
    font-size: 0.9em; /* Réduction de la taille de la police */
  }

  .info-link {
    font-size: 0.85em; /* Réduction de la taille de la police */
  }

  .padrighti {
    margin-right: 6px; /* Réduction de l'espace entre l'icône et le texte */
  }
}



/* Style pour le nom d'utilisateur cliquable */
.clickable {
  cursor: pointer;
  color: var(--txt-color);
  text-decoration: underline;
}

/* Style pour les boutons de don */
#donation-options {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}

#donation-options button:hover{
  background-color: #0056b3; /* Couleur de fond au survol */
  color: white; /* Couleur du texte au survol */
}

#donation-options button {
  padding: 15px;
  background-color: var(--fond-wh-blue);
  color: var(--txt-blue-wh);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
  font-weight: bold;
}


/* ACCORDEON */


.category-link h3{
  margin: 0 5px;

}

.accordion-2-submit {
  position: fixed;
  bottom: 10px;
  gap: 10px;
  display: flex;
  background-color: var(--fond-wh-blue);
  color: var(--txt-color);
  padding: 10px;
  border: none;
  outline: none;
  font-size: 15px;
  border-radius: 5px;
  font-weight: bold;
}



.menu-bar {
  background-color: var(--bg-2);
  padding: 10px 0;
  margin: 20px 0;
  overflow-x: auto;
  white-space: nowrap;
  position: relative;
  font-size: 14px;
  transition: opacity 0.3s ease-in-out;
}

.menu-bar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  position: relative;
}

.menu-bar li {
  margin: 0;
  position: relative;
}

.menu-bar a {
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
  padding: 10px 20px;
  display: inline-block;
  transition: color 0.3s ease-in-out;
  position: relative;
}

.menu-bar a:hover {
  background-color: #e9ecef;
}

.fixed-menu {
  font-size: 14px;
  position: fixed;
  top: 0;
  left: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--trait-fin);
  width: 100%;
  z-index: 1000;
  
  /* Flexbox pour centrer les éléments */
  display: flex; /* Utilisation de flexbox */
  justify-content: center; /* Centrer les éléments horizontalement */
  align-items: center; /* Centrer les éléments verticalement */
  padding: 10px 0; /* Ajoute un peu d'espace vertical autour du menu */
}


.menu-bar a.ici {
  border-bottom: 4px solid #007bff;
}


/* Barre animée sous le lien actif */
.menu-bar .active-bar {
  position: absolute;
  bottom: 0;
  height: 4px;
  background-color: #007bff;
  width: 0;
  transition: all 0.3s ease-in-out;
}




.button-submit {
  color: white;
  cursor: pointer;
  background-color: #CA4100;
  padding: 5px;
  border: none;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  border-radius: 5px;
  font-weight: bold;

}

.button-submit2 {
  color: grey;
  cursor: pointer;
  background-color: white;
  padding: 5px;
  border: none;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  border-radius: 5px;
  font-weight: bold;
}

#vdunique:hover{
  color: white;
  border: none;
  background: none;
}


#vdunique{
  border: 1px solid var(--fond-wh-blue);
  background: none;
  color: var(--txt-grey-wh);
  font-size: 14px;
  font-weight: 500;
  height: 38.8px;
  padding: 9px;
  width: 185px;
  
}

.vdunique-button:hover {
  background-color: #0366d6;
  color: white;
}

/* Masquer l'option désactivée une fois que le select est ouvert */
select:focus option[disabled] {
  display: none;
}


.panel {
  padding: 10px;
  display: none;
  background-color: var(--fond-wh-blue);
  overflow: hidden;
  color: var(--txt-color);
  border-radius: 5px;
  margin-bottom: 10px;

}

.cursorpointer{
  cursor: pointer;
}



/* Style pour aligner les icônes à droite */
.icon-acc {
  float: right;
}

input[type="checkbox"] {
  margin-right: 5px;
}


.flex2{
  display: flex;
  z-index: 10;
}

.flex3{
  display: flex;
  /* justify-content: center; */
  margin: 0px 0 0 0;
}

.modalmarchand-content h2, modalcouleur-content h2{
  margin-bottom: 10px;
}

.modalmarchand {
  display: none; /* Par défaut, masquer la modal */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fond semi-transparent */
  z-index: 1000;
}


/* Contenu de la modalmarchand */
.modalmarchand-content, modalcouleur-content {
  width: 95%;
  background-color: var(--bg-2);
  margin: 15% auto; /* Centrez verticalement et horizontalement */
  padding: 20px 30px;
  border-radius: 10px;
  max-width: 600px;
  color: var(--txt-color);
}

/* Bouton de fermeture */
.close-button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.nocursor:hover{
  cursor: none;
}

.vendor-label {
  vertical-align: middle;
}

.vendor-label img{
  background-color: white;
  border-radius: 2px;
  padding: 0.2px;

}

.vendor-container {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  margin-top: 5px;
}


.vendor-container label{
    cursor: pointer;
}


.actu-prix {
  display: flex;
  align-items: center;
  align-content: center;
  padding: 5px 5px;
}

.actu-prix i {
  margin-right: 5px;
  color: black;
  padding: 4px;
  background-color: #3BD28F;
  border-radius: 50%; /* Contour rond */
  font-size: 13px;
}


.actu-prix-red i {
  margin-right: 5px;
  color: black;
  padding: 4px;
  background-color: #FA9E9D;
  border-radius: 50%; /* Contour rond */
  font-size: 13px;
}

.flex-change-prix{
  display: flex;
  align-items: center;
}

/* MODAL VENDEUR UNIQUE FIN */

.categorie-mob{
  display: none;
  box-shadow: var(--contour);
}

.categorie-mob2{
  display: none;
}



/* RESEAUX UNIQUE FIN */

.input-container {
  position: relative;
}

.clear-input {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
}

.clear-input:hover {
  color: #333;
}

.clear-input i {
  font-size: 18px;
  position: absolute;
  top: -14px;
  right: 0px;
}

      .reseaux-tab {
          /*width: 48%;*/
          width: 100%;
          position: relative;
          margin-top: 10px;
          background-color: var(--bg-2);
          padding: 10px 10px 10px 10px;
          border-radius: 5px;
      }

      .mini-pub {
	/*width: 50%; */
	border: 1px solid var(--trait-fin);
	margin-top: 10px;
	border-radius: 5px;
}
      /* Styles de base pour le formulaire et les labels */
      #reseaux-form {
          display: none; /* Le formulaire est caché par défaut */
      }

      #reseaux-form i{
        width: 20px;
      }

      #reseaux-form label {
          display: block;
          margin-bottom: 5px;
          font-weight: bold;
      }

      #reseaux-form input {
          margin-bottom: 10px;
          width: 100%;
          box-sizing: border-box;
          border-radius: 5px;
          background-color: var(--fond-wh-blue);
          border: none;
          padding: 13px;
          color: var(--txt-color);
      }

      .reseaux-form button {
          padding: 10px;
          background-color: #4CAF50;
          color: white;
          border: none;
          cursor: pointer;
      }

      .reseaux-form button:hover {
          background-color: #45a049;
      }

      /* Styles pour le message de donation et les boutons */
      #donation-options {
          margin-top: 10px;
          margin-bottom: 10px;
      }

      .donation-option {
          margin-right: 10px;
          padding: 10px;
          background-color: #f1f1f1;
          border: 1px solid #ddd;
          cursor: pointer;
          display: inline-block;
      }

      .donation-option:hover {
          background-color: #ddd;
      }

      #custom-donation {
          padding: 10px;
          background-color: #4CAF50;
          color: white;
          border: none;
          cursor: pointer;
      }

      /* Styles pour les boutons de réseaux sociaux */
      .reseaux-container a {
          display: block;
          margin-bottom: 10px;
          padding: 10px 20px;
          font-size: 16px;
          color: var(--txt-color);
          text-decoration: none;
          border-radius: 5px;
          background-color: var(--fond-wh-blue);
      }


      .alerte:hover {
          background-color: var(--bg-2);
          color: var(--txt-color);
          border: 1px solid var(--txt-color);
      }

      .delete-button {
          top: 10px;
          right: 10px;
          font-size: 16px;
          border: none;
          border-radius: 5px;
          cursor: pointer;
          background-color: var(--bg2color);
          color: grey;
          position: absolute;
      }

      .delete-button:hover {
          color: black;
      }

      /* Styles pour les boutons et les liens */
      .button-blue {
          width: 100%;
          padding: 10px 20px;
          font-size: 16px;
          border: none;
          border-radius: 5px;
          cursor: pointer;
          background-color: #007BFF;
          color: #fff;
          margin-top: 5px;
      }

      .button-blue:hover {
          background-color: #0056b3;
      }


      .button-grey {
        text-align: left;
        width: 100%;
        padding: 5px 0;
        font-size: 16px;
        /* border-radius: 5px; */
        cursor: pointer;
        color: var(--txt-color);
        margin-top: 5px;
        /* background-color: var(--fond-wh-blue); */
        border: none;
        /* border: none; */
        border-bottom: 1px solid #ddd;
        background: none;
      }
    

    .button-grey:hover {
        background-color:  var(--par-dessus);
    }

          .hidden {
      display: none;
    }


      

      .error-message {
          color: red;
          margin-top: 10px;
      }
      .reseaux-container i{
          margin-right: 10px;
          width: 20px;
      }

      .marg-bt{
          margin-bottom: 5px;
          font-size: 1.2rem;
      }


      
 
     
/* ENCOCHE DEBUT */

.dynaisd {
  white-space: nowrap;
  padding: 0 6px 0 10px;
  height: 40px;
  background-color: black;
  border-radius: 25px; /* Ajusté pour un aspect plus proche de Dynamic Island */
  top: 5px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  gap: 20px;
  box-sizing: border-box;
  box-shadow: var(--contour);
  transition: width 1s ease-in-out, opacity 0.5s ease-in-out; /* Transition fluide pour la largeur et l'opacité */
  overflow: hidden; /* Cache le contenu lorsque la largeur est réduite */
}

.dynaisd.hidden {
  width: 0; /* Réduit la largeur à 0 */
  opacity: 0; /* Rend l'élément invisible */
}

.dynaisd i {
  color: black;
  padding: 10px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px; /* Assurez que c'est un cercle parfait */
  height: 30px; /* Assurez que c'est un cercle parfait */
}

.taille1 {
  width: 175px;
}





/* ENCOCHE FIN */


/* RESEAUX VENDEUR UNIQUE FIN */


/* BAR ORANGE MENU DEBUT */
.action-pcmenu {
  position: relative;
  top: 20px;
  right: 30px;
  z-index: 20;
}

.action-pcmenu .menu-pcmenu {
  background-color: var(--bg-2);
  position: absolute;
  top: 10px;
  right: -26px;
  padding: 10px 20px;
  width: 240px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  transition: 0.5s;
  display: none;
  opacity: 0;
  z-index: 30;
}

.action-pcmenu .menu-pcmenu.active-pcmenu {
  display: block;
  opacity: 1;
}

.action-pcmenu .menu-pcmenu h3 {
  width: 100%;
  text-align: center;
  font-size: 18px;
  padding: 10px 0;
  font-weight: 500;
  color: var(--txt-grey-wh);
  font-weight: bold;
  line-height: 1.5em;
}

.action-pcmenu .menu-pcmenu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  font-weight: 500;
}

.action-pcmenu .menu-pcmenu ul li {
  padding: 5px 0;
  border-top: 1px solid var(--fond-wh-blue);
  display: flex;
  align-items: center;
  color: var(--txt-color);
  
}

.action-pcmenu .menu-pcmenu ul li:hover {
  background-color: var(--fond-wh-blue);
  border-radius: 25px;
  cursor: pointer;
}

.action-pcmenu .menu-pcmenu ul li i {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ccc;
  width: 35px;
  height: 35px;
  margin-right: 10px;
  font-size: 15px;
  color: var(--txt-color);
  background-color: var(--fond-wh-blue);
}

.action-pcmenu .menu-pcmenu ul li a {
  text-decoration: none;
  color: var(--txt-color);
  font-weight: 500 !important;
  transition: 0.5s;
}

/* Styles pour le menu-theme dropdown */
        .action-theme {
            position: fixed;
            top: 20px;
            right: 30px;
            z-index: 20;
        }

        .action-theme .menu-theme {
            background-color: var(--bg-2);
            position: absolute;
            top: 69px;
            right: 101px;
            padding: 10px 20px;
            width: 200px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            border-radius: 15px;
            transition: 0.5s;
            display: none;
            opacity: 0;
            z-index: 30;
        }

        .action-theme .menu-theme.active-theme {
            display: block;
            opacity: 1;
        }

        .action-theme .menu-theme h3 {
            width: 100%;
            text-align: center;
            font-size: 18px;
            padding: 10px 0;
            font-weight: 500;
            color: var(--txt-grey-wh);
            font-weight: bold;
            line-height: 1.5em;
        }

        .action-theme .menu-theme ul {
            padding: 0;
            margin: 0;
            list-style: none;
            font-weight: 500;
        }

        .action-theme .menu-theme ul li {
            padding: 5px 0;
            border-top: 1px solid var(--fond-wh-blue);
            display: flex;
            align-items: center;
        }

        .action-theme .menu-theme ul li:hover {
            background-color: var(--fond-wh-blue);
            border-radius: 25px;
            cursor: pointer;
        }

        .action-theme .menu-theme ul li i {
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #ccc;
            width: 35px;
            height: 35px;
            margin-right: 10px;
            font-size: 15px;
            color: var(--txt-color);
            background-color: var(--fond-wh-blue);
        }

        .action-theme .menu-theme ul li a {
            text-decoration: none;
            color: var(--txt-grey-wh);
            font-weight: 500 !important;
            transition: 0.5s;
        }
        .dynaisd {
          white-space: nowrap;
          padding: 0 6px 0 10px;
          height: 40px;
          background-color: black;
          border-radius: 25px;
          top: 5px;
          z-index: 1000;
          display: flex;
          justify-content: space-between;
          align-items: center;
          position: fixed;
          left: 50%;
          transform: translateX(-50%);
          color: white;
          gap: 20px;
          box-sizing: border-box;
          transition: width 1s ease-in-out, opacity 0.5s ease-in-out;
          overflow: hidden;
      }

      .dynaisd.hidden {
          width: 0;
          opacity: 0;
      }

      .dynaisd i {
          color: black;
          padding: 10px;
          border-radius: 50%;
          background-color: white;
          display: flex;
          align-items: center;
          justify-content: center;
          width: 30px;
          height: 30px;
      }

      .taille1 {
          width: 175px;
      }

      .taille2 {
          width: 315px;
      }

      .hidden-on-load {
          display: none;
      }

      .copy-link {
          cursor: pointer;
      }

/* BARRE ORANFE MENU FIN */

/* SHAKE TREMBLE DEBUT */

sortable-ghost {
  opacity: 0.4;
}

@keyframes shake {
0% { transform: translateX(0); }
10% { transform: translateX(-2px); }
20% { transform: translateX(2px); }
30% { transform: translateX(-2px); }
40% { transform: translateX(2px); }
50% { transform: translateX(-2px); }
60% { transform: translateX(2px); }
70% { transform: translateX(-2px); }
80% { transform: translateX(2px); }
90% { transform: translateX(-2px); }
100% { transform: translateX(0); }
}


.shake {
  animation: shake 0.5s ease-in-out infinite;
}


.button-opt.active {
  background-color: #28a745;
  color: white;
}

.button-opt:hover {
  background-color: #0056b3;
}

.button-opt.active:hover {
  background-color: #218838;
}

/* SHAKE TREMBLE FIN */
/* Conteneur du switch */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;      /* Largeur fixe */
  height: 20px;     /* Hauteur fixe */
  min-width: 40px;  /* Empêche de rétrécir en dessous de 40px */
  min-height: 20px; /* Empêche de rétrécir en dessous de 20px */
  flex-shrink: 0;   /* Empêche le rétrécissement dans un conteneur flex */
  vertical-align: middle; /* Aligne verticalement avec le texte */
  overflow: hidden; /* Empêche le débordement */
  margin-right: 10px;
}

/* Masquer l'input checkbox par défaut */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}


/* Slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 20px;  /* Arrondi du slider */
  overflow: hidden; /* Assure que le rond du slider reste à l'intérieur */
}

/* Rond du slider */
.slider:before {
  position: absolute;
  content: "";
  height: 14px;  /* Taille fixe du rond */
  width: 14px;  /* Taille fixe du rond */
  left: 3px;  /* Positionnement du rond */
  bottom: 3px;  /* Positionnement du rond */
  background-color: white;
  transition: 0.4s;
  border-radius: 50%; /* Rond parfait */
}

/* Couleur du slider quand l'input est checked */
input:checked + .slider {
  background-color: #2196F3;
}

/* Déplacement du rond quand l'input est checked */
input:checked + .slider:before {
  transform: translateX(20px);  /* Déplacement fixe */
}

/* Arrondir le slider */
.slider.round {
  border-radius: 20px;  /* Arrondi */
}

.slider.round:before {
  border-radius: 50%;  /* Rond parfait */
}

.blockcursor{
  cursor: not-allowed;
}

.displaymob{
  display: none;
}


/*  USER DEBUT */
.img-ava-mob{
    width: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin-left: 10px;
    cursor: pointer;
}

/*  USER FIN */



.ptpts{
  overflow: hidden;
  padding: 0 10px;
  text-overflow: ellipsis;
}

.unimob{
  display: flex;
}


/* BARRE DE RECHERCHE DEBUT */
.table-container2 {
  width: 100%;
  position: absolute;
  top: 50px;
  z-index: 10;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  border-top: none;
  background: var(--bg-2);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 0px 0px 10px 0px;
  border-radius: 12px;
}

.propositions {
  z-index: 10;
  background: var(--bg-2);
  border-top: none;
  width: 100%;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.propositions a{
  color: var(--txt-color);
}

.recherchesrecentes{
  background-color: var(--bg-2);
  border-top: solid 1px var(--trait-fin);
  padding: 5px 5px 0px 5px;
}




.tags-container{
  z-index: 10;
  background: var(--bg-2);
  border-top: none;
  width: 100%;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 5px 5px 0px 5px;
}

.tag {
  display: inline-block;
  margin: 5px;
  padding: 5px 10px;
  background-color: var(--fond-wh-blue);
  border-radius: 5px;
  cursor: pointer;
}

.blueglob{
  background-color: #6969ff;
  color: white;
  font-weight: 600;
}

.tag:hover {
  background-color: var(--bg-2);
  border: 1px solid var(--txt-blue-wh);
}

#noResultsMessage {
  background: white;
  padding: 10px;
  color: red;
  font-weight: bold;
}


.width1{
  border-top-left-radius: 5px;
  width: 80%;
}

.width2{
  border-top-right-radius: 5px;
  width: 20%;
}




/* BARRE DE RECHERCHE FIN */


/* ANIMATION PRODUCT BOTTOM */
.fixed-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-2);
  border-top: 1px solid var(--trait-fin);
  padding: 10px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
  z-index: 9999;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.fixed-banner.show {
  opacity: 1;
  pointer-events: auto;
}

.banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Partie gauche : image, prix et titre */
.banner-left {
  display: flex;
  align-items: center;
}

.banner-image img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 10px;
}

.banner-info .price {
  font-weight: bold;
  margin: 0;
  color: var(--txt-color);
}
.banner-info .title {
  margin: 0;
  font-size: 14px;
  color: var(--txt-color);
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limite à 2 lignes */
  line-clamp: 2; /* Standard property for compatibility */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

 .maxw250{
    padding-right: 50px;
  }


/* button favoris */
  .product-favorite {
    color: black;
            position: absolute;
            top: 8px;
            right: 8px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 2;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .product-favorite:hover {
            background: rgba(255, 255, 255, 1);
            transform: scale(1.1);
        }
        
        .product-favorite.favorited {
            background: #ff4757;
            color: white;
        }
        
        .product-favorite.favorited:hover {
            background: #ff3742;
        }
        
        .product-favorite i {
            font-size: 14px;
        }
        
        .carousel-item2 {
            position: relative;
        }
        
        .carousel-item {
            position: relative;
        }
/* fin button favoris */




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

  

  

.flex3 {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

.info-container {
  margin: 0 0 20px 0;
  padding-bottom: 10px;
  width: 100%;
  /* max-height: 65vh; */
}

.image-big-container {
  width: 100%;
  /* Utilisation de pourcentage pour la largeur */
}

}

.last_update{
  font-size: 12px;
}

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

  .maxw250{
    padding-right: 50px;
  }

h1 {
    font-size: 25px;
}

 

  .action-theme .menu-theme{
    right: 29px;
  }

 

  .marge {
    margin: 0px 10vh 0 10vh;
  }

  .marge5{
        margin: 0px 10vh 0 10vh;

  }

  .marge-2 {
    margin: 0px 4% 0 4%;
  }
  
}

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

    h1 {
    font-size: 16px;
    }



  .unimob{
    display: none;
  }



  .sponsor-badge {

      right: 0px;

  }

  .price-disclaimer{
    font-size: 11px;
    margin-bottom: 10px;
  }

  .tabledescglob{
    padding: 10px;
  }

  .logo-container img {
    width: 100px;
    object-fit: contain;
  }

  .img_vendor_logo{
    width: 80px;
    padding: 1px;
  }

  .last-update{
    font-size: 12px;
  }
  
  .btn-rounded{
    font-size: 13px;
  }

  .tabledesc tr {
    border-bottom: none;
  }

  .mobwrap{
    display: flex;
    flex-direction: column;
  }

  .width1{
    width: 100%;
    border-top-right-radius: 5px;
  }

  .width2{
    width: 100%;
    border-top-right-radius: initial;
  }

  .fixed-banner{
    padding: 5px 0px;
  }

  #diagram-container{
    display: none;
  }

  .country-select, .country-select2{
    border: 1px solid var(--bg-2);
    background: none;
    color: var(--txt-color);
    font-weight: 500;
    width: 12vh;
  }
  
  .nomontreselect {
    border: 1px solid var(--bg-2);
    background: none;
    color: var(--txt-color);
    font-weight: 500;
    padding: 0;
    /* Appliquer un max-width pour éviter les débordements */
    width: 12vh;
    white-space: nowrap; /* Empêcher le texte de passer à la ligne */
  }

  .maxw250{
    max-width: 250px;
    padding-right: 25px;
  }


  /* VRAI MOBILE */

.carousel-header {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
}


.clickable-category{
  width: 40%;
}

.sub-category{
  width: 100%;
}

  .view-all{
    font-size: 13px;
  }
  
  .breadcrumb ol{
  font-size: 12px;
  }
  
  

  /**:hover{
    color: initial;
    background-color: initial;
    text-decoration: none;
  }*/

   */

   .container-user{
    padding: 20px 10px;
   }

  .tag{
    font-size: 13px;
  }

  .polsize{
    font-size: 13px;
  }

  .small-imagev2 img {
    padding: 2px;
    color: black;
    width: 35px;
    /* Taille carrée */
    height: 35px;
    /* Taille carrée */
    object-fit: contain;
    /* Ajuster l'image pour qu'elle soit entièrement contenue */
    margin-right: 10px;
    /* Marge à droite pour l'espace entre l'image et le texte */
  }
  
  

  /* BARRE DE RECHERCHE DEBUT */
  .table-container2 {
    width: 101vw; 
    position: absolute;
    top: 44px;
    z-index: 10;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    border-top: 1px solid var(--trait-fin);
    left: -55px; 
    right: 0; /* Et s'étend jusqu'à la droite */
    margin: 0; /* Supprimer les marges s'il y en a */
  }


  
  

  .nav-mob-app{
    display: flex;
  }
  

  .categ-item{
    width: 90px;
  }

  .carousel-item{
    width: 220px;
  }

  .carousel-item2{
    width: 145px;
  }

  .carousel-item h3{
    margin-bottom: 0px;
  }

  .category-link h3{
    margin: 0 5px;

  }

  .carousel-title {
    font-size: 20px;
}

  
  .recherche input{
    font-size: 16px;
  }

  #reseaux-form input{
    font-size: 16px;
  }

 



  .taille2{
    width: 264px;
  }
  

  .lst_lnk{
    padding-bottom: 0px;
  }

  .soustest{
    padding: 10px 0;
  }

  .categsous{
    font-size: 14px;
    margin-right: 5px;
  }


  .succ-button{
    margin-left: 0px;
  }

  #donation-options button{
    padding: 12px;
  }


  .pad-right{
    display: none;
    background-color: red;

  }

  .info3 .price {
    font-size: 60px;
    color: red;
    white-space: nowrap;
  }
  
  .info3 .marchand {
    color: yellow;
    font-size: 40px;
    white-space: nowrap;
  }
  
  .info3 .nom {
    font-size: 40px;
    white-space: nowrap;
  }



  .icon-last{
    position: absolute;
    top: 3x;
    right: -3px;

  }

  .categorie-mob i{
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-2);
    width: 35px;
    height: 35px;
    margin-right: 8.5px;
    transition: 0.5s;
    font-size: 15px;
    color: var(--txt-color);
  }

  .actu-prix{
    padding: 0px;
    font-size: 14px;
  }

  .actu-prix i{
    font-size: 10px;
  }

  .actu-prix-red{
    padding: 0 5px;
    font-size: 14px;
  }

  .actu-prix-red i{
    font-size: 10px;
  }



  .modalmarchand-content h2, modalcouleur-content h2{
    font-size: 19px;
  }

  .icon-cl{
    display: none;
  }

  .iconcl{
    display: flex;
    align-items: center;
  }

  .iconcl i{
    color: var(--txt-color);
    cursor: pointer;
    font-size: 1.50rem;
    display: flex;
    gap: 5px;
    align-items: center;
    margin-left: 10px;
  }

  .logos{
    margin-right: 10px;
  }

  .recherche input{
    padding: 6px;
    padding-left: 35px;

  }

  .topnav{
    display: none;
  }

  .navmob{
    display: flex;
    padding: 10px 0;
  }

  .no-scroll {
    overflow: hidden;
  }


  

  #nav-menu{
    display: initial;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }

  .nav-princip {
    display: initial;
    background-color: red;
    gap: initial;
    margin-right: initial;
  }

  .nav__logo {
    font-size: 17px;
  }

  .container {
    flex-direction: column;
    align-items: center;
  }

  .dropdown__content {
    grid-template-columns: repeat(8, max-content);
    column-gap: 1.5rem;
    justify-content: left;
    margin-inline: auto;
    align-items: baseline;
    background: none;
  }

  .dropdown__group:first-child {
    margin-top: 0px;
  }


  .dropdown__container {
    margin-right: 20px;
    margin-left: 20px;
    overflow-x: auto;
    /* Ajoute une barre de défilement horizontale si le contenu dépasse la largeur */
    white-space: nowrap;
    /* Empêche le texte de passer à la ligne, ce qui permet au contenu de défiler horizontalement */
  }



  #fleche1 {
    display: flex;
  }

  #fleche2 {
    display: none;
  }

  #iconrecherche {
    display: none;
  }

  #iconfilter {
    display: flex;
  }


  .modal-content h2 {
    font-size: 19px;
  }

  .nombre-find {
    font-size: 13px;
  }

  .container_filtre .box1 {
    display: none;
  }

  .container_filtre .box2 {
    width: 100%;

  }


  .container_filtre {
    margin-top: 0px;

  }

  .dropdown__icon {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 0rem;
  }

  i#bar-recherche {
    color: white;
    font-size: 1.25rem;
    margin-right: 10px;
    display: flex;
    cursor: pointer;
  }

  i#icon-clss {
    display: none;
  }


  .dropdown__icon i {
    font-size: 20px;
    color: black;
  }


  /*.title_h1 {
    padding: 10px;
  }*/

  
  .gras {
    font-size: 18px;
  }

  .avert {
    font-size: 13px;
  }



  .footer {
    padding: 10px 0;
    text-align: left;
  }

  .info {
    padding: 0px;
    margin-top: 0px;
    margin-bottom: 10px;
  }

 

  .box3 {
    margin-left: auto;
    /* Déplacez le bloc à droite */
  }


  .box3 {
    float: right;
    /* Alignement à droite */
  }


 
  .nav__link {
    color: white;
  }

  .marge {
    margin: 8px;
  }

  .marge5{
    margin: 0px 2px 0 2px;
  }


  .info-container {
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    width: 100%;
    /* max-height: 65vh; */
  }

  .image-big-container {
    /*width: 100%; */
    /* Utilisation de pourcentage pour la largeur */
    height: 150px;
  }

  .flex {
    display: flex;
    flex-wrap: wrap;
  }



  .info-container button {

    margin: auto;
  }

  .table {
    width: 100%;

  }

  .modal-content {
    padding: 20px;
  }

  .modal label {
    font-size: 15px;
  }

  .logo img {
    height: 35px;

  }



}


.noaffnonev2{
  align-items: center;
}

.noshow{
  display: flex;
}




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


  .noaffmob2{
    display: none;
  }

  .last_update{
    display: none;
  }

  .noshow{
    display: none;
  }

  .action-theme .menu-theme{
    right: -23px;
  }

  .noaffnonev2{
    display: none;
  }

  .displaymob{
    display: flex;
  }


  .no-displaymob{
    display: none;
  }

  .button-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-left: auto;
  }

  .button-container {
    display: flex;
    gap: 10px;
    justify-content: right;
    margin-left: auto;
  }

  .categorie-mob i{
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-2);
    width: 35px;
    height: 35px;
    margin-right: 8.5px;
    transition: 0.5s;
    font-size: 15px;
    color: var(--txt-color);
  }

  tbody tr:hover,
  tbody tr:nth-child(even):hover {
    background-color:  initial;
  }


  .labelaff {
    display: flex;
    flex-direction: column;
  }

  .labelaffv2 {
    display: flex;
    flex-direction: column;
  }



  .table-container {
    width: 100%;
    /*margin-bottom: 10px; */
    padding: 5px;
  }


    

  .categorie-mob2{
    display: none;
  }

  .categorie-mob{
    color: var(--txt-blue-wh);
    font-weight: bold;
    display: flex;
    margin: 5px 3px;
    width: 100%;
    background-color: var(--par-dessus);
    border-radius: 25px;
    position: relative;
  }

  tr {
    display: flex;
    flex-wrap: wrap;
  }

  .marge3 {
    margin: 8px;
  }



  .noaff {
    display: flex;
    flex-direction: column;
    background-color: initial;
    font-size: 17px;
  }

  .noaff label {
    color: grey;
    font-size: 13px;
  }

  #noaff2 {
    display: none;
  }

  thead {
    display: none;
  }

  .categorie {
    display: none;
  }

  .labelaff {
    color: grey;
    font-size: 13px;
  }

  .labelaff label {
    display: flex;
  }


  .labelaffv2 {
    color: grey;
    font-size: 13px;
  }

  .labelaffv2 label {
    display: flex;
  }

  #takeall {
    width: 100%;
  }

  #takeall {
    width: 100%;
  }

  td {
    display: flex;
    align-items: center;
  }

  .list-link {
    width: 100%;
    font-size: 15px;
    border-radius: 25px;
    margin-bottom: 5px;
  }



  .categorie-mob2{
    color: var(--txt-blue-wh);
    font-weight: bold;
    display: flex;
    margin: 5px 3px;
    width: 100%;
    background-color: var(--par-dessus);
    border-radius: 25px;
    position: relative;
    align-items: center;
    padding: 5px;
  }

  .categorie-mob2 i{
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-2);
    width: 35px;
    height: 35px;
    margin-right: 10px;
    transition: 0.5s;
    font-size: 15px;
    color: var(--txt-color);
  }

  .icon-last{
    position: absolute;
    top: 3x;
    right: -3px;

  }

  .nobrain {
    display: none;
  }

  

  .dropdown__content {
    column-gap: 1.5rem;
  }

  .marge {
    margin: 0px 1vh 0 1vh;
  }

  .marge5{
    margin: 0px 2px 0 2px;
  }




}

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

  .noaffnoneinv{
    display: initial;
  }

  .action-pcmenu .menu-pcmenu{
    right: -54px;
  }

  .logo2{
    display: none;
  }

  .noaffnone{
    display: none;
  }

  .lst_lnk{
    padding-bottom: 0px;
  }

  .succ-button{
    margin-left: 0px;
  }


  .dropdown__content {
    padding-bottom: 10px;
    column-gap: 0.7rem;
  }

  .info-box {
    display: inline-block;
    width: 100%;
    gap: 5px;
  }


  .list-link{
    margin-bottom: 5px;
  }



}

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


  .btn-green-sombre, .btn-green{
    display: none;
  }



}

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


  .gras2{
    display: none;
  }


  .navmob{
    justify-content: center;
  }

  nav{
    justify-content: center;
  }



}

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


  .gras2{
    display: none;
  }

 

  .navmob{
    justify-content: center;
  }

  nav{
    justify-content: center;
  }



}

/*
.rickroll-link{
  display: none;
}
*/

@media screen and (max-width: 140px) {
  /*
  .rickroll-link {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: red;
    width: 100vw;
    height: 100vh;
    z-index: 600;
  }

  */

  body {
    overflow: hidden; /* Empêche le scrolling sur le corps de la page */
  }

  html {
    overflow: hidden; /* Empêche le scrolling sur tout le document HTML */
  }
}


.price-disclaimer{
  font-size: 13px;
}



/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 350px) {

  .actu-prix{
    display: none;
  }

  .list-link{
    white-space: wrap;
  }

}

@media screen and (max-width: 300px) {
  .btn-grey{
    display: none;
  }

  

}

@media screen and (max-width: 240px) {
  .btn-red{
    display: none;
  }
  .recherche{
    display: none;
  }

  #icondel{
    display: none;
  }

  .navmob{
    justify-content: space-between;
  }

  .categorie-mob{
    display: none;
  }

  


  

}



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

  .labelaff {
    font-size: 11px;
    padding: 1px;
  }

  .labelaffv2 {
    font-size: 11px;
    padding: 5px;
  }

  .redinfo{
    font-size: 11px;
}

.barreinfo{
  font-size: 11px; 
  text-decoration: line-through;
}

  .nepasaff{
    display: none;
  }
  
}



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

  .stock{
    width: 59px;
  }

  td {
    padding: 5px;
  }

  .labelaff {
    font-size: 11px;
    padding: 1px;
  }

  .redinfo{
    font-size: 11px;
}

.barreinfo{
  font-size: 11px; 
  text-decoration: line-through;
}

  .labelaffv2 {
    font-size: 11px;
    padding: 5px;
  }
}

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

  .marge-2{
    margin: 0px 2% 0 2%;
  }

  .labelaff {
    font-size: 10px;
    padding: 1px;
  }

  .redinfo{
    font-size: 10px;
}

  .barreinfo{
    font-size: 10px; 
    text-decoration: line-through;
  }

  .labelaffv2 {
    font-size: 10px;
    padding: 5px;
  }
}


/* For large devices */
@media screen and (min-width: 970px) {
  


  .nav__toggle {
    display: none;
  }

  .nav__list {
    display: flex;
    /*column-gap: 3rem; */
    height: 100%;
  }

  .nav li {
    display: flex;
    font-size: 14px;
    margin: 0px;
  }


  .nav__link {
    padding: 0;
  }

  .nav__link:hover {
    background-color: initial;
  }

  /* Dropdown */
  .dropdown__button {
    column-gap: 0.25rem;
    pointer-events: none;
  }

  .dropdown__container {
    height: max-content;
    position: absolute;
    left: 0;
    right: 0;
    top: 6.5rem;
    background-color: var(--bg-1);
    box-shadow: 0 6px 8px hsla(220, 68%, 12%, 0.05);
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
    z-index: 100;
  }


  .dropdown__group {
    padding: 2rem 0;
    align-content: baseline;
    row-gap: 1.25rem;
  }

  .dropdown__group:first-child,
  .dropdown__group:last-child {
    margin: 0;
  }

  .dropdown__list {
    row-gap: 0.75rem;
  }



  .dropdown__icon i {
    font-size: 2rem;
  }

  .dropdown__title {
    font-size: var(--normal-font-size);
  }

  .dropdown__link {
    font-size: var(--small-font-size);
  }


  .dropdown__item {
    cursor: pointer;
  }

  .dropdown__item.active .dropdown__arrow {
    transform: rotate(180deg);
  }

  
.dropdown__item.active .dropdown__container {
  top: 5.5rem;
  opacity: 1;
  pointer-events: initial;
  cursor: initial;
}

  
}


/* A PARTIR DE LA NOUS CONTACTER * /


/* ME CONTACTER DEBUT */
.me-contacter
{
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 20Px;
}

.me-contacter .box
{
  display: flex;
  justify-content: center;
}

.me-contacter .box .icon
{
  margin: 0 20px;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  margin-top: 20px;
}

.me-contacter .box .icon span
{
  display: block;
  height: 60px;
  width: 60px;
  background: #fff;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.me-contacter .box .icon span i
{
  line-height: 60px;
  font-size: 25px;
}

.me-contacter .box .icon span a
{
  color: hsl(250,69%,61%);
}

.me-contacter .box .icon span a:hover
{
  color: var(--txt-color);
}
/* ME CONTACTER FIN */



.accordion-compo {
  background-color: var(--fond-wh-blue);
  color: var(--txt-color);
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-weight: bold;
}



/*=============== GOOGLE FONTS ===============*/




/*=============== LAYOUT ===============*/





/*=============== ACCORDION ===============*/
.accordion {
  align-content: center;
  background-color: var(--bg-1);
}

.accordion__containerv7 {
  display: grid;
  row-gap: .75rem;
  border-radius: .5rem;
  width: 100%;
}

.accordion__title {
  font-size: var(--normal-font-size);
  color: var(--txt-color);
  font-weight: 600;
  margin-top: .15rem;
  transition: .2s;
  text-decoration: underline;
}

.accordion__title_v2 {
  font-size: var(--normal-font-size);
  color: var(--txt-color);
  font-weight: 600;
  margin-top: .15rem;
  transition: .2s;
  padding-left: 35px;
  text-decoration: underline;
}

.accordion__header {
  display: flex;
  column-gap: .5rem;
  padding: 1.25rem 1.25rem 1.25rem 1rem;
}

.accordion__description {
  padding: 0 1.25rem 1.25rem 3rem;
  font-size: var(--smaller-font-size);
  color: var(--txt-color);
}

.accordion__icon {
  font-size: 1.5rem;
  height: max-content;
  color: var(--txt-color);
  transition: .3s;
}

.accordion__item {
  background-color:  var(--bg-2);
  border-radius: .25rem;
  position: relative;
  transition: all .25s ease;
  width: 100%;
  color: var(--txt-color);
  padding-bottom: 10px;
  cursor: pointer;
}

.accordion__item::after {
  content: '';
  background-color: var(--txt-color);
  width: 5px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: .25rem 0 0 .25rem;
}


.accordion__content {
  overflow: hidden;
  height: 0;
  transition: all .25s ease;
  margin-left: 50px;
  padding-right: 5px;
}

/*Rotate icon and add font weight to titles*/
.accordion-open .accordion__icon {
  transform: rotate(45deg);
}

.accordion-open .accordion__title {
  font-weight: 600;
}

.accordion-opene{
  padding-left: 50px;
  padding-right: 10px;
}






@media (max-width: 1107px) {


  .accordion {
    align-content: center;
  }

  .accordion-open .accordion__title {
    font-weight: 600;
  }
  
  .accordion-opene{
    padding-left: 20px;
    padding-right: 10px;
  }

  .accordion__content{
    margin-left: 20px;
  }

  .accordion__title_v2{
    padding-left: 0px;
  }
  
  

}


.titreduhaut{
  text-align: center;
  margin-bottom: 20px;
}

.nous-contacter{
  width: 100%;
  border-radius: 12px;
}

.nous-contacter .form1 input{
  width: 100%;
  border-radius: 5px;
  padding: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.nous-contacter textarea{
  width: 100%;
  border-radius: 5px;
  padding: 10px;
  border: none;
  outline: none;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

}


.nous-contacter .form1{
  margin: 10px 0 10px 0;
 }


.contactsection{
  color: var(--txt-color);
}


.grandcontainerv2{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: auto;
  padding: 0% 1% 0 1%;
}

.contactsection .nous-contacter{
  padding: 10px;
}

.contactsection .nos-infos{
  padding: 10px;

}

.grandcontainerv2 h2{
  padding-bottom: 10px;
  border-bottom: 1px solid ;
}

.nos-infos .content{
  margin-top: 10px;
  background: var(--bg-2);
  border-radius: 12px;
  padding: 10px;
}

.nos-infos .box{
  margin-top: 10px;
  margin-bottom: 10px;
}

.nos-infos .content h3{
  padding-bottom: 10px;
  font-size: 1rem;
}

.nos-infos .content a{
  color: rgb(43, 159, 236);
  font-size: 1rem;
}

.nous-contacter .form1 input {
  border: none;
  outline: none;
}

.nous-contacter label h4{
  font-size: 1rem;
  margin-bottom: 5px;
}

.envoyer button {
  padding: 10px;
  color: black;
  background-color: #f0f0f0; /* Couleur de fond par défaut */
  border: none;
  outline: none;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.2s; /* Animation fluide */
}

.envoyer button:hover {
  background-color: blue; /* Couleur de fond au survol */
  transform: scale(1.05); /* Légère mise en avant */
  color: white;
  cursor: pointer;
}

.envoyer button p {
  color: black;
  font-weight: 500;
}



@media (max-width: 1107px) {

  .grandcontainerv2{
    justify-content: initial;
    display: initial;
    padding: 0;

  }

  .contactsection{
    margin-top: initial;
  }

}