/* ✅ Champs du formulaire */
form .form-control {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 0.75rem 1.2rem;
  font-size: 0.85rem;
  transition: border-color 0.2s;
}
form .form-control:focus {
  border-color: #999;
  outline: none;
}

/* ✅ Bouton CONTINUER */
.btn-primary.continue {
  background: #333;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.6rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s ease-in-out;
}
.btn-primary.continue:hover {
  background: #000;
}

/* ✅ Bouton "Afficher" mot de passe */
.password-eye {
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 50px;
  font-size: 0.9rem;
  padding: 0.3rem 1rem;
  margin-left: 0.5rem;
}

/* ✅ Onglets Nouveau client / Déjà un compte */
.nav-inline .nav-link {
  border-radius: 50px;
  border: 1px solid #ccc;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  color: #333;
}
.nav-inline .nav-link.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* ✅ Cases à cocher */
input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  margin-right: 0.5rem;
}

/* ✅ Labels de formulaire */
form label {
  font-size: 0.9rem;
  color: #444;
  font-weight: 500;
}

/* ✅ Masquer les radio natifs pour images */
.input-color-image {
  display: yes;
}

/* ✅ Style images de variantes (si utilisées) */
.product-variant-images .variant-image img {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0;
  margin: 0;
  width: 180px;
  height: auto;
  max-width: 100%;
  display: block;
}

/* ✅ Espacement images variantes */
.product-variant-images li {
  margin: 0 15px 15px 0;
  list-style: none;
}

/* ✅ Encadré discret quand sélectionné */
.product-variant-images input:checked + label img {
  outline: 2px solid #4CAF50;
  outline-offset: 2px;
}

/* ✅ Responsive mobile */
@media (max-width: 768px) {
  .product-variant-images .variant-image img {
    width: 120px;
  }
}

/* ✅ Couleurs en texte (si le thème n’en a pas déjà) */
.product-variants label.input-color::after {
  content: attr(title);
  font-size: .9rem;
  color: #222;
  margin-left: .4rem;
}
.product-variants label.input-color .color {
  display: none; /* cache la pastille circulaire si vide */
}
.product-variants .input-color {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #ddd;
  padding: .3rem .6rem;
  border-radius: 4px;
  margin: 0 .3rem .3rem 0;
}
.product-variants .input-color:hover {
  background: #f3f3f3;
}
.product-variants input[type="radio"]:checked + label.input-color {
  border-color: #4CAF50;
  background: #eaffea;
}

/* ✅ Formulaire : esthétique générale */
.product-information {
  margin-bottom: 0 !important;
}

/* ✅ Style prix grand format (optionnel) */
.big-price {
  font-size: 2.4rem;
  font-weight: 700;
  color: #000;
  display: inline-block;
  margin-top: 0.3rem;
}
/* ✅ Champ select - flèche unique et alignée */
form select.form-control {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 30px;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  color: #222;
  height: 42px;
  transition: all 0.2s ease-in-out;

  /* supprime la flèche native */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* ajoute une seule flèche SVG personnalisée */
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23222' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 12px 8px;
  padding-right: 2rem; /* espace pour la flèche */
}

/* ✅ Focus (belle surbrillance au clic) */
form select.form-control:focus {
  border-color: #4CAF50;
  outline: none;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
}
/* Ajustement vertical du fil d'Ariane */
.breadcrumb {
  margin-top: 25px;  /* ajuste la valeur pour baisser ou remonter */
}
/* Correction alignement flèches de quantité (PrestaShop Classic) */
.bootstrap-touchspin.input-group {
  display: inline-flex !important;
  align-items: center;
}

.bootstrap-touchspin .input-group-btn-vertical {
  position: static !important;
  display: flex !important;
  flex-direction: column;
  margin-left: 2px;
}

.bootstrap-touchspin .input-group-btn-vertical .btn {
  width: 22px;
  height: 18px;
  padding: 0;
  line-height: 1;
  border-radius: 0;
}

.bootstrap-touchspin input.form-control,
.bootstrap-touchspin input[type="number"] {
  height: 36px;
  text-align: center;
}
