

/* Start:/local/templates/modern_2026/components/bitrix/breadcrumb/breads/style.min.css?1772566482508*/
.bx-breadcrumb{margin:5px 0 20px 0}.bx-breadcrumb i{color:#b5bdc2;line-height:13px;font-size:12px;vertical-align:middle;margin-right:5px}.bx-breadcrumb .bx-breadcrumb-item{float:left;margin-bottom:10px;white-space:nowrap;line-height:13px;vertical-align:middle;margin-right:10px}.bx-breadcrumb .bx-breadcrumb-item span{font-family:Arial,"Helvetica Neue",Helvetica,sans-serif;font-size:13px;white-space:normal}.bx-breadcrumb .bx-breadcrumb-item a{border-bottom:none}.bx-breadcrumb .bx-breadcrumb-item a:hover{}
/* End */


/* Start:/local/templates/modern_2026/components/bitrix/catalog/modern_cat/style.css?17767893033330*/
/* ======= CATALOG SECTION STYLES ======= */

.catalog-section {
    margin-bottom: 50px;
}

.catalog-section__header {
    margin-bottom: 30px;
}

.catalog-section__title {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-black);
    margin: 0 0 15px 0;
    position: relative;
    padding-bottom: 15px;
}

.catalog-section__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: var(--color-gold);
}

.catalog-section__description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-gray-dark);
}

/* Панель инструментов */
.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin-bottom: 25px;
    border-top: 1px solid var(--color-gray);
    border-bottom: 1px solid var(--color-gray);
    flex-wrap: wrap;
    gap: 15px;
}

.catalog-toolbar__left {
    font-size: 14px;
    color: var(--color-gray-dark);
}

.catalog-toolbar__left strong {
    color: var(--color-black);
    font-weight: 600;
}

.catalog-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.catalog-sort label {
    font-size: 14px;
    color: var(--color-gray-dark);
}

.catalog-sort__select {
    padding: 8px 30px 8px 12px;
    border: 1px solid var(--color-gray);
    border-radius: 6px;
    background: var(--color-white);
    font-size: 14px;
    color: var(--color-black);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%234F4F4F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
}

.catalog-sort__select:hover,
.catalog-sort__select:focus {
    border-color: var(--color-gold);
    outline: none;
}

/* Подразделы */
.catalog-subsections {
    margin-bottom: 35px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .catalog-section__title {
        font-size: 24px;
    }
    
    .catalog-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .catalog-toolbar__right {
        width: 100%;
    }
    
    .catalog-sort {
        justify-content: space-between;
    }
    
    .catalog-sort__select {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .catalog-section__title {
        font-size: 22px;
    }
    
    .catalog-sort {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .catalog-sort__select {
        max-width: 100%;
    }
}
/* Центрирование пагинации */
.catalog-products__pagination {
    text-align: center;
}

.catalog-products__pagination .pagination,
.catalog-products__pagination .modern-page-navigation,
.catalog-products__pagination .bx-pagination {
    justify-content: center;
    display: flex;
}

/* Убираем отступ слева */
.catalog-products__pagination ul {
    padding-left: 0;
}
/* End */


/* Start:/local/templates/modern_2026/components/bitrix/catalog/modern_cat/element.css?17768796743663*/
/* ===== СТРАНИЦА ТОВАРА ===== */
.product-detail-page {
    width: 100%;
    max-width: 100%;
}

/* Блоки рекомендаций */
.recommendations-block {
    margin: 50px 0 30px;
}

.recommendations-block__header {
    margin-bottom: 25px;
}

.recommendations-block__title {
    font-size: 22px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #FEAC00;
    display: inline-block;
}

/* Сетка товаров */
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Карточка товара в сетке */
.product-card-small {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card-small:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-color: #FEAC00;
}

.product-card-small__image {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.product-card-small__image img {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
}

.product-card-small__title {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px;
}

.product-card-small__title a {
    color: #1A1A1A;
    text-decoration: none;
}

.product-card-small__title a:hover {
    color: #FEAC00;
}

.product-card-small__price {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.product-card-small__btn {
    background: #1A1A1A;
    color: #FEAC00;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-top: auto;
}

.product-card-small__btn:hover {
    background: #FEAC00;
    color: #1A1A1A;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .recommendations-block__title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== КНОПКИ В КАРТОЧКЕ ТОВАРА (МОБИЛЬНАЯ ВЕРСИЯ) ===== */
@media (max-width: 768px) {
    .product-detail__actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .product-detail__btn {
        width: 100%;
        min-width: auto;
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .product-detail__quantity {
        width: 100%;
        justify-content: center;
    }
    
    .product-detail__quantity-btn {
        width: 44px;
        height: 44px;
    }
    
    .product-detail__quantity-input {
        width: 60px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .product-detail__btn {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .product-detail__btn svg {
        width: 16px;
        height: 16px;
    }
}
.bx-breadcrumb {
    padding-top: 12px;
}
/* End */


/* Start:/bitrix/components/bitrix/system.show_message/templates/.default/style.min.css?155697042851*/
font.errortext{color:red}font.notetext{color:green}
/* End */
/* /local/templates/modern_2026/components/bitrix/breadcrumb/breads/style.min.css?1772566482508 */
/* /local/templates/modern_2026/components/bitrix/catalog/modern_cat/style.css?17767893033330 */
/* /local/templates/modern_2026/components/bitrix/catalog/modern_cat/element.css?17768796743663 */
/* /bitrix/components/bitrix/system.show_message/templates/.default/style.min.css?155697042851 */
