/* Toast Cookie Consent */
#cookieConsentToast {
  max-width: 350px;
  font-size: 0.95rem;
}

#cookieConsentToast .toast-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}

#cookieConsentToast .toast-body {
  color: #333;
}

/* Boutons empilés verticalement */
#cookieConsentToast .d-flex.flex-column .btn {
  width: 100%;
  font-weight: 500;
  border-radius: .25rem;
  margin-bottom: 8px;
}

/* Bouton Refuser (au-dessus) */
#declineCookies {
  order: 1;
  background-color: #6c757d !important; /* gris neutre */
  color: #fff !important;
  border: none !important;
}

#declineCookies:hover {
  background-color: #5a6268 !important;
  color: #fff !important;
}

/* Bouton Accepter (en dessous, bleu) */
#cookiesYes {
  order: 2;
  background-color: #007bff !important; /* bleu bootstrap */
  color: #fff !important;
  border: none !important;
}

#cookiesYes:hover {
  background-color: #0069d9 !important;
  color: #fff !important;
}

#cookieConsentToast {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: auto !important; /* on annule le right hérité */
  z-index: 2000;
}

.store.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}