 .elya-banner {
    background: linear-gradient(135deg, #eef4fa, #ffffff);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    margin: 20px auto;
    max-width: 1000px;
    animation: fadeIn 1.5s ease-in-out;
    position: relative;
  }

  .elya-banner-content h2 {
    font-size: 1.2rem;
    color: #0099cc;
    margin-bottom: 10px;
    animation: slideDown 1.2s ease-out;
  }

  .elya-banner-content h1 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: bold;
    animation: zoomIn 1.3s ease-in-out;
  }

  .elya-banner-content p {
    font-size: 1.1rem;
    color: #444;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInText 2s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px);}
    to { opacity: 1; transform: translateY(0);}
  }

  @keyframes slideDown {
    from { transform: translateY(-30px); opacity: 0;}
    to { transform: translateY(0); opacity: 1;}
  }

  @keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0;}
    to { transform: scale(1); opacity: 1;}
  }

  @keyframes fadeInText {
    from { opacity: 0;}
    to { opacity: 1;}
  }
.elya-feature-box {
    display: flex;
    align-items: flex-start;
    background: #f9f9fc;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    gap: 20px;
    flex-wrap: wrap;
  }

  .elya-icon {
    font-size: 40px;
    color: orangered;
    flex: 0 0 50px;
    margin-top: 5px;
  }

  .elya-text {
    flex: 1;
    min-width: 250px;
  }

  .elya-text h2 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #333;
  }

  .elya-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
  }

  .elya-info-box {
    background-color: #fff7f2;
    border-left: 4px solid orangered;
    padding: 12px 15px;
    margin-top: 15px;
    font-size: 0.95rem;
    color: #444;
    border-radius: 8px;
  }

  @media (max-width: 768px) {
    .elya-feature-box {
      flex-direction: column;
    }

    .elya-icon {
      font-size: 35px;
      margin-bottom: 10px;
    }
  }
  .elya-badge-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
  }

  .elya-badge {
    background-color: #ffefe4;
    color: #333;
    border: 1px solid #ffb48d;
    border-radius: 25px;
    padding: 8px 16px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
  }

  .elya-badge i {
    color: #ff4500;
  }

  .elya-badge:hover {
    background-color: #ffe1cc;
  }
.elya-large-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
  }
		   .elya-img-adapt {
    max-width: 320px;
    width: 100%;
    height: auto;
			     }
		.elya-flex-container {
  display: flex;
  flex-wrap: wrap;

  gap: 20px;
}

.elya-flex-image {
 flex: 0 0 45%;
  margin-left: 20px; /* Ajuste ici la distance à ta convenance */
}

.elya-flex-image img {
  width: 60%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.elya-flex-text {
  flex: 0 0 50%;
}

@media (max-width: 768px) {
  .elya-flex-container {
    flex-direction: column;
  }

  .elya-flex-image,
  .elya-flex-text {
    flex: 1 1 100%;
  }
}

.elya-info-box2 {
    background-color: #fff7f2;
    padding: 12px 15px;
    margin-top: 15px;
    font-size: 0.95rem;
    color: #444;
    border-radius: 8px;
	}
	body, html {
    overflow-x: hidden; /* Empêche le débordement horizontal */
}
	   #stripe-button {
  background-color: #6772E5; /* couleur de fond */
  color: #FFF; /* couleur du texte */
  border: none; /* retire le contour */
   padding: 15px 40px; /* Augmenté pour rendre le bouton plus large */
  text-align: center; /* centre le texte */
  text-decoration: none; /* retire le soulignement */
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s; /* durée de l'effet */
  cursor: pointer; /* change le curseur en main quand on survole */
		   width: 100%; /* Vous pouvez ajuster cette valeur selon vos besoins */
    max-width: 500px; /* Limite la largeur maximale pour éviter qu'il soit trop large */
}	   
#myModal {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      max-width: 520px;
      height: 100%;
      background: #fff;
      z-index: 9999;
      overflow-y: auto;
      transition: right 0.4s ease-in-out;
      box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    }
    #myModal.active { right: 0; }
    #formOverlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 9998;
      display: none;
    }
    #formOverlay.active { display: block; }
    .close { font-size: 28px; float: right; cursor: pointer; margin: 10px; }
    button { cursor: pointer; padding: 10px 15px; border: none; background: #17a6de; color: white; border-radius: 5px; font-size: 16px; }
    input[type="radio"], input[type="checkbox"] { margin-right: 5px; }
    .form-section { padding: 15px; border-bottom: 1px solid #ccc; }
    .form-section h4 { margin-top: 0; }
    .number-circle {
      display: inline-block;
      width: 40px; height: 40px;
      line-height: 40px;
      text-align: center;
      font-size: 18px;
      font-weight: bold;
      color: #fff;
      background-color: #17A6DE;
      border-radius: 50%;
      margin-bottom: 10px;
    }

/* Styles pour le formulaire coulissant */
.slide-form {
  position: fixed;
  top: 0;
  right: -520px; /* Commence hors écran - augmenté pour plus de largeur */
  width: 100%;
  max-width: 520px; /* Formulaire plus large */
  height: 100%;
  background: linear-gradient(to right, #f8f9fa, #ffffff);
  z-index: 9999;
  overflow-y: auto;
  transition: right 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.slide-form.active {
  right: 0;
}

/* En-tête du formulaire avec dégradé élégant */
.form-header {
  background: linear-gradient(135deg, #0288d1, #17a6de);
  color: white;
  padding: 25px 30px;
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Bouton de fermeture élégant */
.close {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

/* Contenu du formulaire */
#smart-button-container {
  padding: 30px;
}

.form-title {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e1e1e1;
}

.form-title h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
}

.form-title i {
  font-size: 32px;
  color: #17a6de;
  margin-top: 15px;
  display: block;
}

/* Sections du formulaire */
.form-section {
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
}

.form-section-title {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.form-section-title i {
  color: #17a6de;
  font-size: 20px;
  margin-right: 10px;
}

/* Titres des sections */
h4 {
  color: #333;
  margin: 25px 0 15px 0;
  font-size: 18px;
  font-weight: 600;
  align-items: center;
}

h4::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 18px;
  background: #17a6de;
  margin-right: 10px;
  border-radius: 3px;
}

/* Options radio et checkbox stylisées */
.radio-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 15px 0;
}

.radio-container label, 
.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s ease;
  padding: 8px 16px;
  background: #f5f5f5;
  border-radius: 30px;
  border: 1px solid #e0e0e0;
}

.radio-container label:hover,
.custom-checkbox:hover {
  background: #e8f4f8;
  border-color: #17a6de;
}

/* Champs de formulaire élégants */
.form-control {
  width: 100%;
  padding: 14px 16px;
  margin: 8px 0 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-control:focus {
  border-color: #17a6de;
  box-shadow: 0 0 0 3px rgba(23, 166, 222, 0.15);
  outline: none;
}

/* Bouton de paiement attractif avec effet */
#stripe-button {
  background: linear-gradient(135deg, #17a6de, #0288d1);
  color: #fff;
  border: none;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 30px;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(23, 166, 222, 0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#stripe-button:hover {
  background: linear-gradient(135deg, #0288d1, #0277bd);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(23, 166, 222, 0.4);
}

#stripe-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(23, 166, 222, 0.3);
}

/* Icônes de paiement élégantes */
.payment-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 25px;
  padding: 20px 0;
  border-top: 1px solid #eee;
}

.payment-icons i {
  font-size: 2.2em;
  color: #555;
  transition: all 0.3s ease;
}

.payment-icons i:hover {
  color: #17a6de;
  transform: scale(1.1);
}

/* Notes sur fond subtil */
.note {
  font-size: 14px;
  color: #666;
  margin: 10px 0;
  font-style: italic;
  padding: 10px 15px;
  background: #f5f9fc;
  border-left: 3px solid #17a6de;
  border-radius: 3px;
}

/* Badge de sécurité */
.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
  padding: 15px;
  background: #f8f8f8;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.security-badge i {
  color: #28a745;
  font-size: 20px;
}

.security-badge p {
  font-size: 14px;
  color: #444;
  margin: 0;
}

/* Indicateur de chargement élégant */
#loading-indicator {
  display: none;
  text-align: center;
  margin: 30px 0;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #17a6de;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #17a6de transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Badge de réduction spéciale */
.promo-badge {
  background: linear-gradient(135deg, #ff6b6b, #ff4757);
  color: white;
  padding: 10px 15px;
  border-radius: 30px;
  font-weight: bold;
  text-align: center;
  margin: 15px auto 25px;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(255, 75, 87, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Responsivité améliorée */
@media (max-width: 576px) {
  .slide-form {
    max-width: 100%;
    right: -100%;
  }
  
  #smart-button-container {
    padding: 20px;
  }
  
  .radio-container {
    flex-direction: column;
    gap: 8px;
  }
}
		.slide-form {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 600px;
  height: 100%;
  background: white;
  z-index: 9999;
  transition: right 0.4s ease-in-out;
  overflow-y: auto;
  padding: 0;
  box-shadow: -5px 0 15px rgba(0,0,0,0.3);
  border-left: 3px solid #17a6de;
}
.slide-form.active { right: 0; }

.form-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  display: none;
}
.form-overlay.active { display: block; }

.form-header {
  background: #17a6de;
  color: white;
  padding: 20px;
  border-bottom: 1px solid #ccc;
  text-align: center;
}

.close-form {
  float: right;
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
}

.form-content {
  padding: 20px;
}

.form-section {
  margin-bottom: 25px;
  padding: 15px;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  background-color: #fdfdfd;
}

.form-section h4, .form-section h2 {
  margin-top: 0;
  color: #17a6de;
}

input[type="number"],
input[type="tel"] {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

button#stripe-button {
  width: 100%;
  background-color: #17a6de;
  color: white;
  font-size: 16px;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.secure-text {
  margin-top: 10px;
  font-size: 13px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.secure-text i {
  color: green;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-checkbox input[type="checkbox"] {
  all: unset;
  appearance: checkbox;
  width: 18px;
  height: 18px;
  accent-color: #17a6de;
  flex-shrink: 0;
}

.checkbox-label {
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.info-text {
  font-size: 12px;
  color: #555;
  margin-top: 8px;
  line-height: 1.4em;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 51px;
  height: 51px;
  margin: 6px;
  border: 6px solid #17a6de;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #17a6de transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
		   .custom-checkbox input[type="checkbox"] {
  all: unset;
  appearance: checkbox;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  accent-color: #17a6de;
  cursor: pointer;
}
.color-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}

.color-option {
  position: relative;
}

.color-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.color-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  width: 70px;
  background-color: #f9f9f9;
}

.color-preview {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.color-label span {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

/* État au survol */
.color-label:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* État sélectionné */
input[type="radio"]:checked + .color-label {
  border-color: #17a6de;
  background-color: #e8f4f8;
}

/* Style spécifique pour le sélecteur de bracelet (plus d'options) */
.bracelet-selector {
  max-width: 450px;
}

@media (max-width: 576px) {
  .color-label {
    width: 60px;
    padding: 6px;
  }
  
  .color-preview {
    width: 30px;
    height: 30px;
  }
}
.vignettes-bracelets {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* <-- ajustement important */
  gap: 20px; /* ou 15px si tu veux */
  margin: 30px auto;
  max-width: 1000px;
}

.vignette {
  flex: 1 1 calc(33.333% - 20px); /* on soustrait le gap */
  box-sizing: border-box;
  text-align: center;
  border-radius: 10px;
  background-color: #f9f9f9;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.vignette img {
  width: 35%;
  height: auto;
  border-radius: 8px;
}

.vignette p {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
}

.vignette:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Responsive pour tablette et mobile */
@media (max-width: 768px) {
  .vignette {
    flex: 1 1 calc(45% - 10px);
  }
}

@media (max-width: 480px) {
  .vignette {
    flex: 1 1 30%;
  }
}
 #pdfModal30.show {
      background-color: rgba(0, 0, 0, 0.5); /* Arrière-plan semi-transparent pour l'effet d'assombrissement */
      overflow-x: hidden; /* Pour éviter tout défilement horizontal inattendu */
      overflow-y: auto; /* Permet le défilement vertical si nécessaire */
    }
	 #pdfModal28.show {
      background-color: rgba(0, 0, 0, 0.5); /* Arrière-plan semi-transparent pour l'effet d'assombrissement */
      overflow-x: hidden; /* Pour éviter tout défilement horizontal inattendu */
      overflow-y: auto; /* Permet le défilement vertical si nécessaire */
    }
.slide-content h1 {
	font-size: clamp(2.5rem, 6vw, 2rem) !important;
	color: white !important;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important
}

.slide-content {
	position: relative;
	z-index: 1;
	color: white;
	padding: 50px 0 !important;
	padding-top: 20% !important;
	padding-left: 4% !important;
	padding-bottom: 1% !important
}
.kbd {
            background: rgba(255, 255, 255, 0.2);
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }
        
        .breadcrumbs {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-top: 1rem;
        }
        
        .breadcrumbs a {
            color: #ffd700;
            text-decoration: none;
        }
  
        
        .icon {
            font-size: 2rem;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
/* ========================================
   BANDEAU FEATURES (haut de page)
======================================== */
.elya-bandeau-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  padding: 30px 15px;
  margin: 30px 0;
  gap: 20px;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.elya-bandeau-features .feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #333;
  text-align: center;
  min-width: 120px;
  transition: transform 0.2s ease;
}

.elya-bandeau-features .feature-item:hover {
  transform: translateY(-3px);
}

.elya-bandeau-features .feature-item i {
  font-size: 36px;
  color: #b1b1b17d;
}

.elya-bandeau-features .feature-item span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: #555;
}

.elya-bandeau-features .price-highlight i {
  color: #27ae60;
}

.elya-bandeau-features .price-highlight span {
  font-size: 18px;
  color: #27ae60;
}

/* ========================================
   SHOWCASE IMAGE (Image produit)
======================================== */
.product-showcase {
   background: #f8f9fa;
   border-radius: 16px;
   padding: 30px;
   display: flex;
   align-items: center;
   justify-content: center;
   min-height: 400px;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-showcase img {
   max-height: 450px;
   object-fit: contain;
}

.product-image-container {
   position: relative;
}

.product-image-container img {
   width: 100%;
   height: auto;
   object-fit: cover;
}

/* ========================================
   SPEC CARDS (Cards de spécifications)
======================================== */
.spec-card {
   background: #ffffff;
   border-radius: 12px;
   padding: 28px;
   box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
   border: 1px solid #e8e8e8;
   transition: all 0.3s ease;
   height: 100%;
}

.spec-card:hover {
   box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
   transform: translateY(-3px);
}

.spec-header {
   display: flex;
   align-items: center;
   gap: 12px;
   margin-bottom: 24px;
   padding-bottom: 16px;
   border-bottom: 2px solid #f0f0f0;
}

.spec-header i {
   font-size: 24px;
   color: #4878ad;
}

.spec-header h3 {
   margin: 0;
   font-size: 18px;
   font-weight: 600;
   color: #2c3e50;
   letter-spacing: -0.3px;
}

/* Spec List (liste propre) */
.spec-list {
   list-style: none;
   padding: 0;
   margin: 0;
}

.spec-list li {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   padding: 14px 0;
   border-bottom: 1px solid #f5f5f5;
}

.spec-list li:last-child {
   border-bottom: none;
}

.spec-list li strong {
   color: #7a7a7a;
   font-size: 13px;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   flex-shrink: 0;
   width: 110px;
}

.spec-list li span {
   color: #2c3e50;
   font-size: 15px;
   font-weight: 500;
   text-align: right;
   line-height: 1.5;
}

/* Spec Grid (ancien système - optionnel) */
.spec-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 20px;
}

.spec-item {
   display: flex;
   flex-direction: column;
   gap: 6px;
}

.spec-label {
   font-size: 13px;
   font-weight: 500;
   color: #7a7a7a;
   text-transform: uppercase;
   letter-spacing: 0.5px;
}

.spec-value {
   font-size: 15px;
   font-weight: 600;
   color: #2c3e50;
   line-height: 1.5;
}
/* Lignes d'infos */
.info-row {
   display: flex;
   gap: 30px;
   margin-bottom: 20px;
   flex-wrap: wrap;
}

.info-row:last-child {
   margin-bottom: 0;
}

.info-col {
   flex: 1;
   min-width: 200px;
}

.info-col strong {
   display: block;
   font-size: 12px;
   color: #7a7a7a;
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 8px;
   font-weight: 600;
}

.info-col span {
   display: block;
   font-size: 16px;
   color: #2c3e50;
   font-weight: 500;
   line-height: 1.4;
}
/* ========================================
   NETWORK CARD (Réseaux 4G)
======================================== */
.network-card {
   background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.network-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 20px;
   margin-bottom: 20px;
}

.network-region {
   background: white;
   padding: 16px;
   border-radius: 8px;
   border: 1px solid #e8e8e8;
}

.network-region strong {
   display: block;
   color: #2c3e50;
   font-size: 14px;
   margin-bottom: 8px;
   font-weight: 600;
}

.network-region span {
   color: #7a7a7a;
   font-size: 13px;
   line-height: 1.6;
}

.network-note {
   background: #e8f4f8;
   padding: 14px 18px;
   border-radius: 8px;
   border-left: 4px solid #4878ad;
   display: flex;
   align-items: center;
   gap: 10px;
   color: #2c3e50;
   font-size: 14px;
   font-weight: 500;
}

.network-note i {
   color: #4878ad;
   font-size: 18px;
}

/* ========================================
   AUTRES CARDS (cards génériques)
======================================== */
.card {
   transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
   transform: translateY(-5px);
   box-shadow: 0 8px 16px rgba(0,0,0,0.1) !important;
}

.card-title {
   font-weight: 600;
   border-bottom: 2px solid #ff4500;
   padding-bottom: 10px;
}

.card-body ul li {
   padding-left: 0;
   line-height: 1.8;
}

/* ========================================
   TITRES & ÉLÉMENTS DIVERS
======================================== */
h3 {
   margin: 0;
   font-size: 20px;
   color: #333;
}

h3 i {
   color: #ff6600;
   margin-right: 10px;
   font-size: 28px;
}

.financing-info {
   background: #fff3cd;
   border-left: 4px solid #ff6600;
   padding: 15px 20px;
   margin: 20px 0;
   border-radius: 4px;
}

.financing-info strong {
   color: #ff6600;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 991px) {
   .product-showcase {
      margin-bottom: 30px;
      min-height: 300px;
   }
   
   .product-image-container {
      margin-bottom: 30px;
   }
   
   .network-grid {
      grid-template-columns: 1fr;
   }
}

@media (max-width: 768px) {
   .elya-bandeau-features {
      padding: 20px 10px;
      gap: 15px;
   }
   
   .elya-bandeau-features .feature-item {
      min-width: 100px;
   }
   
   .elya-bandeau-features .feature-item i {
      font-size: 28px;
   }
   
   .elya-bandeau-features .feature-item span {
      font-size: 12px;
   }
   
   .spec-list li {
      flex-direction: column;
      gap: 6px;
   }
   
   .spec-list li strong {
      width: 100%;
   }
   
   .spec-list li span {
      text-align: left;
   }
   
   .spec-grid {
      grid-template-columns: 1fr;
   }
}
@media (max-width: 768px) {
         .containerbox3 {
         flex-direction: column !important;
         }
         .image-box {
         margin: 0 auto 20px auto;
         }
         }
         @media (max-width: 768px) {
         .elya-text p {
         font-size: 1.25rem;
         }
         }
         @media screen and (max-width: 768px) {
         .table-responsive-mobile {
         -webkit-overflow-scrolling: touch;
         }
         .table-responsive-mobile thead {
         display: none;
         }
         .table-responsive-mobile tr {
         display: block;
         margin-bottom: 1rem;
         border: 1px solid #ccc;
         border-radius: 6px;
         background-color: #fff;
         padding: 0.5rem;
         }
         .table-responsive-mobile td {
         display: flex;
         justify-content: space-between;
         padding: 8px 10px;
         font-size: 15px;
         border-bottom: 1px solid #eee;
         }
         .table-responsive-mobile td::before {
         content: attr(data-label);
         font-weight: bold;
         color: #555;
         }
         }
         .table-responsive-mobile td:first-child {
         background-color: #fef6f0; /* doux orange pâle */
         font-weight: bold;
         color: #444;
         border-right: 2px solid #fff;
         }
         .table-responsive-mobile {
         overflow-x: auto;
         -webkit-overflow-scrolling: touch;
         margin: 0 auto;
         padding: 10px;
         }
         @media (max-width: 768px) {
         .table-responsive-mobile table {
         min-width: 800px;
         width: auto;
         display: block;
         }
         }
         .elya-feature-box {
         padding: 20px;
         background-color: #fdfdfd;
         }
         .elya-feature-card {
         background: #f8f9fc;
         border: 1px solid #e0e0e0;
         border-radius: 12px;
         padding: 20px;
         box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
         max-width: 600px;
         margin: 0 auto;
         }
         .elya-list {
         list-style: none;
         padding: 0;
         margin: 0;
         }
         .elya-list li {
         padding: 10px 0;
         font-size: 16px;
         color: #333;
         border-bottom: 1px dashed #ddd;
         display: flex;
         flex-wrap: wrap;
         }
         .elya-list li:last-child {
         border-bottom: none;
         }
         .label {
         font-weight: bold;
         color: #444;
         margin-right: 5px;
         }
         .elya-feature-card h2 {
         font-size: 22px;
         margin-bottom: 8px;
         color: #2c2c2c;
         text-align: center;
         }
         .elya-feature-card h3 {
         font-size: 18px;
         font-style: italic;
         text-align: center;
         color: #666;
         margin-bottom: 16px;
         }
         .elya-feature-card * {
         hyphens: auto;
         word-break: break-word;
         overflow-wrap: break-word;
         }
         .img-fluid mb-4 {
         display: block;
         margin: 0 auto;
         max-width: 100%;
         height: auto;
         }
         .close-form {
         float: right;
         font-size: 34px;
         background: none;
         border: none;
         color: white;
         cursor: pointer;
         position: absolute;
         right: 20px;
         top: 10px;
         width: 20%;
         }
         .elya-feature-card,
         .elya-feature-box,
         .elya-text {
         text-align: justify;
         -webkit-hyphens: auto;
         -ms-hyphens: auto;
         hyphens: auto;
         word-break: break-word;
         overflow-wrap: break-word;
         max-width: 100%;
         }
         /* Pour s'assurer que les éléments enfants héritent également de ces styles */
         .elya-feature-card *,
         .elya-feature-box *,
         .elya-text * {
         -webkit-hyphens: auto;
         -ms-hyphens: auto;
         hyphens: auto;
         word-break: break-word;
         overflow-wrap: break-word;
         }
         /* S'assurer que les titres dans ces blocs sont également bien formatés */
         .elya-feature-card h2,
         .elya-feature-card h3,
         .elya-feature-box h2,
         .elya-feature-box h3,
         .elya-text h2,
         .elya-text h3 {
         text-align: left; /* ou justify si vous préférez */
         -webkit-hyphens: auto;
         -ms-hyphens: auto;
         hyphens: auto;
         word-break: break-word;
         overflow-wrap: break-word;
         }
/* Styles pour les boutons en mode portrait */
         .button-container {
         display: flex;
         align-items: center;
         }
         .call-button {
         background-color: #333;
         color: #fff;
         font-size: 18px;
         border: none;
         border-radius: 5px;
         width: 30px;
         height: 30px;
         margin-right: 10px;
         cursor: pointer;
         display: flex;
         justify-content: center;
         align-items: center;
         }
         .order-button {
         background-color: #333;
         color: #fff;
         font-size: 18px;
         border: none;
         border-radius: 5px;
         padding: 10px 20px;
         cursor: pointer;
         }
         /* Style lorsque le carré de téléphone est survolé en mode portrait */
         .call-button:hover {
         background-color: #007bff;
         }
         /* Styles pour les boutons en mode paysage */
         @media screen and (orientation: landscape) {
         .button-container {
         justify-content: center; /* Centrer les boutons en mode paysage */
         }
         .call-button {
         width: 3em; /* Augmenter la taille du carré de téléphone en mode paysage */
         height: 3em;
         }
         .order-button {
         padding: 10px 30px; /* Ajuster la largeur du bouton "Commander" en mode paysage */
         }
         }
         .smart-features {
         padding: 20px;
         background-color: #f9f9fb;
         border-radius: 16px;
         box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
         font-family: 'Segoe UI', sans-serif;
         }
         .feature-list {
         list-style: none;
         padding: 0;
         margin: 0;
         }
         .feature-list li {
         display: flex;
         align-items: center;
         padding: 10px 0;
         font-size: 16px;
         border-bottom: 1px dashed #ddd;
         }
         .feature-list li:last-child {
         border-bottom: none;
         }
         .feature-list li i {
         color: #FF7F50; /* pastel orange */
         background: #fff2e6;
         border-radius: 50%;
         padding: 6px;
         font-size: 18px;
         margin-right: 12px;
         transition: transform 0.2s ease;
         }
         .feature-list li:hover i {
         transform: scale(1.1);
         }
         .highlight {
         text-align: center;
         color: #2b2b2b;
         font-weight: 600;
         font-style: italic;
         margin-top: 20px;
         }
         .sub-highlight {
         text-align: center;
         font-style: italic;
         color: #555;
         margin-bottom: 10px;
         }
@media (max-width: 768px) {
.alert-mobile {
  max-width: 760px;
  margin: 0 auto;
  padding: 12px 12px 24px;
  background: #f5f7fb;
}

.alert-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 2px 12px;
}

.alert-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f2d3d;
}

.alert-sub {
  font-size: 13px;
  color: #6b7c93;
  margin-left: auto;
  background: #e8f4f8;
  color: #0b6ea8;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.alert-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-left: 4px solid #17a6de;
  border-radius: 14px;
  padding: 14px 14px 4px;
  margin: 12px 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.alert-card .event-name {
  font-weight: 700;
  font-size: 16px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.alert-channels {
  list-style: none;
  padding: 0;
  margin: 0;
}

.alert-channels li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed #e9eef3;
}

.alert-channels li:last-child { border-bottom: 0; }

.alert-channels .label {
  color: #6b7c93;
  font-weight: 600;
  font-size: 14px;
}

.alert-channels .value {
  font-weight: 700;
  color: #2c3e50;
  min-width: 24px;
  text-align: right;
}

.note-help {
  font-size: 12px;
  color: #6b7c93;
  margin: 14px 2px 0;
}
	}
header {
         background-color: #2c3e5057;
         color: white;
         text-align: center;
         padding: 1em;
         }
.slide-item, .slide-item > .container > .row, .cover, .cover > .container > .row {
         height: 9vh;
         min-height: 0px; }

@media screen and (max-width: 767px) {
         .site-navbar .site-logo {
         position: relative;
         left: -0.1%;
         top: 1px;
         }
         }
         .button-container {
         display: flex;
         align-items: center;
         }
         .call-button {
         background-color: #333;
         color: #fff;
         font-size: 18px;
         border: none;
         border-radius: 5px;
         width: 30px;
         height: 30px;
         margin-right: 10px;
         cursor: pointer;
         display: flex;
         justify-content: center;
         align-items: center;
         }
         .order-button {
         background-color: #333;
         color: #fff;
         font-size: 18px;
         border: none;
         border-radius: 5px;
         padding: 10px 20px;
         cursor: pointer;
         }
         /* Style lorsque le carré de téléphone est survolé en mode portrait */
         .call-button:hover {
         background-color: #007bff;
         }
         /* Styles pour les boutons en mode paysage */
         @media screen and (orientation: landscape) {
         .button-container {
         justify-content: center; /* Centrer les boutons en mode paysage */
         }
         .call-button {
         width: 3em; /* Augmenter la taille du carré de téléphone en mode paysage */
         height: 3em;
         }
         .order-button {
         padding: 10px 30px; /* Ajuster la largeur du bouton "Commander" en mode paysage */
         }
         }
     .slide-item, .slide-item > .container > .row, .cover, .cover > .container > .row {
         height: 9vh;
         min-height: 0px; }
   @media screen and (max-width: 767px) {
         .site-navbar .site-logo {
         position: relative;
         left: -0.1%;
         top: 1px;
         }
         }
         #specific-section {
         display: block;
         }
         #mobile-section {
         display: none;
         }
         @media (max-width: 767px) {
         #specific-section {
         display: none;
         }
         #mobile-section {
         display: block;
         }
         }

  table {
    width: 100%;
    border-collapse: collapse;
  }
  th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
  }
  th {
    background-color: #f2f2f2;
  }
  .fa-check {
    color: green;
  }
  .fa-times {
    color: red;
  }
/* Overlay déjà présent : #drawerOverlay */
#drawerOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 1001;
}
#drawerOverlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Transforme #myModal (class modalDialog) en slide-in depuis la droite */
#myModal.modalDialog {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 92vw;            /* largeur sur mobile */
  max-width: 540px;       /* limite sur grands écrans */
  background: #fff;
  box-shadow: -12px 0 24px rgba(0,0,0,.15);
  transform: translateX(100%); /* caché à droite */
  transition: transform .35s ease;
  z-index: 1002;
  overflow-y: auto;
}
#myModal.modalDialog.is-open {
  transform: translateX(0); /* visible */
}

/* Bouton de fermeture */
#myModal .close, 
#myClose {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 1003;
  color: #333;
}
         .card {
         margin-bottom: 20px;
         }
         .card-text {
         margin-bottom: 5px;
         }
         .card-text i {
         margin-right: 5px;
         }
         .swiper-container {
         width: 100%;
         height: auto;
         }
         .swiper-slide {
         text-align: center; 
         }
         .swiper-slide img {
         max-width: 100%;
         height: auto;
         }