.elementor-2258 .elementor-element.elementor-element-15b8211{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-size:var( --e-global-typography-primary-font-size );font-weight:var( --e-global-typography-primary-font-weight );text-transform:var( --e-global-typography-primary-text-transform );line-height:var( --e-global-typography-primary-line-height );color:var( --e-global-color-primary );}.elementor-2258 .elementor-element.elementor-element-fab6f06 .elementor-heading-title{font-family:"Benzin", Sans-serif;font-size:52px;font-weight:500;text-transform:uppercase;line-height:75px;}.elementor-2258 .elementor-element.elementor-element-2b6a8b5{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-2258 .elementor-element.elementor-element-f30258f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2258 .elementor-element.elementor-element-d9a90cc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2258 .elementor-element.elementor-element-a3e69ce > .jet-listing-grid > .jet-listing-grid__items{--columns:3;}@media(min-width:768px){.elementor-2258 .elementor-element.elementor-element-f30258f{--width:33.3333%;}.elementor-2258 .elementor-element.elementor-element-d9a90cc{--width:66.6666%;}}@media(max-width:1600px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );line-height:var( --e-global-typography-primary-line-height );}.elementor-2258 .elementor-element.elementor-element-fab6f06 .elementor-heading-title{font-size:36px;line-height:47px;}}@media(max-width:1024px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );line-height:var( --e-global-typography-primary-line-height );}.elementor-2258 .elementor-element.elementor-element-fab6f06 .elementor-heading-title{font-size:28px;line-height:36px;}}@media(max-width:767px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );line-height:var( --e-global-typography-primary-line-height );}.elementor-2258 .elementor-element.elementor-element-fab6f06 .elementor-heading-title{font-size:26px;line-height:30px;}}/* Start custom CSS for wp-widget-woocommerce_product_categories, class: .elementor-element-64a96c0 *//* --- СТИЛИ ДЛЯ ВСЕГО ВИДЖЕТА --- */
.widget_product_categories {
    padding: 0;
    border: none;
}
.widget_product_categories ul.product-categories {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* --- СТИЛИЗАЦИЯ КАТЕГОРИЙ (РОДИТЕЛЬСКИХ И ДОЧЕРНИХ) --- */
.widget_product_categories .cat-item {
    /* Flexbox для выравнивания ссылки и иконки в одну строку */
    display: flex; 
    flex-wrap: wrap; /* Позволяет ul.children переходить на новую строку */
    align-items: center; 
    margin: 0;
    padding: 0;
    border: none;
}

/* --- СТИЛИЗАЦИЯ ЗАГОЛОВКОВ (Ссылки) --- */
.widget_product_categories .cat-item > a {
    /* Ссылка занимает максимальное место между иконкой и левым краем */
    flex-grow: 1; 
    display: block;
    padding: 10px 0;
    font-size: 16px;
    font-weight: normal; 
    text-decoration: none;
    color: #333; 
    transition: color 0.2s;
    /* Убедимся, что ссылка идет первой */
    order: 1; 
}

/* --- СТИЛИЗАЦИЯ РОДИТЕЛЬСКИХ ЭЛЕМЕНТОВ (Accordion Title) --- */
.widget_product_categories .cat-item.cat-parent {
    border-bottom: 1px solid #eee; /* Разделитель под родительской категорией */
    margin-bottom: 5px;
}
.widget_product_categories .cat-item.cat-parent > a {
    font-weight: bold; /* Жирный шрифт для заголовков, как на скриншоте */
    cursor: pointer;
}

/* --- ПОДСВЕТКА АКТИВНОГО ЭЛЕМЕНТА (КРАСНЫЙ ЦВЕТ) --- */
.widget_product_categories .cat-item.wd-active > a, 
.widget_product_categories .cat-item.open-cat > a, 
.widget_product_categories .cat-item.wd-active > .accordion-toggle-icon,
.widget_product_categories .cat-item.open-cat > .accordion-toggle-icon {
    color: red !important; 
    font-weight: bold !important;
}

/* --- СТИЛИЗАЦИЯ ПЕРЕКЛЮЧАТЕЛЯ (ШЕВРОНЫ СПРАВА) --- */
.accordion-toggle-icon {
    order: 2; /* Иконка идет второй (справа от ссылки) */
    flex-shrink: 0; /* Иконка не сжимается */
    cursor: pointer;
    font-size: 14px; 
    padding: 10px 5px; 
    width: 30px; 
    text-align: center;
    color: #333;
    transition: transform 0.3s; /* Плавный поворот */
    line-height: 1; 
}

/* Иконка при закрытом состоянии (вниз) */
.accordion-toggle-icon:not(.active):before {
    content: "\25BE"; /* Юникод для черного треугольника вниз (▼) */
    display: block;
    transform: rotate(0deg);
}

/* Иконка при открытом состоянии (вверх) */
.accordion-toggle-icon.active:before {
    content: "\25BE"; 
    display: block;
    transform: rotate(180deg); /* Поворот на 180 градусов, чтобы символ смотрел ВВЕРХ */
}

/* --- СТИЛИЗАЦИЯ ПОДКАТЕГОРИЙ (UL.CHILDREN) --- */
.widget_product_categories ul.children {
    width: 100%; /* Занимают всю ширину родителя */
    order: 3; /* Отображаются под заголовком и иконкой */
    padding: 5px 0 10px 15px; /* Отступ слева для вложенности */
    margin: 0;
    list-style: none;
}
.widget_product_categories ul.children .cat-item > a {
    /* Стиль ссылок подкатегорий (меньше, тоньше) */
    padding: 3px 0;
    font-size: 14px;
    color: #666;
}






/* --- Скрываем лишний нативный значок, который идет первым --- */

.widget_product_categories .cat-item > span:first-child:not(.accordion-toggle-icon),
.widget_product_categories .cat-item > *:first-child:not(a):not(.accordion-toggle-icon) {
    display: none !important;
}

/*
Пояснение:
- .cat-item > span:first-child:not(.accordion-toggle-icon)
  → Находит первый <span> внутри <li>, ЕСЛИ он НЕ является вашим кастомным значком.
- .cat-item > *:first-child:not(a):not(.accordion-toggle-icon)
  → Находит ПЕРВЫЙ дочерний элемент (*), ЕСЛИ он НЕ является ссылкой (a) И НЕ является вашим значком.
*//* End custom CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'Benzin';
	font-style: normal;
	font-weight: 400;
	font-display: auto;
	src: url('https://peptoniclabs.com/wp-content/uploads/2025/10/Benzin-Regular.woff2') format('woff2'),
		url('https://peptoniclabs.com/wp-content/uploads/2025/10/Benzin-Regular.woff') format('woff');
}
@font-face {
	font-family: 'Benzin';
	font-style: normal;
	font-weight: 500;
	font-display: auto;
	src: url('https://peptoniclabs.com/wp-content/uploads/2025/10/Benzin-Medium.woff2') format('woff2'),
		url('https://peptoniclabs.com/wp-content/uploads/2025/10/Benzin-Medium.woff') format('woff');
}
@font-face {
	font-family: 'Benzin';
	font-style: normal;
	font-weight: 700;
	font-display: auto;
	src: url('https://peptoniclabs.com/wp-content/uploads/2025/10/Benzin-Bold.woff2') format('woff2'),
		url('https://peptoniclabs.com/wp-content/uploads/2025/10/Benzin-Bold.woff') format('woff');
}
/* End Custom Fonts CSS */