/* Cart Counter Badge Styles */
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #2ad2a9;
    color: #fff;
    font-size: 11px;
    font-weight: 300;
    line-height: 1;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.cart-count:empty {
    display: none;
}

/* Ensure parent has position relative */
[cart-icon],
.cart-icon-wrapper,
.mini-cart-icon {
    position: relative;
    display: inline-block;
}

/* Animation when count changes */
@keyframes cartBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.cart-count.updated {
    animation: cartBounce 0.3s ease;
}