/* Progress bar (sottile, nascondibile via CSS) */
.cf7-progress {width:100%;height:4px;background:#e9ecef;border-radius:2px;margin-bottom:8px;overflow:hidden;}
.cf7-progress-bar {height:100%;width:0%;background:#20c997;transition:width .25s ease-in-out;}

/* Stepper circolare con label */
.cf7-stepper-status {text-align:center;font-weight:600;margin:8px 0 6px;}
.cf7-stepper {display:flex;justify-content:space-between;gap:18px;align-items:flex-start;margin:10px 0 20px;}
.cf7-step {flex:1;display:flex;flex-direction:column;align-items:center;gap:6px;opacity:.7;}
.cf7-step-circle {width:40px;height:40px;border-radius:999px;background:#edf1f3;color:#6c757d;display:flex;align-items:center;justify-content:center;font-weight:700;}
.cf7-step-label {font-size:14px;color:#6c757d;text-align:center;line-height:1.2;min-height:18px;}
.cf7-step.cf7-active {opacity:1;}
.cf7-step.cf7-active .cf7-step-circle {background:#20c997;color:#fff;}
.cf7-step.cf7-active .cf7-step-label {color:#212529;}

/* Pulsanti navigazione */
.cf7-nav {margin-top:16px;display:flex;gap:10px;flex-wrap:wrap;}
.cf7-prev,.cf7-next {padding:10px 16px;border:none;background:#20c997;color:#fff;border-radius:6px;cursor:pointer;}
.cf7-prev {background:#6c757d;}

/* Invalid required */
.cf7-ms-invalid {outline:2px solid #c0392b;outline-offset:2px;}

/* Select/Card con immagini */
.cf7-image-select-wrapper, .cf7-card-select-wrapper {display:flex;flex-wrap:wrap;gap:16px;margin:10px 0;}
.cf7-image-option, .cf7-card-option {border:2px solid #e9ecef;border-radius:12px;padding:12px;cursor:pointer;text-align:center;transition:border .2s,box-shadow .2s;min-width:180px;max-width:260px;background:#fff;}
.cf7-image-option img, .cf7-card-option img {max-width:100%;height:auto;display:block;margin:0 auto 10px;border-radius:8px;}
.cf7-card-label {font-weight:600;}
.cf7-image-option.selected, .cf7-card-option.selected {border-color:#20c997;box-shadow:0 0 0 4px rgba(32,201,151,.15);}
