/* =============================================================
   Product Specs Table – Stil Dosyası
   ============================================================= */

/* Yatay kaydırma için sarmalayıcı */
.pst-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 1.25rem 0;
}

/* Ana tablo */
.pst-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    font-family: inherit;
    line-height: 1.5;
}

/* Başlık satırı */
.pst-table thead tr {
    background-color: #2c2c2c;
    color: #ffffff !important;
}

.pst-table thead th {
    padding: 11px 16px;
    text-align: left;
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #ffffff;
    border: 1px solid #444444;
}

/* Çizgili satırlar (striped) */
.pst-table tbody tr:nth-child(odd) {
    background-color: #f6f6f6;
}

.pst-table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

/* Hover efekti */
.pst-table tbody tr:hover {
    background-color: #eef2f7;
    transition: background-color 0.15s ease;
}

/* Hücre genel */
.pst-table tbody td {
    padding: 9px 16px;
    vertical-align: middle;
    border: 1px solid #e2e2e2;
}

/* Etiket sütunu */
.pst-table td.pst-label {
    font-weight: 600;
    white-space: nowrap;
    width: 45%;
    color: #333333;
}

/* Değer sütunu */
.pst-table td.pst-value {
    color: #555555;
}

/* Mobil uyum */
@media ( max-width: 600px ) {
    .pst-table {
        font-size: 0.82rem;
    }

    .pst-table thead th,
    .pst-table tbody td {
        padding: 8px 12px;
    }

    .pst-table td.pst-label {
        width: 50%;
    }
}