/* Контейнер иконки корзины */
.cart-icon {
    position: relative; /* для абсолютного позиционирования счетчика */
    display: inline-block;
}

/* Минималистичный счетчик */
.cart-icon .cart-count {
    position: absolute;
    top: -10px;       /* подняли выше иконки */
    right: -10px;     /* немного смещено от края, чтобы не касалась */
    background-color: transparent; /* прозрачный фон */
    color: #000;      /* черный цвет цифры, как и иконка корзины */
    font-size: 12px;  
    font-weight: bold;
    padding: 0;       /* минималистично */
    min-width: auto;
    text-align: center;
    line-height: 1;
    pointer-events: none;
    opacity: 1;       /* сразу видимая */
    visibility: visible;
    transform: scale(1);
}








/*
.cart-icon .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #000;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    padding: 1px 5px;
    border-radius: 50%;
    min-width: 16px;
    text-align: center;
    line-height: 1;

    opacity: 0;
    visibility: hidden;
    transform: scale(0.7);
    transition: all 0.2s ease;
}

.cart-icon.has-items .cart-count {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

*/
