/* IntoMetrics — Booking Form CSS v4.0 */

/* ══ RESET & BASE ══════════════════════════════════════════ */
.im-booking-v2 *{box-sizing:border-box;margin:0;padding:0}
.im-booking-v2{
  font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  max-width:700px;margin:0 auto;border-radius:20px;
  box-shadow:0 8px 40px rgba(0,0,0,.12);position:relative;
  transition:box-shadow .3s ease;
}

/* ══ STEPPER ══════════════════════════════════════════════ */
.im-stepper{display:flex;align-items:center;padding:0;border-bottom:1px solid rgba(0,0,0,.06)}
.im-step-btn{
  display:flex;align-items:center;gap:9px;background:none;border:none;
  cursor:pointer;font-size:12px;font-weight:600;opacity:.35;flex:1;
  padding:16px 12px;position:relative;transition:all .25s ease;font-family:inherit;
}
.im-step-btn:not(:last-child)::after{
  content:'';position:absolute;right:0;top:50%;transform:translateY(-50%);
  width:1px;height:40%;background:rgba(0,0,0,.1);
}
.im-step-btn:hover:not(:disabled){opacity:.6}
.im-step-btn.active{opacity:1}
.im-step-btn.completed{opacity:.6}
.im-step-num{
  width:28px;height:28px;border-radius:50%;display:flex;align-items:center;
  justify-content:center;font-size:11px;font-weight:700;flex-shrink:0;
  transition:all .28s cubic-bezier(.34,1.56,.64,1);
}
.im-step-btn.completed .im-step-num::before{content:'✓'}
.im-step-btn.completed .im-step-num{font-size:13px}
.im-step-label{font-size:11px;line-height:1.2;white-space:nowrap}
@media(max-width:480px){.im-step-label{display:none}.im-step-btn{padding:14px 8px;justify-content:center}}

/* ══ PROGRESS BAR ═════════════════════════════════════════ */
.im-progress-bar{height:3px;background:rgba(0,0,0,.07)}
.im-progress-fill{height:100%;width:25%;transition:width .4s cubic-bezier(.4,0,.2,1)}

/* ══ CONTENT ══════════════════════════════════════════════ */
.im-steps-content{padding:32px 32px 24px;min-height:320px;overflow:visible}
@media(max-width:480px){.im-steps-content{padding:22px 16px 16px}}
.im-step-pane{display:none}
.im-step-pane[data-step="1"]{display:block}
.im-step-pane.im-anim-fwd{animation:im-fwd .28s cubic-bezier(.4,0,.2,1)}
.im-step-pane.im-anim-back{animation:im-back .28s cubic-bezier(.4,0,.2,1)}
@keyframes im-fwd{from{opacity:0;transform:translateX(18px)}to{opacity:1;transform:translateX(0)}}
@keyframes im-back{from{opacity:0;transform:translateX(-18px)}to{opacity:1;transform:translateX(0)}}

.im-step-header{margin-bottom:22px}
.im-step-title{font-size:20px;font-weight:700;margin-bottom:5px;letter-spacing:-.025em;line-height:1.2}
.im-step-sub{font-size:13px;opacity:.5;line-height:1.5}
.im-section-label{font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.1em;opacity:.4;margin-bottom:10px}

/* ══ SERVICE CARDS ════════════════════════════════════════ */
.im-services-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(140px,1fr));gap:12px;margin-bottom:20px}
@media(max-width:480px){.im-services-grid{grid-template-columns:1fr 1fr;gap:10px}}
.im-service-card{
  border:2px solid transparent;border-radius:16px;
  padding:20px 14px 16px;cursor:pointer;text-align:center;
  transition:all .22s cubic-bezier(.4,0,.2,1);position:relative;
  background:rgba(0,0,0,.03);
}
.im-service-card:hover{transform:translateY(-3px)}
.im-service-card:active{transform:translateY(-1px) scale(.99)}
.im-service-card.selected{transform:translateY(-2px)}
/* Check badge */
.im-check-mark{
  position:absolute;top:8px;right:10px;
  width:22px;height:22px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:11px;font-weight:800;color:#fff;
  opacity:0;transform:scale(.3) rotate(-45deg);
  transition:all .22s cubic-bezier(.34,1.56,.64,1);
}
.im-service-card.selected .im-check-mark{opacity:1;transform:scale(1) rotate(0)}
/* Icon — supports emoji OR image */
.im-service-icon{
  font-size:34px;margin-bottom:10px;display:block;line-height:1;
  transition:transform .22s ease;min-height:40px;
}
.im-service-icon img{width:40px;height:40px;object-fit:contain;border-radius:8px}
.im-service-card:hover .im-service-icon{transform:scale(1.1)}
.im-service-name{font-size:12px;font-weight:600;line-height:1.3;margin-bottom:3px}
.im-service-price{font-size:11px;opacity:.55;font-weight:500;margin-top:2px}
.im-service-desc{font-size:10px;opacity:.38;margin-top:4px;line-height:1.4}

/* ══ ADD-ONS ══════════════════════════════════════════════ */
.im-addons-section{margin-top:6px}
.im-addons-title{font-size:12px;font-weight:600;margin:16px 0 10px;opacity:.55}
.im-addon-item{
  display:flex;align-items:center;gap:12px;padding:12px 16px;
  border-radius:12px;margin-bottom:8px;cursor:pointer;
  border:1.5px solid transparent;transition:all .18s ease;
  background:rgba(0,0,0,.03);
}
.im-addon-item:hover{border-color:rgba(0,0,0,.12)}
.im-addon-cb{width:18px;height:18px;cursor:pointer;flex-shrink:0;border-radius:4px}
.im-addon-label{font-size:13px;flex:1;font-weight:500}
.im-addon-price{font-size:12px;font-weight:600;opacity:.55}
.im-total-row{
  display:flex;justify-content:space-between;align-items:center;
  margin-top:14px;padding:12px 16px;border-radius:12px;
  font-size:13px;font-weight:500;
}
.im-running-total{font-size:16px;font-weight:700}

/* ══ ELEGANT DATE PICKER ══════════════════════════════════ */
.im-date-picker-wrap{position:relative;margin-bottom:20px;z-index:100}
.im-date-display{
  display:flex;align-items:center;justify-content:space-between;
  padding:13px 18px;border-radius:12px;border:1.5px solid rgba(0,0,0,.12);
  cursor:pointer;font-size:14px;font-weight:500;
  transition:all .18s ease;background:#fff;user-select:none;
  min-height:52px;
}
.im-date-display:hover{border-color:rgba(0,0,0,.28)}
.im-date-display .im-date-placeholder{opacity:.4;font-weight:400;font-size:13px}
.im-date-display .im-date-icon{font-size:18px;opacity:.5;transition:.18s}
.im-date-display.open .im-date-icon{transform:rotate(180deg);opacity:.8}
.im-date-selected-text{font-weight:600}

/* Custom calendar popup */
.im-calendar-popup{
  display:none;position:absolute;top:calc(100% + 8px);left:0;right:0;
  background:#fff;border-radius:16px;border:1px solid rgba(0,0,0,.1);
  box-shadow:0 16px 48px rgba(0,0,0,.22);z-index:9999;
  animation:im-fwd .2s ease;min-width:320px;
}
.im-calendar-popup.open{display:block}
.im-cal-header{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 20px 12px;border-bottom:1px solid rgba(0,0,0,.06);
}
.im-cal-month-label{font-size:15px;font-weight:700;letter-spacing:-.01em}
.im-cal-nav{display:flex;gap:4px}
.im-cal-nav button{
  width:32px;height:32px;border-radius:8px;border:none;background:rgba(0,0,0,.06);
  cursor:pointer;font-size:14px;transition:.18s;display:flex;align-items:center;justify-content:center;
}
.im-cal-nav button:hover{background:rgba(0,0,0,.1)}
.im-cal-body{padding:12px 16px 16px}
.im-cal-dow{
  display:grid;grid-template-columns:repeat(7,1fr);gap:4px;margin-bottom:6px;
}
.im-cal-dow span{text-align:center;font-size:10px;font-weight:700;opacity:.4;text-transform:uppercase;letter-spacing:.05em;padding:4px 0}
.im-cal-days{display:grid;grid-template-columns:repeat(7,1fr);gap:4px}
.im-cal-day{
  aspect-ratio:1;border-radius:10px;border:none;background:none;
  font-size:13px;font-weight:500;cursor:pointer;transition:all .15s ease;
  display:flex;align-items:center;justify-content:center;position:relative;
}
.im-cal-day:hover:not(.disabled):not(.other-month){background:rgba(0,0,0,.06)}
.im-cal-day.other-month{opacity:.2;cursor:default}
.im-cal-day.disabled{opacity:.25;cursor:not-allowed;text-decoration:line-through}
.im-cal-day.today{font-weight:700}
.im-cal-day.today::after{content:'';position:absolute;bottom:4px;left:50%;transform:translateX(-50%);width:4px;height:4px;border-radius:50%;background:currentColor;opacity:.5}
.im-cal-day.selected{color:#fff!important;font-weight:700}
/* Hidden native input for form submission */
.im-date-native{display:none}

/* ══ TIME SLOTS ═══════════════════════════════════════════ */
.im-timeslot-section{margin-top:4px}
.im-timeslot-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(88px,1fr));gap:8px;margin-top:10px;
}
@media(max-width:380px){.im-timeslot-grid{grid-template-columns:repeat(3,1fr)}}
.im-time-slot{
  padding:10px 6px;border-radius:11px;font-size:12px;font-weight:600;
  cursor:pointer;border:1.5px solid rgba(0,0,0,.1);
  background:transparent;transition:all .18s cubic-bezier(.4,0,.2,1);
  text-align:center;font-family:inherit;
}
.im-time-slot:hover{transform:translateY(-2px);box-shadow:0 3px 10px rgba(0,0,0,.1)}
.im-time-slot.selected{color:#fff!important;transform:translateY(-1px);box-shadow:0 3px 12px rgba(0,0,0,.2)}

/* ══ FORM FIELDS ══════════════════════════════════════════ */
.im-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media(max-width:480px){.im-form-grid{grid-template-columns:1fr}}
.im-field{display:flex;flex-direction:column;gap:5px;margin-bottom:14px}
.im-field label{font-size:12px;font-weight:600;opacity:.55;letter-spacing:.01em}
.im-field input,.im-field select,.im-field textarea{
  padding:12px 14px;border-radius:11px;border:1.5px solid rgba(0,0,0,.12);
  font-size:13px;font-family:inherit;outline:none;
  transition:all .18s ease;background:#fff;color:#1a1a1a;width:100%;
}
.im-field select{cursor:pointer}
.im-field textarea{resize:vertical;min-height:84px}
.im-input-error{border-color:#e63946!important;background:#fff9f9!important}
.im-field-error{font-size:11px;color:#e63946;font-weight:500;margin-top:2px}

/* ══ SUMMARY ══════════════════════════════════════════════ */
.im-summary-card{border-radius:14px;overflow:hidden;border:1px solid rgba(0,0,0,.07)}
.im-summary-row{
  display:flex;justify-content:space-between;align-items:flex-start;
  padding:13px 18px;border-bottom:1px solid rgba(0,0,0,.06);
  font-size:13px;gap:16px;
}
.im-summary-row:last-child{border-bottom:none;font-size:15px;font-weight:700;padding:16px 18px}
.im-summary-label{opacity:.45;font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.07em;padding-top:2px;flex-shrink:0;min-width:80px}
.im-summary-val{text-align:right;font-weight:500;line-height:1.4}
.im-summary-addons{list-style:none;text-align:right}
.im-summary-addons li{font-size:12px;opacity:.65;line-height:1.7}

/* ══ NAV BUTTONS ══════════════════════════════════════════ */
.im-form-nav{display:flex;justify-content:space-between;align-items:center;margin-top:24px;padding-top:18px;border-top:1px solid rgba(0,0,0,.06)}
.im-back-btn,.im-next-btn,.im-confirm-btn{
  padding:13px 26px;border-radius:11px;font-size:13px;font-weight:600;
  cursor:pointer;border:none;transition:all .18s ease;font-family:inherit;
  display:inline-flex;align-items:center;gap:7px;
}
.im-back-btn{background:rgba(0,0,0,.06);color:inherit}
.im-back-btn:hover{background:rgba(0,0,0,.1)}
.im-next-btn,.im-confirm-btn{position:relative;overflow:hidden}
.im-next-btn:hover,.im-confirm-btn:hover{filter:brightness(.9);transform:translateY(-1px);box-shadow:0 6px 20px rgba(0,0,0,.18)}
.im-next-btn:active,.im-confirm-btn:active{transform:scale(.98);filter:brightness(.85)}
.im-next-btn:disabled{opacity:.35;cursor:not-allowed;transform:none;filter:none;box-shadow:none}

/* ══ NOTICES ══════════════════════════════════════════════ */
.im-notice{padding:11px 15px;border-radius:10px;font-size:13px;margin-top:12px;display:none;font-weight:500;border:1px solid transparent}
.im-notice-error{background:#fff2f2;color:#c0392b;border-color:#fcc}
.im-notice-success{background:#f0faf5;color:#0d6e4a;border-color:#a8ddc8}

/* ══ SUCCESS ══════════════════════════════════════════════ */
.im-success-screen{display:none;text-align:center;padding:56px 32px}
.im-success-icon{font-size:60px;margin-bottom:16px;display:block;animation:im-pop .55s cubic-bezier(.34,1.56,.64,1)}
@keyframes im-pop{from{transform:scale(.3);opacity:0}to{transform:scale(1);opacity:1}}
.im-success-title{font-size:22px;font-weight:700;margin-bottom:8px;letter-spacing:-.02em}
.im-success-sub{font-size:14px;opacity:.55;line-height:1.6}

/* ══ WATERMARK ════════════════════════════════════════════ */
.im-form-watermark{text-align:center;padding:10px 0 14px;font-size:11px;opacity:.28;margin-top:8px;border-top:1px solid rgba(0,0,0,.05);letter-spacing:.02em}
.im-form-watermark a{text-decoration:none;color:inherit;font-weight:700}

/* ══ PREMIUM OVERLAY ══════════════════════════════════════ */
.im-premium-overlay{
  position:absolute;inset:0;z-index:50;border-radius:20px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  padding:32px;text-align:center;
  background:rgba(10,10,20,.65);backdrop-filter:blur(5px);
  animation:im-fwd .25s ease;
}
.im-premium-overlay .po-icon{font-size:44px;margin-bottom:14px}
.im-premium-overlay h3{font-size:20px;font-weight:700;color:#fff;margin-bottom:8px}
.im-premium-overlay p{font-size:13px;color:rgba(255,255,255,.7);margin-bottom:22px;line-height:1.6;max-width:300px}
.im-premium-overlay .po-btn{padding:12px 28px;background:#fff;border-radius:10px;font-size:13px;font-weight:700;text-decoration:none;color:#1a1a1a;display:inline-block;transition:.18s}
.im-premium-overlay .po-btn:hover{background:#f0f0f0;transform:translateY(-1px)}
.im-premium-overlay .po-label{font-size:10px;color:rgba(255,255,255,.35);margin-top:14px;text-transform:uppercase;letter-spacing:.1em}


/* ════════════════════════════════════════════════════════════
   THEME: BASIC (Free) — clean, minimal, accessible green
════════════════════════════════════════════════════════════ */
.im-theme-basic{background:#fff;color:#1c2c1c}
.im-theme-basic .im-stepper{background:#f5f5f5}
.im-theme-basic .im-progress-fill{background:#2d6a4f}
.im-theme-basic .im-step-btn{color:#444}
.im-theme-basic .im-step-btn.active{color:#1a1a1a}
.im-theme-basic .im-step-btn.active .im-step-num{background:#2d6a4f;color:#fff;box-shadow:0 2px 10px rgba(45,106,79,.35)}
.im-theme-basic .im-step-btn.completed .im-step-num{background:#52b788;color:#fff}
.im-theme-basic .im-step-num{background:#e0e0e0;color:#555}
.im-theme-basic .im-step-title{color:#1c2c1c;font-weight:700}
.im-theme-basic .im-service-card{background:#f8f8f8;border-color:#e8e8e8}
.im-theme-basic .im-service-card:hover{border-color:#2d6a4f;background:#f0f8f3}
.im-theme-basic .im-service-card.selected{border-color:#2d6a4f;background:#e8f5ee}
.im-theme-basic .im-check-mark{background:#2d6a4f}
.im-theme-basic .im-addon-item{background:#f8f8f8}
.im-theme-basic .im-addon-item:hover{border-color:#2d6a4f;background:#f0f8f3}
.im-theme-basic .im-total-row{background:#f5f5f5}
.im-theme-basic .im-date-display{background:#fff}
.im-theme-basic .im-date-display:hover,.im-theme-basic .im-date-display.open{border-color:#2d6a4f}
.im-theme-basic .im-cal-day.selected{background:#2d6a4f}
.im-theme-basic .im-cal-day.today{color:#2d6a4f}
.im-theme-basic .im-cal-day:hover:not(.disabled):not(.other-month){background:#e8f5ee}
.im-theme-basic .im-time-slot{border-color:#e0e0e0;color:#444}
.im-theme-basic .im-time-slot:hover{border-color:#2d6a4f;color:#2d6a4f;background:#f0f8f3}
.im-theme-basic .im-time-slot.selected{background:#2d6a4f;border-color:#2d6a4f}
.im-theme-basic .im-field input:focus,.im-theme-basic .im-field select:focus,.im-theme-basic .im-field textarea:focus{border-color:#2d6a4f;box-shadow:0 0 0 3px rgba(45,106,79,.1)}
.im-theme-basic .im-next-btn,.im-theme-basic .im-confirm-btn{background:#2d6a4f;color:#fff;box-shadow:0 4px 14px rgba(45,106,79,.3)}
.im-theme-basic .im-summary-card{background:#f8f8f8}
.im-theme-basic .im-success-title{color:#2d6a4f}


/* ════════════════════════════════════════════════════════════
   THEME: MEDICAL (Premium) — trustworthy clinical blue
════════════════════════════════════════════════════════════ */
.im-theme-medical{background:#fff;color:#0a2030}
.im-theme-medical .im-stepper{background:#edf6fa}
.im-theme-medical .im-progress-fill{background:#0d6e8f}
.im-theme-medical .im-step-btn.active{color:#0d6e8f}
.im-theme-medical .im-step-btn.active .im-step-num{background:#0d6e8f;color:#fff;box-shadow:0 2px 10px rgba(13,110,143,.38)}
.im-theme-medical .im-step-btn.completed .im-step-num{background:#1D9E75;color:#fff}
.im-theme-medical .im-step-num{background:#c8e8f4;color:#0d6e8f}
.im-theme-medical .im-step-title{color:#0d6e8f}
.im-theme-medical .im-service-card{background:#f0f8fc;border-color:#c0e4f0}
.im-theme-medical .im-service-card:hover{border-color:#0d6e8f;background:#e0f2f8}
.im-theme-medical .im-service-card.selected{border-color:#0d6e8f;background:#d4ecf5}
.im-theme-medical .im-check-mark{background:#0d6e8f}
.im-theme-medical .im-addon-item{background:#f0f8fc}
.im-theme-medical .im-addon-item:hover{border-color:#0d6e8f;background:#e0f2f8}
.im-theme-medical .im-total-row{background:#edf6fa}
.im-theme-medical .im-date-display{background:#fff}
.im-theme-medical .im-date-display:hover,.im-theme-medical .im-date-display.open{border-color:#0d6e8f}
.im-theme-medical .im-cal-day.selected{background:#0d6e8f}
.im-theme-medical .im-cal-day.today{color:#0d6e8f}
.im-theme-medical .im-cal-day:hover:not(.disabled):not(.other-month){background:#e0f2f8}
.im-theme-medical .im-time-slot{border-color:#c0e4f0;color:#0d6e8f}
.im-theme-medical .im-time-slot:hover{border-color:#0d6e8f;background:#e0f2f8}
.im-theme-medical .im-time-slot.selected{background:#0d6e8f;border-color:#0d6e8f}
.im-theme-medical .im-field input:focus,.im-theme-medical .im-field select:focus,.im-theme-medical .im-field textarea:focus{border-color:#0d6e8f;box-shadow:0 0 0 3px rgba(13,110,143,.1)}
.im-theme-medical .im-next-btn,.im-theme-medical .im-confirm-btn{background:#0d6e8f;color:#fff;box-shadow:0 4px 14px rgba(13,110,143,.32)}
.im-theme-medical .im-summary-card{background:#f0f8fc}


/* ════════════════════════════════════════════════════════════
   THEME: PHOTOGRAPHY (Premium) — dark cinematic gold
════════════════════════════════════════════════════════════ */
.im-theme-photography{background:#1a1814;color:#f0ede8}
.im-theme-photography .im-steps-content{background:#1a1814}
.im-theme-photography .im-stepper{background:#0f0e0c}
.im-theme-photography .im-progress-fill{background:#c9a96e}
.im-theme-photography .im-step-btn{color:#7a7470}
.im-theme-photography .im-step-btn.active{color:#c9a96e}
.im-theme-photography .im-step-btn.active .im-step-num{background:#c9a96e;color:#1a1814;box-shadow:0 2px 12px rgba(201,169,110,.4)}
.im-theme-photography .im-step-btn.completed .im-step-num{background:#5a9a6a;color:#fff}
.im-theme-photography .im-step-num{background:#2a2820;color:#c9a96e}
.im-theme-photography .im-step-title{color:#c9a96e;font-style:italic}
.im-theme-photography .im-step-sub,.im-theme-photography .im-section-label{color:#6a6460}
.im-theme-photography .im-service-card{background:#242018;border-color:#302c24}
.im-theme-photography .im-service-card:hover{border-color:#c9a96e;background:#2e2a1e}
.im-theme-photography .im-service-card.selected{border-color:#c9a96e;background:#302a1a}
.im-theme-photography .im-check-mark{background:#c9a96e}
.im-theme-photography .im-service-name{color:#f0ede8}
.im-theme-photography .im-addon-item{background:#242018;border-color:#302c24}
.im-theme-photography .im-addon-label{color:#d0cdc8}
.im-theme-photography .im-total-row{background:#201e1a;color:#f0ede8}
.im-theme-photography .im-date-display{background:#242018;border-color:#302c24;color:#f0ede8}
.im-theme-photography .im-date-display:hover,.im-theme-photography .im-date-display.open{border-color:#c9a96e}
.im-theme-photography .im-calendar-popup{background:#242018;border-color:#302c24}
.im-theme-photography .im-cal-header{border-bottom-color:#302c24;color:#f0ede8}
.im-theme-photography .im-cal-day{color:#f0ede8}
.im-theme-photography .im-cal-day.selected{background:#c9a96e;color:#1a1814}
.im-theme-photography .im-cal-day.today{color:#c9a96e}
.im-theme-photography .im-cal-day:hover:not(.disabled):not(.other-month){background:#302c24}
.im-theme-photography .im-cal-nav button{background:#302c24;color:#f0ede8}
.im-theme-photography .im-time-slot{background:transparent;border-color:#302c24;color:#c9a96e}
.im-theme-photography .im-time-slot:hover{border-color:#c9a96e;background:#2e2a1e}
.im-theme-photography .im-time-slot.selected{background:#c9a96e;border-color:#c9a96e;color:#1a1814}
.im-theme-photography .im-field input,.im-theme-photography .im-field select,.im-theme-photography .im-field textarea{background:#242018;border-color:#302c24;color:#f0ede8}
.im-theme-photography .im-field label{color:#8a8480}
.im-theme-photography .im-form-nav{border-top-color:#302c24}
.im-theme-photography .im-back-btn{background:#302c24;color:#9a9490}
.im-theme-photography .im-next-btn,.im-theme-photography .im-confirm-btn{background:#c9a96e;color:#1a1814;box-shadow:0 4px 16px rgba(201,169,110,.38)}
.im-theme-photography .im-summary-card{background:#242018;border-color:#302c24}
.im-theme-photography .im-summary-row{border-bottom-color:#302c24}
.im-theme-photography .im-summary-val{color:#f0ede8}


/* ════════════════════════════════════════════════════════════
   THEME: MASSAGE (Premium) — warm terracotta earth
════════════════════════════════════════════════════════════ */
.im-theme-massage{background:#fdf9f4;color:#3d2b1f}
.im-theme-massage .im-stepper{background:#f0e6d8}
.im-theme-massage .im-progress-fill{background:#8b5e3c}
.im-theme-massage .im-step-btn.active{color:#8b5e3c}
.im-theme-massage .im-step-btn.active .im-step-num{background:#8b5e3c;color:#fff;box-shadow:0 2px 10px rgba(139,94,60,.38)}
.im-theme-massage .im-step-btn.completed .im-step-num{background:#6b8f6b;color:#fff}
.im-theme-massage .im-step-num{background:#e8d4c0;color:#8b5e3c}
.im-theme-massage .im-step-title{color:#8b5e3c}
.im-theme-massage .im-service-card{background:#faf4ec;border-color:#e4d0b8}
.im-theme-massage .im-service-card:hover{border-color:#8b5e3c;background:#f4eadc}
.im-theme-massage .im-service-card.selected{border-color:#8b5e3c;background:#eedece}
.im-theme-massage .im-check-mark{background:#8b5e3c}
.im-theme-massage .im-addon-item{background:#faf4ec;border-color:#e4d0b8}
.im-theme-massage .im-addon-item:hover{border-color:#8b5e3c}
.im-theme-massage .im-total-row{background:#f0e6d8}
.im-theme-massage .im-date-display{background:#fff}
.im-theme-massage .im-date-display:hover,.im-theme-massage .im-date-display.open{border-color:#8b5e3c}
.im-theme-massage .im-cal-day.selected{background:#8b5e3c}
.im-theme-massage .im-cal-day.today{color:#8b5e3c}
.im-theme-massage .im-cal-day:hover:not(.disabled):not(.other-month){background:#f4eadc}
.im-theme-massage .im-time-slot{border-color:#e4d0b8;color:#8b5e3c}
.im-theme-massage .im-time-slot:hover{border-color:#8b5e3c;background:#f4eadc}
.im-theme-massage .im-time-slot.selected{background:#8b5e3c;border-color:#8b5e3c}
.im-theme-massage .im-next-btn,.im-theme-massage .im-confirm-btn{background:#8b5e3c;color:#fff;box-shadow:0 4px 14px rgba(139,94,60,.32)}
.im-theme-massage .im-summary-card{background:#faf4ec}


/* ════════════════════════════════════════════════════════════
   THEME: BEAUTY (Premium) — rose blush gold
════════════════════════════════════════════════════════════ */
.im-theme-beauty{background:#fff9fb;color:#3d1f2b}
.im-theme-beauty .im-stepper{background:#fdeef4}
.im-theme-beauty .im-progress-fill{background:linear-gradient(90deg,#c4507a,#c47858)}
.im-theme-beauty .im-step-btn.active{color:#c4507a}
.im-theme-beauty .im-step-btn.active .im-step-num{background:linear-gradient(135deg,#c4507a,#d47868);color:#fff;box-shadow:0 2px 12px rgba(196,80,122,.4)}
.im-theme-beauty .im-step-btn.completed .im-step-num{background:#c47858;color:#fff}
.im-theme-beauty .im-step-num{background:#fad4e4;color:#c4507a}
.im-theme-beauty .im-step-title{color:#c4507a;font-style:italic}
.im-theme-beauty .im-service-card{background:#fef4f8;border-color:#f8d0e4}
.im-theme-beauty .im-service-card:hover{border-color:#c4507a;background:#fde8f0}
.im-theme-beauty .im-service-card.selected{border-color:#c4507a;background:#fcdce8}
.im-theme-beauty .im-check-mark{background:linear-gradient(135deg,#c4507a,#d47868)}
.im-theme-beauty .im-addon-item{background:#fef4f8}
.im-theme-beauty .im-addon-item:hover{border-color:#c4507a}
.im-theme-beauty .im-total-row{background:#fdeef4}
.im-theme-beauty .im-date-display:hover,.im-theme-beauty .im-date-display.open{border-color:#c4507a}
.im-theme-beauty .im-cal-day.selected{background:#c4507a}
.im-theme-beauty .im-cal-day.today{color:#c4507a}
.im-theme-beauty .im-cal-day:hover:not(.disabled):not(.other-month){background:#fde8f0}
.im-theme-beauty .im-time-slot{border-color:#f8d0e4;color:#c4507a}
.im-theme-beauty .im-time-slot:hover{border-color:#c4507a;background:#fde8f0}
.im-theme-beauty .im-time-slot.selected{background:#c4507a;border-color:#c4507a}
.im-theme-beauty .im-next-btn,.im-theme-beauty .im-confirm-btn{background:linear-gradient(135deg,#c4507a,#c47858);color:#fff;box-shadow:0 4px 16px rgba(196,80,122,.35)}
.im-theme-beauty .im-summary-card{background:#fef4f8}


/* ════════════════════════════════════════════════════════════
   THEME: FITNESS (Premium) — high-energy dark orange
════════════════════════════════════════════════════════════ */
.im-theme-fitness{background:#0d1520;color:#eaf0f8}
.im-theme-fitness .im-steps-content{background:#0d1520}
.im-theme-fitness .im-stepper{background:#080d16}
.im-theme-fitness .im-progress-fill{background:#e85d04}
.im-theme-fitness .im-step-btn{color:#3a5070}
.im-theme-fitness .im-step-btn.active{color:#e85d04}
.im-theme-fitness .im-step-btn.active .im-step-num{background:#e85d04;color:#fff;box-shadow:0 2px 14px rgba(232,93,4,.48)}
.im-theme-fitness .im-step-btn.completed .im-step-num{background:#2dc653;color:#fff}
.im-theme-fitness .im-step-num{background:#162030;color:#e85d04}
.im-theme-fitness .im-step-title{color:#e85d04;text-transform:uppercase;font-weight:800;letter-spacing:.04em;font-size:17px}
.im-theme-fitness .im-step-sub,.im-theme-fitness .im-section-label{color:#2a4060}
.im-theme-fitness .im-service-card{background:#162030;border-color:#1e3048}
.im-theme-fitness .im-service-card:hover{border-color:#e85d04;background:#1e2840}
.im-theme-fitness .im-service-card.selected{border-color:#e85d04;background:#241810}
.im-theme-fitness .im-check-mark{background:#e85d04}
.im-theme-fitness .im-service-name{color:#eaf0f8}
.im-theme-fitness .im-addon-item{background:#162030;border-color:#1e3048}
.im-theme-fitness .im-addon-label{color:#c0d0e0}
.im-theme-fitness .im-total-row{background:#162030;color:#eaf0f8}
.im-theme-fitness .im-date-display{background:#162030;border-color:#1e3048;color:#eaf0f8}
.im-theme-fitness .im-date-display:hover,.im-theme-fitness .im-date-display.open{border-color:#e85d04}
.im-theme-fitness .im-calendar-popup{background:#162030;border-color:#1e3048}
.im-theme-fitness .im-cal-header{border-bottom-color:#1e3048;color:#eaf0f8}
.im-theme-fitness .im-cal-day{color:#eaf0f8}
.im-theme-fitness .im-cal-day.selected{background:#e85d04;color:#fff}
.im-theme-fitness .im-cal-day.today{color:#e85d04}
.im-theme-fitness .im-cal-day:hover:not(.disabled):not(.other-month){background:#1e3048}
.im-theme-fitness .im-cal-nav button{background:#1e3048;color:#eaf0f8}
.im-theme-fitness .im-time-slot{background:transparent;border-color:#1e3048;color:#e85d04}
.im-theme-fitness .im-time-slot:hover{border-color:#e85d04;background:#1e2840}
.im-theme-fitness .im-time-slot.selected{background:#e85d04;border-color:#e85d04;color:#fff}
.im-theme-fitness .im-field input,.im-theme-fitness .im-field select,.im-theme-fitness .im-field textarea{background:#162030;border-color:#1e3048;color:#eaf0f8}
.im-theme-fitness .im-field label{color:#2a4060}
.im-theme-fitness .im-form-nav{border-top-color:#162030}
.im-theme-fitness .im-back-btn{background:#162030;color:#3a5070}
.im-theme-fitness .im-next-btn,.im-theme-fitness .im-confirm-btn{background:#e85d04;color:#fff;font-weight:800;text-transform:uppercase;letter-spacing:.06em;box-shadow:0 4px 20px rgba(232,93,4,.48)}
.im-theme-fitness .im-summary-card{background:#162030;border-color:#1e3048}
.im-theme-fitness .im-summary-row{border-bottom-color:#1e3048}
.im-theme-fitness .im-summary-val{color:#eaf0f8}


/* ════════════════════════════════════════════════════════════
   THEME: HOSPITALITY (Premium) — luxury resort teal
════════════════════════════════════════════════════════════ */
.im-theme-hospitality{background:#fff;color:#0f2e38}
.im-theme-hospitality .im-stepper{background:#e2f2f5}
.im-theme-hospitality .im-progress-fill{background:#0a7b8c}
.im-theme-hospitality .im-step-btn.active{color:#0a7b8c}
.im-theme-hospitality .im-step-btn.active .im-step-num{background:#0a7b8c;color:#fff;box-shadow:0 2px 10px rgba(10,123,140,.38)}
.im-theme-hospitality .im-step-btn.completed .im-step-num{background:#c9a96e;color:#fff}
.im-theme-hospitality .im-step-num{background:#bce0e8;color:#0a7b8c}
.im-theme-hospitality .im-step-title{color:#0a7b8c}
.im-theme-hospitality .im-service-card{background:#eef8fb;border-color:#b4e0ea}
.im-theme-hospitality .im-service-card:hover{border-color:#0a7b8c;background:#ddf2f6}
.im-theme-hospitality .im-service-card.selected{border-color:#0a7b8c;background:#caeef4}
.im-theme-hospitality .im-check-mark{background:#0a7b8c}
.im-theme-hospitality .im-addon-item{background:#eef8fb}
.im-theme-hospitality .im-addon-item:hover{border-color:#0a7b8c}
.im-theme-hospitality .im-total-row{background:#e2f2f5}
.im-theme-hospitality .im-date-display:hover,.im-theme-hospitality .im-date-display.open{border-color:#0a7b8c}
.im-theme-hospitality .im-cal-day.selected{background:#0a7b8c}
.im-theme-hospitality .im-cal-day.today{color:#0a7b8c}
.im-theme-hospitality .im-cal-day:hover:not(.disabled):not(.other-month){background:#ddf2f6}
.im-theme-hospitality .im-time-slot{border-color:#b4e0ea;color:#0a7b8c}
.im-theme-hospitality .im-time-slot:hover{border-color:#0a7b8c;background:#ddf2f6}
.im-theme-hospitality .im-time-slot.selected{background:#0a7b8c;border-color:#0a7b8c}
.im-theme-hospitality .im-next-btn,.im-theme-hospitality .im-confirm-btn{background:#0a7b8c;color:#fff;box-shadow:0 4px 14px rgba(10,123,140,.32)}
.im-theme-hospitality .im-summary-card{background:#eef8fb}


/* ════════════════════════════════════════════════════════════
   THEME: CREATIVE (Premium) — electric purple gradient
════════════════════════════════════════════════════════════ */
.im-theme-creative{background:#fdfaff;color:#1a0a38}
.im-theme-creative .im-stepper{background:#f0e8ff}
.im-theme-creative .im-progress-fill{background:linear-gradient(90deg,#6944cc,#e91e8c)}
.im-theme-creative .im-step-btn.active{color:#6944cc}
.im-theme-creative .im-step-btn.active .im-step-num{background:linear-gradient(135deg,#6944cc,#9b44cc);color:#fff;box-shadow:0 2px 12px rgba(105,68,204,.45)}
.im-theme-creative .im-step-btn.completed .im-step-num{background:#e91e8c;color:#fff}
.im-theme-creative .im-step-num{background:#e0d4f8;color:#6944cc}
.im-theme-creative .im-step-title{color:#6944cc;font-weight:800}
.im-theme-creative .im-service-card{background:#f8f4ff;border-color:#d8c8f8}
.im-theme-creative .im-service-card:hover{border-color:#6944cc;background:#f0e8ff}
.im-theme-creative .im-service-card.selected{border-color:#6944cc;background:#e8dcff}
.im-theme-creative .im-check-mark{background:linear-gradient(135deg,#6944cc,#e91e8c)}
.im-theme-creative .im-addon-item{background:#f8f4ff}
.im-theme-creative .im-addon-item:hover{border-color:#6944cc}
.im-theme-creative .im-total-row{background:#f0e8ff}
.im-theme-creative .im-date-display:hover,.im-theme-creative .im-date-display.open{border-color:#6944cc}
.im-theme-creative .im-cal-day.selected{background:#6944cc}
.im-theme-creative .im-cal-day.today{color:#6944cc}
.im-theme-creative .im-cal-day:hover:not(.disabled):not(.other-month){background:#f0e8ff}
.im-theme-creative .im-time-slot{border-color:#d8c8f8;color:#6944cc}
.im-theme-creative .im-time-slot:hover{border-color:#6944cc;background:#f0e8ff}
.im-theme-creative .im-time-slot.selected{background:#6944cc;border-color:#6944cc}
.im-theme-creative .im-next-btn,.im-theme-creative .im-confirm-btn{background:linear-gradient(135deg,#6944cc,#9b44cc);color:#fff;box-shadow:0 4px 18px rgba(105,68,204,.42)}
.im-theme-creative .im-summary-card{background:#f8f4ff}


/* ════════════════════════════════════════════════════════════
   THEME: AUTOMOTIVE (Premium) — sleek dark red chrome
════════════════════════════════════════════════════════════ */
.im-theme-automotive{background:#18181e;color:#f0f0f4}
.im-theme-automotive .im-steps-content{background:#18181e}
.im-theme-automotive .im-stepper{background:#0e0e14}
.im-theme-automotive .im-progress-fill{background:#e63946}
.im-theme-automotive .im-step-btn{color:#4a4a60}
.im-theme-automotive .im-step-btn.active{color:#e63946}
.im-theme-automotive .im-step-btn.active .im-step-num{background:#e63946;color:#fff;box-shadow:0 2px 14px rgba(230,57,70,.48)}
.im-theme-automotive .im-step-btn.completed .im-step-num{background:#4a8aff;color:#fff}
.im-theme-automotive .im-step-num{background:#26262e;color:#e63946}
.im-theme-automotive .im-step-title{color:#e63946;text-transform:uppercase;font-weight:800;letter-spacing:.04em;font-size:16px}
.im-theme-automotive .im-step-sub,.im-theme-automotive .im-section-label{color:#4a4a60}
.im-theme-automotive .im-service-card{background:#22222a;border-color:#2e2e3a}
.im-theme-automotive .im-service-card:hover{border-color:#e63946;background:#2c1820}
.im-theme-automotive .im-service-card.selected{border-color:#e63946;background:#28141c}
.im-theme-automotive .im-check-mark{background:#e63946}
.im-theme-automotive .im-service-name{color:#f0f0f4}
.im-theme-automotive .im-addon-item{background:#22222a;border-color:#2e2e3a}
.im-theme-automotive .im-addon-label{color:#d0d0da}
.im-theme-automotive .im-total-row{background:#22222a;color:#f0f0f4}
.im-theme-automotive .im-date-display{background:#22222a;border-color:#2e2e3a;color:#f0f0f4}
.im-theme-automotive .im-date-display:hover,.im-theme-automotive .im-date-display.open{border-color:#e63946}
.im-theme-automotive .im-calendar-popup{background:#22222a;border-color:#2e2e3a}
.im-theme-automotive .im-cal-header{border-bottom-color:#2e2e3a;color:#f0f0f4}
.im-theme-automotive .im-cal-day{color:#f0f0f4}
.im-theme-automotive .im-cal-day.selected{background:#e63946;color:#fff}
.im-theme-automotive .im-cal-day.today{color:#e63946}
.im-theme-automotive .im-cal-day:hover:not(.disabled):not(.other-month){background:#2e2e3a}
.im-theme-automotive .im-cal-nav button{background:#2e2e3a;color:#f0f0f4}
.im-theme-automotive .im-time-slot{background:transparent;border-color:#2e2e3a;color:#e63946}
.im-theme-automotive .im-time-slot:hover{border-color:#e63946;background:#2c1820}
.im-theme-automotive .im-time-slot.selected{background:#e63946;border-color:#e63946;color:#fff}
.im-theme-automotive .im-field input,.im-theme-automotive .im-field select,.im-theme-automotive .im-field textarea{background:#22222a;border-color:#2e2e3a;color:#f0f0f4}
.im-theme-automotive .im-field label{color:#4a4a60}
.im-theme-automotive .im-form-nav{border-top-color:#26262e}
.im-theme-automotive .im-back-btn{background:#26262e;color:#5a5a70}
.im-theme-automotive .im-next-btn,.im-theme-automotive .im-confirm-btn{background:#e63946;color:#fff;font-weight:800;text-transform:uppercase;letter-spacing:.05em;box-shadow:0 4px 20px rgba(230,57,70,.48)}
.im-theme-automotive .im-summary-card{background:#22222a;border-color:#2e2e3a}
.im-theme-automotive .im-summary-row{border-bottom-color:#2e2e3a}
.im-theme-automotive .im-summary-val{color:#f0f0f4}
.im-theme-automotive .im-form-watermark{border-top-color:#26262e;color:#2e2e3a}


/* ════════════════════════════════════════════════════════════
   THEME: BUSINESS (Premium) — navy professional
════════════════════════════════════════════════════════════ */
.im-theme-business{background:#fff;color:#0e1e38}
.im-theme-business .im-stepper{background:#edf1f8}
.im-theme-business .im-progress-fill{background:#1e3a5f}
.im-theme-business .im-step-btn.active{color:#1e3a5f}
.im-theme-business .im-step-btn.active .im-step-num{background:#1e3a5f;color:#fff;box-shadow:0 2px 10px rgba(30,58,95,.38)}
.im-theme-business .im-step-btn.completed .im-step-num{background:#2196c4;color:#fff}
.im-theme-business .im-step-num{background:#ccd5e8;color:#1e3a5f}
.im-theme-business .im-step-title{color:#1e3a5f;font-weight:700}
.im-theme-business .im-service-card{background:#f2f6fc;border-color:#c8d4ec}
.im-theme-business .im-service-card:hover{border-color:#1e3a5f;background:#e8eef8}
.im-theme-business .im-service-card.selected{border-color:#1e3a5f;background:#dce6f4}
.im-theme-business .im-check-mark{background:#1e3a5f}
.im-theme-business .im-addon-item{background:#f2f6fc}
.im-theme-business .im-addon-item:hover{border-color:#1e3a5f}
.im-theme-business .im-total-row{background:#edf1f8}
.im-theme-business .im-date-display:hover,.im-theme-business .im-date-display.open{border-color:#1e3a5f}
.im-theme-business .im-cal-day.selected{background:#1e3a5f}
.im-theme-business .im-cal-day.today{color:#1e3a5f}
.im-theme-business .im-cal-day:hover:not(.disabled):not(.other-month){background:#e8eef8}
.im-theme-business .im-time-slot{border-color:#c8d4ec;color:#1e3a5f}
.im-theme-business .im-time-slot:hover{border-color:#1e3a5f;background:#e8eef8}
.im-theme-business .im-time-slot.selected{background:#1e3a5f;border-color:#1e3a5f}
.im-theme-business .im-next-btn,.im-theme-business .im-confirm-btn{background:#1e3a5f;color:#fff;box-shadow:0 4px 14px rgba(30,58,95,.32)}
.im-theme-business .im-summary-card{background:#f2f6fc}

/* ── Calendar day booking indicators ── */
.im-cal-day{position:relative}
.im-cal-day .im-day-dots{
  display:flex;gap:2px;justify-content:center;
  position:absolute;bottom:3px;left:50%;transform:translateX(-50%);
}
.im-cal-day .im-day-dot{width:4px;height:4px;border-radius:50%;flex-shrink:0}
.im-cal-day.fully-booked{opacity:.4;cursor:not-allowed!important;text-decoration:line-through}
.im-cal-day.has-bookings .im-day-dot{background:#e85d04}
.im-cal-day.few-slots .im-day-dot{background:#f4a261}
.im-time-slot.booked{
  opacity:.5;
  cursor:not-allowed !important;
  background:#f3f4f6 !important;
  color:#9ca3af !important;
  border-color:#e5e7eb !important;
  transform:none !important;
  box-shadow:none !important;
  pointer-events:none;
}

/* ── Paid slot indicator ─────────────────────────────────── */
.im-time-slot.paid-slot {
  background: #fef9c3 !important;
  border-color: #fde047 !important;
  color: #78350f !important;
  cursor: not-allowed !important;
  pointer-events: none;
  opacity: .75;
}
.im-slot-paid-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  background: #fef08a;
  color: #78350f;
  border-radius: 4px;
  padding: 1px 5px;
  margin-left: 4px;
  vertical-align: middle;
  letter-spacing: .02em;
}
