/* Стили для таблицы спецификаций */
.specs-section {
    padding: 2rem 0;
    margin: 0 auto;
    max-width: 1200px;
    font-family: system-ui, -apple-system, sans-serif;
}

.specs-section .container {
    padding: 0 1.5rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.spec-row {
    border-bottom: 1px solid #eaeaea;
    transition: background-color 0.2s ease;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row:hover {
    background-color: #f9f9f9;
}

.spec-name {
    padding: 0.8rem 1rem 0.8rem 0;
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
    width: 35%;
    vertical-align: top;
    white-space: nowrap;
}

.spec-values {
    padding: 0.8rem 0;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

/* Стили для значений с переносами строк */
.spec-values br {
    display: block;
    content: "";
    margin: 0.3rem 0;
}

/* Адаптация для планшетов */
@media (max-width: 992px) {
    .spec-name {
        width: 40%;
        font-size: 0.85rem;
    }
    
    .spec-values {
        font-size: 0.9rem;
    }
}

/* Адаптация для мобильных (вертикальный стек) */
@media (max-width: 768px) {
    .specs-section .container {
        padding: 0 1rem;
    }
    
    .specs-table {
        display: block;
    }
    
    .spec-row {
        display: block;
        padding: 0.8rem 0;
        border-bottom: 1px solid #eee;
    }
    
    .spec-name,
    .spec-values {
        display: block;
        width: 100%;
        padding: 0.3rem 0;
    }
    
    .spec-name {
        font-weight: 600;
        color: #444;
        font-size: 0.85rem;
        white-space: normal;
    }
    
    .spec-values {
        font-size: 0.9rem;
        padding-bottom: 0.5rem;
    }
}

/* Для очень широких экранов */
@media (min-width: 1400px) {
    .specs-table {
        width: 90%;
        margin: 0 auto;
    }
    
    .spec-name {
        width: 30%;
    }
}

/* Дополнительные стили для специфичных случаев */
.spec-values ul {
    margin: 0;
    padding-left: 1.2rem;
}

.spec-values li {
    margin-bottom: 0.3rem;
}