/* Контейнер списка опций фильтра */
.t-store__filter__item-controls-container[data-type="selectbox"] {
    display: flex !important;
    flex-wrap: wrap!important;
    gap: 14px!important;
    padding-bottom: 8px!important;
}
.t-store__filter__item.active .t-store__filter__item-controls-wrap {
    border-radius: 15px !important;
    padding: 0 10px !important;
}

/* Каждая "опция" селекта */
.t-store__filter__custom-sel {
    background: #fff!important;
    padding: 11px 22px!important;
    font-size: 15px!important;
    font-weight: 500!important;
    color: #244f26!important;
    cursor: pointer!important;
    transition: all 0.18s cubic-bezier(0.46, 0.03, 0.52, 0.96)!important;
    position: relative!important;
    outline: none!important;
}

/* Ховер по опции */
.t-store__filter__custom-sel:hover,
.t-store__filter__custom-sel:focus {
    border-color: #eec630!important;
    background: #fffde6!important;
    color: #2d5738!important;
}


/* Текст внутри select */
.t-store__filter__title {
    font-size: inherit!important;
    font-weight: inherit!important;
    color: inherit!important;
    user-select: none!important;
}







/* Скрываем фильтры на десктопе и делаем боковую панель */
@media screen and (min-width: 961px) {
    /* Прячем сам блок фильтров */
    .t-store__filter__options {
        position: fixed !important;
        top: 0;
        left: -5000px;
        width: 450px;
        height: 100vh;
        background: #9ad4f9;
        padding: 40px 30px;
        z-index: 9999;
        overflow-y: auto;
        transition: left 0.4s ease;
        display: block !important;
        box-shadow: 5px 0 20px rgba(0,0,0,0.3);
        border-radius: 0 20px 20px 0;
    }
    
    /* Показываем панель при активации */
    .t-store__filter__options.active {
        left: 0 !important;
    }
    
    /* Затемнение фона */
    .filter-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }
    
    .filter-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* ФИКС: Фиксируем ширину и позиционирование кнопки */
    .t-store__filter__opts-mob-btn {
        display: inline-block !important;
        position: relative !important;
        width: auto !important;
        max-width: 250px !important;
        min-width: 200px !important;
        padding: 12px 30px !important;
        background: #eec630 !important;
        color: #fff !important;
        border: none !important;
        border-radius: 25px !important;
        cursor: pointer !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        transition: all 0.3s ease !important;
        margin-bottom: 20px !important;
        text-align: center !important;
        white-space: nowrap !important;
    }
    
    .t-store__filter__opts-mob-btn:hover {
        background: #9ad4f9 !important;
        transform: translateY(-2px) !important;
    }
    
    /* Контейнер фильтра не должен растягиваться */
    .t-store__filter {
        display: block !important;
        width: 100% !important;
    }
    
    /* Кнопка закрытия внутри панели */
    .close-filter-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: #ff6633;
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        cursor: pointer;
        font-size: 24px;
        line-height: 1;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .close-filter-btn:hover {
        background: #ff7744;
        transform: rotate(90deg);
    }
    
    /* Стили для фильтров внутри панели */
    .t-store__filter__options .t-store__filter__item {
        margin-bottom: 25px;
    }
    
    .t-store__filter__options .t-store__filter__item-title {
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 12px;
    }
    
    .t-store__filter__options select,
    .t-store__filter__options input[type="checkbox"] + label {
        background: #fff;
        color: #333;
        border-radius: 8px;
        padding: 10px;
    }
    
    /* Кнопка "Показать" внизу панели */
    .t-store__filter__options .t-store__filter__btn {
        background: #ff6633;
        color: #fff;
        border-radius: 25px;
        padding: 15px 40px;
        width: 100%;
        border: none;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
        margin-top: 30px;
    }
    
    .t-store__filter__options .t-store__filter__btn:hover {
        background: #ff7744;
    }
}

@media screen and (max-width: 960px) {
    .t-store__filter__item:first-child {
        border-top: none !important;
    }
}
@media screen and (max-width: 960px) {
    .t-store__filter__item, .t-store__filter__item.t-store__filter__item_sort-mobile {
        border-bottom: none !important;
    }
}
#rec812967610 .t-store__filter__controls-wrapper {
    display: none;
}











.t-store__filter__search.t-descr.t-descr_xxs {
    width: 100% !important;
}
.t-store__filter__search .t-store__filter__input {
    width: 100% !important;
}
/* Поле ввода */
.t-store__filter__input {
    width: 100%!important;
    height: 50px!important;
    padding: 15px 50px 15px 20px!important;
    border: 2px solid #e0e0e0!important;
    border-radius: 25px!important;
    font-size: 16px!important;
    color: #333!important;
    background: #fff!important;
    transition: all 0.3s ease!important;
    outline: none!important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05)!important;
}
/* Фокус на поле ввода */
.t-store__filter__input:focus {
    border-color: #eec630!important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1)!important;
    transform: translateY(-2px)!important;
}

/* Стиль placeholder */
.t-store__filter__input::placeholder {
    color: #999!important;
    font-weight: 400!important;
}

/* Иконка поиска */
.t-store__search-icon {
    position: absolute !important;
    right: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 24px !important;
    height: 24px !important;
    cursor: pointer !important;
    transition: all 0.3s ease!important;
}

.t-store__filter__input:focus + .t-store__search-icon {
    transform: translateY(-15px)!important;
}

.t-store__search-icon:hover {
    transform: translateY(-50%) scale(1.1)!important;
}

.t-store__search-icon path {
    fill: #666!important;
    transition: fill 0.3s ease!important;
}

.t-store__search-icon:hover path {
    fill: #000!important;
}

/* Иконка закрытия */
.t-store__search-close-icon {
    position: absolute !important;
    right: 18px !important;
    top: 50%!important;
    transform: translateY(-50%)!important;
    cursor: pointer!important;
    opacity: 0.6!important;
    transition: all 0.3s ease!important;
}

.t-store__search-close-icon:hover {
    opacity: 1!important;
    transform: translateY(-50%) rotate(90deg)!important;
}

/* Анимация при вводе текста */
.t-store__filter__input:not(:placeholder-shown) {
    padding-right: 80px!important;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
    .t-store__search-wrapper {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .t-store__filter__input {
        height: 45px;
        font-size: 14px;
    }
}


.t-store__filter__item-title {
    max-width: fit-content !important;
    padding-right: 40px !important;
    padding: 15px 50px 15px 20px!important;
    border: 2px solid #e0e0e0!important;
    border-radius: 25px!important;
    font-size: 16px!important;
    color: #333!important;
    background: #fff!important;
    transition: all 0.3s ease!important;
    outline: none!important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05)!important;
}

.t-store__filter__item-title:after {
    right: 15px !important;
}

.js-product-edition-option.t-product__option {
    display: none;
}

.js-product.t-store__card.t-store__stretch-col.t-store__stretch-col_33.t-align_left.t-item.t-store__card-nlm057 {
    justify-content: flex-start;
}

.t-store__card__mark {
    border-radius: 15px;
    font-family: 'Balsamiq Sans', Arial, sans-serif, Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
    height: 40px;
    width: 150px;
}


.t-feed__slider-grid__wrapper {
    justify-content: space-between;
}

.t-feed__col-grid__wrapper {
    justify-content: space-between;
}

.t-radio__wrapper {
    margin-bottom: 50px;
}

.t-store__prod-snippet__container {
    padding-top: 0px !important;
}

.js-store-prod-text a {
    display: inline-block;
    padding: 15px 40px;
    margin-right: 15px;
    margin-top: 20px;
    border-radius: 15px;
    font-weight: 900;
    font-size: 20px;
    font-family: Balsamiq Sans;
}
.js-store-prod-text a:first-of-type {
    background-color: #9AD4F8;
    color: #ffffff !important;
}
.js-store-prod-text a:last-of-type {
    background-color: #9AD4F8;
    color: #ffffff !important;
}
 
.t706__cartwin_showed {
    z-index: 999999999;
}


    .js-product .t-store__card__imgwrapper,.t-store__prod-popup__slider .t-slds__container{
        border-radius: 30px !important; 
        overflow: hidden; 
    }
    
    
.uc-about .t-bgimg {
        border-radius: 30px;
}

