/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 18 2026 | 14:53:27 */
/* =========================================================
   GranoFactura — прокрутка фильтра "Вкус кофе"
   Без :has, без фиксированной пустой высоты
   ========================================================= */

/* Фильтр "Вкус кофе" */
body #woocommerce_layered_nav-9 > ul.woocommerce-widget-layered-nav-list,
body .gf-taste-filter-widget > ul.woocommerce-widget-layered-nav-list {
    display: block !important;

    /* ВАЖНО: max-height, а не height */
    max-height: 165px !important;
    height: auto !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;

    padding-right: 8px !important;
}

/* Пункты внутри списка */
body #woocommerce_layered_nav-9 > ul.woocommerce-widget-layered-nav-list > li,
body .gf-taste-filter-widget > ul.woocommerce-widget-layered-nav-list > li {
    display: flex !important;
    flex: none !important;
    width: 100% !important;
}

/* Скроллбар */
body #woocommerce_layered_nav-9 > ul.woocommerce-widget-layered-nav-list::-webkit-scrollbar,
body .gf-taste-filter-widget > ul.woocommerce-widget-layered-nav-list::-webkit-scrollbar {
    width: 5px !important;
}

body #woocommerce_layered_nav-9 > ul.woocommerce-widget-layered-nav-list::-webkit-scrollbar-track,
body .gf-taste-filter-widget > ul.woocommerce-widget-layered-nav-list::-webkit-scrollbar-track {
    background: #f5f1eb !important;
    border-radius: 10px !important;
}

body #woocommerce_layered_nav-9 > ul.woocommerce-widget-layered-nav-list::-webkit-scrollbar-thumb,
body .gf-taste-filter-widget > ul.woocommerce-widget-layered-nav-list::-webkit-scrollbar-thumb {
    background: #d6cdbf !important;
    border-radius: 10px !important;
}

body #woocommerce_layered_nav-9 > ul.woocommerce-widget-layered-nav-list::-webkit-scrollbar-thumb:hover,
body .gf-taste-filter-widget > ul.woocommerce-widget-layered-nav-list::-webkit-scrollbar-thumb:hover {
    background: #bfb2a1 !important;
}