﻿/* Цвет copyright в footer */
.mod-footer .footer1 {
    color: #ffffff;
}

/* Основная таблица характеристик */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.5;
}

/* Чередование цвета строк (зебра) */
.specs-table tr:nth-child(even) {
    background: #f8f9fa;
}

/* Общие настройки ячеек */
.specs-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e5e5e5;
    vertical-align: top;
}

/* Первый столбец (названия характеристик) */
.specs-table td:first-child {
    width: 35%;
    font-weight: 600;
    color: #333;
}

/* Второй столбец (значения характеристик) */
.specs-table td:last-child {
    color: #555;
}

/* ----------------------------------------
   ТАБЛИЦЫ ДЛЯ ДОКУМЕНТОВ С ГАЛОЧКАМИ
   ---------------------------------------- */

/* Широкая первая колонка */
.specs-table-wide {
    table-layout: fixed;
}

.specs-table-wide td:first-child {
    width: 70%;
}

.specs-table-wide td:last-child {
    width: 30%;
    text-align: left;
    padding-left: 20px;
}

/* Красные подзаголовки разделов */
.specs-section {
    margin: 30px 0 15px;
    color: #9f1d2a;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

/* Зеленые галочки */
.check {
    color: #1fa34a;
    font-size: 18px;
    font-weight: 700;
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {

    .specs-table td {
        display: block;
        width: 100% !important;
        box-sizing: border-box;
    }

    .specs-table td:first-child {
        padding-bottom: 5px;
        border-bottom: none;
    }

    .specs-table td:last-child {
        padding-top: 0;
        padding-left: 15px;
        text-align: left;
    }

    .specs-table tr {
        display: block;
        margin-bottom: 12px;
        border: 1px solid #e5e5e5;
        border-radius: 6px;
        overflow: hidden;
    }

    .specs-section {
        font-size: 18px;
    }
}

/* Уточните цену */
body .sppb-btn,body .btn {
    text-transform: none;
}

/* ==========================================
   ЭФФЕКТ БЛИКА НА КНОПКЕ
   ========================================== */

.blick-button{
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Сам блик */
.blick-button::before{
    content: "";
    position: absolute;
    top: -30%;
    left: -80px;

    width: 60px;
    height: 160%;

    background: linear-gradient(
        to right,
        rgba(255,255,255,0),
        rgba(255,255,255,.75),
        rgba(255,255,255,0)
    );

    transform: skewX(-25deg);
    pointer-events: none;

    animation: shine 3s ease-in-out infinite;
}

/* Анимация */
@keyframes shine{

    0%{
        left: -80px;
    }

    30%{
        left: 130%;
    }

    100%{
        left: 130%;
    }

}
