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

/* Hide scrollbar on filter row */
.cat-btn { white-space: nowrap; }

/* Card hover lift */
.product-card { transition: transform 0.3s ease; }
.product-card:hover { transform: translateY(-4px); }

/* Image skeleton while loading */
img[loading="lazy"] {
    background: linear-gradient(110deg, #f5f0eb 30%, #efe8e0 50%, #f5f0eb 70%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
    from { background-position: 200% 0; }
    to   { background-position: -200% 0; }
}

/* Focus ring override */
input:focus, textarea:focus, select:focus, button:focus-visible {
    outline: 2px solid #8B5E3C;
    outline-offset: 2px;
}
