.teu-vm-form-wrap {
    margin-bottom: 34px;
}

.teu-vm-svc-lab {
    margin-top: 21px;
}

.teu-vm-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 21px;
}

.teu-vm-check {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-size: 14px;
    color: #1E293B;
    margin: 0;
    min-height: 34px;
    cursor: pointer;
}

.teu-vm-check input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.teu-vm-check span {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    background: #fff;
    transition: all 0.15s ease;
    user-select: none;
}

.teu-vm-check span:hover {
    border-color: #DC2626;
    color: #DC2626;
}

.teu-vm-check input:checked + span {
    background: #DC2626;
    border-color: #DC2626;
    color: #fff;
}

/* ═══════════════════════════════════════════
   CMD-VM-REDESIGN — Grid + Card + Compare
   ═══════════════════════════════════════════ */

.teu-vm-results {
    margin-bottom: 21px;
}

.teu-vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 21px;
    margin-top: 21px;
}

.teu-vm-card {
    position: relative;
    min-height: 0;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.teu-vm-card:hover {
    border-color: #FECACA;
}

.teu-vm-card.teu-vm-selected {
    border-color: #DC2626;
    box-shadow: 0 0 0 1px #DC2626;
}

.teu-vm-sel-box {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #CBD5E1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: transparent;
    transition: all 0.15s ease;
    z-index: 2;
    pointer-events: none;
}

.teu-vm-selected .teu-vm-sel-box {
    background: #DC2626;
    border-color: #DC2626;
    color: #fff;
}

.teu-vm-recommended {
    display: inline-block;
    background: #FEF2F2;
    color: #DC2626;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid #FECACA;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.teu-vm-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 13px;
}

.teu-vm-venue {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 4px;
    color: #1E293B;
    padding-right: 30px;
}

.teu-vm-hall {
    font-size: 13px;
    color: #64748B;
    margin: 0;
}

.teu-vm-score {
    text-align: right;
    margin: 0;
    flex-shrink: 0;
}

.teu-vm-score-num {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    color: #1E293B;
}

.teu-vm-score-lab {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #94A3B8;
    margin-top: 4px;
}

.teu-vm-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 13px;
}

.teu-vm-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 34px;
    background: #F1F5F9;
    color: #475569;
}

.teu-vm-pill i {
    font-size: 11px;
    color: #94A3B8;
}

.teu-vm-bars {
    list-style: none;
    margin: 0 0 13px;
    padding: 0;
}

.teu-vm-bar-row {
    display: grid;
    grid-template-columns: 75px 1fr 42px;
    gap: 8px;
    align-items: center;
    margin: 0 0 8px;
}

.teu-vm-bar-lab {
    font-size: 11px;
    font-weight: 700;
    color: #1E293B;
}

.teu-vm-bar-track {
    display: block;
    height: 6px;
    background: #E2E8F0;
    border-radius: 6px;
    overflow: hidden;
}

.teu-vm-bar-fill {
    display: block;
    height: 6px;
    width: var(--teu-vm-pct, 0%);
    background: #DC2626;
    border-radius: 6px;
}

.teu-vm-bar-pct {
    font-size: 11px;
    font-weight: 700;
    text-align: right;
    color: #1E293B;
}

.teu-vm-reasons {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #64748B;
    font-size: 12px;
    line-height: 1.5;
}

.teu-vm-reasons li {
    margin: 0 0 4px;
    padding-left: 12px;
    position: relative;
}

.teu-vm-reasons li::before {
    content: '·';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #94A3B8;
}

.teu-vm-est {
    font-weight: 700;
}

/* ═══ Compare panel ═══ */

.teu-vm-compare {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 24px;
    margin-top: 34px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.teu-vm-compare-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 21px;
}

.teu-vm-compare-head h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1E293B;
    margin: 0;
}

.teu-vm-compare-head h3 i {
    margin-right: 8px;
    color: #DC2626;
}

.teu-vm-compare-count {
    font-size: 13px;
    font-weight: 600;
    color: #64748B;
    background: #F1F5F9;
    padding: 4px 13px;
    border-radius: 21px;
}

.teu-vm-compare-tbl {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-bottom: 21px;
}

.teu-vm-compare-tbl th,
.teu-vm-compare-tbl td {
    padding: 10px 13px;
    text-align: center;
    border-bottom: 1px solid #F1F5F9;
}

body.te-typo .teu-vm-compare-tbl thead th {
    font-size: 13px;
    font-weight: 700;
    color: #1E293B;
    background: #F8FAFC;
    text-transform: none;
    font-family: inherit;
    letter-spacing: normal;
}

.teu-vm-compare-tbl th:first-child,
.teu-vm-compare-tbl td:first-child {
    text-align: left;
    font-weight: 600;
    color: #64748B;
}

.teu-vm-compare-best {
    font-weight: 700;
    color: #DC2626;
    background: rgba(220, 38, 38, 0.06);
}

.teu-vm-compare-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 13px;
}

.teu-vm-compare-clear {
    background: none;
    border: 1px solid #CBD5E1;
    color: #64748B;
    padding: 8px 21px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

.teu-vm-compare-clear:hover {
    background: #F1F5F9;
    border-color: #94A3B8;
}

.teu-vm-compare-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #DC2626;
    color: #fff;
    padding: 10px 21px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s ease;
}

.teu-vm-compare-cta:hover {
    background: #b91c1c;
    color: #fff;
    text-decoration: none;
}

/* ═══ Responsive ═══ */

@media (max-width: 768px) {
    .teu-vm-grid {
        grid-template-columns: 1fr;
    }

    .teu-vm-compare-tbl-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .teu-vm-compare-tbl {
        min-width: 480px;
    }

    .teu-vm-compare-actions {
        flex-direction: column;
    }

    .teu-vm-compare-cta,
    .teu-vm-compare-clear {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .teu-vm-venue {
        font-size: 15px;
    }

    .teu-vm-score-num {
        font-size: 26px;
    }

    .teu-vm-bar-row {
        grid-template-columns: 65px 1fr 38px;
        gap: 6px;
    }

    .teu-vm-bar-lab {
        font-size: 10px;
    }

    .teu-vm-bar-pct {
        font-size: 10px;
    }

    .teu-vm-pill {
        font-size: 11px;
        padding: 2px 8px;
    }
}
