.j2store-minicart-button {
    position: relative;
    display: inline-block;
}

.cart-item-info {
    position: relative;
    display: inline-block;
}

.cart-item-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff4444;
    color: white;
    font-size: 12px;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Nếu số lượng = 0, ẩn badge */
.cart-item-count:empty,
.cart-item-count[data-count="0"] {
    display: none;
}