/* Sidebar Item Styles */
.nav-item {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280; /* Gray 500 */
    transition: all 0.2s;
}

.dark .nav-item {
    color: #9ca3af; /* Gray 400 */
}

.nav-item:hover {
    background-color: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
}

.nav-item.active {
    background-color: #8B5CF6;
    color: white !important;
}

/* Smooth Scrolling & Transitions */
html {
    scroll-behavior: smooth;
}

body {
    transition: background-color 0.3s ease;
}

.product-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}