﻿#cart-count-value {
    font-size: 1.1rem;
    width: 21px;
    height: 20px;
    border-radius: 50%;
    background-color: #ff0033; /* Eye-searing red */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    box-shadow: 0 0 12px 4px rgba(255, 0, 0, 0.8), 0 0 4px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: -12px;
    right: -12px;
    cursor: pointer;
    z-index: 100;
    animation: pulse-glow 1s infinite, shake-bounce 5s infinite ease-in-out;
}
@keyframes pulse-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 12px rgba(255, 0, 0, 0.8);
    }

    50% {
        transform: scale(1.2);
        box-shadow: 0 0 20px rgba(255, 0, 0, 1);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 12px rgba(255, 0, 0, 0.8);
    }
}

@keyframes shake-bounce {
    0%, 100% {
        transform: translate(0, 0);
    }

    10%, 30%, 50%, 70%, 90% {
        transform: translate(-0.5px, -0.5px);
    }

    20%, 40%, 60%, 80% {
        transform: translate(0.5px, 0.5px);
    }
}