/* Cart Counter Styles */
.cart-count {
    background-color: #ff4757;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 5px;
    min-width: 18px;
    text-align: center;
    display: inline-block;
    line-height: 1.2;
    animation: cartCountPulse 0.3s ease-in-out;
}

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

/* Cart icon hover effect */
.nav-item__link:hover .cart-count {
    background-color: #ff3742;
    transform: scale(1.1);
    transition: all 0.2s ease-in-out;
}

/* Mobile cart counter */
.site-navigation .cart-count {
    margin-left: 8px;
    font-size: 14px;
    padding: 3px 7px;
}

/* Cart counter animation when updated */
.cart-count.updated {
    animation: cartCountUpdate 0.5s ease-in-out;
}

@keyframes cartCountUpdate {
    0% {
        background-color: #ff4757;
        transform: scale(1);
    }
    25% {
        background-color: #2ed573;
        transform: scale(1.3);
    }
    50% {
        background-color: #ffa502;
        transform: scale(1.1);
    }
    100% {
        background-color: #ff4757;
        transform: scale(1);
    }
}
