.qty-btn.active {
  outline: auto;
}

.product-notice.visible {
  opacity: 1;
  visibility: visible;
}

.product-notice.success {
  color: green;
}

.product-notice.error {
  color: red;
}

.notice-confirm-only {
    display: none;
}

/* Mode confirmation : on bascule */
.product-notice--confirm .notice-confirm-only {
    display: block;
}
.product-notice--confirm .notice-confirm-btns-cont {
    display: flex; /* override le block pour les boutons */
}

.product-notice--confirm {
  align-items: space-between;
}

.product-notice--confirm .product-notice-txt {
  color: var(--rouge);
}

/* Nettoyage : à la disparition de .visible, tout se reset naturellement */
.product-notice:not(.visible) .notice-confirm-only {
    display: none;
}