html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #F7F7F2; }
::-webkit-scrollbar-thumb { background: #1A1C19; }
::-webkit-scrollbar-thumb:hover { background: #D4AF37; }

.product-card .image-wrapper { overflow: hidden; }
.product-card img { transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1); }
.product-card:hover img { transform: scale(1.05); }

.active-filter {
    border-color: #1A1C19 !important;
    color: #1A1C19 !important;
}

/* Fallback CSS jika gambar gagal dimuat */
.image-fallback {
    background-color: #EAEAE0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.image-fallback::after {
    content: "Wastra Taksu Media";
    position: absolute;
    color: #1A1C19;
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    z-index: 0;
}
.image-fallback img {
    position: relative;
    z-index: 10;
}