

/* Start:/bitrix/templates/eco/components/bitrix/catalog.section/slider/style.css?17763785561349*/
/* ===== Сортировка товаров ===== */
.catalog-sort {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px 0 16px;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 16px;
}

.catalog-sort__label {
    font-size: 13px;
    color: var(--grey, #888);
    white-space: nowrap;
    padding-top: 6px;
    flex-shrink: 0;
}

.catalog-sort__options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.catalog-sort__option {
    display: inline-block;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text, #333);
    background: #f5f5f5;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.catalog-sort__option:hover {
    background: #eaf2fb;
    border-color: var(--primary, #1e88e5);
    color: var(--primary, #1e88e5);
}

.catalog-sort__option_active {
    background: var(--primary, #1e88e5);
    border-color: var(--primary, #1e88e5);
    color: #fff;
    cursor: default;
    pointer-events: none;
}

@media (max-width: 600px) {
    .catalog-sort {
        flex-direction: column;
        gap: 8px;
    }

    .catalog-sort__option {
        padding: 5px 12px;
        font-size: 12px;
    }
}

/* End */


/* Start:/bitrix/templates/eco/components/bitrix/catalog.item/catalogitem/style.css?17756807148907*/
/* Карточка товара горизонтальная */
.product-card_mod_card_line {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    transition: all 0.2s ease;
    margin-bottom: 12px;
}

.product-card_mod_card_line:hover {
    border-color: var(--primary, #1e88e5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Чекбокс для массового выбора */
.product-checkbox_mod_card_line {
    flex-shrink: 0;
}

.checkbox-label_mod_card_line {
    position: relative;
    display: block;
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.checkbox-label_mod_card_line input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom_mod_card_line {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #e8e8e8;
    border-radius: 4px;
    background: #fff;
    transition: all 0.2s ease;
}

.checkbox-label_mod_card_line input:checked + .checkbox-custom_mod_card_line {
    background: var(--primary, #1e88e5);
    border-color: var(--primary, #1e88e5);
}

.checkbox-label_mod_card_line input:checked + .checkbox-custom_mod_card_line::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: #fff;
}

.checkbox-label_mod_card_line:hover .checkbox-custom_mod_card_line {
    border-color: var(--primary, #1e88e5);
}

/* Картинка товара */
.product-image_mod_card_line {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image_mod_card_line img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Информация о товаре */
.product-info_mod_card_line {
    flex: 1;
    min-width: 0;
}

.product-title_mod_card_line {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.product-title_mod_card_line a {
    color: var(--text, #333);
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-title_mod_card_line a:hover {
    color: var(--primary, #1e88e5);
}

.product-article_mod_card_line,
.product-type_mod_card_line {
    font-size: 13px;
    color: var(--grey, #888);
    margin-bottom: 4px;
	line-height: 1.4;
}

/* Цена и действия */
.product-actions_mod_card_line {
    flex-shrink: 0;
    text-align: right;
    min-width: 180px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0px 15px;
    max-width: 360px;
    justify-content: space-between;
    margin-left: 10px;
}

.product-price_mod_card_line {
    margin-bottom: 12px;
}

.price-current_mod_card_line {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary, #1e88e5);
}

.price-old_mod_card_line {
    font-size: 13px;
    color: var(--grey, #888);
    text-decoration: line-through;
    margin-left: 8px;
}

/* Количество товара */
.product-quantity_mod_card_line {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 12px;
}

.qty-btn_mod_card_line {
    width: 32px;
    height: 32px;
    background: #f5f5f5;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    color: var(--text, #333);
    transition: all 0.2s ease;
}

.qty-btn_mod_card_line:hover {
    background: #e8e8e8;
    border-color: var(--primary, #1e88e5);
    color: var(--primary, #1e88e5);
}

.qty-input_mod_card_line {
    width: 50px;
    height: 32px;
    text-align: center;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    pointer-events: none;
}

.qty-unit_mod_card_line {
    font-size: 12px;
    color: var(--grey, #888);
}

/* Кнопки */
.btn {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: inherit;
}

.btn-primary_mod_card_line {
    background: var(--primary, #1e88e5);
    color: #fff;
    width: 100%;
}

.btn-primary_mod_card_line:hover {
    background: #1565c0;
    transform: translateY(-1px);
}

.btn-outline_mod_card_line {
    background: transparent;
    border: 1px solid var(--primary, #1e88e5);
    color: var(--primary, #1e88e5);
    width: 100%;
}

.btn-outline_mod_card_line:hover {
    background: var(--primary, #1e88e5);
    color: #fff;
}

/* Нет в наличии */
.product-unavailable_mod_card_line {
    text-align: center;
}

.unavailable-text_mod_card_line {
    display: block;
    font-size: 13px;
    color: #e74c3c;
    margin-bottom: 8px;
}

.request-btn_mod_card_line {
    background: transparent;
    border: 1px solid #e8e8e8;
    color: var(--grey, #888);
    width: 100%;
}

.request-btn_mod_card_line:hover {
    border-color: var(--primary, #1e88e5);
    color: var(--primary, #1e88e5);
}

/* Адаптивность */
@media (max-width: 768px) {
    .product-card_mod_card_line {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .product-checkbox_mod_card_line {
        order: 1;
    }
    
    .product-image_mod_card_line {
        order: 2;
        width: 80px;
        height: 80px;
    }
    
    .product-info_mod_card_line {
        order: 3;
        flex: 1;
    }
    
    .product-actions_mod_card_line {
        order: 4;
        width: 100%;
        text-align: left;
    }
    
    .product-quantity_mod_card_line {
        justify-content: flex-start;
    }
    
    .price-current_mod_card_line {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .product-card_mod_card_line {
        padding: 12px;
    }
    
    .product-title_mod_card_line {
        font-size: 14px;
    }
    
    .product-article_mod_card_line,
    .product-type_mod_card_line {
        font-size: 12px;
    }
    
    .btn {
        padding: 6px 16px;
        font-size: 13px;
    }
}
.product-actions_mod_card_line .btn {min-width: 170px;}

/* Кнопка "В корзине" */
.btn_in-cart {
    background: #27ae60;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn_in-cart::before {
    content: '✓';
    font-size: 14px;
    font-weight: 700;
}

.btn_in-cart:hover {
    background: #219150;
    color: #fff;
    transform: translateY(-1px);
}

/* Попап уведомления о добавлении в корзину */
.cart-popup_mod_card_line {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #27ae60;
    color: #fff;
    padding: 14px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(39, 174, 96, 0.35);
    font-size: 14px;
    font-weight: 500;
    max-width: 360px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cart-popup_mod_card_line.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cart-popup__icon_mod_card_line {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-popup__text_mod_card_line {
    flex: 1;
}

.cart-popup__link_mod_card_line {
    color: #fff;
    text-decoration: underline;
    white-space: nowrap;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.cart-popup__link_mod_card_line:hover {
    opacity: 0.85;
}

@media (max-width: 480px) {
    .cart-popup_mod_card_line {
        bottom: 16px;
        right: 16px;
        left: 16px;
        max-width: none;
    }
}

/* ===== Кнопка «В избранное» ===== */
.product-image_mod_card_line {
    position: relative;
}

.btn-favorite {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    padding: 0;
    transition: color 0.2s ease, background 0.2s ease, transform 0.15s ease;
    z-index: 2;
}

.btn-favorite:hover {
    color: var(--primary, #29488B);
    background: #fff;
    transform: scale(1.1);
}

.btn-favorite__icon_filled {
    display: none;
}

.btn-favorite_active {
    color: #e74c3c;
}

.btn-favorite_active .btn-favorite__icon_empty {
    display: none;
}

.btn-favorite_active .btn-favorite__icon_filled {
    display: block;
}
/* End */


/* Start:/bitrix/templates/eco/components/bitrix/catalog.section/slider/themes/blue/style.min.css?1776378556706*/
.bx-blue .product-item-image-slider-progress-bar{background-color:#0083d1}.bx-blue .product-item-image-slider-control:hover{background-color:rgba(0,131,209,.8)}.bx-blue .product-item-image-slider-control.active,.bx-blue .product-item-image-slider-control:hover{background-color:#0083d1}.bx-blue .product-item-scu-item-text-block:hover,.bx-blue .product-item-scu-item-color-block:hover,.bx-blue .product-item-scu-item-text-container.selected .product-item-scu-item-text-block,.bx-blue .product-item-scu-item-color-container.selected .product-item-scu-item-color-block{outline-color:#006cc0}.bx-blue .product-item-amount-field:focus{border-color:#006cc0}.bx-blue .catalog-section-header{border-color:#006cc0}
/* End */
/* /bitrix/templates/eco/components/bitrix/catalog.section/slider/style.css?17763785561349 */
/* /bitrix/templates/eco/components/bitrix/catalog.item/catalogitem/style.css?17756807148907 */
/* /bitrix/templates/eco/components/bitrix/catalog.section/slider/themes/blue/style.min.css?1776378556706 */
