/* start search animation */

/* smooth search animations */
.product-card {
    /* ensure transform/opacity animate smoothly */
    will-change: opacity, transform;
}

/* class used during animation */
.product-card.search-anim {
    transition: opacity 260ms cubic-bezier(.2, .8, .2, 1), transform 260ms cubic-bezier(.2, .8, .2, 1);
}

/* hidden state (animated) */
.product-card.search-hidden {
    opacity: 0;
    transform: translateY(6px) scale(.98);
    pointer-events: none;
}

/* end search animation */


/* start category  */


#categoryFilter {
    -webkit-overflow-scrolling: touch;
}

#categoryFilter::-webkit-scrollbar {
    height: 7px;
}

#categoryFilter::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 9999px;
}

/* tight pill appearance (optional tweak) */
button:focus {
    outline: 3px solid rgba(37, 99, 235, 0.15);
    outline-offset: 2px;
}

/* end category  */

#categoryFilter::-webkit-scrollbar {
    display: none;
}

#categoryFilter {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}