/* ─── Huracán Nero · Build Your Quote · split-pane widget ───────
   Scoped under `.shqb`. Mobile-friendly. Animated.
   ───────────────────────────────────────────────────────────── */

.shqb,
.shqb *,
.shqb *::before,
.shqb *::after { box-sizing: border-box; }
.shqb [hidden] { display: none !important; }

.shqb {
  --bg:         #ffffff;
  --surface:    #ffffff;
  --surface-2:  #f6f7f8;
  --ink:        #0a0a0a;
  --ink-2:      #4b5563;
  --ink-3:      #9ca3af;
  --line:       #e5e7eb;
  --line-2:     #d1d5db;
  --accent:     #1d5e5b;      /* Huracán Nero deep teal */
  --accent-2:   #2a7f7b;      /* lighter teal — hover/highlight */
  --accent-soft:#eaf3f2;      /* faint teal wash */
  --gold:       #c8a86a;      /* warm accent for quote badge */
  --black:      #0a0a0a;      /* CTA background — matches their site */
  --black-2:    #1f1f1f;
  --pin:        #ef4444;
  --radius:     16px;
  --pill:       999px;
  --shadow:     0 1px 2px rgba(16,24,40,.04), 0 1px 3px rgba(16,24,40,.06);
  --shadow-2:   0 8px 24px rgba(16,24,40,.08), 0 4px 8px rgba(16,24,40,.04);

  /* Legacy aliases kept so unchanged rules don't break */
  --aqua:       var(--accent);
  --aqua-2:     var(--accent-2);
  --aqua-soft:  var(--accent-soft);

  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  max-height: 1100px;
  overflow: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  border-radius: 16px;
}

/* ─── TOP BAR ───────────────────────────────────────────────── */
.shqb-topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 24px;
  border-bottom: 1px solid #eef0f3;
  background: #000000;
  z-index: 30;
  flex-shrink: 0;
}
.shqb-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  cursor: pointer;
  animation: shqbSlideDown 0.55s cubic-bezier(.36,1.2,.42,.95) both;
}
.shqb-brand:hover { opacity: 0.78; }
@keyframes shqbSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.shqb-brand-words { display: flex; flex-direction: column; line-height: 1; }
.shqb-brand-name {
  font-family: "Abel", "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.18em;
  color: #ffffff;
}
.shqb-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #ffffff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.shqb-menu-btn:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.6); }
.shqb-menu-btn svg { width: 16px; height: 16px; }
.shqb-menu-popover {
  position: absolute;
  top: calc(100% + 8px);
  right: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px;
  min-width: 280px;
  box-shadow: var(--shadow-2);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.shqb-menu-popover a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  color: #22303e;
  font-size: 14.5px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.12s;
}
.shqb-menu-popover a:hover { background: var(--surface-2); }
.shqb-mi { width: 18px; height: 18px; color: var(--ink-2); flex-shrink: 0; }

/* ─── APP CANVAS — split-pane grid ──────────────────────────── */
.shqb-app {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 0fr;
  transition: grid-template-columns 0.6s cubic-bezier(.65,.05,.36,1);
  overflow: hidden;
}
.shqb[data-step="1"] .shqb-app { grid-template-columns: 1fr 0fr; }
.shqb:not([data-step="1"]) .shqb-app { grid-template-columns: 55fr 45fr; }

/* ─── MAP PANE ──────────────────────────────────────────────── */
.shqb-map-pane {
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
}
.shqb-map {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Headline + searchbar overlay (centered top-of-map on step 1; smaller on step 2+) */
.shqb-map-overlay {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: min(560px, calc(100% - 32px));
  text-align: center;
  transition: top 0.5s, opacity 0.4s;
  pointer-events: none;
}
.shqb-map-overlay > * { pointer-events: auto; }
.shqb-overlay-h {
  font-family: "Abel", "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--ink);
  text-shadow: 0 1px 2px rgba(255,255,255,.7);
  transition: font-size 0.4s, margin 0.4s, opacity 0.4s;
  animation: shqbFadeIn 0.65s ease both;
}
.shqb:not([data-step="1"]) .shqb-overlay-h { font-size: 0; margin: 0; opacity: 0; pointer-events: none; }

/* Searchbar (Google-Places-style pill) */
.shqb-searchbar {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: var(--pill);
  box-shadow: var(--shadow-2);
  padding: 4px 6px 4px 18px;
  border: 1px solid var(--line);
}
.shqb-search-icon { width: 20px; height: 20px; color: var(--aqua); flex-shrink: 0; margin-right: 8px; }
.shqb-searchbar input {
  flex: 1;
  padding: 14px 6px;
  background: transparent;
  border: 0;
  outline: 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  min-width: 0;
}
.shqb-searchbar input::placeholder { color: var(--ink-3); font-weight: 400; }
.shqb-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink-3);
  transition: background 0.15s, color 0.15s;
}
.shqb-clear:hover { background: var(--surface-2); color: var(--ink); }
.shqb-clear svg { width: 20px; height: 20px; }

/* Address suggestions dropdown */
.shqb-suggest {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-2);
  max-height: 280px;
  overflow-y: auto;
  z-index: 12;
}
.shqb-suggest li {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14.5px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: background 0.12s;
}
.shqb-suggest li:hover,
.shqb-suggest li[aria-selected="true"] { background: var(--surface-2); }
.shqb-suggest li svg { width: 18px; height: 18px; color: var(--aqua); flex-shrink: 0; margin-top: 2px; }
.shqb-suggest li .shqb-sug-sub { display: block; color: var(--ink-3); font-size: 13px; margin-top: 2px; }

/* Step 1 footer "Next" CTA over the map */
.shqb-mapcta {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 10;
  width: min(560px, calc(100% - 32px));
  transition: opacity 0.4s, transform 0.4s;
}
.shqb:not([data-step="1"]) .shqb-mapcta { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(40px); }

.shqb-bigbtn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 28px;
  background: var(--black);
  color: #ffffff;
  border: 0;
  border-radius: var(--pill);
  font-family: "Abel", "Source Sans Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s, letter-spacing 0.2s;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(10,10,10,.18);
}
.shqb-bigbtn::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 80%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transition: left 0.7s cubic-bezier(.65,.05,.36,1);
}
.shqb-bigbtn:hover:not(:disabled) { background: var(--black-2); letter-spacing: 0.18em; }
.shqb-bigbtn:hover:not(:disabled)::before { left: 100%; }
.shqb-bigbtn:active { transform: translateY(1px); }
.shqb-bigbtn:disabled {
  background: var(--line);
  color: var(--ink-3);
  cursor: not-allowed;
  box-shadow: none;
}
.shqb-bigbtn.shqb-ghost {
  background: #ffffff;
  color: var(--ink);
  border: 1.5px solid var(--line);
  box-shadow: none;
}
.shqb-bigbtn.shqb-ghost:hover { border-color: var(--accent); color: var(--accent); letter-spacing: 0.18em; }

/* Custom Leaflet pin (animated drop + pulse) */
.shqb-pin {
  width: 32px;
  height: 42px;
  position: relative;
  animation: shqbDrop 0.55s cubic-bezier(.36,1.55,.42,.92);
}
.shqb-pin::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--pin);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  transform-origin: center;
  left: 0;
  top: 0;
  box-shadow: 0 4px 8px rgba(0,0,0,.25);
}
.shqb-pin::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-radius: 50%;
  z-index: 1;
}
@keyframes shqbDrop {
  0%   { transform: translateY(-200px) scale(0.6); opacity: 0; }
  60%  { transform: translateY(8px) scale(1.05); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
/* Pulse ring under the pin */
.leaflet-marker-icon.shqb-leaflet-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  width: 24px;
  height: 8px;
  border-radius: 50%;
  background: rgba(239,68,68,.3);
  filter: blur(2px);
  animation: shqbPulse 2.2s ease-in-out infinite;
  z-index: -1;
}
@keyframes shqbPulse {
  0%, 100% { transform: translateX(-50%) scale(0.7); opacity: .9; }
  50%      { transform: translateX(-50%) scale(1.4); opacity: .4; }
}
/* Hide Leaflet default marker icon (we use divIcon) */
.leaflet-marker-icon.shqb-leaflet-pin { background: transparent !important; border: 0 !important; }

/* Leaflet zoom controls — restyle */
.leaflet-control-zoom {
  border: 0 !important;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: var(--shadow-2);
  margin-bottom: 96px !important;   /* keep clear of the Next button */
}
.leaflet-control-zoom a {
  background: #fff !important;
  color: var(--ink) !important;
  border: 0 !important;
  font-weight: 300 !important;
}
.leaflet-control-attribution {
  font-size: 10px !important;
  background: rgba(255,255,255,.65) !important;
  padding: 2px 6px !important;
}

/* ─── PANEL PANE (right side) ───────────────────────────────── */
.shqb-panel-pane {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(.65,.05,.36,1), opacity 0.4s;
  overflow: hidden;
}
.shqb:not([data-step="1"]) .shqb-panel-pane {
  transform: translateX(0);
  opacity: 1;
}

.shqb-panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  flex-shrink: 0;
}
.shqb-iconbtn {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--aqua);
  transition: background 0.15s;
}
.shqb-iconbtn:hover { background: var(--surface-2); }
.shqb-iconbtn svg { width: 22px; height: 22px; }
.shqb-close-btn { color: var(--ink-3); }

.shqb-panel-progress {
  flex: 1;
  height: 4px;
  background: var(--line);
  border-radius: var(--pill);
  overflow: hidden;
}
.shqb-pp-fill {
  height: 100%;
  background: var(--aqua);
  width: 0;
  transition: width 0.4s cubic-bezier(.65,.05,.36,1);
}

.shqb-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 28px 24px;
}

.shqb-bread {
  font-size: 13px;
  color: var(--ink-3);
  margin: 0 0 6px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.shqb-panel-h {
  font-family: "Abel", "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 22px;
  color: var(--ink);
}

/* ─── STEPS ─────────────────────────────────────────────────── */
.shqb-step {
  border: 0;
  padding: 0;
  margin: 0;
  display: none;
  animation: shqbFadeIn 0.45s ease;
}
.shqb-step.active { display: block; }

@keyframes shqbFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.shqb-hint {
  color: var(--ink-2);
  font-size: 14.5px;
  margin: 0 0 18px;
}

/* ─── CARDS (radio/checkbox grids) ──────────────────────────── */
.shqb-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}
.shqb-cards.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 520px) {
  .shqb-cards.two { grid-template-columns: 1fr; }
}

.shqb-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 18px 16px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s cubic-bezier(.36,1.2,.42,.95), box-shadow 0.2s;
  animation: shqbCardIn 0.5s cubic-bezier(.36,1.2,.42,.95) both;
  animation-delay: calc(var(--i, 0) * 60ms);
}
.shqb-card:hover {
  border-color: var(--accent);
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}
.shqb-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.shqb-card:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 0 3px rgba(29,94,91,.18), 0 8px 16px rgba(29,94,91,.18);
  animation: shqbBounce 0.5s cubic-bezier(.36,1.4,.42,.95);
}
.shqb-card:has(input:checked)::after {
  content: "";
  position: absolute;
  top: 10px; right: 10px;
  width: 24px; height: 24px;
  background: var(--accent);
  border-radius: 50%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.5-1.5z" fill="white"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
  animation: shqbPop 0.4s cubic-bezier(.36,1.7,.4,.95);
  box-shadow: 0 4px 12px rgba(29,94,91,.4);
}
@keyframes shqbCardIn {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes shqbBounce {
  0%   { transform: translateY(0)   scale(1); }
  30%  { transform: translateY(-3px) scale(1.025); }
  60%  { transform: translateY(0)   scale(0.99); }
  100% { transform: translateY(0)   scale(1); }
}
@keyframes shqbPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.shqb-card-title {
  font-weight: 500;
  font-size: 15.5px;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.shqb-card-desc {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}
.shqb-card-price {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  background: #ffffff;
  color: var(--accent-2);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  border-radius: var(--pill);
  border: 1.5px solid var(--accent);
  width: fit-content;
}
.shqb-card-price.shqb-quote {
  background: var(--ink);
  color: var(--gold);
  border-color: var(--ink);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  padding: 5px 12px;
}
.shqb-quote-banner {
  margin: 0 0 18px;
  padding: 14px 18px;
  background: var(--ink);
  color: #ffffff;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  animation: shqbFadeIn 0.4s ease;
}
.shqb-quote-banner svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.shqb-quote-banner strong {
  font-family: "Abel", "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

/* Vehicle cards with real luxury photos */
.shqb-vcard { align-items: center; text-align: center; padding-top: 12px; }
.shqb-vimg {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
  background: linear-gradient(180deg, #fafbfc 0%, #eef1f4 100%);
  transition: transform 0.5s cubic-bezier(.36,1.3,.42,.95), filter 0.3s;
  display: block;
}
.shqb-card:hover .shqb-vimg {
  transform: scale(1.05);
  filter: contrast(1.04) saturate(1.06);
}
.shqb-card:has(input:checked) .shqb-vimg {
  transform: scale(1.03);
  filter: contrast(1.06) saturate(1.08);
  box-shadow: 0 8px 20px rgba(29,94,91,.22);
}
.shqb-vcard .shqb-card-title { text-align: center; }
.shqb-vcard .shqb-card-desc  { text-align: center; }
@media (max-width: 480px) {
  .shqb-vimg { height: 100px; }
}

/* ── SERVICE-step animated illustration tiles ─────────────── */
.shqb-svc-card { align-items: stretch; padding-top: 12px; }
.shqb-svc-card .shqb-card-title { text-align: center; margin-top: 6px; }
.shqb-svc-card .shqb-card-desc  { text-align: center; }

.shqb-svc-art {
  width: 100%;
  height: 124px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f4f7f8 0%, #e6ecec 100%);
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
  transition: background 0.4s, transform 0.4s cubic-bezier(.36,1.3,.42,.95);
}
.shqb-svc-art::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-22deg);
  pointer-events: none;
}
.shqb-card:hover .shqb-svc-art::after {
  left: 140%;
  transition: left 1s cubic-bezier(.65,.05,.36,1);
}
.shqb-svc-art svg,
.shqb-svc-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.36,1.1,.42,.95), filter 0.4s;
}
.shqb-card:hover .shqb-svc-art img {
  transform: scale(1.08);
  filter: contrast(1.05) saturate(1.08);
}
.shqb-card:has(input:checked) .shqb-svc-art img {
  transform: scale(1.04);
  filter: contrast(1.08) saturate(1.1);
}
.shqb-card:hover .shqb-svc-art { transform: none; }
.shqb-card:has(input:checked) .shqb-svc-art {
  box-shadow: inset 0 0 0 2px rgba(29,94,91,.35);
}

.shqb-droplet { transform-origin: center; }
.shqb-droplet.d1 { animation: shqbDropSlide 4s ease-in-out infinite; }
.shqb-droplet.d2 { animation: shqbDropSlide 4.6s ease-in-out 0.6s infinite; }
.shqb-droplet.d3 { animation: shqbDropSlide 5.2s ease-in-out 0.3s infinite; }
.shqb-droplet.d4 { animation: shqbDropSlide 4.2s ease-in-out 1.1s infinite; }
.shqb-droplet.d5 { animation: shqbDropSlide 5s ease-in-out 0.9s infinite; }
@keyframes shqbDropSlide {
  0%   { transform: translateY(0) scale(1); opacity: 0.85; }
  70%  { transform: translateY(30px) scale(0.7); opacity: 0.6; }
  100% { transform: translateY(40px) scale(0); opacity: 0; }
}

.shqb-shield { transform-origin: 100px 50px; animation: shqbShieldFloat 4s ease-in-out infinite; }
@keyframes shqbShieldFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: .9; }
  50%      { transform: translateY(-3px) scale(1.03); opacity: 1; }
}

.shqb-polish { animation: shqbPolishSweep 3.5s ease-in-out infinite; }
@keyframes shqbPolishSweep {
  0%   { transform: translateX(-40px); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateX(40px); opacity: 0; }
}

.shqb-ray.r1 { animation: shqbRayPulse 2.4s ease-in-out 0s    infinite; }
.shqb-ray.r2 { animation: shqbRayPulse 2.4s ease-in-out 0.3s  infinite; }
.shqb-ray.r3 { animation: shqbRayPulse 2.4s ease-in-out 0.6s  infinite; }
@keyframes shqbRayPulse {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 0.9; }
}

.shqb-sparkles path { transform-box: fill-box; transform-origin: center; }
.shqb-sparkles path:nth-child(1) { animation: shqbTwinkle 2.6s ease-in-out 0s    infinite; }
.shqb-sparkles path:nth-child(2) { animation: shqbTwinkle 2.6s ease-in-out 0.5s  infinite; }
.shqb-sparkles path:nth-child(3) { animation: shqbTwinkle 2.6s ease-in-out 1.0s  infinite; }
.shqb-sparkles path:nth-child(4) { animation: shqbTwinkle 2.6s ease-in-out 1.5s  infinite; }
.shqb-sparkles path:nth-child(5) { animation: shqbTwinkle 2.6s ease-in-out 0.25s infinite; }
@keyframes shqbTwinkle {
  0%, 100% { transform: scale(0.4); opacity: 0.2; }
  50%      { transform: scale(1.15); opacity: 1; }
}

.shqb-star-rotate {
  transform-origin: 100px 60px;
  animation: shqbStarSpin 14s linear infinite;
}
@keyframes shqbStarSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Package step — vehicle hero card */
.shqb-pkg-hero {
  position: relative;
  width: 100%;
  height: 140px;
  border-radius: 14px;
  margin-bottom: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #fafbfc 0%, #eef1f4 100%);
  animation: shqbHeroIn 0.6s cubic-bezier(.36,1.2,.42,.95) both;
}
.shqb-pkg-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: shqbKenBurns 14s ease-in-out infinite alternate;
}
.shqb-pkg-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.6) 0%, transparent 55%);
  pointer-events: none;
}
.shqb-pkg-hero-label {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 2;
  color: #ffffff;
}
.shqb-pkg-hero-eyebrow {
  display: block;
  font-family: "Abel", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.8;
  color: var(--gold);
  margin-bottom: 4px;
}
.shqb-pkg-hero-title {
  font-family: "Abel", sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@keyframes shqbHeroIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shqbKenBurns {
  0%   { transform: scale(1.05) translate(0,0); }
  100% { transform: scale(1.14) translate(-2%, -2%); }
}

/* Add-on icon avatars */
.shqb-addon-card { flex-direction: row; gap: 12px; align-items: flex-start; padding: 14px 16px; }
.shqb-addon-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: background 0.2s, transform 0.3s cubic-bezier(.36,1.3,.42,.95);
}
.shqb-addon-icon svg { width: 24px; height: 24px; }
.shqb-card:hover .shqb-addon-icon { transform: rotate(-6deg) scale(1.08); }
.shqb-card:has(input:checked) .shqb-addon-icon {
  background: var(--accent);
  color: #ffffff;
}
.shqb-addon-body { flex: 1; min-width: 0; }
.shqb-addon-card .shqb-card-title { text-align: left; margin: 0 0 2px; }
.shqb-addon-card .shqb-card-desc  { text-align: left; }
.shqb-addon-card .shqb-card-price { margin-top: 8px; }

/* Schedule scene cards (in-shop / mobile photo) */
.shqb-scene-card { padding: 0; overflow: hidden; }
.shqb-scene-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(.36,1.2,.42,.95);
  background: var(--surface-2);
}
.shqb-card:hover .shqb-scene-img { transform: scale(1.05); }
.shqb-scene-card .shqb-card-body {
  padding: 14px 16px;
}
.shqb-scene-card .shqb-card-title { margin: 0 0 2px; }

/* Confetti for confirmation */
.shqb-confetti { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shqb-confetti i {
  position: absolute;
  top: -10px;
  width: 8px; height: 14px;
  background: var(--accent);
  opacity: 0.9;
  border-radius: 2px;
  animation: shqbConfetti 3s cubic-bezier(.36,.7,.42,.95) forwards;
}
@keyframes shqbConfetti {
  0%   { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(700px) rotate(720deg); opacity: 0; }
}

/* Panel-wide subtle background pattern */
.shqb-panel-body {
  background-image:
    radial-gradient(circle at 100% 0%, rgba(29,94,91,0.04), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(200,168,106,0.04), transparent 40%);
}

/* Stronger headline entrance */
.shqb-panel-h, .shqb-bread {
  animation: shqbHeadFade 0.5s ease both;
}
@keyframes shqbHeadFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── FIELDS ────────────────────────────────────────────────── */
.shqb-field { margin-bottom: 16px; }
.shqb-field label {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}
.shqb-field .shqb-opt {
  font-weight: 400;
  color: var(--ink-3);
  font-size: 12.5px;
}
.shqb-field input,
.shqb-field select,
.shqb-field textarea {
  width: 100%;
  padding: 12px 14px;
  background: #ffffff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.shqb-field input:focus,
.shqb-field select:focus,
.shqb-field textarea:focus {
  outline: none;
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(57,188,188,.15);
}
.shqb-field textarea { resize: vertical; min-height: 84px; }
.shqb-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .shqb-grid2 { grid-template-columns: 1fr; } }

.shqb-checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 14px 0;
  padding: 14px 16px;
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}
.shqb-checkbox input { margin-top: 2px; accent-color: var(--aqua); width: 18px; height: 18px; flex-shrink: 0; }
.shqb-checkbox span { font-size: 13px; color: var(--ink-2); line-height: 1.5; }

/* ─── SUMMARY ───────────────────────────────────────────────── */
.shqb-summary {
  margin-top: 14px;
  padding: 16px 18px;
  background: var(--aqua-soft);
  border-radius: 12px;
}
.shqb-summary:empty { display: none; }
.shqb-summary strong {
  font-weight: 500;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.shqb-summary dl { display: grid; grid-template-columns: 110px 1fr; gap: 6px 14px; margin: 0; }
.shqb-summary dt { color: var(--ink-2); font-size: 13.5px; }
.shqb-summary dd { margin: 0; color: var(--ink); font-size: 13.5px; }

/* ─── PANEL FOOTER ──────────────────────────────────────────── */
.shqb-panel-foot {
  padding: 14px 24px 18px;
  background: #ffffff;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}

/* ─── CONFIRMATION ──────────────────────────────────────────── */
.shqb-confirm {
  position: absolute;
  inset: 0;
  background: #ffffff;
  text-align: center;
  padding: 60px 28px 28px;
  overflow-y: auto;
  z-index: 5;
  animation: shqbFadeIn 0.5s ease;
}
.shqb-confirm-mark { width: 64px; height: 64px; margin: 0 auto 24px; color: var(--aqua); }
.shqb-confirm-mark svg { width: 100%; height: 100%; }
.shqb-confirm h3 {
  font-family: inherit;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 0 0 12px;
}
.shqb-confirm-lede {
  color: var(--ink-2);
  max-width: 380px;
  margin: 0 auto 24px;
  font-size: 15px;
}
.shqb-confirm-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  margin: 0 auto 24px;
}
.shqb-confirm-summary {
  max-width: 460px;
  margin: 0 auto;
  text-align: left;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px;
  background: var(--surface-2);
}
.shqb-confirm-summary summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.shqb-confirm-summary pre {
  margin: 12px 0 0;
  white-space: pre-wrap;
  font-family: inherit;
  font-size: 13px;
  color: var(--ink-2);
}

/* ─── TOAST ────────────────────────────────────────────────── */
#shqbToast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--pill);
  font-size: 14px;
  font-weight: 500;
  z-index: 99999;
  box-shadow: var(--shadow-2);
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
  font-family: "Poppins", -apple-system, sans-serif;
}
#shqbToast.show { opacity: 1; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  /* On mobile, panel takes full screen and overlays the map */
  .shqb { height: 100vh; max-height: none; min-height: 0; border-radius: 0; }
  .shqb:not([data-step="1"]) .shqb-app { grid-template-columns: 1fr; }
  .shqb:not([data-step="1"]) .shqb-map-pane { display: none; }
  .shqb-panel-pane { border-left: 0; }
  .shqb-map-overlay { top: 16px; }
  .shqb-overlay-h { font-size: 22px; }
  .shqb-searchbar { padding: 4px 6px 4px 14px; }
  .shqb-searchbar input { font-size: 15px; padding: 12px 4px; }
  .shqb-mapcta { bottom: 24px; }
  .shqb-panel-body { padding: 8px 18px 24px; }
  .shqb-panel-foot { padding: 12px 18px 14px; }
  .shqb-topbar { padding: 12px 14px; }
  .shqb-brand-name { font-size: 14px; letter-spacing: 0.1em; }
}
@media (max-width: 480px) {
  .shqb-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .shqb-card { padding: 14px 12px; }
  .shqb-card-title { font-size: 14px; }
  .shqb-card-desc { font-size: 12px; }
  .shqb-vimg { height: 80px; }
  .shqb-bigbtn { padding: 16px 22px; font-size: 16px; }
}
