/* Cart scrollbar styling */
.cart-scroll {
    scrollbar-width: thin;
    scrollbar-color: #D2691E rgba(0, 0, 0, 0.05);
}

.cart-scroll::-webkit-scrollbar {
    width: 8px;
}

.cart-scroll::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    margin: 8px 0;
}

.cart-scroll::-webkit-scrollbar-thumb {
    background: #D2691E;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cart-scroll::-webkit-scrollbar-thumb:hover {
    background: #8B4513;
}

.cart-scroll::-webkit-scrollbar-thumb:active {
    background: #A0522D;
}

/* Cart sidebar layout */
.cart-sidebar-container {
    height: 100vh;
    max-height: 100vh;
}

/* Cart item animations */
.cart-item {
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Empty cart animation */
.empty-cart {
    animation: fadeIn 0.5s ease-out;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cart items container */
.cart-items-container {
    min-height: 100%;
}

/* Quantity button hover effects */
.quantity-btn:hover {
    transform: scale(1.05);
}

.quantity-btn {
    transition: all 0.2s ease;
}