/* Hiệu ứng xổ xuống / cuộn lên cho bộ lọc giá */
#price-filter-box {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-in-out, opacity 0.3s ease-in-out;
}

#price-filter-box.show {
    max-height: 100px; /* Đủ chứa các nút giá */
    opacity: 1;
}