.cart-bubble,
.cart-bubble > a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.cart-bubble__count {
    position: absolute;
        zoom: 0.8;
        inset-block-end: 21px;
        inset-inline-start: 14px;
        z-index: 1;
        min-width: 10px;
        max-width: 30px;
        padding: 1px 4px;
        overflow: hidden;
        font-style: normal;
        line-height: 12px;
        color: rgba(var(--color-cart-bubble-text), 1);
        text-align: center;
        text-overflow: ellipsis;
        white-space: nowrap;
        background-color: rgba(var(--color-cart-bubble), 1);
        border-radius: 20px;
}
.cart-bubble__count:empty {
    display: none;
}