/* =====================================================
   SECTION — TECHNICAL SPECIFICATIONS (WHITE THEME) (.af-spec-*)
   Uses existing light tokens from the shared PPF stylesheet:
   --c-white, --c-off, --c-ink, --c-muted, --c-line-l, --c-red, --c-red-dk
===================================================== */

.af-spec-section {
    background: var(--c-white);
    padding: 60px 0;
    border-top: 1px solid var(--c-line-l);
    border-bottom: 1px solid var(--c-line-l);
}

.af-spec-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.af-spec-head h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--c-ink);
    margin: .5rem 0 .6rem;
}

.af-spec-head p {
    font-size: 15px;
    color: var(--c-muted);
    line-height: 1.6;
    margin: 0;
    max-width: 60ch;
}

.af-eyebrow--light {
    color: var(--c-red);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.af-eyebrow--light::before {
    content: "";
    width: 20px;
    height: 2px;
    background: var(--c-red);
    display: inline-block;
}

/* Warranty chip (top right) */
.warr-chip {
    display: inline-flex;
    align-items: center;
    background: var(--c-red);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: .55rem 1.1rem;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Table wrapper (allows horizontal scroll on small screens) */
.af-spec-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--c-line-l);
    border-radius: 8px;
}

.af-spec-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    background: var(--c-white);
}

.af-spec-table thead th {
    background: var(--c-off);
    color: var(--c-red);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    text-align: left;
    padding: .9rem 1.2rem;
    border-bottom: 1px solid var(--c-line-l);
    white-space: nowrap;
}

.af-spec-table thead th:not(:first-child) {
    text-align: right;
}

.af-spec-table tbody td {
    padding: .8rem 1.2rem;
    font-size: 15px;
    color: var(--c-ink);
    border-bottom: 1px solid var(--c-line-l);
    white-space: nowrap;
}

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

.af-spec-table tbody td:first-child {
    color: var(--c-muted);
    font-weight: 500;
    text-align: left;
}

.af-spec-table tbody td:not(:first-child) {
    color: var(--c-red);
    font-weight: 700;
    text-align: right;
}

.af-spec-table tbody tr:hover {
    background: rgba(217, 28, 28, .04);
}

/* Highlight strip (4 callouts under the table) */
.af-spec-highlight {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.af-spec-highlight div {
    background: var(--c-off);
    border: 1px solid var(--c-line-l);
    border-radius: 6px;
    padding: 1.2rem 1.3rem;
}

.af-spec-highlight strong {
    display: block;
    color: var(--c-red);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: .4rem;
}

.af-spec-highlight span {
    display: block;
    color: var(--c-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .af-spec-highlight {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .af-spec-section {
        padding: 2.5rem 0;
    }

    .af-spec-head h2 {
        font-size: 22px;
    }

    .af-spec-table thead th,
    .af-spec-table tbody td {
        padding: .65rem .9rem;
        font-size: 14px;
    }

    .af-spec-highlight {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
.table-section-window{
  background-color: #f9f9f9;
}