/* Style pour le panier dans le header */
.cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffd700 !important; /* Doré pour être visible sur fond noir */
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.cart-link:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.cart-link i {
    font-size: 1.1rem;
    color: #ffd700;
}

.cart-link .cart-text {
    color: #ffd700;
    font-weight: 500;
}

.cart-link .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff5722;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: bold;
    min-width: 18px;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: cartBounce 0.3s ease;
}

@keyframes cartBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.cart-link:hover .cart-count {
    transform: scale(1.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cart-link .cart-text {
        display: none;
    }
    
    .cart-link {
        font-size: 1.2rem;
    }
}