.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: 15px;
        inset-inline-start: 17px;
    z-index: 1;
    min-width: 20px;
    max-width: 30px;padding:2px 5px;
    overflow: hidden;
    font-style: normal; line-height: 16px;
    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;
}