

/* 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:/local/templates/modern_2026/components/bitrix/catalog/modern_cat/bitrix/catalog.element/modern/style.css?177686338312377*/
.product-detail {
    padding: 30px 0;
}

.product-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Галерея */
.product-gallery__main {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #f8f8f8;
    cursor: pointer;
    transition: border-color 0.3s;
}

.product-gallery__main:hover {
    border-color: #FEAC00;
}

.product-gallery__main-img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    display: block;
}

.product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.product-gallery__thumb {
    border: 1px solid #eaeaea;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    background: #f8f8f8;
    height: 80px;
}

.product-gallery__thumb:hover,
.product-gallery__thumb.active {
    border-color: #FEAC00;
    transform: translateY(-2px);
}

.product-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Информация о товаре */
.product-detail__badges {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.product-detail__badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.product-detail__badge--hit {
    background: #FEAC00;
    color: #1A1A1A;
}

.product-detail__badge--new {
    background: #4CAF50;
    color: #fff;
}

.product-detail__title {
    font-size: 32px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 15px;
}

/* Артикул с копированием */
.product-detail__sku {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    flex-wrap: wrap;
}

.product-detail__sku-label {
    color: #666;
}

.product-detail__sku-value {
    color: #1A1A1A;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s;
    background: #f5f5f5;
}

.product-detail__sku-value:hover {
    background: #FEAC00;
    color: #1A1A1A;
}

.product-detail__sku-copy-icon {
    opacity: 0.6;
    transition: opacity 0.2s;
}

.product-detail__sku-value:hover .product-detail__sku-copy-icon {
    opacity: 1;
}

.product-detail__sku-copied {
    font-size: 12px;
    color: #4CAF50;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-detail__sku-copied.show {
    opacity: 1;
}

/* Цена */
.product-detail__price {
    margin-bottom: 20px;
}

.product-detail__price-current {
    font-size: 36px;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1;
    margin-bottom: 5px;
}

.product-detail__price-old {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.product-detail__price-save {
    font-size: 14px;
    color: #4CAF50;
    font-weight: 500;
}

/* Наличие */
.product-detail__availability {
    margin-bottom: 25px;
    font-size: 15px;
}

.product-detail__availability--in-stock {
    color: #4CAF50;
    font-weight: 500;
}

.product-detail__availability--out-of-stock {
    color: #ff4444;
    font-weight: 500;
}

/* Кнопки */
.product-detail__actions {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.product-detail__quantity {
    display: flex;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    height: 50px;
}

.product-detail__quantity-btn {
    width: 40px;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    transition: all 0.2s;
}

.product-detail__quantity-btn:hover {
    background: #FEAC00;
    color: #1A1A1A;
}

.product-detail__quantity-input {
    width: 60px;
    text-align: center;
    border: none;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    font-size: 16px;
    -moz-appearance: textfield;
}

.product-detail__quantity-input::-webkit-outer-spin-button,
.product-detail__quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-detail__btn {
    flex: 1;
    min-width: 160px;
    height: 50px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.product-detail__btn--cart {
    background: #1A1A1A;
    color: #FEAC00;
    border: 1px solid #1A1A1A;
}

.product-detail__btn--cart:hover {
    background: #FEAC00;
    color: #1A1A1A;
    border-color: #FEAC00;
    transform: translateY(-2px);
}

.product-detail__btn--buy {
    background: transparent;
    color: #1A1A1A;
    border: 2px solid #FEAC00;
}

.product-detail__btn--buy:hover {
    background: #FEAC00;
    color: #1A1A1A;
    transform: translateY(-2px);
}

/* Краткие характеристики */
.product-detail__short-props {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 20px;
}

.product-detail__short-props-title {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.product-detail__short-props-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-detail__short-prop {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px dashed #e0e0e0;
}

.product-detail__short-prop:last-child {
    border-bottom: none;
}

.product-detail__short-prop-name {
    color: #666;
}

.product-detail__short-prop-value {
    color: #1A1A1A;
    font-weight: 500;
}

.product-detail__short-props-link {
    display: inline-block;
    margin-top: 12px;
    color: #FEAC00;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.product-detail__short-props-link:hover {
    text-decoration: underline;
}

/* Табы */
.product-tabs {
    margin-bottom: 50px;
}

.product-tabs__headers {
    display: flex;
    gap: 20px;
    border-bottom: 2px solid #eaeaea;
    margin-bottom: 20px;
}

.product-tabs__header {
    background: none;
    border: none;
    padding: 12px 0;
    font-size: 18px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.product-tabs__header:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FEAC00;
    transition: width 0.3s;
}

.product-tabs__header.active {
    color: #1A1A1A;
}

.product-tabs__header.active:after {
    width: 100%;
}

.product-tabs__content {
    display: none;
    padding: 20px 0;
    line-height: 1.6;
    color: #4F4F4F;
}

.product-tabs__content.active {
    display: block;
}

/* Характеристики */
.product-props {
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
}

.product-props__row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 12px 20px;
    border-bottom: 1px solid #eaeaea;
}

.product-props__row:last-child {
    border-bottom: none;
}

.product-props__row:nth-child(odd) {
    background: #f8f8f8;
}

.product-props__name {
    color: #666;
    font-size: 14px;
}

.product-props__value {
    color: #1A1A1A;
    font-weight: 500;
}

/* Документация */
.product-docs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-docs__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    text-decoration: none;
    color: #1A1A1A;
    transition: all 0.3s;
}

.product-docs__item:hover {
    border-color: #FEAC00;
    transform: translateY(-2px);
}

.product-docs__item svg {
    color: #FEAC00;
    flex-shrink: 0;
}

.product-docs__item span {
    font-size: 14px;
    word-break: break-word;
}

/* Сетка товаров */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

/* Заголовки блоков */
.product-detail__similar-title,
.product-detail__viewed-title {
    font-size: 24px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 30px 0 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FEAC00;
    display: inline-block;
}

/* Модальное окно */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.modal__container {
    position: relative;
    background: #fff;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1001;
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eaeaea;
}

.modal__title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.modal__close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.modal__body {
    padding: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
}

.btn--block {
    width: 100%;
    display: block;
    text-align: center;
}

.btn--gold {
    background: #FEAC00;
    color: #1A1A1A;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn--gold:hover {
    background: #e59c00;
}

.oneclick-form__note {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 15px;
}

.oneclick-form__product {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .product-detail__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-gallery__thumbs {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .product-docs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-detail__title {
        font-size: 24px;
    }
    
    .product-detail__price-current {
        font-size: 28px;
    }
    
    .product-tabs__headers {
        gap: 15px;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
    }
    
    .product-tabs__header {
        font-size: 16px;
    }
    
    .product-props__row {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .product-docs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .product-detail__actions {
        flex-direction: column;
    }
    
    .product-detail__btn {
        width: 100%;
    }
    
    .product-gallery__thumbs {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}
.product-detail__popular-title {
    font-size: 24px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 30px 0 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FEAC00;
    display: inline-block;
}
/* 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 */
/* /local/templates/modern_2026/components/bitrix/catalog/modern_cat/bitrix/catalog.element/modern/style.css?177686338312377 */
