/*
* Cart specific styles
*/

/* Cart loading states */
.cart-loading {
    font-style: italic;
    opacity: 0.7;
}

.cartitem-badge .bx-loader {
    animation: spin 1s linear infinite;
}

.topbar-badge {
    transition: opacity 0.3s ease;
}

.topbar-badge.d-none {
    opacity: 0;
    visibility: hidden;
}

/* Cart dropdown styling */
.dropdown-menu-cart {
    min-width: 320px;
}

.dropdown-item-cart {
    border-bottom: 1px solid #f3f6f9;
}

.dropdown-item-cart:last-child {
    border-bottom: none;
}

.cart-quantity-input {
    font-size: 11px;
    padding: 2px 6px;
    text-align: center;
}

.cart-quantity-input:focus {
    box-shadow: none;
    border-color: #405189;
}

/* Empty cart state */
.empty-cart {
    padding: 2rem 1rem;
}

.empty-cart .avatar-title {
    margin-bottom: 1rem;
}

/* Cart item styling */
.cart-item-price {
    font-weight: 600;
    color: #405189;
}

/* Remove item button styling */
.remove-item-btn {
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.remove-item-btn:hover {
    opacity: 1;
    background-color: #f06548 !important;
    color: white !important;
}
