/* ==========================================================================
   1. STRUCTURE GLOBALE ET EN-TÊTE ENRICHIS
   ========================================================================== */

/* --- AJOUT 1 : Empêche les paddings de faire déborder la page --- */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  margin-top: 150px;
  width: 100%;
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #f6f8fa; /* Fond de page doux pour faire ressortir les blocs */
  color: #333333;
  overflow-x: hidden; /* Sécurité additionnelle pour bloquer le scroll horizontal */
}

.header {
  width: 100%;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95); /* Fond blanc translucide plus moderne */
  backdrop-filter: blur(10px); /* Effet flou premium en arrière-plan */
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
  padding: 10px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Ombre de séparation discrète */
  position: fixed;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px; /* Évite que l'en-tête sticky ne cache le titre de la catégorie */
}

.top-nav {
  display: flex;
  flex-direction: row;
  gap: 30px;
  font-size: 27px;
}

.top-nav a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  padding: 5px 16px;
  border-radius: 40px;
  background-color: #84c2b3;
  transition: all 0.2s ease;
}

.top-nav a:hover {
  background-color: #4f7c71;
  color: white;
}

#part_logo {
  display: flex;
  align-items: center;
}

#logo {
  width: auto;
  height: 100px; /* Taille réajustée pour ne pas saturer l'écran au chargement */
  object-fit: contain;
}

#filter-title {
  max-width: 1000px;
  width: 92%;
  margin: 40px auto -15px auto; /* Aligné sur la barre de filtres, rapproche le titre du contenu */
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase; /* Force le texte en majuscules pour le style */
  letter-spacing: 2px;       /* Espacement premium des lettres */
  color: #6c757d;            /* Gris ardoise élégant et discret */
  
  display: flex;
  align-items: center;
  gap: 8px;                  /* Espace entre la pastille et le texte */
}

/* Petite pastille de rappel géométrique avant le texte */
#filter-title::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #45B5F6; /* Reprend le bleu d'accentuation de vos listes */
  border-radius: 50%;        /* Transforme le carré en cercle parfait */
}

#btnwat {
  /* --- MODIFICATIONS POUR LE RENDRE FLOTTANT EN BAS À DROITE --- */
  position: fixed;      /* Décroche le bouton du header pour le faire flotter */
  bottom: 30px;         /* Positionné à 30px du bas de l'écran */
  right: 30px;          /* Positionné à 30px de la droite de l'écran */
  z-index: 9999;        /* Force le bouton à rester au-dessus de tout le contenu */
  margin-right: 0;      /* Supprime l'ancienne marge du header */
  
  /* --- AJOUTS VISUELS RECOMMANDÉS POUR UN BOUTON FLOTTANT --- */
  border-radius: 50%;   /* Assure un contour parfait si votre icône est ronde */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2); /* Ombre pour détacher le bouton du fond */

  /* --- Votre code d'origine inchangé --- */
  display: flex;
  flex-direction: row;
  height: 90px;  
  width: 90px;
  background-image: url('img/waicon.png');
  background-size: cover;
  background-position: center;
  transition: transform 0.2s ease;
}

#btnwat:hover {
  transform: scale(1.1); /* Conserve votre effet d'échelle au survol */
}


/* Conteneur de la barre de filtres */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  max-width: 1000px;
  margin: 30px auto 10px auto;
  width: 92%;
  box-sizing: border-box;
}

/* Wrapper pour positionner la flèche personnalisée */
.select-wrapper {
  position: relative;
  flex: 1;
  min-width: 250px;
}

/* Le menu déroulant (Select) stylisé */
.select-wrapper select {
  width: 100%;
  padding: 14px 45px 14px 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #495057;
  background-color: #ffffff;
  border: 2px solid #e9ecef;
  border-radius: 14px;
  cursor: pointer;
  outline: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  
  /* Masque la flèche par défaut du navigateur */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  
  transition: all 0.25s ease;
}

/* Effets au Survol */
.select-wrapper select:hover {
  border-color: #ced4da;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

/* Effets au Focus (Clic) */
.select-wrapper select:focus {
  border-color: #45B5F6; /* Reprend votre couleur d'accentuation bleue */
  box-shadow: 0 0 0 4px rgba(69, 181, 246, 0.15);
  color: #212529;
}

/* Flèche personnalisée en SVG moderne intégrée */
.select-wrapper::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23495057' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none; /* Permet de cliquer à travers la flèche */
  transition: transform 0.2s ease;
}

/* Rotation de la flèche quand le select est actif (Optionnel sur certains navigateurs) */
.select-wrapper select:focus + ::after {
  transform: translateY(-50%) rotate(180deg);
}

#banniere {
  width: 100%;
  height: 600px; 
  background-color: #fdb437; 
  background-image: url('img/ban_smart_dist.png');
  background-size: cover; 
  background-position: left top; 
  background-repeat: no-repeat;
  
  /* Permet de centrer facilement du texte ou des éléments à l'intérieur si besoin */
  display: flex; 
  justify-content: center;
  align-items: center;
  
  margin-bottom: 30px; /* Espace fluide avec le reste du contenu en dessous */
}

/* ==========================================================================
   2. SECTIONS, CATÉGORIES ET THÉMATIQUES POLIES
   ========================================================================== */

.cate {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  margin-top: 40px;
  margin-bottom: 15px;
  padding: 10px 40px;
  font-size: 52px; /* Rendu plus équilibré */
  font-weight: 800;
  align-items: center;
  border-left: 8px solid; /* Reprend dynamiquement la couleur via la bordure */
}

.thm {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  margin-top: 20px;
  margin-bottom: 15px;
  padding-left: 45px;
  font-size: 38px;
  font-weight: 500;
  color: #6c757d;
  font-style: italic;
}

/* ==========================================================================
   3. CARTES PRODUITS (.LINHGNE) ET DIAPORAMA
   ========================================================================== */

.ligne {
  width: 95%;
  margin: 0 auto 30px auto;
  display: flex;
  min-height: 600px; /* Plus flexible que 900px fixes */
  flex-direction: row;
  background-color: #ffffff;
  border-radius: 20px; /* Arrondi des angles des fiches produits */
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Profondeur visuelle */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ligne:hover {
  transform: translateY(-4px); /* Soulèvement discret au survol de la ligne */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.diapo {
  flex: 50%;
  background-color: #f4e8d6;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.slider {
  width: 100%;
  height: 500px;
  position: relative;
}

.slider img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: contain;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease-in-out; /* Transition douce lors du changement d'image */
  filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.18));
}

.dot {
  height: 14px;
  width: 14px;
  margin: 6px;
  background-color: #dcdcdc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.active,
.dot:hover {
  background-color: #495057;
  transform: scale(1.2);
}

/* ==========================================================================
   4. ZONE DE COMMANDE DYNAMIQUE (DROITE)
   ========================================================================== */

.cmd {
  flex: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Alignement à gauche à l'intérieur du bloc droit */
  justify-content: center;
  min-height: 600px;
  color: white;
  padding: 40px;
  box-sizing: border-box;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nompaire {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 10px;
}

.prix {
  font-size: 46px;
  font-weight: 300;
  margin-bottom: 25px;
  background: rgba(0, 0, 0, 0.12); /* Encadré translucide pour isoler le prix */
  padding: 5px 20px;
  border-radius: 30px;
}

.phint {
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* ==========================================================================
   5. BOUTONS DE SÉLECTION STYLE PILULE (CHECKBOXES + LABELS)
   ========================================================================== */

.sizes ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px; /* Espace régulier entre les choix */
  padding: 0;
  margin: 0;
}

.sizes li {
  float: none; /* Nettoyage des anciens float */
}

/* Base commune pour les labels cliquables (Pointe & Poinext) */
input[class="pointe"] + label,
input[class="pointext"] + label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: auto;
  padding: 12px 20px;
  margin: 0;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: white;
  background-color: rgba(255, 255, 255, 0);
  box-sizing: border-box;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

input[class="pointe"] + label:hover,
input[class="pointext"] + label:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: white;
}

/* État Coché (Sélectionné) */
input[class="pointe"]:checked + label,
input[class="pointext"]:checked + label {
  border-color: white;
  color: #212529 !important; /* Texte sombre hautement lisible sur fond blanc */
  background-color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* État Indisponible (Pointus) */
input[class="pointus"] + label {
  pointer-events: none;
  opacity: 40%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  padding: 12px 20px;
  border-radius: 50px;
  border: 2px dashed rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.6);
  background-color: rgba(0, 0, 0, 0.05);
  text-decoration: line-through;
}

.expose {
  vertical-align: super;
  font-size: 14px;
  margin-left: 2px;
}

.srie {
  font-size: 16px;
  margin-left: 6px;
  opacity: 0.85;
}

/* ==========================================================================
   6. ACTIONS PRINCIPALES & FORMULAIRES DE FIN
   ========================================================================== */

input[type=submit], #btn_order {
  width: auto;
  min-width: 320px;
  height: 60px;
  background-color: #68ad81; /* Vert d'action principal type WhatsApp */
  border: none;
  border-radius: 50px;
  color: white;
  padding: 0 35px;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

input[type=submit]:hover, #btn_order:hover {
  background-color: #1ebd57;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Nettoyage des inputs masqués techniques */
#txt_infos {
  display: none;
  visibility: hidden;
}

/* --- Remplacement du left: -9999% par un masquage qui ne déforme pas l'écran --- */
input[class="pointe"], 
input[class="pointext"], 
input[class="pointus"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* ==========================================================================
   7. ADAPTATION RESPONSIVE MOBILE / COMPACTE (CONSERVE LA LOGIQUE @MEDIA)
   ========================================================================== */
@media (min-width: 20em) {
  /* Vos variables de surdimensionnement mobiles spécifiques sont préservées ici, 
     mais encapsulées avec les nouveaux styles lisses de boutons */
  
  .titrepaire {
    font-size: 46px;
  }

  input[class="pointe"] + label,
  input[class="pointext"] + label {
    height: 70px;
    min-width: 80px;
    font-size: 32px;
    border: 4px solid white;
    border-radius: 40px;
  }

  input[class="pointe"]:checked + label,
  input[class="pointext"]:checked + label {
    border: 4px solid white;
    border-radius: 40px;
  }
  
  input[class="pointus"] + label {
    height: 70px;
    min-width: 80px;
    font-size: 24px;
    border-radius: 40px;
  }

  #btn_order {
    width: 90%;
    left: 5%;
    right: 5%;
    height: 80px;
    font-size: 32px;
    border-radius: 40px;
    text-align: center;
  }

    /* --- AJOUT INDISPENSABLE : Masquage des cases à cocher natives --- */
  input[class="pointe"], 
  input[class="pointext"], 
  input[class="pointus"] {
    position: absolute;
    left: -9999%;
    opacity: 0;
  }

  /* --- AJOUT INDISPENSABLE : Masquage des cases à cocher natives --- */
  input[class="pointe"], 
  input[class="pointext"], 
  input[class="pointus"] {
    position: absolute;
    left: -9999%;
    opacity: 0;
  }

  .header {
    flex-direction: row;
    gap: 10px;
  }
  .top-nav {
    margin: 10px 0;
    margin-bottom: 20px;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .top-nav a {
    font-size: 27px;
    padding: 5px 25px;
  }

  .filter-bar {
    margin-top: 100px;
    flex-direction: column; /* Aligne les deux menus verticalement sur mobile */
    gap: 15px;
    margin-top: 15px;
  }
  
  .select-wrapper {
    width: 100%;
  }
  
  .select-wrapper select {
    font-size: 35px;
    padding: 12px 40px 12px 16px;
  }
}

/* ==========================================================================
   ÉLÉMENTS RESTAURÉS (OMIS DANS LA NOUVELLE VERSION)
   ========================================================================== */

/* --- Styles Généraux & Typographies manquantes --- */
.handlee-regular {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.pics {
  width: 100%;
  height: auto;
}

#chapeau {
  margin: 10px;
  text-align: center;
  font-size: 22px;
}

.libelle {
  font-size: 13px;
  color: #555555;
}

/* --- Structure de Galerie d'origine --- */
#galerie {
  display: flex;
}

#seconde {
  display: flex;
  flex-direction: column;
}

.container {
  position: relative;
  float: left;
  margin: 10px;
}

.checkbox {
  position: absolute;
  bottom: 0px;
  right: 0px;
  height: 20%;
  width: 20%;
  opacity: 80%;
}

/* --- Listes globales d'origine (Hors .sizes) --- */
ul {
  padding: 0;
  margin: 0;
  clear: both;
}

li {
  list-style-type: none;
  list-style-position: outside;
  padding: 2px;
  float: left;
}

/* --- Éléments de Titres de section d'origine --- */
#pointitre {
  margin: 10px;
  text-align: center;
  font-weight: bold;
}

#poinombre {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title_order {
  font-weight: bolder;
  font-size: 40px;
  margin: 20px;
}

.title_med {
  font-size: 35px;
  margin: 20px;
}

#cate_ico {
  height: 100%;
  margin: 20px;
}

.cate_sand {
  font-weight: lighter;
  font-size: 40px;
}

.cate_label {
  font-weight: bolder;
}

.addcart {
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
  height: 40px;
  border: 3px solid white;
  border-radius: 20px;
  text-align: center;
  font-size: 24px;
  vertical-align: middle;
}

.navigation-button {
  text-align: center;
  vertical-align: middle;
  position: relative;
  z-index: 10;
}

/* --- Système de Panier / Badge --- */
#cart {
  width: 40px;
  position: relative;
  visibility: hidden;
}

#cartxt {
  display: flex;
  position: absolute;
  width: 40px;
  height: 40px;
  font-size: 15px;
  padding-top: 4px;
  justify-content: center;
  align-items: center;
  visibility: hidden;
}

.img_order {
  height: 150px;
  width: auto;
}

#tbl_panier {
  width: 100%;
  font-size: 25px;
  border: none;
}

th {
  height: 70px;
  background-color: #f2f1f1;
  border-bottom: solid 1px f2f1f1;
}

.qty_sand {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-direction: row;
}

.qte_sandale {
  text-align: center;
}

.prix_sandale {
  text-align: center;
}

.nom_sandale {
  font-weight: bold;
  padding-left: 10px;
}

.suppr {
  height: 30px;
  width: 30px;
}

.delete_sandale {
  text-align: center;
  font-size: 13px;
}

#ligne_total {
  font-weight: bolder;
  height: 60px;
  color: white;
  background-color: black;
  margin-top: 15px;
  margin-bottom: 15px;
  border: solid 1px black;
}

.hint {
  margin: 30px;
  font-style: italic;
}

.rond {
  height: 30px;
  background-color: #f2f1f1;
  cursor: pointer;
  width: 30px;
  border-radius: 30px;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin: 15px;
  vertical-align: middle;
}

/* --- Formulaires Globaux (Champs de saisie & Boutons) --- */
#renseignements {
  margin-left: 15px;
}

input[type=text] {
  width: 100%;
  padding: 12px 25px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
}

input[type=number] {
  width: 100%;
  padding: 12px 25px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
}

textarea {
  width: 100%;
  height: 150px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
  resize: none;
}

input[type=button] {
  width: 98%;
  background-color: #79bef7;
  height: 90px;
  font-family: "Plus Jakarta Sans", sans-serif;
  vertical-align: middle;
  border: none;
  border-radius: 50px;
  color: white;
  margin-left: 15px;
  margin-bottom: 15px;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  font-size: 40px;
  z-index: 100;
  bottom: 0;
  left: 0;
}

button {
  width: 150px;
  height: 50px;
  background-color: #79bef7;
  border: none;
  border-radius: 4px;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

/* --- Écran de confirmation de commande (thanks.html) --- */
#merci {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f4f6fb;
  padding: 30px 16px;
  box-sizing: border-box;
}

#merci-card {
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#logo_thanks {
  width: 180px;
  height: auto;
}

#succes-icone {
  width: 64px;
  height: 64px;
  margin: 24px 0 8px 0;
  border-radius: 50%;
  background: #e6f8f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#succes-icone svg {
  width: 32px;
  height: 32px;
  fill: #2fb380;
}

.txt_thanks {
  font-family: "Plus Jakarta Sans", sans-serif;
}

#anitche {
  font-size: 28px;
  font-weight: 800;
  color: #2c3242;
  margin: 4px 0 10px 0;
}

#txt_anitche {
  font-size: 16px;
  color: #565f75;
  line-height: 1.5;
  margin-bottom: 8px;
}

#wa-recommendation {
  width: 100%;
  box-sizing: border-box;
  margin: 24px 0 8px 0;
  text-align: center;
  background-color: #fffdf0;
  border: 1px solid #fbe8b0;
  border-radius: 14px;
  padding: 20px;
}

#wa-recommendation p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  color: #495057;
  line-height: 1.5;
  margin: 0 0 15px 0;
}

#btn_whatsapp {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #25D366;
  color: white;
  width: 100%;
  max-width: 280px;
  height: 52px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

#btn_whatsapp:hover {
  transform: translateY(-2px);
}

#btn_retour {
  font-family: "Plus Jakarta Sans", sans-serif;
  width: 100%;
  max-width: 280px;
  height: 48px;
  margin-top: 16px;
  font-size: 15px;
  font-weight: 600;
  background: none;
  border: 1px solid #dcdfe8;
  border-radius: 30px;
  color: #565f75;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

#btn_retour:hover {
  background: #f1f3f8;
  border-color: #c7cbd6;
}

#slogans {
  width: 100%;
  padding: 10px;
  background-color: #fdb437;
  text-align: center;
  font-size: 40px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

#txt_retex {
  margin-top: 60px;
  font-size: 60px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: bolder;
}


/* ==========================================================================
   AJOUTS RESPONSIVES MANQUANTS (À PLACER DANS VOTRE @media (min-width: 20em))
   ========================================================================== */
@media (min-width: 20em) {
  #cart {
    height: 100%;
    width: auto;
    position: relative;
    margin-right: 7px;
  }

  #cartxt {
    height: 100%;
    margin: auto;
    position: absolute;
    font-size: 20px;
  }

  #chapeau {
    font-size: 40px;
  }

  .checkbox {
    height: 60px;
    width: 60px;
    border-radius: 5px;
    opacity: 80%;
  }

  #pointitre {
    font-size: 20px;
  }

  .column {
    flex: 100%;
  }

  .libelle {
    font-size: 22px;
  }

  input[type=text] {
    width: 98%;
    padding: 10px 10px;
    margin: 8px;
    font-size: 30px;
    font-family: "Plus Jakarta Sans", sans-serif;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
  }

  input[type=number] {
    width: 98%;
    padding: 10px 10px;
    margin: 8px;
    font-size: 30px;
    font-weight: bolder;
    font-family: "Plus Jakarta Sans", sans-serif;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
  }

  input[type=email] {
    width: 98%;
    padding: 10px 10px;
    font-family: "Plus Jakarta Sans", sans-serif;
    margin: 8px;
    font-size: 30px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
  }

  textarea {
    width: 98%;
    height: 150px;
    font-family: "Plus Jakarta Sans", sans-serif;
    margin: 8px;
    padding: 10px 10px;
    box-sizing: border-box;
    font-size: 30px;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    resize: none;
  }

  #conforder {
    width: 98%;
    background-color: #79bef7;
    height: 90px;
    font-family: "Plus Jakarta Sans", sans-serif;
    vertical-align: middle;
    border: none;
    border-radius: 50px;
    color: white;
    margin-left: 15px;
    margin-bottom: 15px;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 40px;
    z-index: 100;
    bottom: 0;
    left: 0;
  }

/* ==========================================================================
   10. FORMULAIRE DE COMMANDE (Renseignements)
   ========================================================================== */

#Renseignements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  max-width: 700px;
  margin: 0 auto 10px auto;
  padding: 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.champ {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.champ--pleine-largeur {
  grid-column: 1 / -1;
}

#Renseignements .libelle {
  font-size: 14px;
  font-weight: 600;
  color: #2c3242;
}

.requis {
  color: #e5484d;
}

#Renseignements .champ-input {
  display: block;
  width: 100%;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  line-height: 1.4;
  padding: 12px 14px;
  margin: 0;
  border: 1px solid #dcdfe8;
  border-radius: 10px;
  background: #f9fafc;
  color: #2c3242;
  box-sizing: border-box;
  appearance: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

#Renseignements .champ-input:focus {
  outline: none;
  border-color: #45B5F6;
  box-shadow: 0 0 0 3px rgba(69, 181, 246, 0.15);
  background: #ffffff;
}

#Renseignements textarea.champ-input {
  min-height: 90px;
  resize: vertical;
}

.envoi-en-cours {
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  color: #565f75;
  margin: 15px;
}

.mention-requis {
  max-width: 700px;
  margin: 0 auto 20px auto;
  font-size: 13px;
  color: #8a90a1;
  text-align: right;
  padding-right: 4px;
}

@media (max-width: 640px) {
  #Renseignements {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   11. NOTIFICATIONS & CONFIRMATIONS (SmrUI)
   ========================================================================== */

.smr-toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: min(380px, calc(100vw - 40px));
}

.smr-toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-left: 5px solid #45B5F6;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  color: #2c3242;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.smr-toast--visible {
  opacity: 1;
  transform: translateX(0);
}

.smr-toast--leaving {
  animation: smr-toast-out 0.2s ease forwards;
}

@keyframes smr-toast-out {
  to { opacity: 0; transform: translateX(30px); }
}

.smr-toast--success { border-left-color: #2fb380; }
.smr-toast--error { border-left-color: #e5484d; }
.smr-toast--info { border-left-color: #45B5F6; }

.smr-toast__icon {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 1px;
}

.smr-toast__icon svg {
  width: 100%;
  height: 100%;
  fill: #45B5F6;
}

.smr-toast--success .smr-toast__icon svg { fill: #2fb380; }
.smr-toast--error .smr-toast__icon svg { fill: #e5484d; }

.smr-toast__msg {
  flex: 1;
  line-height: 1.4;
}

.smr-toast__close {
  flex: none;
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  color: #9aa1b1;
  cursor: pointer;
  padding: 0;
}

.smr-toast__close:hover {
  color: #2c3242;
}

.smr-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 24, 35, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.smr-modal-overlay--visible {
  opacity: 1;
}

.smr-modal-overlay--leaving {
  animation: smr-overlay-out 0.18s ease forwards;
}

@keyframes smr-overlay-out {
  to { opacity: 0; }
}

.smr-modal {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  font-family: "Plus Jakarta Sans", sans-serif;
  transform: translateY(10px) scale(0.98);
  transition: transform 0.2s ease;
}

.smr-modal-overlay--visible .smr-modal {
  transform: translateY(0) scale(1);
}

.smr-modal__title {
  font-size: 20px;
  font-weight: 700;
  color: #2c3242;
  margin-bottom: 10px;
}

.smr-modal__message {
  font-size: 15px;
  color: #565f75;
  line-height: 1.5;
  margin-bottom: 24px;
}

.smr-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.smr-btn {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.smr-btn:active {
  transform: scale(0.97);
}

.smr-btn--ghost {
  background: #f1f3f8;
  color: #565f75;
}

.smr-btn--ghost:hover {
  background: #e6e9f2;
}

.smr-btn--primary {
  background: #45B5F6;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(69, 181, 246, 0.35);
}

.smr-btn--primary:hover {
  background: #2ba1e6;
}

.smr-btn--danger {
  background: #e5484d;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(229, 72, 77, 0.3);
}

.smr-btn--danger:hover {
  background: #d13237;
}

@media (max-width: 480px) {
  .smr-toast-container {
    top: auto;
    bottom: 16px;
    right: 16px;
    left: 16px;
    max-width: none;
  }
}
}