

/* Start:/local/templates/prime_s3/components/bitrix/catalog.element/main/style.css?178279534225783*/
/* Основной контейнер */
.product-props-preview {
    font-family: inherit; /* Использует шрифт вашего сайта */
    max-width: 500px; /* Ограничение ширины (настройте под свой дизайн) */
    margin-bottom: 20px;
}

/* Строка со свойством */
.prop-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e6e6e6; /* Тонкая серая линия */
    font-size: 14px;
    line-height: 1.4;
}

/* Убираем нижнюю границу у последнего элемента, если нужно */
.prop-item:last-of-type {
    border-bottom: 1px solid #e6e6e6; /* На скрине граница есть у всех */
}

/* Название свойства (слева) */
.prop-name {
    color: #4a4a4a; /* Темно-серый цвет текста */
    padding-right: 15px;
}

/* Значение свойства (справа) */
.prop-value {
    color: #333333;
    text-align: right;
    font-weight: 400;
}

/* Если в значении есть ссылка (как на скриншоте) */
.prop-value a {
    color: #ff9601; /* Синий цвет ссылки */
    text-decoration: underline;
}

.prop-value a:hover {
    text-decoration: none;
}

/* Ссылка "Перейти к характеристикам" */
.prop-more-link {
    display: inline-block;
    margin-top: 15px;
    color: #ff9601; /* Синий цвет */
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.prop-more-link:hover {
    color: #b36900;
    text-decoration: underline;
}

.right-buy-block {
    font-family: 'Open Sans', Arial, sans-serif; /* Поменяйте на шрифт вашего сайта */
    margin-bottom: 20px;
}

/* Верхние ссылки (избранное, сравнение) */
.top-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.top-actions .action-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #007bb5;
    text-decoration: none;
    font-size: 14px;
    background: #f2f8fc;
    padding: 6px 12px;
    border-radius: 20px;
    transition: background 0.2s;
}
.top-actions .action-link:hover {
    background: #e1eff8;
}

/* Основная карточка */
.buy-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.price-wrapper .main-price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
    margin-bottom: 8px;
}
.price-wrapper .old-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    display: block;
    margin-bottom: 8px;
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #555;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Кнопки */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.action-buttons .btn {
    width: 100%;
    padding: 14px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.action-buttons .btn-red {
    background-color: #ff1c36;
    color: #ffffff;
}
.action-buttons .btn-red:hover {
    background-color: #e61931;
}

.action-buttons .btn-outline {
    background-color: transparent;
    border: 1px solid #3c4c6a;
    color: #3c4c6a;
}
.action-buttons .btn-outline:hover {
    background-color: #f8f9fa;
}

/* Калькулятор */
.delivery-calc-link {
    text-align: center;
}
.delivery-calc-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff9601;
    font-size: 14px;
    text-decoration: none;
}
.delivery-calc-link a span {
    border-bottom: 1px dashed #ff9601;
}
.delivery-calc-link a:hover span {
    border-bottom: 1px dashed #b36900;
}

/* Информационные плашки внизу */
.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.info-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid #e1e8ee;
    border-radius: 8px;
    text-decoration: none;
    background: #ffffff;
    transition: border-color 0.2s;
}
.info-block:hover {
    border-color: #b0c4d6;
}
.info-block-left {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #7992a5;
    font-size: 15px;
}

/* Блок с преимуществами (бейджи) */
.product-advantages {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.advantage-card {
    background: #ffffff;
    /* Убираем резкий бордер, оставляем едва заметный контур или вообще убираем */
    border: 1px solid rgba(0, 0, 0, 0.02); 
    border-radius: 12px; /* Чуть больше скругление */
    padding: 30px 20px; /* Увеличили внутренние отступы */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    
    /* Постоянная мягкая тень как на исходнике */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Эффект при наведении (по желанию, карточка будет чуть приподниматься) */
.advantage-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
}

.advantage-icon {
    /* Увеличили высоту контейнера для иконки */
    height: 85px; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.advantage-icon svg,
.advantage-icon img {
    /* Заставляем иконку занимать всю высоту контейнера */
    height: 100%; 
    width: auto;
}

.advantage-text {
    font-size: 15px; /* Текст тоже сделали чуть крупнее */
    color: #596673; 
    line-height: 1.5;
}

.advantage-text b {
    color: #2b3a4a; 
    font-weight: 700;
}

/* Адаптивность (мобильные устройства и планшеты) */
@media (max-width: 1199px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    .advantage-card {
        padding: 24px 16px;
    }
}
.buy-card .action-buttons .btn{
	justify-content: center;
}
.warranty-status{
	margin-bottom: 1rem;
}
.warranty-status span{
	font-size: 15px;
	line-height: 16px;
	color: #262626;
}
.logo-brand{
	margin-bottom: 1.2rem;
}
.logo-brand img{
	height: 40px;
}


/* Блок утилитарных ссылок (печать, поделиться) */
.product-utility-actions {
    display: flex;
    align-items: center;
    gap: 20px; /* Расстояние между ссылками */
    height: 40px;
}

.utility-link {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Расстояние между иконкой и текстом */
    font-size: 14px;
    color: #000;
    text-decoration: none;
    transition: opacity 0.2s ease;
    cursor: pointer;
}

/* Цвет текста при наведении */
.utility-link:hover {
    opacity: 0.7;
    text-decoration: none;
}

/* Небольшая корректировка выравнивания текста относительно иконок */
.utility-link span {
    line-height: 1;
    padding-top: 2px;
}
a:hover{
	color: #b36900 !important;
	text-decoration: none !important;
}

@media print {
    /* 1. Прячем всё содержимое страницы */
    body * {
        visibility: hidden !important;
    }

    /* 2. Показываем только блок карточки товара и всё, что внутри него */
    .item-card, .item-card * {
        visibility: visible !important;
    }

    /* 3. Перемещаем карточку в самый верх страницы для печати, чтобы не было пустых листов */
    .item-card {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /* 4. Прячем лишние элементы внутри самой карточки, которые не нужны на бумаге */
    .action-buttons, /* Кнопки В корзину и КП */
    .product-utility-actions, /* Ссылки Печать и Поделиться */
    .delivery-calc-link, /* Калькулятор */
    .top-actions /* Избранное и Сравнение */ {
        display: none !important;
    }
}

/* Основной контейнер блока */
.sku-execution-block {
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 24px;
}

/* Заголовок над карточками */
.sku-title {
    font-size: 14px;
    color: #111;
    margin-bottom: 12px;
}

/* Контейнер для списка карточек */
.sku-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px; /* Расстояние между карточками */
}

/* Сама карточка выбора */
.sku-option {
    position: relative;
    width: 120px;
    height: 100px;
    background-color: #f8f9fa; /* Очень светло-серый фон как на скриншоте */
    border: 1px solid #d5dbe0; /* Светлая тонкая рамка по умолчанию */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end; /* Текст прижат к низу */
    padding-bottom: 10px;
    cursor: pointer;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

/* Эффект при наведении на неактивную карточку (опционально) */
.sku-option:hover:not(.active) {
    border-color: #aebacd;
}

/* Активная (выбранная) карточка */
.sku-option.active {
    border: 2px solid #ff9601; /* Темно-синяя толстая рамка */
	background-color: transparent !important;
}

/* Жирный шрифт у активной карточки */
.sku-option.active .sku-name {
    font-weight: 700;
}

/* Обертка для картинки, чтобы она была по центру оставшегося пространства */
.sku-img-wrap {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 5px 5px 5px; /* Зазор сверху, чтобы зеленая плашка не перекрывала картинку */
}

/* Настройки самой картинки */
.sku-img-wrap img,
.sku-img-wrap svg {
    max-width: 90%;
    max-height: 50px;
    object-fit: contain;
}

/* Название под картинкой */
.sku-name {
    font-size: 13px;
    color: #222;
    text-align: center;
    width: 100%;
}

/* Зеленый стикер (модульное решение) */
.sku-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #008500; /* Насыщенный зеленый цвет */
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    padding: 4px 0;
    z-index: 2; /* Чтобы всегда был поверх фона карточки */
}


/* Общий фон секции */
.our-deliveries-section {
   /*overflow: hidden;  Чтобы стрелка не создавала горизонтальную прокрутку */
}

/* Заголовок секции */
.our-deliveries-section .section-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Обертка для позиционирования стрелки */
.deliveries-slider-wrap {
    position: relative;
}

/* Сетка карточек (теперь работает как бесконечная лента) */
.deliveries-grid {
    display: grid;
    grid-auto-flow: column;
    /* МЕНЯЕМ ЭТУ СТРОКУ: 20% - это 1/5 экрана, минус компенсация отступов */
    grid-auto-columns: calc(20% - 16px); 
    gap: 20px;
    
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}
/* Прячем скроллбар в Chrome/Safari */
.deliveries-grid::-webkit-scrollbar {
    display: none;
}

/* Сама карточка */
.delivery-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border: 1px solid #eaedf0;
}

.delivery-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

/* Изображение в карточке */
.delivery-img {
    width: 100%;
    height: 220px; /* Фиксированная высота картинки для ровности */
    background-color: #e9ecef;
}

.delivery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Обрезает картинку по центру, заполняя блок */
}

/* Контентная часть карточки */
.delivery-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Синий заголовок */
.delivery-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

/* Описание */
.delivery-text {
    font-size: 13px;
    color: #4a5568;
    margin: 0;
    line-height: 1.5;
}

/* Кнопка "След. слайд" поверх карточек */
.slider-arrow {
    position: absolute;
    right: -25px; /* Выступает за край */
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 1px solid #e1e8ee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 10;
    transition: background 0.2s;
}

.slider-arrow:hover {
    background: #f8f9fa;
}

/* Блок с кнопкой внизу */
.deliveries-action {
    text-align: center;
    margin-top: 40px;
}

.btn-red-action {
    display: inline-block;
    background-color: #ff1c36;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-red-action:hover {
    text-decoration: none;
	color: #ffffff !important;
}

/* Адаптивность для слайдера */
@media (max-width: 1199px) {
    .deliveries-grid {
        grid-auto-columns: calc(33.333% - 14px); /* На планшетах 3 карточки */
    }
}

@media (max-width: 991px) {
    .deliveries-grid {
        grid-auto-columns: calc(50% - 10px); /* На маленьких планшетах 2 карточки */
    }
    .slider-arrow {
        display: none; /* На тач-устройствах скрываем стрелку, там листают пальцем */
    }
}

@media (max-width: 575px) {
    .deliveries-grid {
        grid-auto-columns: 85%; /* На мобилках 1 карточка и виден край следующей */
        gap: 15px;
    }
}

/* Контейнер текста */
.item-description-collapse {
    position: relative;
    overflow: hidden;
    transition: height 0.4s ease; /* Плавная анимация разворачивания */
}

/* Градиентное белое затемнение внизу */
.item-description-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px; /* Высота градиента */
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    pointer-events: none; /* Чтобы текст под градиентом можно было выделять */
    transition: opacity 0.4s ease;
    z-index: 2;
}

/* Прячем градиент, когда текст развернут */
.item-description-collapse.expanded .item-description-gradient {
    opacity: 0;
}

/* Обертка кнопки */
.show-more-btn-wrap {
    margin-top: 10px;
    text-align: left; /* Можно поменять на center */
}

/* Дизайн самой кнопки "Далее" */
.btn-show-more-desc {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-show-more-desc span {
    border-bottom: 1px dashed;
    transition: border-color 0.2s;
}

.btn-show-more-desc:hover {
    color: #ff1c36;
    text-decoration: none;
}

.btn-show-more-desc:hover span {
    border-bottom-color: transparent;
}

/* Анимация переворота стрелочки */
.btn-show-more-desc svg {
    transition: transform 0.3s ease;
}

.btn-show-more-desc.expanded svg {
    transform: rotate(180deg);
}

/* Общий контейнер секции */
.service-and-form-section {
    font-family: 'Open Sans', Arial, sans-serif;
    margin: 40px 0;
}

/* Текст сверху */
.service-intro-text {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 800px; /* Ограничиваем ширину текста для комфортного чтения */
}

/* Зеленый баннер гарантии */
.warranty-full-banner {
    background-color: #e8f5e9; /* Светло-зеленый фон */
    border-radius: 8px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}
.warranty-full-banner span {
    color: #2e7d32;
    font-weight: 600;
    font-size: 16px;
}

/* СЕТКА (5 элементов в ряд) */
.benefits-and-form-grid {
    display: grid;
    /* Разделяем на 5 равных колонок */
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    align-items: stretch; /* Чтобы карточки и форма были одинаковой высоты */
}

/* Белые карточки преимуществ */
.benefit-card {
    background: #ffffff;
    border: 1px solid #eaedf0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}
.benefit-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.benefit-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.benefit-title {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    margin: 0;
    line-height: 1.3;
}

.benefit-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-desc {
    font-size: 12px;
    color: #596673;
    line-height: 1.4;
    margin: 0 0 20px 0;
}

.benefit-link {
    margin-top: auto; /* Прижимает ссылку к низу карточки */
    font-size: 13px;
    color: #007bb5;
    text-decoration: none;
    font-weight: 600;
}
.benefit-link:hover {
    text-decoration: underline;
}

/* Синий блок с формой (5-я колонка) */
.consumables-form-block {
	border: 1px solid #ff9601;
    border-radius: 8px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
}

.consumables-form-block .form-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.2;
    text-align: center;
}

.consumables-form-block .form-subtitle {
    font-size: 12px;
    margin: 0 0 10px 0;
    text-align: center;
    opacity: 0.9;
}

.consumables-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
}

.form-group label {
    display: block;
    font-size: 11px;
    margin-bottom: 4px;
    color: #e0f2fe;
}
.form-group label .checkbox-text {
    font-size: 11px;
}

.form-group input[type="text"] {
    width: 100%;
    padding: 10px 12px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

/* Кастомный чекбокс */
.checkbox-group {
    margin-top: 5px;
}
.checkbox-group button{
    justify-content: center;
}
.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 10px;
    line-height: 1.3;
    color: #e0f2fe;
}
.custom-checkbox input {
    display: none;
}
.checkmark {
    width: 14px;
    height: 14px;
    border: 1px solid #4ade80;
    border-radius: 50%; /* Круглый чекбокс как на макете */
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}
.custom-checkbox input:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 2px;
    width: 3px;
    height: 7px;
    border: solid #4ade80;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.custom-checkbox a {
    text-decoration: underline;
}

/* Красная кнопка */
.btn-submit-red {
    background-color: #ff1c36;
    color: #ffffff;
    border: none;
    padding: 12px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
    margin-top: 5px;
}
.btn-submit-red:hover {
    background-color: #e61931;
}

/* Адаптивность (Responsive) */
/* Если экран меньше 1400px, 5 колонок могут быть слишком узкими */
@media (max-width: 1399px) {
    .benefits-and-form-grid {
        grid-template-columns: repeat(3, 1fr); /* Форма уедет на второй ряд */
    }
    .consumables-form-block {
        /* Делаем так, чтобы форма красиво занимала оставшееся место во втором ряду */
        grid-column: span 1; 
    }
}

@media (max-width: 991px) {
    .benefits-and-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .consumables-form-block {
        grid-column: span 2; /* Форма растянется на всю ширину */
    }
}

@media (max-width: 575px) {
    .benefits-and-form-grid {
        grid-template-columns: 1fr;
    }
    .consumables-form-block {
        grid-column: span 1;
    }
    .warranty-full-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* Основной контейнер блока */
.tech-features-section {
    margin: 40px 0;
    font-family: 'Open Sans', Arial, sans-serif;
}

/* Заголовок */
.tech-features-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
    line-height: 1.3;
}

/* Сетка (2 колонки) */
.tech-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px; /* 30px между строками, 40px между колонками */
}

/* Карточка отдельного преимущества */
.tech-feature-item {
    display: flex;
    align-items: center; /* Центрируем текст по вертикали относительно картинки */
    gap: 20px;
}

/* Контейнер для картинки (квадратный, со скруглениями) */
.tech-feature-img {
    flex: 0 0 160px; /* Жестко фиксируем ширину в 160px */
    height: 160px;   /* Жестко фиксируем высоту в 160px */
    border-radius: 8px; /* Скругление углов как на макете */
    overflow: hidden;
    background-color: #f4f6f8; /* Легкий фон на случай загрузки */
}

/* Сама картинка */
.tech-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Идеально заполняет квадрат без сплющивания */
    display: block;
}

/* Текст преимущества */
.tech-feature-text {
    font-size: 13px;
    line-height: 1.5;
    color: #333;
}

/* Адаптивность для планшетов и мобильных устройств */
@media (max-width: 991px) {
    .tech-features-grid {
        grid-template-columns: 1fr; /* Перестраиваем в 1 колонку */
        gap: 25px;
    }
}

@media (max-width: 575px) {
    .tech-feature-item {
        flex-direction: column; /* На телефонах ставим картинку над текстом */
        align-items: flex-start;
        gap: 15px;
    }
    .tech-feature-img {
        flex: 0 0 auto;
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1; /* Сохраняем квадратную форму */
        max-width: 250px; /* Но не даем стать слишком огромной */
    }
}
/* End */
/* /local/templates/prime_s3/components/bitrix/catalog.element/main/style.css?178279534225783 */
