.bep-specifications {
    margin-top: 24px;
}

.bep-specifications h2 {
    margin-bottom: 18px;
    color: var(--bep-primary-dark);
    font-size: 24px;
    font-weight: 700;
}

.bep-spec-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--bep-border);
    border-radius: var(--bep-radius);
    background: var(--bep-white);
}

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

.bep-spec-table th,
.bep-spec-table td {
    padding: 14px 18px;
    border: 0;
    border-bottom: 1px solid #e8edf3;
    vertical-align: top;
    text-align: left;
}

.bep-spec-table tr:last-child th,
.bep-spec-table tr:last-child td {
    border-bottom: 0;
}

.bep-spec-table th {
    width: 34%;
    color: #334155;
    background: var(--bep-soft);
    font-weight: 600;
}

.bep-spec-table td {
    color: var(--bep-text);
    background: var(--bep-white);
}

.bep-spec-note {
    display: block;
    margin-top: 4px;
    color: var(--bep-muted);
    font-size: 13px;
    font-style: italic;
}

.bep-product-cta {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    padding: 16px;
    border: 1px solid var(--bep-border);
    border-radius: var(--bep-radius);
    background: linear-gradient(135deg, #f5f9ff, #ffffff);
}

.bep-product-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 549px) {
    .bep-spec-table th,
    .bep-spec-table td {
        padding: 11px 12px;
        font-size: 14px;
    }

    .bep-spec-table th {
        width: 42%;
    }

    .bep-product-cta__actions .bep-button {
        width: 100%;
    }
}
