/* quote-wizard.css */
/* Quote wizard */
.quotePanel{
  position:relative;
  width:min(820px, 100%);
  background:#fff;
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:18px;
  max-height:calc(100vh - 3rem);
  overflow:auto;
}

/* ✅ kill switch: if any old bottom price pill exists, never show it */
.qNavPrice{ display:none !important; }

.quoteTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

.quoteTitle{
  margin:0;
  font-family:Oswald, Inter, sans-serif;
  letter-spacing:.7px;
  text-transform:uppercase;
  color:var(--black);
}

.quoteProgress{ display:flex; gap:6px; margin-top:4px; }
.qpDot{
  width:10px; height:10px; border-radius:999px;
  border:1px solid rgba(0,0,0,.18);
  background:rgba(0,0,0,.06);
  padding:0;
  cursor:pointer;
  appearance:none;
  -webkit-appearance:none;
  display:inline-block;
  flex:0 0 auto;
}
.qpDot.isOn{
  width:28px;
  background:rgba(214,178,94,.85);
  border-color:rgba(214,178,94,.95);
}

.quoteBody{ margin-top:14px; }
.qStepTitle{ margin:0 0 8px; font-weight:900; color:#111; }
.qStepSub{ margin:0 0 12px; color:rgba(0,0,0,.62); line-height:1.6; }

/* ✅ sticky nav (remove blur line) */
.quoteNav{
  position:sticky;
  bottom:0;
  z-index:5;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:space-between;
  margin-top:14px;
  padding-top:12px;
  padding-bottom:4px;
  background:#fff;
  border-top:1px solid rgba(0,0,0,.08);
}

.quoteBack{
  background:#fff;
  color:#000;
  border:2px solid rgba(0,0,0,.18);
  box-shadow:none;
}
.quoteNext{ min-width:160px; }

.qNavBundleNote{
  flex:1 1 auto;
  min-width:0;
  align-self:center;
  text-align:center;
  padding:0 10px;
  font-weight:850;
  font-size:.95rem;
  line-height:1.35;
  color:rgba(0,0,0,.72);
}

/* Cards base grid */
.qCards{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}

/* Vehicle step: always 2x2 */
.qCards--vehicle2x2{
  grid-template-columns: 1fr 1fr;
}

/* ✅ scroll row pattern */
.qCards--scroll{
  display:flex;
  gap:12px;
  flex-wrap:nowrap;
  overflow-x:auto;
  padding-bottom:8px;
  -webkit-overflow-scrolling:touch;
  scroll-snap-type:x mandatory;
}
.qCards--scroll .qCard{
  flex:0 0 82%;
  scroll-snap-align:start;
}
.qCards--scroll .qFeatureCard{
  flex:0 0 90%;
}
@media (min-width:520px){
  .qCards--scroll .qCard{ flex:0 0 62%; }
  .qCards--scroll .qFeatureCard{ flex:0 0 72%; }
}
@media (min-width:768px){
  .qCards--scroll{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    overflow:visible;
    scroll-snap-type:none;
    padding-bottom:0;
  }
  .qCards--scroll .qCard{ flex:initial; }
}

/* ✅ hero cards */
.qCards--big .qCard{
  padding:12px;
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}
.qCards--big .qCardMedia{
  border-radius:16px;
}

/* Card base */
.qCard{
  text-align:left;
  border-radius:18px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  padding:12px;
  cursor:pointer;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
}
.qCard.isSel{
  border-color:rgba(214,178,94,.70);
  box-shadow:0 18px 44px rgba(214,178,94,.18);
}
.qCard:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px rgba(214,178,94,.22), 0 12px 30px rgba(0,0,0,.08);
  border-color:rgba(214,178,94,.72);
}

.qCardMedia{
  width:100%;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(0,0,0,.04);
  position:relative;
}

.qCard--img .qCardMedia{
  aspect-ratio: 16 / 9;
}

.qCardMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

/* ✅ zoom support (used for Exterior condition Normal) */
.qCardMedia.isZoom img{
  transform: scale(var(--imgZoom, 1));
  transform-origin:center;
}

/* ✅ split media */
.qCardMediaSplit{
  display:flex;
  width:100%;
  height:100%;
}
.qCardMediaSplit img{
  width:50%;
  height:100%;
  object-fit:cover;
  display:block;
}
.qCardMediaSplit img + img{
  border-left:1px solid rgba(0,0,0,.10);
}

/* ✅ vertical split (Interior+Exterior category card) */
.qCardMediaSplit--v{
  flex-direction:column;
}
.qCardMediaSplit--v img{
  width:100%;
  height:50%;
}
.qCardMediaSplit--v img + img{
  border-left:none;
  border-top:1px solid rgba(0,0,0,.10);
}

/* ✅ badge (existing) */
.qCardBadge{
  position:absolute;
  top:8px;
  left:8px;
  width:22px;
  height:22px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:1000;
  font-size:14px;
  color:#111;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.14);
  box-shadow:0 8px 18px rgba(0,0,0,.14);
}

/* ✅ NEW: "Requires Exterior Wash" pill badge (ONLY used on Ceramic Coating + Paint Correction) */
.requires-badge{
  position:absolute;
  top:10px;
  left:10px;
  background:#ffffff;
  color:#111;
  font-size:12px;
  padding:4px 8px;
  border-radius:999px;
  box-shadow:0 2px 6px rgba(0,0,0,0.15);
  font-weight:500;
  z-index:2;
  border:1px solid rgba(0,0,0,.10);
  pointer-events:none;
  max-width:calc(100% - 20px);
  white-space:nowrap;
}

/* Vehicle cards */
.qCard--vehicle .qCardMedia{
  aspect-ratio: 16 / 9;
  padding:10px;
  background:#fff;
  --carZoom: 1.26;
}
.qCard--vehicle img.isContain{
  object-fit:contain;
  background:#fff;
  transform: scale(var(--carZoom));
  transform-origin:center;
}

/* Square cards */
.qCard--square .qCardMedia{ aspect-ratio: 1 / 1; }
.qCard--square .qCardMedia img{ object-fit:cover; }

.qCardLabel{
  margin:10px 2px 2px;
  font-weight:900;
  color:#111;
}

.qCard--servicePick,
.qCard--condition{
  display:flex;
  flex-direction:column;
}

.qCard--servicePick .qCardMedia,
.qCard--condition .qCardMedia{
  width:100%;
}

.qCard--servicePick .qCardLabel,
.qCard--condition .qCardLabel{
  display:block;
  min-height:0;
}

/* ✅ allow newline (used on condition cards for "Starting at") */
.qCardHint{
  margin:0 2px 0;
  color:rgba(0,0,0,.62);
  font-weight:700;
  font-size:.95rem;
  line-height:1.45;
  white-space:pre-line;
}
.qCardHint:empty{ display:none; }

/* ✅ NEW detail cards for interior/exterior package steps */
.qFeatureCard{
  display:flex;
  align-items:stretch;
  min-height:100%;
}
.qFeatureCardInner{
  display:flex;
  flex-direction:column;
  width:100%;
  min-height:100%;
}
.qFeatureCardTitle{
  margin:2px 0 14px;
  text-align:center;
  font-weight:1000;
  color:#111;
  font-size:1.15rem;
  line-height:1.25;
}
.qFeatureList{
  margin:0;
  padding-left:20px;
  display:grid;
  gap:8px;
  color:rgba(0,0,0,.72);
  font-weight:800;
  font-size:.96rem;
  line-height:1.45;
}
.qFeatureList li::marker{
  color:rgba(0,0,0,.45);
}
.qFeaturePrice{
  margin-top:auto;
  padding-top:14px;
  text-align:center;
  font-weight:1000;
  color:#111;
  font-size:1rem;
}

/* ✅ Services tray (chips) */
.qServiceTray{
  border-radius:18px;
  border:1px solid rgba(0,0,0,.10);
  background:
    radial-gradient(800px 260px at 12% 0%, rgba(214,178,94,.12), rgba(255,255,255,0) 55%),
    rgba(0,0,0,.02);
  padding:12px;
  margin-bottom:12px;
}
.qServiceTrayTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.qServiceTrayTitle{
  font-weight:1000;
  color:#111;
  letter-spacing:.2px;
}
.qServiceTrayHint{
  font-weight:850;
  color:rgba(0,0,0,.60);
  font-size:.95rem;
  line-height:1.35;
}
.qChips{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.qChip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background:rgba(255,255,255,.92);
  box-shadow:0 10px 26px rgba(0,0,0,.06);
  font-weight:900;
  color:#111;
}
.qChip button{
  width:20px;
  height:20px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.14);
  background:#fff;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:1000;
  line-height:1;
}
.qChip button:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px rgba(214,178,94,.22);
  border-color:rgba(214,178,94,.72);
}
.qChipEmpty{
  font-weight:850;
  color:rgba(0,0,0,.55);
}

/* Fields */
.qGrid2{ display:grid; grid-template-columns:1fr; gap:10px; }

.qField label{ display:block; font-weight:900; margin-bottom:6px; color:#111; }
.qField input, .qField textarea, .qField select{
  width:100%;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.12);
  outline:none;
  font-weight:600;
  font-family:inherit;
  background:#fff;
}
.qField textarea{ min-height:92px; resize:vertical; }
.qField input:focus, .qField textarea:focus, .qField select:focus{
  border-color:rgba(214,178,94,.70);
  box-shadow:0 0 0 4px rgba(214,178,94,.18);
}

.qCheck{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.10);
  background:rgba(0,0,0,.02);
}
.qCheck input{ margin-top:4px; }

.qStatus{
  margin-top:8px;
  font-weight:800;
  color:rgba(0,0,0,.65);
}

/* ✅ bubble-box style (used for upkeep frequency) */
.qHearWrap{
  border-radius:18px;
  border:1px solid rgba(0,0,0,.10);
  background:
    radial-gradient(700px 240px at 10% 0%, rgba(214,178,94,.12), rgba(255,255,255,0) 55%),
    rgba(0,0,0,.02);
  padding:12px;
}
.qHearGrid{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin-top:10px;
}
.qHearBtn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  text-align:left;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.12);
  background:rgba(255,255,255,.92);
  cursor:pointer;
  box-shadow:0 10px 26px rgba(0,0,0,.06);
  transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
}
.qHearBtn:hover{ transform: translateY(-1px); }
.qHearBtn.isSel{
  border-color:rgba(214,178,94,.72);
  box-shadow:0 0 0 4px rgba(214,178,94,.18), 0 18px 44px rgba(214,178,94,.14);
}
.qHearBtn:focus-visible{
  outline:none;
  border-color:rgba(214,178,94,.85);
  box-shadow:0 0 0 4px rgba(214,178,94,.22), 0 10px 26px rgba(0,0,0,.08);
}
.qHearLeft{
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:0;
}
.qHearLabel{
  font-weight:1000;
  letter-spacing:.2px;
  color:#111;
  line-height:1.1;
}
.qHearHint{
  color:rgba(0,0,0,.62);
  font-weight:750;
  font-size:.95rem;
  line-height:1.35;
}
.qHearRight{
  display:inline-flex;
  align-items:center;
  gap:10px;
  flex:0 0 auto;
}
.qHearPill{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.10);
  background:rgba(0,0,0,.04);
  color:rgba(0,0,0,.72);
  font-weight:950;
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.7px;
}
.qHearCheck{
  width:18px; height:18px;
  border-radius:999px;
  border:2px solid rgba(0,0,0,.16);
  background:#fff;
  box-shadow:inset 0 0 0 4px rgba(255,255,255,1);
}
.qHearBtn.isSel .qHearPill{
  border-color:rgba(214,178,94,.55);
  background:rgba(214,178,94,.12);
  color:rgba(0,0,0,.82);
}
.qHearBtn.isSel .qHearCheck{
  border-color:rgba(214,178,94,.85);
  background:rgba(214,178,94,.85);
  box-shadow:inset 0 0 0 4px rgba(255,255,255,1);
}

/* Estimate */
.qEstimateBox{
  border-radius:20px;
  padding:16px;
  border:2px solid rgba(214,178,94,.55);
  box-shadow:0 18px 50px rgba(214,178,94,.18);
  background:
    radial-gradient(900px 320px at 20% 15%, rgba(214,178,94,.14), rgba(255,255,255,0) 55%),
    linear-gradient(180deg, rgba(214,178,94,.08), rgba(0,0,0,.02));
  text-align:center;
}
.qEstimateBox--simple{
  border-color: rgba(0,0,0,.10);
  box-shadow: 0 16px 44px rgba(0,0,0,.08);
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.01));
}
.qEstimateBig{
  margin-top:2px;
  font-weight:1000;
  font-size:2.15rem;
  line-height:1.1;
  color:#111;
}
.qEstimatePills{
  margin-top:12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
}
.qPill{
  display:inline-flex;
  gap:6px;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.10);
  background:rgba(255,255,255,.78);
  color:rgba(0,0,0,.78);
  font-weight:800;
  font-size:.92rem;
}
.qEstimateFine{
  margin-top:12px;
  color:rgba(0,0,0,.62);
  font-weight:700;
  line-height:1.6;
}

/* Calendar */
.qCalWrap{
  border-radius:18px;
  border:1px solid rgba(0,0,0,.10);
  background:rgba(0,0,0,.01);
  padding:14px;
}
.qCalTopRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:6px;
}
.qCalTz{
  font-weight:800;
  color:rgba(0,0,0,.60);
}
.qReloadLink{
  border:none;
  background:transparent;
  color:rgba(0,0,0,.55);
  font-weight:900;
  cursor:pointer;
  padding:6px 8px;
  border-radius:10px;
}
.qReloadLink:hover{ background:rgba(0,0,0,.05); }

.qLoadBar{
  height:10px;
  border-radius:999px;
  background:rgba(0,0,0,.06);
  border:1px solid rgba(0,0,0,.08);
  overflow:hidden;
  margin:8px 0 10px;
  display:none;
}
.qLoadBar.isOn{ display:block; }
.qLoadBarFill{
  display:block;
  height:100%;
  width:45%;
  border-radius:999px;
  background:rgba(214,178,94,.75);
  animation:qLoadMove 1.1s infinite ease-in-out;
}
@keyframes qLoadMove{
  0%{ transform:translateX(-110%); }
  100%{ transform:translateX(260%); }
}

.qCal{
  border-top:1px solid rgba(0,0,0,.10);
  padding-top:10px;
}
.qCalHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:2px;
}
.qCalNav{
  width:46px;
  height:40px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  font-weight:1000;
  cursor:pointer;
}
.qCalMonth{ font-weight:1000; color:#111; font-size:1.15rem; }
.qCalWeek{
  display:grid;
  grid-template-columns:repeat(7, 1fr);
  gap:8px;
  margin-top:10px;
}
.qCalW{ font-weight:900; color:rgba(0,0,0,.55); text-align:center; font-size:.9rem; }
.qCalGrid{
  display:grid;
  grid-template-columns:repeat(7, 1fr);
  gap:8px;
  margin-top:10px;
}
.qCalDay{
  height:42px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  font-weight:1000;
  cursor:pointer;
}
.qCalDay.isSel{
  border-color:rgba(214,178,94,.85);
  box-shadow:0 0 0 4px rgba(214,178,94,.18);
}
.qCalDay.isDisabled{ opacity:.35; cursor:not-allowed; }
.qCalDay--blank{ border:none; background:transparent; }

.qTimes{
  margin-top:14px;
  border-top:1px solid rgba(0,0,0,.10);
  padding-top:12px;
}
.qTimesTitle{ font-weight:1000; color:#111; margin-bottom:10px; }
.qTimesNone{ font-weight:900; color:rgba(0,0,0,.60); padding:8px 0; }
.qTimesGrid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:10px;
}
.qTimeBtn{
  height:44px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  font-weight:1000;
  cursor:pointer;
}
.qTimeBtn.isSel{
  border-color:rgba(214,178,94,.85);
  box-shadow:0 0 0 4px rgba(214,178,94,.18);
}
.qNextAvail{
  margin-top:12px;
  width:100%;
  justify-content:center;
}

/* Done */
.qDoneBox{
  border-radius:18px;
  border:1px solid rgba(0,0,0,.10);
  background:rgba(0,0,0,.02);
  padding:14px;
}
.qDoneBig{ font-weight:1000; font-size:1.25rem; color:#111; margin-bottom:10px; }
.qDoneLine{ font-weight:900; color:rgba(0,0,0,.70); line-height:1.7; }
.qDoneFine{ margin-top:10px; font-weight:800; color:rgba(0,0,0,.55); }

@media (min-width:768px){
  .qCards{ grid-template-columns:repeat(3, 1fr); }
  .qCards--vehicle2x2{ grid-template-columns:repeat(2, 1fr); }
  .qGrid2{ grid-template-columns:1fr 1fr 1fr; }
  .qHearGrid{ grid-template-columns:repeat(2, 1fr); }
  .qTimesGrid{ grid-template-columns:repeat(3, 1fr); }
}
@media (min-width:1024px){
  .qHearGrid{ grid-template-columns:repeat(3, 1fr); }
  .qTimesGrid{ grid-template-columns:repeat(4, 1fr); }
}

#qSquareCard{
  border:1px solid rgba(0,0,0,.12);
  border-radius:14px;
  padding:12px;
  background:#fff;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
  min-height:88px;
  margin-top:12px;
}

#qPayDepositBtn{
  min-width:180px;
}

/* =========================
   Payment step cleanup
   ========================= */

.qPayCard{
  border:1px solid rgba(0,0,0,.10);
  border-radius:22px;
  background:#fff;
  box-shadow:0 18px 44px rgba(0,0,0,.10);
  overflow:hidden;
}

.qPayHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:18px 18px 16px;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.qPayHeadTitle{
  margin:0;
  font-family:Oswald, Inter, sans-serif;
  font-size:clamp(1.6rem, 4vw, 2.2rem);
  line-height:1;
  letter-spacing:.4px;
  text-transform:uppercase;
  color:#111;
}

.qPayCloseGhost{
  width:54px;
  height:54px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  color:rgba(0,0,0,.62);
  font-size:2rem;
  line-height:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:none;
}
.qPayCloseGhost:hover{
  background:rgba(0,0,0,.03);
}

.qPayBody{
  padding:18px;
}

.qPayAmount{
  text-align:center;
}

.qPayAmountBig{
  margin:0;
  font-size:clamp(3rem, 8vw, 4.2rem);
  line-height:1;
  font-weight:1000;
  color:#111;
}

.qPayAmountSub{
  margin:10px 0 0;
  font-size:clamp(1.1rem, 3vw, 1.5rem);
  line-height:1.25;
  color:#222;
  font-weight:500;
}

.qPayMeta{
  margin-top:16px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
}

.qPayPill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  font-weight:900;
  color:rgba(0,0,0,.78);
  font-size:.98rem;
}

.qPayNotice{
  margin-top:18px;
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(0,0,0,.03);
}

.qPayNoticeCheck{
  flex:0 0 auto;
  width:30px;
  height:30px;
  border-radius:10px;
  background:#4f97ff;
  color:#fff;
  font-size:1rem;
  font-weight:1000;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:1px;
}

.qPayNoticeText{
  min-width:0;
}

.qPayNoticeTitle{
  margin:0;
  font-size:1.05rem;
  line-height:1.35;
  color:#111;
  font-weight:900;
}

.qPayNoticeSub{
  margin:6px 0 0;
  color:rgba(0,0,0,.66);
  line-height:1.5;
  font-weight:700;
  font-size:.97rem;
}

.qPaySectionTitle{
  margin:18px 0 10px;
  font-size:1.1rem;
  font-weight:1000;
  color:#111;
}

.qPayCardWrap{
  border:1px solid rgba(0,0,0,.10);
  border-radius:18px;
  background:#fff;
  padding:14px;
}

.qPayStatus{
  margin:0 0 10px;
  font-weight:800;
  color:rgba(0,0,0,.62);
}

#qSquareCard{
  border:1px solid rgba(0,0,0,.10);
  border-radius:16px;
  padding:12px;
  background:#fff;
  box-shadow:none;
  min-height:84px;
  margin-top:0;
}

.qPayBtnWrap{
  margin-top:14px;
}

#qPayDepositBtn{
  width:100%;
  min-width:0;
  min-height:58px;
  border-radius:999px;
  font-size:1.1rem;
  font-weight:1000;
}

.qPayFoot{
  margin-top:14px;
  text-align:center;
  color:rgba(0,0,0,.55);
  font-weight:700;
  line-height:1.45;
}

.qPayRequired{
  margin-top:10px;
  color:rgba(0,0,0,.62);
  font-weight:800;
}

@media (max-width: 767px){
  .qPayHead{
    padding:16px 16px 14px;
  }

  .qPayBody{
    padding:16px;
  }

  .qPayCloseGhost{
    width:48px;
    height:48px;
    font-size:1.8rem;
  }

  .qPayMeta{
    flex-direction:column;
    align-items:center;
  }

  .qPayPill{
    width:100%;
    text-align:center;
  }

  .qNavBundleNote{
    font-size:.9rem;
    padding:0 6px;
  }
}

/* Payment step cleanup */
.qCheck input{
  width:18px;
  height:18px;
  margin-top:3px;
  accent-color: rgba(214,178,94,.95);
  cursor:pointer;
  flex:0 0 auto;
}

.qCheck label{
  cursor:pointer;
  line-height:1.55;
  color:#111;
}

#qSquareCard{
  border:1px solid rgba(0,0,0,.12);
  border-radius:14px;
  padding:12px;
  background:#fff;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
  min-height:88px;
  margin-top:12px;
}

#qPayDepositBtn{
  min-width:180px;
}

@media (max-width: 767px){
  .qEstimateBig{
    font-size:1.95rem;
  }

  .qEstimatePills{
    gap:8px;
  }

  .qPill{
    width:100%;
    justify-content:center;
    text-align:center;
  }
}

@media (max-width: 767px){
  .quoteNav{
    display:grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "note note"
      "back next";
    gap:10px;
    align-items:center;
    justify-content:stretch;
  }

  .qNavBundleNote{
    grid-area:note;
    margin:0;
    padding:10px 12px;
    text-align:left;
    font-size:.92rem;
    line-height:1.35;
    border:1px solid rgba(214,178,94,.45);
    border-radius:14px;
    background:rgba(214,178,94,.10);
  }

  .quoteBack{
    grid-area:back;
    width:100%;
    min-width:0;
    justify-content:center;
  }

  .quoteNext{
    grid-area:next;
    width:100%;
    min-width:0;
    justify-content:center;
  }
}
