.spec-table {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-light-gray);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.4rem;
    background: var(--color-white);
}

.spec-row:nth-child(even) { background: var(--color-bg); }

.spec-label { font-weight: 700; color: var(--color-primary); }
.spec-value { color: #3E4A44; }

@media (max-width: 560px) {
    .spec-row { flex-direction: column; gap: 0.3rem; }
}
