/* Motor detay (2 sütun) + kıyaslama detay (3+ sütun) — ortak özellik tablosu */

.motor-spec-table-wrap {
    width: 100%;
    max-width: 100%;
    margin: 1.5rem 0 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(15, 18, 27, 0.06), 0 1px 3px rgba(15, 18, 27, 0.04);
    border: 1px solid #e8ecf2;
    background: #fff;
}

@media (max-width: 576px) {
    .motor-spec-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 12px;
    }

    .motor-spec-table {
        min-width: min(100%, 320px);
    }

    .motor-spec-table.motor-spec-table--kiyas {
        min-width: 520px;
    }
}

.motor-spec-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
}

.motor-spec-table thead th {
    background: linear-gradient(135deg, #4F6CFF 0%, #5b7cff 50%, #6d8aff 100%);
    color: #fff;
    font-weight: 600;
    text-align: left;
    padding: 16px 20px;
    letter-spacing: 0.04em;
    font-size: 0.75rem;
    text-transform: uppercase;
    vertical-align: top;
}

.motor-spec-table thead th:first-child {
    width: 30%;
}

/* Kıyaslama: iki motor sütunu arasında ince ayırıcı */
.motor-spec-table.motor-spec-table--kiyas thead th:nth-child(2),
.motor-spec-table.motor-spec-table--kiyas tbody td:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.motor-spec-table.motor-spec-table--kiyas tbody td:nth-child(2) {
    border-right-color: #eceff3;
}

.motor-spec-table tbody tr {
    border-bottom: 1px solid #eceff5;
    transition: background-color 0.15s ease;
}

.motor-spec-table tbody tr:last-child {
    border-bottom: none;
}

.motor-spec-table tbody td {
    padding: 14px 20px;
    vertical-align: top;
    color: #2d3748;
}

.motor-spec-table tbody td:first-child {
    background: #f6f7f9;
    font-weight: 600;
    color: #4b5563;
    border-right: 1px solid #eceff3;
}

.motor-spec-table tbody tr:nth-child(even) td:first-child {
    background: #f0f2f5;
}

/* Özellik dışındaki tüm sütunlar (1 veya 2 motor) */
.motor-spec-table tbody tr:nth-child(odd) td:not(:first-child) {
    background: #fff;
    color: #111827;
}

.motor-spec-table tbody tr:nth-child(even) td:not(:first-child) {
    background: #fafbfc;
    color: #111827;
}

.motor-spec-table tbody tr:hover td:first-child {
    background: #eceff3;
}

.motor-spec-table tbody tr:hover td:not(:first-child) {
    background: #f3f4f6;
}

.motor-spec-table tbody td a {
    color: #4F6CFF;
    text-decoration: none;
    font-weight: 500;
}

.motor-spec-table tbody td a:hover {
    color: #374F9F;
    text-decoration: underline;
}

.motor-spec-table .ri-star-fill {
    color: #f59e0b;
}

.motor-spec-table .ri-star-line {
    color: #cbd5e1;
}
