/* Basis tokens */
.mhpr-wrap {
    --radius: 14px;
    --shadow: 0 10px 30px rgba(0, 0, 0, .08);
    --acc: #0e5b47;
    --txt: #1f2937;
    --muted: #6b7280;
}

.mhpr-wrap[data-align="center"] {
    text-align: center;
}

/* Toggle */
.mhpr-toggle {
    display: inline-flex;
    gap: 6px;
    background: #eef2f7;
    padding: 6px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.mhpr-tgl-btn {
    border: 0;
    background: transparent;
    padding: 10px 14px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    color: #475569;
}

.mhpr-tgl-btn.is-active {
    background: #fff;
    color: var(--acc);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
}

.mhpr-tgl-btn:focus-visible {
    outline: 2px solid var(--acc);
    outline-offset: 2px;
}

/* Grid + Cards */
.mhpr-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.mhpr-card {
    position: relative;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}

.mhpr-card.is-highlight {
    border-color: var(--mh-accent, var(--acc));
}

.mhpr-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #E06B1C;
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
}

.mhpr-title {
    margin: 0 0 6px;
    font-size: 22px;
    color: #0f172a;
}

.mhpr-desc {
    margin: 0 0 4px;
    color: var(--muted);
}

/* Prijs & besparing */
.mhpr-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 6px 0 0;
    flex-wrap: wrap;
}

.mhpr-price-inner {
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

.mhpr-currency {
    font-weight: 700;
    font-size: 20px;
    color: #0f172a;
}

.mhpr-amount {
    font-weight: 800;
    font-size: 34px;
    letter-spacing: .5px;
    color: #0f172a;
}

.mhpr-per {
    color: var(--muted);
    font-size: 14px;
}

.mhpr-save {
    display: inline-block;
    margin: 2px 0 8px;
    font-size: 13px;
    color: #0b7a60;
}

/* Features + knop onderaan */
.mhpr-features {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: grid;
    gap: 8px;
}

.mhpr-ico {
    vertical-align: -3px;
    margin-right: 8px;
    color: var(--mh-accent, var(--acc));
}

.mhpr-btn {
    margin-top: auto;
    display: inline-block;
    text-decoration: none;
    background: var(--mh-accent, var(--acc));
    color: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 700;
    transition: filter .15s;
}

.mhpr-btn:hover {
    filter: brightness(1.05);
}

/* Compare table */
.mhpr-compare {
    --border: #e5e7eb;
    --head: #f8fafc;
}

.mhpr-table {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}

.mhpr-row {
    display: grid;
    grid-template-columns: 1.6fr repeat(var(--mh-cols, 2), 1fr);
    border-top: 1px solid var(--border);
}

.mhpr-row.is-head {
    background: var(--head);
    border-top: 0;
    font-weight: 700;
}

.mhpr-row.is-section .mhpr-cell {
    grid-column: 1/-1;
    padding: 12px 14px;
}

.mhpr-cell {
    padding: 12px 14px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.mhpr-cell.is-first {
    background: linear-gradient(90deg, #ffffff, #fafafa);
}

.mhpr-label {
    font-weight: 600;
}

.mhpr-subtext {
    font-size: 13px;
    font-weight: 400;
    color: #6b7280;
    margin-top: 2px;
}

.mhpr-note {
    margin-top: 10px;
    color: #6b7280;
    font-size: 14px;
}

.mhpr-dash {
    opacity: .5;
}

.mhpr-ico-check,
.mhpr-ico-cross {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

/* Responsive */
@media (max-width:640px) {
    .mhpr-row {
        grid-template-columns: 1.2fr repeat(var(--mh-cols, 2), 1fr);
    }
}