/* =====================================================================
   akg-wishlist-button.css — Bouton "Ajouter aux favoris" sur la fiche
   produit. Même charte que le comparateur, accent orange (#FF8400) au
   lieu du bleu — pour distinguer les deux actions au premier coup d'œil.
   ===================================================================== */

.akg-wishlist-toggle-wrap {
  margin-top: 14px;
}

.akg-wishlist-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 700;
  font-family: inherit;
  color: #FF8400;
  background: #fff;
  border: 1.5px solid #FF8400;
  border-radius: 10px;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}

.akg-wishlist-toggle-btn:hover {
  background: rgba(255, 132, 0, .08);
}

.akg-wishlist-toggle-btn.is-active {
  background: #FF8400;
  color: #fff;
  border-color: #FF8400;
}

.akg-wishlist-toggle-btn.is-active:hover {
  background: #d96f00;
}

.akg-wishlist-toggle-btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.akg-wishlist-toggle-icon {
  font-size: 15px;
  line-height: 1;
}

.akg-wishlist-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 9999;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  background: #071689;
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
  max-width: 90vw;
  text-align: center;
}

.akg-wishlist-toast.is-warning { background: #FF8400; }
.akg-wishlist-toast.is-error { background: #d33; }
