@font-face {
  font-family: 'Montris ExtraLight';
  src: url('FlechaBronzeaTestL-ExtraLight.otf') format('opentype');
  font-weight: 200; /* ExtraLight */
  font-style: normal;
}


.whatsapp-float {
  position: fixed;          /* stays on screen while scrolling */
  right: 24px;
  bottom: 24px;
  width: 72px;              /* big size */
  height: 72px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
  text-decoration: none;
  z-index: 9999;            /* above page content */
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  -webkit-tap-highlight-color: transparent; /* remove mobile tap flash */
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.28);
  background: #1ebe57;
}

.whatsapp-float:active {
  transform: translateY(0);
}

.cat{
    font-size: 23pt !important
    ;
}

/* Container global */
.container {
  display: flex;
 
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 50px auto;
  padding: 70px;
  font-family: Arial, sans-serif;
}


.name{
  font-family: 'Flecha Bronzea', serif;
  font-weight: 200 !important;   
 font-size: 23pt !important;   
    
}

/* Partie produit */
.product {
  flex:start;
  max-width: 550px;
  text-align: center;
  padding: 30px;
   border: 1px solid rgb(237, 237, 237);
   
}

.imgcontainer {
  width: 550px;

 
  margin: 0 auto 20px;
}

.imgcontainer img {
  width: 330px;
  border-radius: 12px;
  object-fit: cover;

}

.product p {
  margin: 10px 0;
  font-size: 17px;
  color: #333;
  font-family: 'Flecha Bronzea', serif;
  font-weight: 200 !important;
}

.product p:first-of-type {
  font-size: 17px;
  font-weight: bold;
  color: #111;
}




/* Formulaire */
form {
  flex: 1;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
 
}

form label {
  display: block;
  font-weight: 400;
  font-size: 11.5pt;
  margin-bottom: 0px;
  color: #333;
}

form input,
form textarea {
  width: 100%;
  padding: 8px 10px;
  margin-top: 10px;
  margin-bottom: 0px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

form input:focus,
form textarea:focus {
  border-color: #111;
  outline: none;
 
}

form textarea {
  resize: none;
  min-height: 100px;
}

form button {
  width: 100%;
  padding: 15px;
  background: #111;
  color: #fff;
  border: none;
  margin-top: 5px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #333;
}


/* Style général du select */
select {
    margin-top: 8px;
    width: 200px;          /* largeur */
    padding: 8px 12px;     /* espace intérieur */
    border: 1px solid #ccc;/* bordure */
    border-radius: 5px;    /* coins arrondis */
    background-color: #fff;
    font-size: 16px;
    font-family: Arial, sans-serif;
    appearance: none;      /* enlève le style par défaut du navigateur */
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: border 0.3s, box-shadow 0.3s;
}

/* Effet au focus */
select:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
    outline: none;
}

/* Optionnel : wrapper pour ajouter flèche custom */
.select-wrapper {
    position: relative;
    display: inline-block;
}

.select-wrapper::after {
    content: "▼";              /* flèche */
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #555;
}


/* Responsive pour écrans moyens (tablette) */
@media (max-width: 992px) {
  .container {
    flex-wrap: wrap;
    padding: 40px;
    gap: 20px;
  }

  .imgcontainer {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
  }

  .imgcontainer img {
    width: 100%;
    max-width: 300px;
  }

  form {
    width: 100%;
    padding: 15px;
  }
}

/* Responsive pour écrans petits (mobile) */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .product,
  form {
    flex: 1 1 100%;
  }

  .imgcontainer img {
    width: 100%;
    max-width: 100%;
  }

  select {
    width: 100%;
  }
}


#customCheck{
  width: 70px;
  font-size: 30pt;
  margin-top: -0px;
  font-weight: 300;
 
}
.perso{
  display: flex;
  align-items: center;
  margin-top: 5px;

}

.perso h4{
  font-weight: 200;
}
#customInput {
  display: none; /* par défaut caché */
  margin: 15px 0;
}

#customInput label {
  display: block;
  font-size: 14px;
  margin-top: -35px;
  margin-bottom: 0px;
  color: #333;
}

/* Conteneur du sélecteur */
.language-selector {
    text-align: right;
    margin: 10px;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

/* Liens de langue */
.language-selector a {
    text-decoration: none;
    color: #333;
    padding: 5px 8px;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
}

/* Effet au survol */
.language-selector a:hover {
    background-color: #007bff;
    color: #fff;
}

/* Séparateur entre les langues */
.language-selector a + a::before {
    content: "|";
    margin: 0 5px;
    color: #666;
}

/* Responsive pour mobiles */
@media (max-width: 600px) {
    .language-selector {
        text-align: center;
        font-size: 16px;
    }
    .language-selector a + a::before {
        content: " "; /* Retire le séparateur sur mobile */
        margin: 0 3px;
    }
}
.prix{
  color: green !important;
}
.prix s{
  color: red;
}

#customInput input[type="text"] {
  width: 100%;
  max-width: 400px; /* largeur max sur grand écran */
  padding: 10px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

/* Tablette */
@media (max-width: 768px) {
  .product{
    padding-bottom: 55px;
  }
  #customInput input[type="text"] {
    max-width: 100%;
    font-size: 14px;
  }

  .infocontainer{
  margin-top: -37px;
}
.name{
  font-family: 'Flecha Bronzea', serif;
  font-weight: 200 !important;   
 font-size: 23pt !important;   
    
}
}

/* Mobile */
@media (max-width: 480px) {
  #customInput label {
    font-size: 14px;
  }
  #customInput input[type="text"] {
    font-size: 13px;
    padding: 8px;
  }
}


.success-animation {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  animation: fadeIn 0.5s ease-in-out;
  color: white;
  font-size: 20px;
  text-align: center;
}

.checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #4caf50;
  stroke-miterlimit: 10;
  margin: 20px auto;
  box-shadow: inset 0px 0px 0px #4caf50;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #4caf50;
  fill: none;
  animation: stroke .6s cubic-bezier(.65,.05,.36,1) forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke .3s cubic-bezier(.65,.05,.36,1) .8s forwards;
}

@keyframes stroke {
  100% { stroke-dashoffset: 0; }
}

@keyframes scale {
  0%, 100% { transform: none; }
  50% { transform: scale3d(1.1, 1.1, 1); }
}

@keyframes fill {
  100% { box-shadow: inset 0px 0px 0px 80px #4caf50; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
