/* ===== GLOBAL ===== */
.spec-header {
    margin-bottom: 5px;
}

.spec-header h1 {
    font-size: 25px;
    font-weight: 700;
    margin: 0;
    color: #111;
}

.spec-header p {
    font-size: 15px;
    color: #000;
    margin-top: 4px;
}

/* ===== BOX ===== */
.spec-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

/* HEADER */
.spec-box-header {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #eee;
}

.spec-box-header h2 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.spec-box-header span {
    font-size: 12px;
    color: #888;
}

/* TABLE */
.spec-table-wrap {
    overflow-x: auto;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table tr {
    border-bottom: 1px solid #f1f1f1;
}

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

.spec-table td {
    padding: 11px 14px;
    font-size: 13px;
}

/* LABEL */
.label {
    width: 18%;
    font-weight: 800;
    color: #000000;
}

/* VALUE */
.value {
    font-weight: 500;
    color: #555555;
}

.unit {
    font-size: 12px;
    color: #999;
    margin-left: 4px;
}

/* HOVER */
.spec-table tr:hover {
    background: #fafafa;
}

/* ===== SIDEBAR ===== */
.spec-sidebar {
    position: sticky;
    top: 90px;
}

.spec-card {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    background: #fff;
}

.spec-card h3 {
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 700;
}

/* QUICK ROW */
.quick-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f4f4f4;
    font-size: 13px;
}

.quick-row:last-child {
    border-bottom: none;
}

.quick-row strong {
    color: #111;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    .spec-header h1 {
        font-size: 20px;
    }

    .spec-box-header {
        flex-direction: column;
        gap: 4px;
    }

    .label {
        width: 40%;
    }

    .spec-table td {
        padding: 9px 10px;
    }
}