/* ============================================================
   8. SPECYFIKACJA PRODUKTU
   ============================================================ */
.rev-spec-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--rev-gray-light);
}
.rev-spec-row:last-child {
    border-bottom: none;
}
.rev-spec-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Noto Sans", sans-serif;
    font-size: 18px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rev-gray);
}
.rev-spec-line {
    display: block;
    width: 20px;
    min-width: 20px;
    height: 2px;
    background: var(--rev-red);
    flex-shrink: 0;
}
.rev-spec-value {
    font-family: "Bahnschrift", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--rev-black);
    text-align: right;
}

