  #tswRegRoot input[type="text"],
  #tswRegRoot input[type="email"],
  #tswRegRoot input[type="tel"],
  #tswRegRoot textarea {
    width: 100%;
    padding: 13px 14px;
    border: 2px solid var(--tsw-border);
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    background: #fff;
  }


  #tswRegRoot .tsw-timezone-wrapper select {
    width: 100% !important;
    padding-right: 36px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }

  #tswRegRoot select {
    padding: 13px 14px;
    border: 2px solid var(--tsw-border);
    border-radius: 12px;
    font-size: 16px;
    line-height: 1.6 !important;
    min-height: 52px;
    outline: none;
    background: #fff;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: normal !important;
  }

  #tswRegRoot textarea { min-height: 90px; resize: vertical; }

  #tswRegRoot input:focus, #tswRegRoot select:focus, #tswRegRoot textarea:focus {
    border-color: rgba(102,126,234,0.9);
    box-shadow: 0 0 0 3px rgba(102,126,234,0.16);
  }

  #tswRegRoot .tsw-btn {
    border: 0;
    border-radius: 14px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 120ms ease;
  }

  #tswRegRoot .tsw-btn.primary {
    background: var(--tsw-accent);
    color: #1f2937;
  }

  #tswRegRoot .tsw-btn.secondary {
    background: #f1f5f9;
    color: #0f172a;
  }

  #tswRegRoot .tsw-btn[disabled] {
    opacity: 0.55;
    cursor: not-allowed;
  }

  #tswRegRoot .tsw-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 12px;
  }

  #tswRegRoot .tsw-card {
    border: 2px solid var(--tsw-border);
    border-radius: 16px;
    padding: 14px 14px 30px;
    cursor: pointer;
    background: #fff;
    transition: all 150ms ease;
    min-height: 140px;
  }

  #tswRegRoot .tsw-card:hover {
    transform: translateY(-1px);
    border-color: rgba(102,126,234,0.55);
    box-shadow: 0 10px 18px rgba(0,0,0,0.08);
  }

  #tswRegRoot .tsw-card.selected {
    border-color: rgba(248,152,56,0.95);
    background: rgba(248,152,56,0.08);
    box-shadow: 0 12px 22px rgba(248,152,56,0.18);
    transform: translateY(-2px);
  }

  #tswRegRoot .tsw-card .title {
    font-weight: 800;
    margin: 0 0 6px 0;
    color: var(--tsw-text);
    font-size: 16px;
  }

  #tswRegRoot .tsw-card .desc {
    margin: 0;
    color: var(--tsw-muted);
    font-size: 13px;
    line-height: 1.35;
    min-height: 44px;
  }

  #tswRegRoot .tsw-num-tile.selected {
    border-color: rgba(248,152,56,0.95);
    background: rgba(248,152,56,0.25);
    color: #c2630e;
    box-shadow: 0 6px 14px rgba(248,152,56,0.32);
    transform: scale(1.05);
  }

  #tswRegRoot .tsw-date.selected {
    border-color: rgba(248,152,56,0.95);
    background: rgba(248,152,56,0.08);
    box-shadow: 0 10px 18px rgba(248,152,56,0.15);
    transform: translateY(-2px);
  }

  #tswRegRoot .tsw-calendar-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 16px 0;
    font-size: 13px;
    font-weight: 700;
  }

  #tswRegRoot .tsw-calendar-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  #tswRegRoot .tsw-calendar-legend-box {
    width: 20px;
    height: 20px;
    border-radius: 4px;
  }

  #tswRegRoot .tsw-calendar-legend-box.prep {
    background: rgba(102,126,234,0.35);
  }

  #tswRegRoot .tsw-calendar-legend-box.challenge {
    background: rgba(248,152,56,0.45);
  }

  #tswRegRoot .tsw-calendar-legend-box.start {
    background: var(--tsw-good);
  }

  #tswRegRoot .tsw-calendar-legend-box.end {
    background: var(--tsw-bad);
  }

  #tswRegRoot .tsw-calendar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin: 20px 0;
  }

  #tswRegRoot .tsw-calendar {
    border: 1px solid var(--tsw-border);
    border-radius: 12px;
    padding: 10px;
    background: #fafbfc;
  }

  #tswRegRoot .tsw-calendar-header {
    text-align: center;
    font-weight: 900;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--tsw-text);
  }

  #tswRegRoot .tsw-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
  }

  #tswRegRoot .tsw-calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    border-radius: 4px;
    font-weight: 600;
  }

  #tswRegRoot .tsw-calendar-day.header {
    font-weight: 900;
    color: var(--tsw-muted);
    font-size: 10px;
  }

  #tswRegRoot .tsw-calendar-day.empty {
    background: transparent;
  }

  #tswRegRoot .tsw-calendar-day.regular {
    background: #fff;
    color: var(--tsw-text);
  }

  #tswRegRoot .tsw-calendar-day.prep {
    background: rgba(102,126,234,0.35);
    color: var(--tsw-bg1);
    font-weight: 900;
  }

  #tswRegRoot .tsw-calendar-day.challenge {
    background: rgba(248,152,56,0.45);
    color: #c2630e;
    font-weight: 900;
  }

  #tswRegRoot .tsw-calendar-day.start {
    background: var(--tsw-good);
    color: #fff;
    font-weight: 900;
  }

  #tswRegRoot .tsw-calendar-day.end {
    background: var(--tsw-bad);
    color: #fff;
    font-weight: 900;
  }

  #tswRegRoot .tsw-coach-card {
    background: var(--tsw-coach-bg);
    color: #fff;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    max-width: 340px;
    width: 100%;
  }

  /* VIP coach card - square layout */
  #tswRegRoot .tsw-coach-card-vip {
    max-width: 400px;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 24px;
  }

  #tswRegRoot .tsw-coach-card-vip .tsw-coach-photo-wrap {
    /* ✅ Force a true circle (avoid oval on browsers without consistent aspect-ratio behavior) */
    width: 160px;
    height: 160px;
    margin: 0 auto 16px auto;
    border-radius: 50%;
  }

  #tswRegRoot .tsw-coach-card-vip .tsw-coach-name {
    font-size: 24px;
    margin-bottom: 8px;
  }

  #tswRegRoot .tsw-coach-bio-vip {
    margin-top: auto;
    /* ✅ Improve readability for VIP: light background behind the copy */
    padding: 14px 14px;
    border-top: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.88);
    color: #0f172a;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
    border-radius: 14px;
  }

  #tswRegRoot .tsw-coach-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.22);
  }

  #tswRegRoot .tsw-calltime-option.selected {
    background: #667eea;
    color: #fff;
    /* don't bold everything; only selected local-time is bold (see wizard-core.css) */
  }

  #tswRegRoot input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--tsw-border) 0%, var(--tsw-bg1) 100%);
    border-radius: 999px;
    outline: none;
  }

  #tswRegRoot input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: #fff;
    border: 2px solid var(--tsw-bg1);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }

  #tswRegRoot input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: #fff;
    border: 2px solid var(--tsw-bg1);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }

  /* Group Confirmation Card */
  #tswRegRoot .tsw-group-card {
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    margin: 20px 0;
  }

  #tswRegRoot .tsw-group-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
  }

  #tswRegRoot .tsw-group-section:last-child {
    border-bottom: none;
  }

  #tswRegRoot .tsw-group-section h3 {
    margin-top: 0;
    font-size: 18px;
    color: #333;
  }

  #tswRegRoot .tsw-group-section ul {
    list-style: none;
    padding: 0;
  }

  #tswRegRoot .tsw-group-section li {
    padding: 4px 0;
  }

  #tswRegRoot .tsw-btn-primary {
    background: var(--tsw-accent);
    color: #1f2937;
    border: 0;
    border-radius: 14px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 120ms ease;
    display: block;
    width: 100%;
    margin-top: 20px;
  }

  #tswRegRoot .tsw-btn-primary:hover {
    opacity: 0.9;
  }

  /* Checkbox groups for VIP availability */
  #tswRegRoot .tsw-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
  }

  #tswRegRoot .tsw-checkbox {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border: 2px solid var(--tsw-border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 120ms ease;
    background: #fff;
  }

  #tswRegRoot .tsw-checkbox:hover {
    border-color: rgba(102,126,234,0.5);
    background: rgba(102,126,234,0.02);
  }

  #tswRegRoot .tsw-checkbox input[type="checkbox"],
  #tswRegRoot input[type="checkbox"].tsw-checkbox-input {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 2px solid var(--tsw-border);
    border-radius: 4px;
    background: #fff;
    position: relative;
    flex-shrink: 0;
  }
  
  #tswRegRoot .tsw-checkbox input[type="checkbox"]:checked,
  #tswRegRoot input[type="checkbox"].tsw-checkbox-input:checked {
    background: var(--tsw-bg1);
    border-color: var(--tsw-bg1);
  }
  
  #tswRegRoot .tsw-checkbox input[type="checkbox"]:checked::after,
  #tswRegRoot input[type="checkbox"].tsw-checkbox-input:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
  }

  #tswRegRoot .tsw-checkbox input[type="checkbox"]:checked + label,
  #tswRegRoot .tsw-checkbox:has(input:checked) {
    border-color: var(--tsw-accent);
    background: rgba(102,126,234,0.05);
  }

