/* ================================================================
   Label Quote Generator v2.4.0
   Layout : Left = multi-step wizard  |  Right = live price panel
   Theme  : Fully light — white surfaces, teal accent, slate text
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* ── Design tokens ───────────────────────────────────────────── */
.lqg {
  --a:        #009CA7;
  --a-d:      #007a84;
  --a-l:      #00bac7;
  --a-glow:   rgba(0,156,167,.16);
  --a-tint:   rgba(0,156,167,.08);
  --a-tint2:  rgba(0,156,167,.14);

  --ink:      #1e3a4a;
  --ink2:     #2d5068;
  --ink3:     #607d8b;
  --ink4:     #90a4ae;
  --ink5:     #cfd8dc;

  /* Panel — light slate instead of dark navy */
  --panel:    #f0f7f8;
  --panel-bd: #c8e6eb;
  --panel-hd: #1e3a4a;

  --bg:       #ffffff;
  --s2:       #f5f9fa;
  --s3:       #ecf4f5;
  --bd:       #d4e6ea;
  --bd2:      #b2d0d6;

  --err:      #c0392b;
  --err-bg:   #fdf2f2;
  --ok:       #0d7a4a;
  --warn-bg:  #fffbeb;
  --warn:     #7c5800;

  --r2: 8px; --r3: 12px; --r4: 20px;
  --sh1: 0 2px 10px rgba(0,60,80,.07);
  --sh2: 0 4px 24px rgba(0,60,80,.10);
  --f: 'Poppins', system-ui, sans-serif;
  --ease: cubic-bezier(.22,1,.36,1);
  --t: 160ms;
}

/* ── Root ────────────────────────────────────────────────────── */
.lqg *, .lqg *::before, .lqg *::after { box-sizing: border-box; margin: 0; padding: 0; }
.lqg {
  font-family: var(--f); font-size: 15px; color: var(--ink); line-height: 1.6;
  background: var(--bg) !important;
  border-radius: var(--r4); border: 1px solid var(--bd); box-shadow: var(--sh2);
  -webkit-font-smoothing: antialiased; isolation: isolate; overflow: hidden;
}
.lqg input, .lqg button, .lqg select, .lqg textarea { font-family: var(--f); }
.lqg button { appearance: none; -webkit-appearance: none; border-radius: 0; text-transform: none; letter-spacing: normal; }
.lqg input[type=radio], .lqg input[type=checkbox] { position:absolute; opacity:0; width:0; height:0; pointer-events:none; }
.lqg a { text-decoration: none; }

/* ── Two-column layout ───────────────────────────────────────── */
.lqg__wizard-wrap {
  display: grid;
  grid-template-columns: 1fr 290px;
  align-items: start;
}
.lqg__left  { border-right: 1px solid var(--bd); display: flex; flex-direction: column; min-width: 0; }
.lqg__right { background: var(--panel) !important; }

/* ── Step tracker ────────────────────────────────────────────── */
.lqgw__track {
  padding: 18px 28px 0;
  background: var(--bg) !important;
  border-bottom: 1px solid var(--bd);
}
.lqgw__track-bar {
  height: 3px; background: var(--s3); border-radius: 99px; overflow: hidden; margin-bottom: 12px;
}
.lqgw__track-fill {
  height: 100%; background: linear-gradient(90deg, var(--a), var(--a-l));
  width: 0%; transition: width .45s var(--ease);
}
.lqgw__steps { display: flex; justify-content: space-between; }
.lqgw__step-dot {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: none !important; border: none !important; box-shadow: none !important;
  padding: 0 4px 12px; cursor: pointer; opacity: .35;
  transition: opacity var(--t); flex: 1; min-width: 0;
}
.lqgw__step-dot.is-active  { opacity: 1; cursor: default; }
.lqgw__step-dot.is-done    { opacity: .7; }
.lqgw__step-dot.is-done:hover { opacity: .9; }
.lqgw__dot-num {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--s3) !important; border: 2px solid var(--bd);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--ink3) !important;
  transition: all var(--t); flex-shrink: 0;
}
.lqgw__step-dot.is-active .lqgw__dot-num {
  background: var(--a) !important; border-color: var(--a);
  color: #fff !important; box-shadow: 0 0 0 3px var(--a-glow);
}
.lqgw__step-dot.is-done .lqgw__dot-num {
  background: var(--a-tint) !important; border-color: var(--a);
  color: var(--a-d) !important;
}
.lqgw__dot-lbl { font-size: 10px; font-weight: 500; color: var(--ink3); white-space: nowrap; max-width: 60px; overflow: hidden; text-overflow: ellipsis; }
.lqgw__step-dot.is-active .lqgw__dot-lbl { color: var(--a); font-weight: 600; }

/* ── Slides ──────────────────────────────────────────────────── */
.lqgw__slides  { position: relative; min-height: 360px; }

/* CRITICAL: display:block !important to beat any theme override */
.lqgw__slide   { display: none !important; padding: 28px 28px 20px; }
.lqgw__slide.is-active {
  display: block !important;
  animation: lqgIn .22s var(--ease) both;
}
.lqgw__slide.slide-back.is-active { animation-name: lqgInBack; }
@keyframes lqgIn     { from{opacity:0;transform:translateX(14px)}  to{opacity:1;transform:none} }
@keyframes lqgInBack { from{opacity:0;transform:translateX(-14px)} to{opacity:1;transform:none} }

.lqgw__slide-hd    { margin-bottom: 22px; }
.lqgw__slide-title { font-size: clamp(17px,2vw,22px); font-weight: 700; color: var(--ink); letter-spacing: -.3px; margin-bottom: 3px; }
.lqgw__slide-sub   { font-size: 13px; color: var(--ink3); }

/* ── Shape cards ─────────────────────────────────────────────── */
.lqg-shapes { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.lqg-shape  { cursor: pointer; }
.lqg-shape__card {
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  padding: 18px 8px 13px;
  background: var(--s2) !important; border: 2px solid var(--bd);
  border-radius: var(--r3); text-align: center; position: relative; transition: all var(--t);
}
.lqg-shape__card:hover { border-color: var(--a-l); background: var(--bg) !important; transform: translateY(-2px); box-shadow: var(--sh1); }
.lqg-shape input:checked ~ .lqg-shape__card  { border-color: var(--a); background: var(--bg) !important; box-shadow: 0 0 0 3px var(--a-glow), var(--sh1); }
.lqg-shape input:focus-visible ~ .lqg-shape__card { outline: 3px solid var(--a); outline-offset: 2px; }
.lqg-shape__icon-wrap { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; transition: transform var(--t); }
.lqg-shape input:checked ~ .lqg-shape__card .lqg-shape__icon-wrap { transform: scale(1.08); }
.lqg-shape__img { width: 100%; height: 100%; object-fit: contain; display: block; }
.lqg-shape__img.img-err { display: none; }
.lqg-shape__img.img-err + .lqg-shape__svg-fb { display: block; }
.lqg-shape__svg-fb { display: none; width: 60px; height: 60px; }
.lqg-shape__name { font-size: 12px; font-weight: 600; color: var(--ink2); transition: color var(--t); }
.lqg-shape input:checked ~ .lqg-shape__card .lqg-shape__name { color: var(--a-d); }
.lqg-shape__desc { font-size: 10px; color: var(--ink4); }
.lqg-shape__badge {
  position: absolute; top: 6px; right: 6px; width: 17px; height: 17px; border-radius: 50%;
  background: var(--a); color: #fff; display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0) rotate(-45deg);
  transition: opacity var(--t), transform .22s var(--ease);
}
.lqg-shape input:checked ~ .lqg-shape__card .lqg-shape__badge { opacity: 1; transform: scale(1) rotate(0); }
.lqg-shape__badge svg { width: 9px; height: 9px; }

/* ── Material rows ───────────────────────────────────────────── */
.lqg-mats { display: flex; flex-direction: column; gap: 10px; }
.lqg-mat  { cursor: pointer; }
.lqg-mat__row {
  display: flex; align-items: center; gap: 13px; padding: 13px 15px;
  background: var(--s2) !important; border: 2px solid var(--bd);
  border-radius: var(--r3); transition: all var(--t);
}
.lqg-mat__row:hover { border-color: var(--a-l); background: var(--bg) !important; }
.lqg-mat input:checked ~ .lqg-mat__row { border-color: var(--a); background: var(--bg) !important; box-shadow: 0 0 0 3px var(--a-glow); }
.lqg-mat input:focus-visible ~ .lqg-mat__row { outline: 3px solid var(--a); outline-offset: 2px; }
.lqg-mat__swatch { width: 42px; height: 42px; border-radius: var(--r2); border: 1px solid rgba(0,0,0,.08); flex-shrink: 0; }
.lqg-mat__swatch--matte  { background: #b0bec5 !important; }
.lqg-mat__swatch--gloss  { background: linear-gradient(135deg,#b3e5fc,#80cbc4 45%,#ce93d8) !important; }
.lqg-mat__swatch--custom { background: linear-gradient(135deg,#c9a227,#f0d878 35%,#b87333 65%,#e8d48b) !important; }
.lqg-mat__body { flex: 1; min-width: 0; }
.lqg-mat__name { font-size: 13.5px; font-weight: 600; color: var(--ink); display: block; }
.lqg-mat__sub  { font-size: 11.5px; color: var(--ink3); display: block; margin-top: 1px; }
.lqg-mat__dot  {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--bd2) !important; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; transition: border-color var(--t);
}
.lqg-mat__dot::after { content:''; width:9px; height:9px; border-radius:50%; background:var(--a); transform:scale(0); transition:transform .18s var(--ease); }
.lqg-mat input:checked ~ .lqg-mat__row .lqg-mat__dot { border-color: var(--a) !important; }
.lqg-mat input:checked ~ .lqg-mat__row .lqg-mat__dot::after { transform: scale(1); }

/* ── Size pills ──────────────────────────────────────────────── */
.lqg-sizes { display: flex; flex-wrap: wrap; gap: 9px; }
.lqg-sz    { cursor: pointer; }
.lqg-sz__pill {
  display: inline-flex; align-items: center; gap: 5px; padding: 9px 17px; border-radius: 99px;
  border: 2px solid var(--bd); background: var(--s2) !important;
  font-size: 13px; font-weight: 500; color: var(--ink2); transition: all var(--t); user-select: none;
}
.lqg-sz__pill:hover { border-color: var(--a); background: var(--bg) !important; color: var(--a); }
.lqg-sz input:checked ~ .lqg-sz__pill { border-color: var(--a); background: var(--a) !important; color: #fff !important; }
.lqg-sz input:focus-visible ~ .lqg-sz__pill { outline: 3px solid var(--a); outline-offset: 2px; }
.lqg-sz--custom .lqg-sz__pill { border-style: dashed; }
.lqg-sz--custom input:checked ~ .lqg-sz__pill { border-style: solid; }
.lqg-cdims {
  display: none; flex-direction: row; gap: 12px; align-items: flex-end;
  margin-top: 14px; padding: 14px; background: var(--s2) !important;
  border-radius: var(--r3); border: 1.5px solid var(--bd);
}
.lqg-cdims.is-open { display: flex; }
.lqg-dims-sep { font-size: 18px; color: var(--ink4); padding-bottom: 9px; flex-shrink: 0; }

/* ── Tier cards ──────────────────────────────────────────────── */
.lqg-tiers { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 18px; }
.lqg-tier {
  padding: 13px 6px 11px; border: 2px solid var(--bd); border-radius: var(--r3);
  background: var(--s2) !important; text-align: center; cursor: pointer;
  position: relative; overflow: hidden; transition: all var(--t); user-select: none;
}
.lqg-tier:hover  { border-color: var(--a-l); background: var(--bg) !important; transform: translateY(-2px); box-shadow: var(--sh1); }
.lqg-tier.is-sel { border-color: var(--a);   background: var(--bg) !important; box-shadow: 0 0 0 3px var(--a-glow), var(--sh1); }
.lqg-tier:focus-visible { outline: 3px solid var(--a); outline-offset: 2px; }
.lqg-tier--rec { border-color: var(--a); }
.lqg-tier__rec { position:absolute; top:0; left:0; right:0; background:var(--a); color:#fff; font-size:7.5px; font-weight:700; letter-spacing:.8px; text-transform:uppercase; padding:2.5px 0; text-align:center; }
.lqg-tier__range { font-size: 9.5px; font-weight: 500; color: var(--ink3); margin-top: 13px; margin-bottom: 4px; }
.lqg-tier__price { font-size: 15px; font-weight: 700; color: var(--ink); }
.lqg-tier__unit  { font-size: 9px; color: var(--ink4); margin-bottom: 2px; }
.lqg-tier__save  { display:inline-block; font-size:9px; font-weight:600; color:var(--a-d); background:var(--a-tint); border-radius:99px; padding:1.5px 7px; margin-top:2px; }

/* ── Rolls stepper ───────────────────────────────────────────── */
.lqgw__or-label { font-size: 12px; color: var(--ink3); margin-bottom: 9px; }
.lqg-rolls-wrap {
  display: flex; align-items: stretch; max-width: 260px;
  border: 2px solid var(--bd) !important; border-radius: var(--r3);
  background: var(--s2) !important; overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.lqg-rolls-wrap:focus-within { border-color: var(--a) !important; box-shadow: 0 0 0 3px var(--a-glow) !important; }
.lqg-rolls-btn {
  width: 42px; min-width: 42px; height: 46px;
  border: none !important; outline: none !important; box-shadow: none !important;
  background: transparent !important; color: var(--ink3) !important;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background var(--t), color var(--t); padding: 0 !important;
}
.lqg-rolls-btn:hover { background: var(--bd) !important; color: var(--ink) !important; }
.lqg-rolls-btn:focus { outline: none !important; box-shadow: none !important; }
.lqg-rolls-btn svg { width: 14px; height: 14px; pointer-events: none; }
.lqg-rolls-in {
  flex: 1; border: none !important; background: transparent !important;
  box-shadow: none !important; outline: none !important; text-align: center;
  font-family: var(--f) !important; font-size: 20px; font-weight: 600;
  color: var(--ink) !important; padding: 0; height: 46px; -moz-appearance: textfield;
}
.lqg-rolls-in::-webkit-inner-spin-button, .lqg-rolls-in::-webkit-outer-spin-button { -webkit-appearance: none; }
.lqg-rolls-unit { font-size: 11px; color: var(--ink3); padding: 0 12px 0 4px; align-self: center; white-space: nowrap; }

/* ── Notice ──────────────────────────────────────────────────── */
.lqg-notice { display:flex; align-items:flex-start; gap:8px; padding:11px 13px; border-radius:var(--r2); font-size:13px; margin-top:11px; line-height:1.5; }
.lqg-notice--warn { background:var(--warn-bg); color:var(--warn); border:1px solid rgba(124,88,0,.15); }
.lqg-notice svg { width:14px; height:14px; flex-shrink:0; margin-top:1px; }

/* ── Text inputs ─────────────────────────────────────────────── */
.lqg-g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.lqg-field { display: flex; flex-direction: column; gap: 5px; }
.lqg-field label { font-size: 12.5px; font-weight: 600; color: var(--ink2); display: flex; align-items: center; gap: 4px; }
.lqg-req { color: var(--a); font-weight: 700; }
.lqg-opt { font-size: 11px; color: var(--ink4); font-weight: 400; }
.lqg-in, .lqg-ta {
  width: 100%; padding: 9px 12px;
  border: 2px solid var(--bd) !important; border-radius: var(--r3);
  background: var(--bg) !important; color: var(--ink); font-size: 13.5px;
  transition: border-color var(--t), box-shadow var(--t); appearance: none;
}
.lqg-in::placeholder, .lqg-ta::placeholder { color: var(--ink5); }
.lqg-in:focus, .lqg-ta:focus { outline: none !important; border-color: var(--a) !important; box-shadow: 0 0 0 3px var(--a-glow) !important; }
.lqg-in.err { border-color: var(--err) !important; }
.lqg-ta { resize: vertical; min-height: 78px; }
.lqg-hint { font-size: 11.5px; color: var(--ink4); margin-top: 3px; }

/* ── Consent ─────────────────────────────────────────────────── */
.lqg-consent { margin-top: 4px; }
.lqg-consent__row { display: flex; align-items: flex-start; gap: 11px; cursor: pointer; }
.lqg-consent__box {
  width: 19px; height: 19px; border-radius: 5px;
  border: 2px solid var(--bd2) !important; background: var(--bg) !important;
  flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center; transition: all var(--t);
}
#lqg_consent:checked ~ .lqg-consent__box { background: var(--a) !important; border-color: var(--a) !important; }
.lqg-ck { width: 10px; height: 10px; color: #fff; opacity: 0; transform: scale(0); transition: all .18s var(--ease); }
#lqg_consent:checked ~ .lqg-consent__box .lqg-ck { opacity: 1; transform: scale(1); }
.lqg-consent__txt { font-size: 12px; color: var(--ink3); line-height: 1.6; }
.lqg-consent__txt a { color: var(--a); text-decoration: underline; }

/* ── Error messages ──────────────────────────────────────────── */
.lqg-ferr { font-size: 11.5px; color: var(--err); min-height: 14px; margin-top: 3px; }
.lqg-srv-err { padding: 11px 14px; background: var(--err-bg); color: var(--err); border: 1px solid rgba(192,57,43,.2); border-radius: var(--r2); font-size: 13px; margin-top: 12px; }

/* ── Artwork drop zone ───────────────────────────────────────── */
.lqg-drop {
  position: relative; border: 2px dashed var(--bd2); border-radius: var(--r3);
  padding: 32px 20px; text-align: center; background: var(--s2) !important;
  transition: all var(--t); outline: none; cursor: pointer;
}
.lqg-drop:hover, .lqg-drop:focus-within { border-color: var(--a); background: var(--a-tint) !important; }
.lqg-drop.is-drag-over  { border-color: var(--a); background: var(--a-tint2) !important; border-style: solid; }
.lqg-drop.has-file      { border-color: var(--ok); border-style: solid; background: rgba(13,122,74,.05) !important; }
.lqg-drop__input { position: absolute; width: 100%; height: 100%; top: 0; left: 0; opacity: 0; cursor: pointer; z-index: 2; }
.lqg-drop__icon { width: 44px; height: 44px; margin: 0 auto 10px; display: block; color: var(--ink3); transition: color var(--t); }
.lqg-drop:hover .lqg-drop__icon, .lqg-drop.is-drag-over .lqg-drop__icon { color: var(--a); }
.lqg-drop__cta   { font-size: 14px; color: var(--ink2); margin: 0 0 5px; line-height: 1.5; }
.lqg-drop__browse { color: var(--a); text-decoration: underline; font-weight: 600; }
.lqg-drop__types  { font-size: 11.5px; color: var(--ink4); }
.lqg-drop__preview { display: flex; align-items: center; gap: 10px; justify-content: center; }
.lqg-drop__ok { width: 20px; height: 20px; flex-shrink: 0; }
.lqg-drop__fname { font-size: 13px; font-weight: 600; color: var(--ok); word-break: break-all; max-width: 260px; text-align: left; }
.lqg-drop__remove {
  width: 22px; height: 22px; border: 1px solid var(--bd2) !important;
  border-radius: 50%; background: var(--bg) !important; cursor: pointer;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--ink3); padding: 0 !important; position: relative; z-index: 3;
  transition: border-color var(--t), color var(--t);
}
.lqg-drop__remove:hover { border-color: var(--err) !important; color: var(--err) !important; }

/* ── Honeypot ────────────────────────────────────────────────── */
.lqg-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }

/* ── Nav buttons ─────────────────────────────────────────────── */
.lqgw__nav {
  display: flex; align-items: center; padding: 14px 28px 22px; gap: 10px;
  border-top: 1px solid var(--bd); background: var(--bg) !important;
}
.lqgw__back {
  display: flex; align-items: center; gap: 6px; padding: 9px 18px; border-radius: var(--r3);
  border: 2px solid var(--bd) !important; background: transparent !important;
  color: var(--ink3) !important; font-size: 13.5px; font-weight: 600;
  cursor: pointer; box-shadow: none !important; transition: all var(--t);
}
.lqgw__back:hover { border-color: var(--a) !important; color: var(--a) !important; background: var(--a-tint) !important; }
.lqgw__back svg   { width: 14px; height: 14px; }
.lqgw__back.is-hidden { opacity: 0; pointer-events: none; }

.lqgw__next {
  display: flex; align-items: center; gap: 7px; margin-left: auto;
  padding: 11px 26px; border-radius: var(--r3);
  border: none !important; background: var(--a) !important;
  color: #fff !important; font-size: 13.5px; font-weight: 600;
  cursor: pointer; box-shadow: 0 3px 14px var(--a-glow) !important; transition: all var(--t);
}
.lqgw__next:hover { background: var(--a-d) !important; transform: translateY(-1px); }
.lqgw__next svg   { width: 14px; height: 14px; }

.lqgw__submit {
  display: none; align-items: center; gap: 9px; margin-left: auto;
  padding: 11px 26px; border-radius: var(--r3);
  border: none !important; background: var(--ink) !important;
  color: #fff !important; font-size: 13.5px; font-weight: 600;
  cursor: pointer; box-shadow: 0 3px 16px rgba(0,60,80,.2) !important;
  transition: all var(--t); position: relative; overflow: hidden;
}
.lqgw__submit:hover    { background: var(--ink2) !important; transform: translateY(-1px); }
.lqgw__submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.lqg-submit__txt { position: relative; z-index: 1; }
.lqgw__submit svg { width: 17px; height: 17px; position: relative; z-index: 1; }

/* ══════════════════════════════════════════════════════════════
   RIGHT PANEL — light slate theme
   ══════════════════════════════════════════════════════════════ */
.lqg__panel-sticky {
  position: sticky; top: 0;
  background: var(--panel) !important;
  padding: 28px 22px 24px;
  max-height: 100vh; overflow-y: auto; scrollbar-width: none;
  display: flex; flex-direction: column;
  border-left: 1px solid var(--panel-bd);
}
.lqg__panel-sticky::-webkit-scrollbar { display: none; }

/* Eyebrow */
.lqgp__eyebrow {
  display: flex; align-items: center; gap: 7px;
  font-size: 9.5px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--a); margin-bottom: 20px;
}
.lqgp__badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--a);
  animation: lqgPulse 2.4s ease-in-out infinite; flex-shrink: 0;
}
@keyframes lqgPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.5)} }

/* Price area */
.lqgp__price-area { min-height: 130px; display: flex; align-items: center; justify-content: center; flex-direction: column; margin-bottom: 18px; }
.lqgp__empty { text-align: center; }
.lqgp__rings { position: relative; width: 52px; height: 52px; margin: 0 auto 11px; }
.lqgp__ring  { position: absolute; border-radius: 50%; border: 1.5px solid rgba(0,156,167,.2); inset: 0; animation: lqgRing 3s ease-in-out infinite; }
.lqgp__ring--2 { inset: 7px; animation-delay: .4s; border-color: rgba(0,156,167,.3); }
.lqgp__ring--3 { inset: 14px; animation-delay: .8s; border-color: rgba(0,156,167,.45); }
@keyframes lqgRing { 0%,100%{transform:scale(1);opacity:.7} 50%{transform:scale(1.06);opacity:1} }
.lqgp__empty-txt { font-size: 12px; color: var(--ink3); line-height: 1.6; }

.lqgp__price { text-align: center; width: 100%; }
.lqgp__ttl-lbl { font-size: 9.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink3); margin-bottom: 5px; }
.lqgp__ttl { font-size: clamp(24px,3vw,34px); font-weight: 700; color: var(--ink); letter-spacing: -.8px; line-height: 1; margin-bottom: 6px; transition: color .2s; font-variant-numeric: tabular-nums; }
.lqgp__per { font-size: 11.5px; color: var(--ink3); margin-bottom: 7px; line-height: 1.5; }
.lqgp__save-pill { display: inline-block; padding: 2.5px 11px; background: var(--a-tint); border: 1px solid rgba(0,156,167,.25); border-radius: 99px; font-size: 11px; color: var(--a-d); font-weight: 600; }

/* VAT toggle — always visible below price */
.lqgp__vat-toggle {
  display: flex; align-items: center; gap: 6px;
  margin: 10px 0 0; justify-content: center;
  background: var(--s2); border-radius: 99px;
  padding: 3px; border: 1.5px solid var(--bd);
}
.lqgp__vat-label { font-size: 10px; color: var(--ink3); padding: 0 6px; white-space: nowrap; }
.lqgp__vat-btn {
  flex: 1; font-size: 11.5px; font-weight: 600; padding: 6px 14px;
  border-radius: 99px; cursor: pointer; text-align: center;
  border: none !important; background: transparent !important;
  color: var(--ink3) !important; box-shadow: none !important;
  transition: all var(--t); white-space: nowrap;
}
.lqgp__vat-btn.active {
  background: var(--a) !important;
  color: #fff !important;
  box-shadow: 0 2px 8px var(--a-glow) !important;
}
.lqgp__vat-btn:not(.active):hover {
  color: var(--a-d) !important;
}

.lqgp__custom { text-align: center; }
.lqgp__cust-icon { width: 36px; height: 36px; color: var(--a); margin: 0 auto 9px; }
.lqgp__cust-icon svg { width: 100%; height: 100%; }
.lqgp__cust-title { font-size: 14px; font-weight: 700; color: var(--ink); display: block; margin-bottom: 4px; }
.lqgp__cust-sub   { font-size: 12px; color: var(--ink3); line-height: 1.55; }

/* Divider */
.lqgp__div { height: 1px; background: var(--panel-bd); margin: 14px 0; }

/* Spec rows */
.lqgp__specs { margin-bottom: 14px; }
.lqgp__spec  { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid var(--panel-bd); }
.lqgp__spec:first-child { border-top: 1px solid var(--panel-bd); }
.lqgp__spec-k { font-size: 9.5px; letter-spacing: .8px; text-transform: uppercase; color: var(--ink4); }
.lqgp__spec-v { font-size: 12px; font-weight: 600; color: var(--ink4); text-transform: capitalize; transition: color var(--t); text-align: right; max-width: 58%; word-break: break-word; }
.lqgp__spec-v.set { color: var(--ink); }

/* Trust signals */
.lqgp__trust { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.lqgp__trust li { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--ink3); }
.lqgp__trust svg { width: 12px; height: 12px; flex-shrink: 0; color: var(--a); }

/* Footer note */
.lqgp__note { font-size: 10.5px; color: var(--ink4); line-height: 1.65; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--panel-bd); }

/* ── Success screen ──────────────────────────────────────────── */
.lqg__success { padding: 56px 36px; text-align: center; background: var(--bg) !important; }
.lqg__success-in { max-width: 440px; margin: 0 auto; }
.lqg__anim { position: relative; width: 78px; height: 78px; margin: 0 auto 20px; }
.lqg__anim svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.lqg__anim-ring circle { transition: stroke-dashoffset .85s var(--ease); }
.lqg__anim-tick path  { transition: stroke-dashoffset .48s var(--ease) .65s; }
.lqg__anim.go .lqg__anim-ring circle { stroke-dashoffset: 0; }
.lqg__anim.go .lqg__anim-tick path  { stroke-dashoffset: 0; }
.lqg__s-title { font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.lqg__s-msg   { font-size: 14px; color: var(--ink3); line-height: 1.65; margin-bottom: 16px; }
.lqg__s-ref   { display: inline-block; font-size: 12px; background: var(--a-tint); color: var(--a-d); border: 1px solid rgba(0,156,167,.2); border-radius: 99px; padding: 3px 14px; margin-bottom: 13px; }
.lqg__s-total { font-size: 26px; font-weight: 700; color: var(--ink); margin-bottom: 16px; }
.lqg-dl {
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  padding: 12px 22px; border-radius: var(--r3);
  background: var(--a) !important; color: #fff !important;
  font-size: 13.5px; font-weight: 600; border: none !important; cursor: pointer;
  box-shadow: 0 3px 14px var(--a-glow) !important; text-decoration: none;
  transition: all var(--t); margin-bottom: 10px;
}
.lqg-dl:hover { background: var(--a-d) !important; transform: translateY(-2px); }
.lqg-dl svg   { width: 16px; height: 16px; }
.lqg__s-note  { font-size: 12.5px; color: var(--ink4); line-height: 1.65; margin: 9px 0 16px; }
.lqg-restart  {
  display: flex; align-items: center; justify-content: center; gap: 7px; width: 100%;
  padding: 9px 18px; background: transparent !important;
  border: 2px solid var(--bd) !important; border-radius: var(--r3);
  font-size: 13px; font-weight: 600; color: var(--ink3) !important; cursor: pointer; transition: all var(--t);
}
.lqg-restart:hover { border-color: var(--a) !important; color: var(--a) !important; background: var(--a-tint) !important; }
.lqg-restart svg { width: 12px; height: 12px; }

/* Email status */
.lqg-email-status { margin-bottom: 12px; display: flex; flex-direction: column; gap: 7px; }
.lqg-es { display: flex; align-items: flex-start; gap: 8px; padding: 9px 12px; border-radius: var(--r2); font-size: 12.5px; line-height: 1.5; }
.lqg-es svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 1px; }
.lqg-es--ok   { background: var(--a-tint); color: var(--a-d); border: 1px solid rgba(0,156,167,.18); }
.lqg-es--warn { background: var(--err-bg); color: var(--err); border: 1px solid rgba(192,57,43,.18); }


/* ── Order summary card (slide 6) ───────────────────────────── */
.lqgw__summary {
  background: var(--s2); border: 1.5px solid var(--bd);
  border-radius: var(--r3); padding: 16px 18px; margin-bottom: 22px;
}
.lqgw__summary-hd {
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--ink3); margin-bottom: 12px;
}
.lqgw__summary-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px;
}
.lqgw__summary-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0; border-bottom: 1px solid var(--bd);
}
.lqgw__summary-item--price {
  grid-column: 1 / -1; border-bottom: none; padding-top: 10px;
  border-top: 1.5px solid var(--bd); margin-top: 4px;
}
.lqgw__si-k {
  font-size: 11px; font-weight: 600; letter-spacing: .5px;
  text-transform: uppercase; color: var(--ink4);
}
.lqgw__si-v {
  font-size: 12.5px; font-weight: 600; color: var(--ink);
  text-align: right; text-transform: capitalize;
}
.lqgw__si-price {
  font-size: 18px; font-weight: 700; color: var(--a-d); letter-spacing: -.4px;
}
/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 820px) {
  .lqg__wizard-wrap { grid-template-columns: 1fr; }
  .lqg__right { order: -1; }
  .lqg__panel-sticky { position: relative; max-height: none; flex-direction: row; flex-wrap: wrap; gap: 10px; align-items: center; padding: 14px 18px; border-left: none; border-bottom: 1px solid var(--panel-bd); }
  .lqgp__eyebrow { width: 100%; margin-bottom: 0; }
  .lqgp__price-area { flex: 1; min-height: 50px; min-width: 130px; margin-bottom: 0; }
  .lqgp__specs { flex: 1; min-width: 150px; margin-bottom: 0; }
  .lqgp__trust, .lqgp__note, .lqgp__div { display: none; }
  .lqg__left { border-right: none; }
}
@media (max-width: 600px) {
  .lqgw__track { padding: 12px 14px 0; }
  .lqgw__dot-lbl { display: none; }
  .lqgw__dot-num { width: 22px; height: 22px; font-size: 10px; }
  .lqgw__slide { padding: 18px 14px 14px; }
  .lqgw__slide-title { font-size: 17px; }
  .lqg-shapes { grid-template-columns: repeat(2,1fr); }
  .lqg-tiers  { grid-template-columns: repeat(2,1fr); }
  .lqg-g2     { grid-template-columns: 1fr; }
  .lqg-cdims  { flex-direction: column; }
  .lqg-dims-sep { display: none; }
  .lqgw__nav  { padding: 10px 14px 16px; }
  .lqg__success { padding: 32px 16px; }
  .lqgw__summary-grid { grid-template-columns: 1fr; }
  .lqgw__summary-item--price { grid-column: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .lqg *, .lqg *::before, .lqg *::after { animation-duration:.01ms!important; transition-duration:.01ms!important; }
}
