/* Switch Dewi Online — multi-step wizard.
   Minimal styling: step show/hide + selected-card cue.
   Card design itself stays Elementor-controlled. */

.sdo-wizard-step { display: none; }
.sdo-wizard-step--active { display: block; }

.sdo-card { transition: transform 120ms ease, box-shadow 120ms ease; }
.sdo-card:hover { transform: translateY(-2px); }

.sdo-card--selected {
    outline: 3px solid #d69a39;
    outline-offset: 2px;
    border-radius: 6px;
}

.sdo-card--unavailable { opacity: 0.45; pointer-events: none; }

[data-sdo-summary]:empty::before {
    content: "—";
    color: #aaa;
}
