/* compare.css | v14 system */

.v14-compare-section {
    padding: 60px 0;
    background: #ffffff;
    overflow: hidden;
}

.v14-compare-header {
    text-align: center;
    margin-bottom: 48px;
}

.v14-compare-header h2,
.v14-compare-header h3 {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--v14-dark) !important;
    margin-bottom: 12px !important;
    text-align: left !important;
}

.v14-compare-header p {
    font-size: 16px !important;
    color: #666 !important;
    text-align: left !important;
    margin: 0 !important;
}

.v14-compare-wrap {
    border-radius: 20px;
    border: 1px solid #edeae4;
    overflow: hidden;
}

.v14-compare-table {
    width: 100%;
    border-collapse: collapse;
}

/* ШАПКА */
.v14-compare-table thead tr {
    background: #f8f9fa;
}

.v14-compare-table thead th {
    padding: 20px 28px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    color: var(--v14-dark);
    border-bottom: 1px solid #edeae4;
}

.v14-compare-table thead th:first-child {
    width: 35%;
    color: #999;
    font-weight: 400;
    text-align: left;
}

.v14-compare-table thead th:last-child {
    background: #f8f9fa;
}

.v14-th-price {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--v14-red);
    margin-top: 4px;
}

/* СТРОКИ */
.v14-compare-table tbody tr {
    border-bottom: 1px solid #f0ede8;
    transition: background 0.15s;
}

.v14-compare-table tbody tr:last-child {
    border-bottom: none;
}

.v14-compare-table tbody tr:hover {
    background: #fafaf9;
}

.v14-compare-table tbody td {
    padding: 18px 28px;
    font-size: 15px;
    color: var(--v14-dark);
    vertical-align: middle;
    text-align: center;
}

.v14-compare-table tbody td:first-child {
    color: #555;
    font-weight: 400;
    text-align: left;
}

.v14-compare-table tbody td:last-child {
    background: #f8f9fa;
    font-weight: 500;
}

/* ИКОНКИ */
.v14-yes {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--v14-dark);
}

.v14-yes::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5 6.5-7' stroke='%2316a34a' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px no-repeat;
}

.v14-no {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #999;
}

/* АДАПТИВ */
@media (max-width: 768px) {
    .v14-compare-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 12px;
    }

    .v14-compare-table {
        min-width: 580px;
    }

    .v14-compare-table thead th,
    .v14-compare-table tbody td {
        padding: 12px 14px;
        font-size: 13px;
    }

    .v14-compare-header h2,
    .v14-compare-header h3 { font-size: 22px !important; }
}
