.bmc-cart-container {
    display: inline-block;
    position: relative;
    vertical-align: middle;
}

.cart-contents {
    text-decoration: none !important;
    display: flex;
    align-items: center;
}

.cart-badge {
    background-color: #ff4747;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    position: absolute;
    top: -5px;
    right: -10px;
    line-height: 1;
    animation: pop-in 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-badge.empty {
    display: none;
}

@keyframes pop-in {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}