/* =====================================================================
   akg-compare-button.css — Bouton "Ajouter au comparateur" sur la
   fiche produit. Même charte que le reste du site : bleu #071689,
   orange #FF8400 en accent, aucun gris/noir.
   ===================================================================== */

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

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

.akg-compare-toggle-btn:hover {
  background: rgba(7, 22, 137, .06);
}

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

.akg-compare-toggle-btn.is-active:hover {
  background: #050f5c;
}

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

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

.akg-compare-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-compare-toast.is-warning { background: #FF8400; }
.akg-compare-toast.is-error { background: #d33; }
