/* Custom Transitions and Scrollbars */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#cart-sidebar {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom Scrollbar for Cart */
#cart-items::-webkit-scrollbar {
    width: 4px;
}

#cart-items::-webkit-scrollbar-track {
    background: transparent;
}

#cart-items::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 10px;
}

#cart-items::-webkit-scrollbar-thumb:hover {
    background: #d1d5db;
}

/* Product Card Hover Effect */
.product-card img {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover img {
    transform: scale(1.05);
}

/* Smooth scrolling for the whole page */
html {
    scroll-behavior: smooth;
}
