/* Блок иконки корзины */
.cart-icon-block {
    display: flex;
    align-items: center;
    margin-right: 180px;
}

.cart-icon-link {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.cart-icon-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-icon-img {
    fill: #fff;
    width: 30px; /* Размер иконки */
    height: 30px;
    transition: transform 0.3s ease;
}

.cart-icon-link.has-items .cart-icon-img {
    fill: #FFEB3B;
}

.cart-icon-label {
    border-radius:5px;
    background:#000000c2;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    transition: transform 0.3s ease;
    border-top: 1px solid #4f4f4f;
    box-shadow: 0 4px 15px rgb(0 0 0);
}

/* Hover эффекты */
.cart-icon-link:hover .cart-icon-img {
    transform: scale(1.1);
}

.cart-icon-link:hover .cart-icon-label {
    transform: translateY(-5px);
}

/* Счётчик */
.cart-count {
    position: absolute;
    top: -1px;
    right: -19px;
    background: rgb(255 0 0); /* Красный бейдж */
    color: white;
    font-size: 0.7em;
    font-weight: bold;
    border-radius: 50%;
    padding: 1px 1px;
    min-width: 16px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    display: none;
}
