
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; }

/* Custom animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up { animation: fadeInUp 0.6s ease-out; }
.hover-lift { transition: transform 0.3s ease; }
.hover-lift:hover { transform: translateY(-5px); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #1a1a1a; }
::-webkit-scrollbar-thumb { background: #3b82f6; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #2563eb; }

/* Loading animation for images */
.img-loading { background: linear-gradient(90deg, #111 25%, #222 50%, #111 75%); background-size: 200% 100%; animation: loading 1.5s infinite; }
@keyframes loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Category dropdown styles */
.category-dropdown {
    position: relative;
    display: inline-block;
}

.category-dropdown-content {
    display: none;
    position: absolute;
    background-color: #1f2937;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.3);
    z-index: 100;
    border-radius: 8px;
    border: 1px solid #374151;
    top: 100%;
    left: 0;
    margin-top: 4px;
}

.category-dropdown:hover .category-dropdown-content {
    display: block;
}

.category-dropdown-content a {
    color: #d1d5db;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
    font-size: 14px;
}

.category-dropdown-content a:hover {
    background-color: #374151;
}

.category-dropdown-content a:first-child {
    border-radius: 8px 8px 0 0;
}

.category-dropdown-content a:last-child {
    border-radius: 0 0 8px 8px;
}

.hover-lift {
    transition: all 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}