.cart-badge-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,248,240,.70);
    margin-left: 10px;
    transition: color 0.2s ease;
}
.cart-badge-link:hover {
    color: #FFD600;
}
.cart-count-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: linear-gradient(135deg, #FF5722, #E91E63);
    color: #FFFFFF;
    font-size: 0.70rem;
    font-weight: 800;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 2px 8px rgba(255,87,34,.50);
    animation: badgePop .3s cubic-bezier(.36,.07,.19,.97) both;
}
@keyframes badgePop {
    0%, 100% { transform: scale(1); }
    40%       { transform: scale(1.3); }
}

.cart-count-badge-mobile {
    background: linear-gradient(135deg, #FF5722, #E91E63);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 50%;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}
