/*!
 * iFix Cellfone — Booking Wizard v9.6
 * Premium mobile repair booking experience
 * Fonts: Sora (headings) + DM Sans (body) + DM Mono (codes)
 */
/* Fonts loaded by design panel (build_design_css). These are defaults only. */

/* ── Tokens ──────────────────────────────────────────────────────── */
#techpro-booking-widget {
  --bg:         #ffffff;
  --surface:    #f7f8fb;
  --surface-2:  #eef0f5;
  --border:     #e4e7ef;
  --border-2:   #cdd2df;
  --txt:        #0b0d14;
  --txt-2:      #424c63;
  --txt-3:      #8892a8;
  --accent:     #1860f0;
  --accent-2:   #0e4dcc;
  --accent-bg:  #ebf1ff;
  --accent-txt: #ffffff;
  --ok:         #059669;
  --ok-bg:      #ecfdf5;
  --warn:       #d97706;
  --warn-bg:    #fffbeb;
  --danger:     #dc2626;
  --danger-bg:  #fef2f2;
  --radius:     16px;
  --radius-sm:  10px;
  --radius-xs:  7px;
  --shadow:     0 1px 3px rgba(0,0,0,.05), 0 4px 16px rgba(0,0,0,.07);
  --shadow-md:  0 2px 6px rgba(0,0,0,.06), 0 12px 32px rgba(24,96,240,.12);
  --ease:       cubic-bezier(.4,0,.2,1);
  --dur:        160ms;
  --max-w:      960px;
  /* Font vars — overridden by admin Design panel via build_design_css() */
  --font-h:     'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-b:     'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-m:     'DM Mono', 'SF Mono', 'Fira Mono', monospace;
}

/* Dark tokens */
.dark-mode #techpro-booking-widget,
.dark #techpro-booking-widget,
.dark-mode-active #techpro-booking-widget,
[data-theme="dark"] #techpro-booking-widget,
body.dark #techpro-booking-widget,
html.dark #techpro-booking-widget,
#techpro-booking-widget[data-color-scheme="dark"] {
  --bg:         #0d0f18;
  --surface:    #151824;
  --surface-2:  #1e2232;
  --border:     #252c3f;
  --border-2:   #2f3650;
  --txt:        #edf0f9;
  --txt-2:      #9aa3bf;
  --txt-3:      #596180;
  --accent:     #4d87ff;
  --accent-2:   #3a75f0;
  --accent-bg:  #0f1e42;
  --ok:         #34d399;
  --ok-bg:      #052e1c;
  --warn:       #fbbf24;
  --warn-bg:    #1c1204;
  --shadow:     0 1px 3px rgba(0,0,0,.3), 0 4px 16px rgba(0,0,0,.5);
  --shadow-md:  0 2px 6px rgba(0,0,0,.3), 0 12px 32px rgba(77,135,255,.18);
}
@media (prefers-color-scheme: dark) {
  #techpro-booking-widget:not([data-color-scheme="light"]) {
    --bg:#0d0f18;--surface:#151824;--surface-2:#1e2232;--border:#252c3f;
    --border-2:#2f3650;--txt:#edf0f9;--txt-2:#9aa3bf;--txt-3:#596180;
    --accent:#4d87ff;--accent-2:#3a75f0;--accent-bg:#0f1e42;
    --ok:#34d399;--ok-bg:#052e1c;--warn:#fbbf24;--warn-bg:#1c1204;
    --shadow:0 1px 3px rgba(0,0,0,.3),0 4px 16px rgba(0,0,0,.5);
    --shadow-md:0 2px 6px rgba(0,0,0,.3),0 12px 32px rgba(77,135,255,.18);
  }
}

/* ── Reset ───────────────────────────────────────────────────────── */
#techpro-booking-widget,
#techpro-booking-widget * { box-sizing:border-box!important; -webkit-font-smoothing:antialiased; }
#techpro-booking-widget {
  font-family: var(--font-b)!important;
  color: var(--txt);
  background: transparent;
  width: 100%;
  position: relative;
  font-size: 16px;
  line-height: 1.5;
}

/* ── Promo banner ────────────────────────────────────────────────── */
#techpro-booking-widget .tp-promo {
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-weight: 600; font-size: 15px;
  text-align: center; margin-bottom: 20px;
  letter-spacing: -.1px;
}

/* ── Stepper ─────────────────────────────────────────────────────── */
#techpro-booking-widget .tp-stepper {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px 24px 24px;
}
#techpro-booking-widget .tp-track {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
#techpro-booking-widget .tp-track::before {
  content:'';
  position:absolute; top:50%; left:0; right:0;
  height:2px; background:var(--border);
  transform:translateY(-50%); z-index:0;
}
#techpro-booking-widget .tp-track-fill {
  position:absolute; top:50%; left:0;
  height:2px; background:var(--accent);
  transform:translateY(-50%); z-index:1;
  width:0%; transition:width .5s var(--ease);
}
#techpro-booking-widget .tp-node {
  position:relative; z-index:2;
  width:34px; height:34px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:12px; font-weight:700;
  background:var(--bg); border:2px solid var(--border-2);
  color:var(--txt-3);
  transition:all .25s var(--ease);
  flex-shrink:0; cursor:default;
  font-family:var(--font-b)!important;
}
#techpro-booking-widget .tp-node.is-done {
  background:var(--ok); border-color:var(--ok); color:#fff; font-size:14px;
}
#techpro-booking-widget .tp-node.is-active {
  background:var(--accent); border-color:var(--accent); color:#fff;
  box-shadow:0 0 0 5px var(--accent-bg); transform:scale(1.1);
}
#techpro-booking-widget .tp-labels {
  display:flex; justify-content:space-between;
}
#techpro-booking-widget .tp-lbl {
  flex:1; text-align:center;
  font-size:9px; font-weight:700;
  letter-spacing:.6px; text-transform:uppercase;
  color:var(--txt-3); transition:color .2s;
}
#techpro-booking-widget .tp-lbl.is-active { color:var(--accent); }
#techpro-booking-widget .tp-lbl.is-done   { color:var(--ok); }
@media(max-width:520px){
  #techpro-booking-widget .tp-lbl { display:none; }
  #techpro-booking-widget .tp-node { width:28px; height:28px; font-size:10px; }
  #techpro-booking-widget .tp-stepper { padding:20px 16px 16px; }
}

/* ── Panels ──────────────────────────────────────────────────────── */
#techpro-booking-widget .tp-panel {
  max-width:var(--max-w); margin:0 auto;
  padding: 4px 24px 56px;
}
#techpro-booking-widget .tp-hidden { display:none!important; }
@keyframes tpIn {
  from { opacity:0; transform:translateY(14px); }
  to   { opacity:1; transform:none; }
}
#techpro-booking-widget .tp-panel:not(.tp-hidden) { animation:tpIn .2s var(--ease); }

/* Panel header */
#techpro-booking-widget .tp-hd { margin-bottom:28px; }
#techpro-booking-widget .tp-back-row { margin-bottom:8px; }
#techpro-booking-widget .tp-back {
  display:inline-flex; align-items:center; gap:6px;
  font-family:var(--font-b)!important;
  font-size:13px; font-weight:500;
  color:var(--txt-3); background:none; border:none; padding:0;
  cursor:pointer; transition:color var(--dur) var(--ease);
}
#techpro-booking-widget .tp-back:before { content:'←'; font-size:14px; }
#techpro-booking-widget .tp-back:hover { color:var(--accent); }

#techpro-booking-widget .tp-h1 {
  font-family:var(--font-h)!important;
  font-size:clamp(24px,4vw,34px);
  font-weight:800; letter-spacing:-.8px; line-height:1.1;
  color:var(--txt)!important;
  margin:0 0 6px;
}
#techpro-booking-widget .tp-sub {
  font-size:15px; color:var(--txt-2)!important;
  margin:0; font-weight:400; line-height:1.6;
}
#techpro-booking-widget .tp-crumb {
  display:inline-flex; align-items:center; gap:6px;
  margin-top:10px;
  background:var(--accent-bg);
  color:var(--accent);
  font-size:11px; font-weight:700;
  letter-spacing:.3px;
  padding:4px 12px; border-radius:99px;
}

/* ── Grid ────────────────────────────────────────────────────────── */
#techpro-booking-widget .tp-grid {
  display:grid; gap:14px;
  grid-template-columns:repeat(3,1fr);
}
#techpro-booking-widget #tp-brand-grid { grid-template-columns:repeat(4,1fr); gap:10px; }
#techpro-booking-widget #tp-model-grid { grid-template-columns:repeat(3,1fr); gap:10px; }
#techpro-booking-widget #tp-issue-grid { grid-template-columns:repeat(3,1fr); gap:14px; }
@media(max-width:740px){
  #techpro-booking-widget .tp-grid { grid-template-columns:repeat(2,1fr)!important; }
  #techpro-booking-widget #tp-brand-grid { grid-template-columns:repeat(3,1fr)!important; }
}
@media(max-width:440px){
  #techpro-booking-widget .tp-grid { gap:10px!important; }
  #techpro-booking-widget #tp-brand-grid { grid-template-columns:repeat(2,1fr)!important; }
}

/* ── Cards ───────────────────────────────────────────────────────── */
#techpro-booking-widget .tp-card {
  position:relative; overflow:hidden;
  background:var(--bg); border:1.5px solid var(--border);
  border-radius:var(--radius); box-shadow:var(--shadow);
  cursor:pointer; display:flex; flex-direction:column;
  transition:border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  user-select:none; -webkit-tap-highlight-color:transparent;
  outline:none;
}
#techpro-booking-widget .tp-card:hover {
  border-color:var(--accent);
  box-shadow:var(--shadow-md);
  transform:translateY(-3px);
}
#techpro-booking-widget .tp-card:focus-visible { outline:3px solid var(--accent); outline-offset:2px; }
#techpro-booking-widget .tp-card.selected {
  border-color:var(--accent);
  box-shadow:0 0 0 1px var(--accent), var(--shadow-md);
  background:var(--accent-bg);
}
#techpro-booking-widget .tp-card.selected::after {
  content:'✓';
  position:absolute; top:9px; right:10px;
  width:22px; height:22px; border-radius:50%;
  background:var(--accent); color:#fff;
  font-size:12px; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  line-height:22px; text-align:center;
}

/* Card image */
#techpro-booking-widget .tp-card-img {
  width:100%; aspect-ratio:4/3; overflow:hidden;
  background:var(--surface); flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
}
#techpro-booking-widget .tp-card-img img {
  width:100%; height:100%; object-fit:cover; object-position:center; display:block;
  transition:transform .4s var(--ease);
}
#techpro-booking-widget .tp-card:hover .tp-card-img img { transform:scale(1.07); }

/* Card icon */
#techpro-booking-widget .tp-card-ico {
  width:100%; aspect-ratio:4/3;
  display:flex; align-items:center; justify-content:center;
  font-size:46px; flex-shrink:0;
  background:linear-gradient(145deg, var(--surface), var(--accent-bg));
  transition:background .2s var(--ease);
}
#techpro-booking-widget .tp-card:hover .tp-card-ico { background:var(--accent-bg); }
#techpro-booking-widget .tp-card.selected .tp-card-ico { background:var(--accent-bg); }

/* Card body */
#techpro-booking-widget .tp-card-body {
  padding:12px 14px 15px;
  display:flex; flex-direction:column; gap:3px;
  flex:1; background:var(--bg);
}
#techpro-booking-widget .tp-device-card .tp-card-body,
#techpro-booking-widget .tp-brand-card .tp-card-body { text-align:center; }
#techpro-booking-widget .tp-card-name {
  font-family:var(--font-h)!important;
  font-size:13px; font-weight:700;
  color:var(--txt)!important; line-height:1.3; margin:0;
}
#techpro-booking-widget .tp-card.selected .tp-card-name { color:var(--accent)!important; }
#techpro-booking-widget .tp-card-desc {
  font-size:11px; color:var(--txt-2)!important;
  line-height:1.4; margin:0;
}
#techpro-booking-widget .tp-card-price { margin-top:6px; }

/* Price tags */
#techpro-booking-widget .tp-price-tag {
  font-family:var(--font-h)!important;
  font-size:14px; font-weight:700; color:var(--accent);
}
#techpro-booking-widget .tp-price-from { font-size:11px; font-weight:600; color:var(--txt-3); }
#techpro-booking-widget .tp-badge-free {
  display:inline-flex; align-items:center;
  background:var(--ok-bg); color:var(--ok);
  border-radius:99px; padding:2px 9px;
  font-size:10px; font-weight:700; letter-spacing:.2px;
}
#techpro-booking-widget .tp-badge-quote {
  display:inline-flex; align-items:center;
  background:var(--warn-bg); color:var(--warn);
  border-radius:99px; padding:2px 9px;
  font-size:10px; font-weight:700;
}

/* ── Model pill cards (no photo) ─────────────────────────────────── */
#techpro-booking-widget .tp-model-card {
  flex-direction:row!important; align-items:center!important;
  padding:12px 16px!important; border-radius:12px!important;
  transform:none!important;
}
#techpro-booking-widget .tp-model-card:hover { transform:none!important; box-shadow:var(--shadow-md)!important; }
#techpro-booking-widget .tp-model-card .tp-card-ico,
#techpro-booking-widget .tp-model-card .tp-card-img { display:none!important; }
#techpro-booking-widget .tp-model-card .tp-card-body { padding:0!important; text-align:left!important; gap:0!important; }
#techpro-booking-widget .tp-model-card .tp-card-name { font-size:13px!important; }
#techpro-booking-widget .tp-model-card.selected::after { position:static!important; margin-left:auto!important; flex-shrink:0; }

/* ── Model photo cards ───────────────────────────────────────────── */
#techpro-booking-widget .tp-model-photo {
  flex-direction:column!important;
}
#techpro-booking-widget .tp-model-photo .tp-card-img,
#techpro-booking-widget .tp-model-photo .tp-card-ico { display:flex!important; aspect-ratio:4/3!important; }
#techpro-booking-widget .tp-model-photo .tp-card-body { text-align:center!important; }
#techpro-booking-widget .tp-model-photo.selected::after { position:absolute!important; top:9px!important; right:10px!important; margin-left:0!important; }

/* ── Loading / Error ─────────────────────────────────────────────── */
#techpro-booking-widget .tp-loading {
  grid-column:1/-1; display:flex; align-items:center; justify-content:center;
  gap:14px; padding:48px 24px; color:var(--txt-3); font-size:14px;
}
#techpro-booking-widget .tp-spinner {
  width:28px; height:28px; flex-shrink:0;
  border:2.5px solid var(--border-2);
  border-top-color:var(--accent);
  border-radius:50%;
  animation:spin .7s linear infinite;
}
@keyframes spin { to { transform:rotate(360deg); } }
#techpro-booking-widget .tp-err-card {
  grid-column:1/-1; background:var(--danger-bg); border:1.5px solid #fecaca;
  border-radius:var(--radius); padding:28px 24px; text-align:center;
  color:var(--danger); font-size:14px; font-weight:500;
}
.dark #techpro-booking-widget .tp-err-card,
.dark-mode #techpro-booking-widget .tp-err-card,
[data-theme="dark"] #techpro-booking-widget .tp-err-card,
#techpro-booking-widget[data-color-scheme="dark"] .tp-err-card {
  background:rgba(220,38,38,.1); border-color:rgba(220,38,38,.3); color:#fca5a5;
}
#techpro-booking-widget .tp-err-card button {
  margin-top:14px; padding:10px 24px;
  background:var(--accent); color:#fff; border:none;
  border-radius:var(--radius-sm); font-size:14px; font-weight:600; cursor:pointer;
  font-family:var(--font-b)!important;
}

/* ── Custom input box ────────────────────────────────────────────── */
#techpro-booking-widget .tp-custom-box {
  margin-top:20px; padding:18px 20px;
  background:var(--surface); border:1.5px solid var(--border);
  border-radius:var(--radius);
  display:flex; flex-direction:column; gap:12px;
}
#techpro-booking-widget .tp-custom-lbl {
  font-size:12px; font-weight:600; color:var(--txt-2);
  display:flex; align-items:center; gap:6px;
}
#techpro-booking-widget .tp-custom-row {
  display:flex; gap:10px; align-items:center; flex-wrap:wrap;
}
#techpro-booking-widget .tp-custom-row .tp-input { flex:1; min-width:160px; }

/* ── Returning customer tip ──────────────────────────────────────── */
#techpro-booking-widget .tp-returning {
  display:flex; align-items:center; gap:10px;
  background:var(--ok-bg); border:1.5px solid rgba(5,150,105,.2);
  border-radius:var(--radius-sm); padding:12px 16px; margin-top:16px;
  font-size:13px; color:var(--ok); font-weight:500;
  animation:tpIn .3s var(--ease);
}
#techpro-booking-widget .tp-returning svg { flex-shrink:0; }

/* ── Step 5: Estimate ────────────────────────────────────────────── */
#techpro-booking-widget .tp-est-wrap {
  display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:24px;
}
@media(max-width:640px){
  #techpro-booking-widget .tp-est-wrap { grid-template-columns:1fr; }
}
#techpro-booking-widget .tp-est-left {
  background:var(--surface); border:1.5px solid var(--border);
  border-radius:var(--radius); padding:24px;
  display:flex; flex-direction:column; gap:12px;
}
#techpro-booking-widget .tp-est-icon { font-size:44px; line-height:1; }
#techpro-booking-widget .tp-est-device {
  font-family:var(--font-h)!important;
  font-size:20px; font-weight:800; letter-spacing:-.4px;
  color:var(--txt)!important; line-height:1.2;
}
#techpro-booking-widget .tp-est-service { font-size:14px; color:var(--txt-2)!important; }
#techpro-booking-widget .tp-est-badges {
  display:flex; flex-wrap:wrap; gap:6px; margin-top:4px;
}
#techpro-booking-widget .tp-est-badge {
  display:inline-flex; align-items:center; gap:5px;
  background:var(--bg); border:1px solid var(--border);
  border-radius:99px; padding:4px 11px;
  font-size:11px; font-weight:500; color:var(--txt-2);
}

#techpro-booking-widget .tp-price-card {
  background:var(--bg); border:1.5px solid var(--border);
  border-radius:var(--radius); overflow:hidden;
  display:flex; flex-direction:column;
}
#techpro-booking-widget .tp-price-hd {
  background:var(--accent); padding:22px 24px; color:#fff;
}
#techpro-booking-widget .tp-price-lbl {
  font-size:10px; font-weight:700;
  text-transform:uppercase; letter-spacing:.8px;
  opacity:.8; margin-bottom:4px;
}
#techpro-booking-widget .tp-price-amt {
  font-family:var(--font-h)!important;
  font-size:44px; font-weight:800;
  letter-spacing:-2px; line-height:1;
}
#techpro-booking-widget .tp-price-note { font-size:12px; opacity:.75; margin-top:6px; }
#techpro-booking-widget .tp-price-rows { padding:4px 24px 8px; flex:1; }
#techpro-booking-widget .tp-price-row {
  display:flex; justify-content:space-between; align-items:center;
  padding:11px 0; border-bottom:1px solid var(--border);
  font-size:14px; color:var(--txt-2)!important;
}
#techpro-booking-widget .tp-price-row:last-child { border-bottom:none; }
#techpro-booking-widget .tp-price-val { font-weight:600; color:var(--txt)!important; }
#techpro-booking-widget .tp-price-discount .tp-price-val { color:var(--ok)!important; }
#techpro-booking-widget .tp-diag-note {
  margin:0 24px 20px; padding:10px 14px;
  background:var(--warn-bg); border:1px solid rgba(217,119,6,.25);
  border-radius:var(--radius-xs); font-size:12px; color:var(--warn); font-weight:500;
}

/* ── Step 6: Book ────────────────────────────────────────────────── */
#techpro-booking-widget .tp-strip {
  display:flex; align-items:center; gap:20px; flex-wrap:wrap;
  background:var(--surface); border:1.5px solid var(--border);
  border-radius:var(--radius); padding:16px 22px; margin-bottom:24px;
}
#techpro-booking-widget .tp-strip-item { display:flex; flex-direction:column; gap:3px; flex:1; min-width:70px; }
#techpro-booking-widget .tp-strip-key {
  font-size:9px; font-weight:700;
  text-transform:uppercase; letter-spacing:.7px; color:var(--txt-3);
}
#techpro-booking-widget .tp-strip-val { font-size:14px; font-weight:600; color:var(--txt)!important; }
#techpro-booking-widget .tp-strip-price {
  font-family:var(--font-h)!important;
  font-size:22px; font-weight:800; color:var(--accent)!important; letter-spacing:-.5px;
}
#techpro-booking-widget .tp-strip-div { width:1px; height:30px; background:var(--border); flex-shrink:0; }

/* Form */
#techpro-booking-widget .tp-form { margin-bottom:20px; }
#techpro-booking-widget .tp-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:14px; }
#techpro-booking-widget .tp-field { display:flex; flex-direction:column; gap:6px; }
#techpro-booking-widget .tp-full { grid-column:1/-1; }
@media(max-width:560px){ #techpro-booking-widget .tp-row { grid-template-columns:1fr; } }

#techpro-booking-widget .tp-label {
  font-size:10px; font-weight:700;
  text-transform:uppercase; letter-spacing:.6px; color:var(--txt-2)!important;
}
#techpro-booking-widget .tp-req { color:var(--accent); }
#techpro-booking-widget .tp-input,
#techpro-booking-widget .tp-textarea {
  width:100%; background:var(--bg)!important;
  border:1.5px solid var(--border-2); color:var(--txt)!important;
  font-size:15px; font-family:var(--font-b)!important;
  border-radius:var(--radius-sm); padding:12px 15px;
  outline:none; appearance:none;
  transition:border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
#techpro-booking-widget .tp-input:focus,
#techpro-booking-widget .tp-textarea:focus {
  border-color:var(--accent); box-shadow:0 0 0 3px var(--accent-bg);
}
#techpro-booking-widget .tp-input::placeholder,
#techpro-booking-widget .tp-textarea::placeholder { color:var(--txt-3); }
#techpro-booking-widget .tp-textarea { resize:vertical; min-height:88px; line-height:1.55; }
#techpro-booking-widget .tp-input-hint { font-size:11px; color:var(--txt-3); margin-top:3px; }

/* Next steps */
#techpro-booking-widget .tp-next-box {
  background:var(--surface); border:1.5px solid var(--border);
  border-radius:var(--radius); padding:18px 22px; margin-bottom:18px;
}
#techpro-booking-widget .tp-next-title {
  font-size:11px; font-weight:700;
  text-transform:uppercase; letter-spacing:.6px; color:var(--txt-3);
  margin-bottom:14px;
}
#techpro-booking-widget .tp-next-item {
  display:flex; gap:12px; align-items:flex-start;
  font-size:14px; color:var(--txt-2)!important;
  line-height:1.55; margin-bottom:10px;
}
#techpro-booking-widget .tp-next-item:last-child { margin-bottom:0; }
#techpro-booking-widget .tp-next-item strong { color:var(--txt)!important; font-weight:600; }
#techpro-booking-widget .tp-next-num {
  width:24px; height:24px; border-radius:50%;
  background:var(--accent); color:#fff;
  font-size:11px; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; margin-top:2px;
}

/* Coupon */
#techpro-booking-widget .tp-coupon-row { display:flex; gap:10px; margin-bottom:14px; }
#techpro-booking-widget .tp-coupon-row .tp-input {
  flex:1; font-family:var(--font-m)!important;
  text-transform:uppercase; letter-spacing:1.5px; font-size:14px;
}

/* Errors */
#techpro-booking-widget .tp-err {
  background:var(--danger-bg); border:1.5px solid #fecaca;
  border-radius:var(--radius-sm); padding:12px 16px;
  font-size:14px; color:var(--danger); font-weight:500; margin-bottom:14px;
}
.dark #techpro-booking-widget .tp-err,
.dark-mode #techpro-booking-widget .tp-err,
[data-theme="dark"] #techpro-booking-widget .tp-err,
#techpro-booking-widget[data-color-scheme="dark"] .tp-err {
  background:rgba(220,38,38,.1); border-color:rgba(220,38,38,.3); color:#fca5a5;
}

#techpro-booking-widget .tp-disclaimer {
  text-align:center; font-size:12px; color:var(--txt-3)!important;
  margin-top:14px; line-height:1.65;
}

/* ── Buttons ─────────────────────────────────────────────────────── */
#techpro-booking-widget .tp-btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--font-b)!important; font-size:15px; font-weight:600;
  padding:13px 26px; border-radius:var(--radius-sm);
  border:none; cursor:pointer;
  transition:all var(--dur) var(--ease);
  white-space:nowrap; text-decoration:none;
  -webkit-tap-highlight-color:transparent;
}
#techpro-booking-widget .tp-btn-primary {
  background:var(--accent); color:#fff!important;
  box-shadow:0 1px 2px rgba(24,96,240,.2), 0 4px 16px rgba(24,96,240,.28);
}
#techpro-booking-widget .tp-btn-primary:hover {
  background:var(--accent-2);
  box-shadow:0 2px 4px rgba(24,96,240,.2), 0 8px 28px rgba(24,96,240,.38);
  transform:translateY(-1px);
}
#techpro-booking-widget .tp-btn-primary:active { transform:none; }
#techpro-booking-widget .tp-btn-secondary {
  background:var(--surface); color:var(--txt-2)!important;
  border:1.5px solid var(--border-2);
}
#techpro-booking-widget .tp-btn-secondary:hover { border-color:var(--accent); color:var(--accent)!important; }
#techpro-booking-widget .tp-btn-full { width:100%; }
#techpro-booking-widget .tp-btn-lg { padding:15px 32px; font-size:16px; }
#techpro-booking-widget .tp-btn:disabled { opacity:.45; cursor:not-allowed; transform:none!important; }

/* ── Booking tracker ─────────────────────────────────────────────── */
#techpro-booking-widget .tp-tracker {
  background:var(--surface); border:1.5px solid var(--border);
  border-radius:var(--radius); padding:20px 24px; margin-top:28px;
}
#techpro-booking-widget .tp-tracker-title {
  font-size:12px; font-weight:700;
  text-transform:uppercase; letter-spacing:.6px; color:var(--txt-3); margin-bottom:12px;
}
#techpro-booking-widget .tp-tracker-row { display:flex; gap:10px; }
#techpro-booking-widget .tp-tracker-row .tp-input { font-family:var(--font-m)!important; text-transform:uppercase; letter-spacing:1px; font-size:14px; }
#techpro-booking-widget .tp-tracker-result {
  margin-top:14px; padding:14px 18px;
  background:var(--bg); border:1.5px solid var(--border);
  border-radius:var(--radius-sm); font-size:14px;
  display:none;
}
#techpro-booking-widget .tp-status-badge {
  display:inline-block; padding:3px 10px; border-radius:99px;
  font-size:11px; font-weight:700; margin-left:8px;
  text-transform:capitalize;
}
#techpro-booking-widget .tp-status-new        { background:#dbeafe; color:#1d4ed8; }
#techpro-booking-widget .tp-status-pending     { background:var(--warn-bg); color:var(--warn); }
#techpro-booking-widget .tp-status-confirmed   { background:var(--ok-bg); color:var(--ok); }
#techpro-booking-widget .tp-status-in_progress { background:#f3e8ff; color:#7c3aed; }
#techpro-booking-widget .tp-status-completed   { background:var(--ok-bg); color:var(--ok); }
#techpro-booking-widget .tp-status-cancelled   { background:var(--danger-bg); color:var(--danger); }

/* ── Done screen ─────────────────────────────────────────────────── */
#techpro-booking-widget .tp-done-wrap {
  max-width:500px; margin:0 auto; text-align:center;
  padding:32px 0 56px;
}
#techpro-booking-widget .tp-check-ring {
  width:80px; height:80px; margin:0 auto 24px;
}
#techpro-booking-widget .tp-check-svg { width:80px; height:80px; display:block; }
#techpro-booking-widget .tp-check-circle {
  stroke:var(--accent); stroke-width:2; fill:none;
  stroke-dasharray:166; stroke-dashoffset:166;
  animation:drawC .6s ease .15s forwards;
}
#techpro-booking-widget .tp-check-tick {
  stroke:var(--accent); stroke-width:2.8; fill:none;
  stroke-linecap:round; stroke-linejoin:round;
  stroke-dasharray:48; stroke-dashoffset:48;
  animation:drawC .35s ease .8s forwards;
}
@keyframes drawC { to { stroke-dashoffset:0; } }
#techpro-booking-widget .tp-done-h { 
  font-family:var(--font-h)!important;
  font-size:28px; font-weight:800; letter-spacing:-.5px;
  color:var(--txt)!important; margin-bottom:8px;
}
#techpro-booking-widget .tp-done-sub {
  font-size:15px; color:var(--txt-2)!important;
  margin-bottom:24px; line-height:1.65;
}
#techpro-booking-widget .tp-ref-box {
  display:inline-flex; align-items:center; gap:12px;
  background:var(--accent-bg); border:1.5px solid var(--accent);
  border-radius:var(--radius-sm); padding:12px 18px; margin-bottom:24px;
}
#techpro-booking-widget .tp-ref-lbl {
  font-size:9px; font-weight:700; color:var(--accent);
  text-transform:uppercase; letter-spacing:.6px; margin-bottom:2px;
}
#techpro-booking-widget .tp-ref-num {
  font-family:var(--font-m)!important;
  font-size:18px; font-weight:500; color:var(--accent)!important; letter-spacing:1px;
}
#techpro-booking-widget .tp-copy-btn {
  background:none; border:none; cursor:pointer;
  font-size:16px; padding:0; color:var(--accent);
  transition:opacity .15s; opacity:.8;
}
#techpro-booking-widget .tp-copy-btn:hover { opacity:1; }
#techpro-booking-widget .tp-done-sum {
  background:var(--surface); border:1.5px solid var(--border);
  border-radius:var(--radius); padding:18px 22px; text-align:left; margin-bottom:24px;
}
#techpro-booking-widget .tp-done-row {
  display:flex; justify-content:space-between; align-items:baseline;
  padding:10px 0; border-bottom:1px solid var(--border);
  font-size:14px; gap:12px;
}
#techpro-booking-widget .tp-done-row:last-child { border-bottom:none; }
#techpro-booking-widget .tp-done-key { color:var(--txt-2)!important; font-weight:400; white-space:nowrap; }
#techpro-booking-widget .tp-done-val { color:var(--txt)!important; font-weight:600; text-align:right; }
#techpro-booking-widget .tp-done-row.is-total .tp-done-val {
  font-family:var(--font-h)!important;
  color:var(--accent)!important; font-size:20px; font-weight:800; letter-spacing:-.5px;
}

/* ── Card style presets ──────────────────────────────────────────── */
#techpro-booking-widget.tp-glass-style .tp-card {
  background:rgba(255,255,255,.55)!important;
  backdrop-filter:blur(22px) saturate(1.8);
  -webkit-backdrop-filter:blur(22px) saturate(1.8);
  border:1px solid rgba(255,255,255,.65)!important;
  box-shadow:0 8px 32px rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.85)!important;
}
#techpro-booking-widget.tp-glass-style .tp-card:hover {
  transform:translateY(-3px)!important;
  box-shadow:0 16px 48px rgba(24,96,240,.18), inset 0 1px 0 rgba(255,255,255,.9)!important;
}
.dark #techpro-booking-widget.tp-glass-style .tp-card,
.dark-mode #techpro-booking-widget.tp-glass-style .tp-card,
[data-theme="dark"] #techpro-booking-widget.tp-glass-style .tp-card,
#techpro-booking-widget.tp-glass-style[data-color-scheme="dark"] .tp-card {
  background:rgba(21,24,36,.7)!important;
  border:1px solid rgba(255,255,255,.07)!important;
  box-shadow:0 8px 32px rgba(0,0,0,.5)!important;
}
#techpro-booking-widget.tp-flat-style .tp-card { border:none!important; box-shadow:none!important; background:var(--surface)!important; }
#techpro-booking-widget.tp-flat-style .tp-card:hover { background:var(--accent-bg)!important; transform:none!important; box-shadow:none!important; }
#techpro-booking-widget.tp-flat-style .tp-card.selected { background:var(--accent-bg)!important; }
#techpro-booking-widget.tp-neuro-style .tp-card { background:#e8edf5!important; border:none!important; box-shadow:8px 8px 18px rgba(160,174,196,.5),-8px -8px 18px rgba(255,255,255,.9)!important; }
#techpro-booking-widget.tp-neuro-style .tp-card:hover { box-shadow:10px 10px 24px rgba(160,174,196,.6),-10px -10px 24px rgba(255,255,255,.95)!important; transform:none!important; }
#techpro-booking-widget.tp-neuro-style .tp-card.selected { box-shadow:inset 4px 4px 10px rgba(160,174,196,.5),inset -4px -4px 10px rgba(255,255,255,.9)!important; }
#techpro-booking-widget.tp-outline-style .tp-card { background:transparent!important; box-shadow:none!important; border-width:2px!important; }
#techpro-booking-widget.tp-outline-style .tp-card:hover { background:var(--accent-bg)!important; transform:none!important; }

/* ── Responsive ──────────────────────────────────────────────────── */
@media(max-width:520px){
  #techpro-booking-widget .tp-panel { padding-left:16px; padding-right:16px; }
  #techpro-booking-widget .tp-h1 { font-size:22px; }
  #techpro-booking-widget .tp-price-amt { font-size:36px; }
  #techpro-booking-widget .tp-strip { gap:12px; }
}

/* ── Form sections (grouped, labeled blocks) ─────────────────────── */
#techpro-booking-widget .tp-form-section {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}
#techpro-booking-widget .tp-form-section-hd {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--border);
}
#techpro-booking-widget .tp-form-section-ico {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}
#techpro-booking-widget .tp-form-section-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--txt)!important;
  letter-spacing: -.1px;
  flex: 1;
}
#techpro-booking-widget .tp-form-section-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--txt-3);
  background: var(--surface-2);
  border-radius: 99px;
  padding: 2px 9px;
}

/* ── Per-field validation errors ──────────────────────────────────── */
#techpro-booking-widget .tp-field-err {
  display: none;
  font-size: 12px;
  font-weight: 600;
  color: var(--danger)!important;
  margin-top: 4px;
  line-height: 1.4;
}
#techpro-booking-widget .tp-input-error {
  border-color: var(--danger)!important;
  box-shadow: 0 0 0 3px rgba(220,38,38,.12)!important;
}
#techpro-booking-widget .tp-input-error:focus {
  border-color: var(--danger)!important;
  box-shadow: 0 0 0 3px rgba(220,38,38,.18)!important;
}
#techpro-booking-widget .tp-input.tp-input-valid {
  border-color: var(--ok)!important;
}

/* ── Monospace input variant ──────────────────────────────────────── */
#techpro-booking-widget .tp-input-mono {
  font-family: var(--font-m)!important;
  font-size: 14px;
  letter-spacing: .5px;
}

/* ── Label optional tag ───────────────────────────────────────────── */
#techpro-booking-widget .tp-label-opt {
  font-size: 10px;
  font-weight: 400;
  color: var(--txt-3)!important;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 3px;
}

/* ── Coupon collapsible section ───────────────────────────────────── */
#techpro-booking-widget .tp-coupon-section {
  margin-bottom: 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
#techpro-booking-widget .tp-coupon-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  cursor: pointer;
  background: var(--surface);
  user-select: none;
  transition: background var(--dur) var(--ease);
}
#techpro-booking-widget .tp-coupon-toggle:hover {
  background: var(--accent-bg);
}
#techpro-booking-widget .tp-coupon-toggle:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -2px;
}
#techpro-booking-widget .tp-coupon-toggle-ico { font-size: 16px; }
#techpro-booking-widget .tp-coupon-toggle-txt {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: var(--txt-2)!important;
}
#techpro-booking-widget .tp-coupon-toggle-arrow {
  font-size: 18px;
  color: var(--txt-3);
  transition: transform .2s var(--ease);
  line-height: 1;
}
#techpro-booking-widget .tp-coupon-body {
  padding: 16px 18px;
  border-top: 1px solid var(--border);
  background: var(--bg);
  animation: tpIn .15s var(--ease);
}
#techpro-booking-widget .tp-coupon-row {
  display: flex;
  gap: 10px;
  margin-bottom: 0;
}
#techpro-booking-widget .tp-coupon-row .tp-input { flex: 1; }

/* Coupon status messages */
#techpro-booking-widget .tp-coupon-msg {
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-xs);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}
#techpro-booking-widget .tp-coupon-msg--ok {
  color: var(--ok)!important;
  background: var(--ok-bg);
  border: 1px solid rgba(5,150,105,.2);
}
#techpro-booking-widget .tp-coupon-msg--error {
  color: var(--danger)!important;
  background: var(--danger-bg);
  border: 1px solid rgba(220,38,38,.2);
}

/* ── Price savings badge (inline, after estimate in strip) ────────── */
#techpro-booking-widget .tp-saving-badge {
  display: inline-block;
  background: var(--ok-bg);
  color: var(--ok)!important;
  border: 1px solid rgba(5,150,105,.25);
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 9px;
  margin-left: 8px;
  vertical-align: middle;
  animation: tpIn .2s var(--ease);
}

/* ── Submit button spinner ────────────────────────────────────────── */
#techpro-booking-widget .tp-btn-spinner {
  width: 18px;
  height: 18px;
  animation: spin .7s linear infinite;
  flex-shrink: 0;
}

/* ── v11 premium refinement layer ────────────────────────────────── */
#techpro-booking-widget.ifix-booking-v96 {
  --bg: #ffffff;
  --surface: #f6f7f9;
  --surface-2: #eef1f5;
  --border: #dde2ea;
  --border-2: #c8d0dc;
  --txt: #111827;
  --txt-2: #475569;
  --txt-3: #7b8798;
  --accent: #1860f0;
  --accent-2: #1450d0;
  --accent-bg: #ebf1ff;
  --ok: #047857;
  --ok-bg: #ecfdf3;
  --warn: #b45309;
  --warn-bg: #fff7ed;
  --danger: #b91c1c;
  --danger-bg: #fff1f2;
  --radius: 8px;
  --radius-sm: 8px;
  --radius-xs: 6px;
  --shadow: 0 1px 2px rgba(15, 23, 42, .05), 0 10px 24px rgba(15, 23, 42, .07);
  --shadow-md: 0 2px 4px rgba(15, 23, 42, .06), 0 18px 42px rgba(21, 94, 239, .15);
  max-width: 100%;
  isolation: isolate;
}

.dark-mode #techpro-booking-widget.ifix-booking-v96,
.dark #techpro-booking-widget.ifix-booking-v96,
[data-theme="dark"] #techpro-booking-widget.ifix-booking-v96,
#techpro-booking-widget.ifix-booking-v96[data-color-scheme="dark"] {
  --bg: #10141d;
  --surface: #171d29;
  --surface-2: #202838;
  --border: #2a3446;
  --border-2: #3a465b;
  --txt: #f8fafc;
  --txt-2: #b8c2d4;
  --txt-3: #8490a4;
  --accent: #6ea8ff;
  --accent-2: #4d8df7;
  --accent-bg: #132748;
  --ok: #34d399;
  --ok-bg: #063321;
  --shadow: 0 1px 2px rgba(0, 0, 0, .25), 0 18px 44px rgba(0, 0, 0, .34);
  --shadow-md: 0 2px 4px rgba(0, 0, 0, .32), 0 22px 54px rgba(0, 0, 0, .42);
}

#techpro-booking-widget.ifix-booking-v96 .tp-stepper,
#techpro-booking-widget.ifix-booking-v96 .tp-panel {
  max-width: 1040px;
}

#techpro-booking-widget.ifix-booking-v96 .tp-stepper {
  padding-top: 28px;
}

#techpro-booking-widget.ifix-booking-v96 .tp-track::before,
#techpro-booking-widget.ifix-booking-v96 .tp-track-fill {
  height: 3px;
  border-radius: 999px;
}

#techpro-booking-widget.ifix-booking-v96 .tp-node {
  width: 32px;
  height: 32px;
  border-width: 1px;
  background: var(--bg);
  box-shadow: 0 0 0 6px var(--bg);
}

#techpro-booking-widget.ifix-booking-v96 .tp-node.is-active {
  box-shadow: 0 0 0 5px var(--accent-bg), 0 8px 20px rgba(21, 94, 239, .25);
  transform: none;
}

#techpro-booking-widget.ifix-booking-v96 .tp-lbl,
#techpro-booking-widget.ifix-booking-v96 .tp-next-title,
#techpro-booking-widget.ifix-booking-v96 .tp-tracker-title,
#techpro-booking-widget.ifix-booking-v96 .tp-ref-lbl,
#techpro-booking-widget.ifix-booking-v96 .tp-form-section-badge {
  letter-spacing: 0;
}

#techpro-booking-widget.ifix-booking-v96 .tp-h1 {
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 800;
}

#techpro-booking-widget.ifix-booking-v96 .tp-sub {
  max-width: 680px;
}

#techpro-booking-widget.ifix-booking-v96 .tp-card,
#techpro-booking-widget.ifix-booking-v96 .tp-form-section,
#techpro-booking-widget.ifix-booking-v96 .tp-next-box,
#techpro-booking-widget.ifix-booking-v96 .tp-coupon-section,
#techpro-booking-widget.ifix-booking-v96 .tp-tracker,
#techpro-booking-widget.ifix-booking-v96 .tp-done-sum,
#techpro-booking-widget.ifix-booking-v96 .tp-price-card,
#techpro-booking-widget.ifix-booking-v96 .tp-est-left,
#techpro-booking-widget.ifix-booking-v96 .tp-strip {
  border-width: 1px;
  border-radius: var(--radius);
}

#techpro-booking-widget.ifix-booking-v96 .tp-card {
  min-height: 132px;
  border-color: var(--border);
  background: var(--bg);
}

#techpro-booking-widget.ifix-booking-v96 .tp-card:hover {
  transform: translateY(-2px);
}

#techpro-booking-widget.ifix-booking-v96 .tp-card.selected {
  background: var(--accent-bg);
}

#techpro-booking-widget.ifix-booking-v96 .tp-card-name,
#techpro-booking-widget.ifix-booking-v96 .tp-form-section-title,
#techpro-booking-widget.ifix-booking-v96 .tp-strip-val {
  letter-spacing: 0;
}

#techpro-booking-widget.ifix-booking-v96 .tp-card-desc,
#techpro-booking-widget.ifix-booking-v96 .tp-input-hint,
#techpro-booking-widget.ifix-booking-v96 .tp-disclaimer {
  line-height: 1.55;
}

#techpro-booking-widget.ifix-booking-v96 .tp-card-ico {
  background: var(--surface);
  color: var(--accent);
}

#techpro-booking-widget.ifix-booking-v96 .tp-model-card {
  min-height: 58px;
}

#techpro-booking-widget.ifix-booking-v96 .tp-est-wrap {
  gap: 18px;
}

#techpro-booking-widget.ifix-booking-v96 .tp-est-left,
#techpro-booking-widget.ifix-booking-v96 .tp-price-card {
  box-shadow: var(--shadow);
}

#techpro-booking-widget.ifix-booking-v96 .tp-price-hd {
  background: var(--accent);
}

#techpro-booking-widget.ifix-booking-v96 .tp-price-amt {
  letter-spacing: 0;
}

#techpro-booking-widget.ifix-booking-v96 .tp-est-badge,
#techpro-booking-widget.ifix-booking-v96 .tp-price-tag,
#techpro-booking-widget.ifix-booking-v96 .tp-badge-free,
#techpro-booking-widget.ifix-booking-v96 .tp-badge-quote,
#techpro-booking-widget.ifix-booking-v96 .tp-saving-badge {
  border-radius: 999px;
  letter-spacing: 0;
}

#techpro-booking-widget.ifix-booking-v96 .tp-input,
#techpro-booking-widget.ifix-booking-v96 .tp-textarea {
  border-width: 1px;
  min-height: 48px;
  box-shadow: inset 0 1px 0 rgba(15, 23, 42, .02);
}

#techpro-booking-widget.ifix-booking-v96 .tp-input:focus,
#techpro-booking-widget.ifix-booking-v96 .tp-textarea:focus {
  box-shadow: 0 0 0 4px rgba(24, 96, 240, .14);
}

#techpro-booking-widget.ifix-booking-v96 .tp-btn,
#techpro-booking-widget.ifix-booking-v96 .tp-refresh-page {
  min-height: 46px;
  border-radius: var(--radius-sm);
  letter-spacing: 0;
}

#techpro-booking-widget.ifix-booking-v96 .tp-btn-primary {
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(24, 96, 240, .26);
}

#techpro-booking-widget.ifix-booking-v96 .tp-btn-primary:hover {
  background: var(--accent-2);
}

#techpro-booking-widget.ifix-booking-v96 .tp-btn-secondary,
#techpro-booking-widget.ifix-booking-v96 .tp-refresh-page {
  background: var(--bg);
  border: 1px solid var(--border-2);
  color: var(--txt)!important;
}

#techpro-booking-widget.ifix-booking-v96 .tp-refresh-page {
  margin-top: 14px;
  padding: 10px 22px;
  font-family: var(--font-b)!important;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

#techpro-booking-widget.ifix-booking-v96 .tp-next-num {
  border-radius: 8px;
  background: var(--accent);
}

#techpro-booking-widget.ifix-booking-v96 .tp-coupon-toggle {
  background: var(--bg);
}

#techpro-booking-widget.ifix-booking-v96 .tp-ref-box {
  border-width: 1px;
  border-radius: var(--radius);
}

#techpro-booking-widget.ifix-booking-v96 .tp-copy-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--bg);
}

@media (max-width: 740px) {
  #techpro-booking-widget.ifix-booking-v96 .tp-h1 {
    font-size: 28px;
  }
  #techpro-booking-widget.ifix-booking-v96 .tp-card {
    min-height: 118px;
  }
}

@media (max-width: 520px) {
  #techpro-booking-widget.ifix-booking-v96 .tp-h1 {
    font-size: 24px;
  }
  #techpro-booking-widget.ifix-booking-v96 .tp-coupon-row,
  #techpro-booking-widget.ifix-booking-v96 .tp-custom-row,
  #techpro-booking-widget.ifix-booking-v96 .tp-tracker-row {
    flex-direction: column;
  }
  #techpro-booking-widget.ifix-booking-v96 .tp-strip {
    flex-direction: column;
    align-items: stretch;
  }
  #techpro-booking-widget.ifix-booking-v96 .tp-strip-div {
    display: none;
  }
}

/* ==========================================================================
   v11.1.6 Full Premium Redesign
   Clear, bright, iFix-blue repair booking experience.
   ========================================================================== */
#techpro-booking-widget.ifix-booking-v111 {
  --bg:#ffffff;
  --surface:#f5f8ff;
  --surface-2:#e8f0ff;
  --border:#dbe5f5;
  --border-2:#c7d6ec;
  --txt:#10233f;
  --txt-2:#516179;
  --txt-3:#7f8da3;
  --accent:#1860f0;
  --accent-2:#0b4fd7;
  --accent-bg:#eaf1ff;
  --ok:#0d9488;
  --ok-bg:#e6fffb;
  --warn:#b7791f;
  --warn-bg:#fff8e6;
  --danger:#c81e1e;
  --danger-bg:#fff1f1;
  --radius:8px;
  --radius-sm:8px;
  --radius-xs:6px;
  --shadow:0 1px 2px rgba(16,35,63,.05),0 14px 34px rgba(24,96,240,.10);
  --shadow-md:0 2px 4px rgba(16,35,63,.08),0 22px 50px rgba(24,96,240,.18);
  isolation:isolate;
  width:100%;
  max-width:var(--ifx-widget-max-width, 960px);
  margin:0 auto;
  transform:none;
  padding:56px clamp(18px,3vw,38px) 64px;
  background:linear-gradient(180deg,#f6f9ff 0%,#ffffff 46%,#ffffff 100%);
}
#techpro-booking-widget.ifix-booking-v111::before {
  content:"";
  position:absolute;
  inset:-18px max(0px,calc((100vw - 100%) / -2)) auto;
  height:420px;
  z-index:-1;
  background:
    linear-gradient(120deg,rgba(24,96,240,.12),rgba(13,148,136,.08) 44%,rgba(255,255,255,0) 84%),
    linear-gradient(180deg,#f8fbff,#fff);
  border-bottom:0;
}
#techpro-booking-widget.ifix-booking-v111::before {
  display:none!important;
}
#techpro-booking-widget.ifix-booking-v111 .tp-stepper,
#techpro-booking-widget.ifix-booking-v111 .tp-panel {
  max-width:var(--ifx-widget-max-width, 960px)!important;
}
#techpro-booking-widget.ifix-booking-v111 .tp-stepper,
#techpro-booking-widget.ifix-booking-v111 .tp-panel { max-width:1120px; }
#techpro-booking-widget.ifix-booking-v111 .tp-stepper { padding-top:30px;padding-bottom:18px; }
#techpro-booking-widget.ifix-booking-v111 .tp-track {
  background:rgba(255,255,255,.82);
  border:1px solid rgba(199,214,236,.85);
  border-radius:8px;
  padding:16px 18px;
  box-shadow:0 12px 30px rgba(16,35,63,.07);
}
#techpro-booking-widget.ifix-booking-v111 .tp-track::before { left:32px;right:32px;background:#d9e5f6; }
#techpro-booking-widget.ifix-booking-v111 .tp-track-fill { left:32px;background:linear-gradient(90deg,#1860f0,#0d9488); }
#techpro-booking-widget.ifix-booking-v111 .tp-node {
  width:38px;height:38px;border-radius:8px;border-color:#c9d8ee;color:#63758f;
  box-shadow:0 8px 18px rgba(16,35,63,.08);
}
#techpro-booking-widget.ifix-booking-v111 .tp-node.is-active {
  background:#1860f0;border-color:#1860f0;
  box-shadow:0 0 0 5px rgba(24,96,240,.14),0 14px 28px rgba(24,96,240,.28);
  transform:none;
}
#techpro-booking-widget.ifix-booking-v111 .tp-node.is-done { background:#0d9488;border-color:#0d9488; }
#techpro-booking-widget.ifix-booking-v111 .tp-labels { padding:0 12px;margin-top:10px; }
#techpro-booking-widget.ifix-booking-v111 .tp-lbl { font-size:10px;letter-spacing:.4px; }
#techpro-booking-widget.ifix-booking-v111 .tp-hd { margin-bottom:24px;padding:6px 0 0; }
#techpro-booking-widget.ifix-booking-v111 .tp-h1 {
  font-size:clamp(30px,4vw,48px);
  letter-spacing:0;
  color:#10233f!important;
}
#techpro-booking-widget.ifix-booking-v111 .tp-sub { max-width:680px;font-size:16px;color:#516179!important; }
#techpro-booking-widget.ifix-booking-v111 .tp-back {
  height:34px;padding:0 12px;border:1px solid #dbe5f5;border-radius:8px;background:#fff;color:#516179;
}
#techpro-booking-widget.ifix-booking-v111 .tp-back:hover { border-color:#1860f0;background:#eaf1ff; }
#techpro-booking-widget.ifix-booking-v111 .tp-crumb {
  border:1px solid #c7d6ec;border-radius:8px;background:#fff;color:#1860f0;
}
#techpro-booking-widget.ifix-booking-v111 .tp-grid { gap:16px; }
#techpro-booking-widget.ifix-booking-v111 .tp-card {
  border-radius:8px!important;
  border:1px solid #dbe5f5;
  background:#fff;
  box-shadow:0 1px 2px rgba(16,35,63,.04),0 12px 26px rgba(16,35,63,.06);
}
#techpro-booking-widget.ifix-booking-v111 .tp-card:hover {
  transform:translateY(-4px);
  border-color:#1860f0;
  box-shadow:0 18px 44px rgba(24,96,240,.17);
}
#techpro-booking-widget.ifix-booking-v111 .tp-card.selected {
  background:#f7fbff;
  border-color:#1860f0;
  box-shadow:inset 0 0 0 1px #1860f0,0 20px 46px rgba(24,96,240,.18);
}
#techpro-booking-widget.ifix-booking-v111 .tp-card.selected::after {
  top:10px;right:10px;border-radius:8px;width:28px;height:28px;
  box-shadow:0 8px 18px rgba(24,96,240,.26);
}
#techpro-booking-widget.ifix-booking-v111 .tp-card-img,
#techpro-booking-widget.ifix-booking-v111 .tp-card-ico {
  background:linear-gradient(145deg,#f8fbff,#eaf1ff);
  border-bottom:1px solid #e4ecf8;
}
#techpro-booking-widget.ifix-booking-v111 .tp-card-ico { font-size:52px; }
#techpro-booking-widget.ifix-booking-v111 .tp-card-body { padding:16px; }
#techpro-booking-widget.ifix-booking-v111 .tp-card-name { font-size:15px;letter-spacing:0; }
#techpro-booking-widget.ifix-booking-v111 .tp-brand-card .tp-card-name,
#techpro-booking-widget.ifix-booking-v111 .tp-model-card .tp-card-name,
#techpro-booking-widget.ifix-booking-v111 .tp-model-photo .tp-card-name {
  display:block!important;
  visibility:visible!important;
  opacity:1!important;
  min-height:1.25em;
  color:#10233f!important;
  font-size:max(13px,var(--ifx-card-title-size,15px))!important;
}
#techpro-booking-widget.ifix-booking-v111 .tp-card-desc { font-size:12px;color:#63758f!important; }
#techpro-booking-widget.ifix-booking-v111 .tp-model-card { min-height:58px;background:#fff; }
#techpro-booking-widget.ifix-booking-v111 .tp-model-card .tp-card-name { font-size:14px!important; }
#techpro-booking-widget.ifix-booking-v111 .tp-price-tag { color:#1860f0;font-size:15px; }
#techpro-booking-widget.ifix-booking-v111 .tp-custom-box,
#techpro-booking-widget.ifix-booking-v111 .tp-form-section,
#techpro-booking-widget.ifix-booking-v111 .tp-next-box,
#techpro-booking-widget.ifix-booking-v111 .tp-coupon-section,
#techpro-booking-widget.ifix-booking-v111 .tp-strip,
#techpro-booking-widget.ifix-booking-v111 .tp-est-left,
#techpro-booking-widget.ifix-booking-v111 .tp-price-card,
#techpro-booking-widget.ifix-booking-v111 .tp-done-wrap {
  border-radius:8px!important;
  border:1px solid #dbe5f5!important;
  background:rgba(255,255,255,.94)!important;
  box-shadow:0 1px 2px rgba(16,35,63,.05),0 18px 42px rgba(24,96,240,.09)!important;
}
#techpro-booking-widget.ifix-booking-v111 .tp-est-wrap {
  grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);
  align-items:stretch;
}
#techpro-booking-widget.ifix-booking-v111 .tp-est-left { padding:28px; }
#techpro-booking-widget.ifix-booking-v111 .tp-est-icon {
  width:74px;height:74px;display:flex;align-items:center;justify-content:center;
  border-radius:8px;background:#eaf1ff;border:1px solid #c7d6ec;
}
#techpro-booking-widget.ifix-booking-v111 .tp-est-device { font-size:26px;letter-spacing:0; }
#techpro-booking-widget.ifix-booking-v111 .tp-est-badge {
  border-radius:8px;border-color:#dbe5f5;background:#f8fbff;
}
#techpro-booking-widget.ifix-booking-v111 .tp-price-card { overflow:hidden; }
#techpro-booking-widget.ifix-booking-v111 .tp-price-hd { background:#1860f0;padding:28px; }
#techpro-booking-widget.ifix-booking-v111 .tp-price-lbl { font-size:11px;letter-spacing:.5px; }
#techpro-booking-widget.ifix-booking-v111 .tp-price-amt { font-size:52px;letter-spacing:0; }
#techpro-booking-widget.ifix-booking-v111 .tp-price-note { font-size:13px; }
#techpro-booking-widget.ifix-booking-v111 .tp-price-rows { padding:8px 28px 14px; }
#techpro-booking-widget.ifix-booking-v111 .tp-price-row { font-size:15px;padding:13px 0; }
#techpro-booking-widget.ifix-booking-v111 .tp-price-discount {
  background:#e6fffb;margin:0 -12px;padding-left:12px;padding-right:12px;
  border-radius:8px;border-bottom:none;
}
#techpro-booking-widget.ifix-booking-v111 .tp-form-section { padding:22px;margin-bottom:18px; }
#techpro-booking-widget.ifix-booking-v111 .tp-form-section-hd {
  border-bottom:1px solid #e4ecf8;margin:-2px 0 18px;padding-bottom:14px;
}
#techpro-booking-widget.ifix-booking-v111 .tp-form-section-title { color:#10233f;font-weight:800; }
#techpro-booking-widget.ifix-booking-v111 .tp-input,
#techpro-booking-widget.ifix-booking-v111 .tp-textarea {
  border-radius:8px;border:1px solid #c7d6ec;background:#fff!important;min-height:48px;
}
#techpro-booking-widget.ifix-booking-v111 .tp-input:focus,
#techpro-booking-widget.ifix-booking-v111 .tp-textarea:focus {
  border-color:#1860f0;box-shadow:0 0 0 4px rgba(24,96,240,.13);
}
#techpro-booking-widget.ifix-booking-v111 .tp-btn {
  border-radius:8px!important;min-height:46px;font-weight:800;letter-spacing:0;
}
#techpro-booking-widget.ifix-booking-v111 .tp-btn-primary {
  background:#1860f0!important;color:#fff!important;border:1px solid #1860f0!important;
  box-shadow:0 16px 32px rgba(24,96,240,.24)!important;
}
#techpro-booking-widget.ifix-booking-v111 .tp-btn-primary:hover {
  background:#0b4fd7!important;border-color:#0b4fd7!important;transform:translateY(-1px);
}
#techpro-booking-widget.ifix-booking-v111 .tp-btn-secondary {
  background:#fff!important;color:#1860f0!important;border:1px solid #c7d6ec!important;
}
#techpro-booking-widget.ifix-booking-v111 .tp-btn-secondary:hover { background:#eaf1ff!important;border-color:#1860f0!important; }
#techpro-booking-widget.ifix-booking-v111 .tp-strip { padding:18px 22px;background:#f8fbff!important; }
#techpro-booking-widget.ifix-booking-v111 .tp-strip-price { color:#1860f0!important;font-size:24px; }
#techpro-booking-widget.ifix-booking-v111 .tp-next-num { border-radius:8px;background:#1860f0; }
#techpro-booking-widget.ifix-booking-v111 .tp-coupon-toggle { border-radius:8px;background:#f8fbff; }
#techpro-booking-widget.ifix-booking-v111 .tp-coupon-msg--ok {
  border-radius:8px;background:#e6fffb;border:1px solid #99f6e4;
}
#techpro-booking-widget.ifix-booking-v111 .tp-ref-box {
  border-radius:8px;border:1px solid #c7d6ec;background:#f8fbff;
}
#techpro-booking-widget.ifix-booking-v111 .tp-done-h { color:#10233f!important; }
@media(max-width:760px){
  #techpro-booking-widget.ifix-booking-v111 {
    padding-top:20px;
    background:linear-gradient(180deg,#f6f9ff 0%,#ffffff 58%,#ffffff 100%);
  }
  #techpro-booking-widget.ifix-booking-v111::before { height:220px; }
  #techpro-booking-widget.ifix-booking-v111 .tp-est-wrap { grid-template-columns:1fr; }
  #techpro-booking-widget.ifix-booking-v111 .tp-h1 { font-size:30px; }
  #techpro-booking-widget.ifix-booking-v111 .tp-price-amt { font-size:42px; }
}
@media(max-width:520px){
  #techpro-booking-widget.ifix-booking-v111 {
    width:100%;
    margin-left:0;
    transform:none;
    padding:18px 0 42px;
  }
  #techpro-booking-widget.ifix-booking-v111 .tp-stepper { padding:18px 14px 12px; }
  #techpro-booking-widget.ifix-booking-v111 .tp-panel { padding-left:14px;padding-right:14px; }
  #techpro-booking-widget.ifix-booking-v111 .tp-track { padding:12px; }
  #techpro-booking-widget.ifix-booking-v111 .tp-node { width:32px;height:32px; }
  #techpro-booking-widget.ifix-booking-v111 .tp-card-body { padding:13px; }
}

/* v11.1.7 mobile intro fix: no band line through the headline/subtitle. */
@media(max-width:760px){
  #techpro-booking-widget.ifix-booking-v111::before {
    height:100%;
    min-height:360px;
    border-bottom:0;
    background:linear-gradient(180deg,#f6f9ff 0%,#ffffff 48%,#ffffff 100%);
  }
  #techpro-booking-widget.ifix-booking-v111 .tp-stepper {
    padding-top:16px;
    padding-bottom:10px;
  }
  #techpro-booking-widget.ifix-booking-v111 .tp-panel {
    padding-top:0;
  }
  #techpro-booking-widget.ifix-booking-v111 .tp-hd {
    margin-bottom:20px;
    padding-top:2px;
  }
  #techpro-booking-widget.ifix-booking-v111 .tp-h1 {
    max-width:100%;
    font-size:clamp(28px,9vw,38px);
    line-height:1.08;
    margin-bottom:12px;
  }
  #techpro-booking-widget.ifix-booking-v111 .tp-sub {
    font-size:18px;
    line-height:1.45;
    max-width:100%;
  }
}
@media(max-width:420px){
  #techpro-booking-widget.ifix-booking-v111 .tp-h1 {
    font-size:32px;
  }
  #techpro-booking-widget.ifix-booking-v111 .tp-sub {
    font-size:17px;
  }
}
