/* Cart Badge Styles */
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff0000;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    min-width: 20px;
    line-height: 1;
    z-index: 1000;
}

.cart-badge.hidden {
    display: none;
}

#addtocart {
    text-decoration: none;
    color: inherit;
    position: relative;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cart-badge {
        width: 18px;
        height: 18px;
        font-size: 10px;
        top: -6px;
        right: -6px;
    }
}
