﻿/* Basket Badge styles */
.user-specific-menu .lnk-menu {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.basket-badge {
    position: absolute;
    top: 0;
    left: calc(100% - 35px);
    background: #ef4444;
    color: white;
    font-size: 17px;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

    .basket-badge.hidden {
        display: none !important;
    }

@media (max-width: 767px) {
    .basket-badge {
        top: 5px;
    }
}