/* Modern Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f8f9fa;
}
::-webkit-scrollbar-thumb {
    background: #c5c6ca;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #D4AF37;
}

/* Glassmorphism Navigation */
.glass-nav {
    background: rgba(248, 249, 250, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Before/After Slider Styles */
.before-after-handle {
    transition: left 0.05s ease-out;
}
.mask-overlay {
    clip-path: inset(0 0 0 50%);
}

/* Artisan Cards Interactive Design */
.artisan-card-hover {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 12px;
}
.artisan-card-hover:hover {
    transform: translateY(-8px);
    border-color: #D4AF37;
    box-shadow: 0 12px 24px -10px rgba(212, 175, 55, 0.15);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Cookie Banner State */
#cookie-banner.show {
    transform: translateY(0);
}

/* Lightbox Modal Blurring backdrop */
#gallery-lightbox {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}