/* Corrections de contraste pour accessibilité (WCAG 2.1 AA) */

/* Badge "Nouveau" - Contraste 4.5:1 minimum */
.badge.bg-success {
    background-color: #0d6832 !important;
    color: #ffffff !important;
}

/* Texte muted - Contraste amélioré */
.text-muted {
    color: #5a5a5a !important;
}

.text-muted.small {
    color: #4a4a4a !important;
}

/* Boutons outline - Contraste amélioré */
.btn-outline-primary {
    color: #0056b3 !important;
    border-color: #0056b3 !important;
}

.btn-outline-primary:hover {
    background-color: #0056b3 !important;
    color: #ffffff !important;
}

/* Animation pour mise à jour du panier */
@keyframes cartUpdate {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.cart-count-updated {
    animation: cartUpdate 0.3s ease-in-out;
}

/* Amélioration du focus pour accessibilité */
a:focus, button:focus, input:focus {
    outline: 2px solid #0056b3;
    outline-offset: 2px;
}

/* Skip to main content (accessibilité) */
.skip-to-main {
    position: absolute;
    left: -9999px;
    z-index: 999;
}

.skip-to-main:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    background: #0056b3;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
}
