/* ===========================
   Correctifs Accessibilité - Contraste
   Fichier : custom-contrast.css
   =========================== */

/* === Menu principal === */
#menu .nav > li > a {
  color: #222 !important; /* texte plus foncé pour bon contraste */
}
#menu .nav > li > a:hover,
#menu .nav > li.open > a {
  color: #fff !important;  /* texte blanc lisible */
  background-color: #0074cc !important; /* bleu contrasté */
}

/* === Bouton Ajouter au panier === */
.add_cart {
  background-color: #0074cc !important; /* bleu contrasté */
  color: #fff !important;
}
.add_cart:hover {
  background-color: #005fa3 !important; /* encore plus foncé au survol */
}

/* === Bouton Wishlist (cœur) === */
.button-group button .fa-heart {
  color: #cc0000 !important; /* rouge vif pour bon contraste */
}

/* === Titres & textes produits / blog === */
.product-thumb h4 a,
.product-thumb p {
  color: #222 !important; /* noir lisible */
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
