.spqc-root {
  --spqc-orange: #ff8600;
  --spqc-orange-2: #ff9c22;
  --spqc-bg: #06090d;
  --spqc-card: rgba(16, 24, 32, 0.90);
  --spqc-card-solid: #101820;
  --spqc-selected-bg: rgba(255,134,0,0.10);
  --spqc-hover-bg: rgba(255,255,255,0.035);
  --spqc-layout-width: 1180px;
  --spqc-form-width: 760px;
  --spqc-summary-width: 380px;
  --spqc-column-gap: 24px;
  --spqc-card-radius: 20px;
  --spqc-category-cols: 5;
  --spqc-package-cols: 3;
  --spqc-number-font-size: 3rem;
  --spqc-border: rgba(255,255,255,0.13);
  --spqc-text: #f4f7fb;
  --spqc-muted: #aeb8c3;
  --spqc-green: #58d16d;
  --spqc-danger: #ff5b5b;
  --spqc-shadow: 0 24px 70px rgba(0,0,0,0.42);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--spqc-text);
  width: 100%;
  isolation: isolate;
}

.spqc-root,
.spqc-root * {
  box-sizing: border-box;
}

.spqc-root button,
.spqc-root input,
.spqc-root textarea,
.spqc-root select,
.spqc-root label,
.spqc-root span,
.spqc-root div,
.spqc-root p,
.spqc-root h1,
.spqc-root h2,
.spqc-root h3,
.spqc-root li,
.spqc-root strong {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  word-spacing: normal !important;
}

.spqc-root button {
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  line-height: 1.25;
  white-space: normal;
}

.spqc-root .spqc-wrap {
  width: 100%;
  min-height: 720px;
  padding: 36px 16px 56px;
}

.spqc-root .spqc-layout {
  width: min(var(--spqc-layout-width), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, var(--spqc-form-width)) minmax(320px, var(--spqc-summary-width));
  gap: var(--spqc-column-gap);
  align-items: stretch;
}

.spqc-root .spqc-card {
  border: 1px solid var(--spqc-border);
  background:
    radial-gradient(circle at 16% 10%, rgba(255,134,0,0.14), transparent 34%),
    radial-gradient(circle at 86% 110%, rgba(255,134,0,0.12), transparent 38%),
    linear-gradient(145deg, var(--spqc-card-solid), #090d12);
  border-radius: var(--spqc-card-radius);
  box-shadow: var(--spqc-shadow);
}

.spqc-root .spqc-form-card {
  min-height: 800px;
  padding: 28px;
  overflow: visible;
}

.spqc-root .spqc-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 26px;
}

.spqc-root .spqc-progress-item {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  overflow: hidden;
}

.spqc-root .spqc-progress-item.is-active,
.spqc-root .spqc-progress-item.is-done {
  background: linear-gradient(90deg, var(--spqc-orange), #ffc27a);
  box-shadow: 0 0 18px rgba(255,134,0,0.35);
}

.spqc-root .spqc-step { display: none; }
.spqc-root .spqc-step.is-active { display: block; }

.spqc-root .spqc-step-kicker {
  color: #ffb15a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  margin-bottom: 8px;
}

.spqc-root h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
  color: #fff;
  font-weight: 950;
  letter-spacing: -0.025em !important;
  max-width: 700px;
}

.spqc-root .spqc-lead {
  margin: 0 0 22px;
  color: var(--spqc-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 680px;
}

.spqc-root .spqc-option-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.spqc-root .spqc-option-grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.spqc-root .spqc-choice {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  min-width: 0;
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--spqc-border);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  color: var(--spqc-text);
  text-align: left;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
  overflow: hidden;
}

.spqc-root .spqc-choice:hover {
  transform: translateY(-1px);
  border-color: rgba(255,134,0,0.60);
  background: var(--spqc-hover-bg);
}

.spqc-root .spqc-choice:hover .spqc-choice-title,
.spqc-root .spqc-choice:hover .spqc-choice-desc,
.spqc-root .spqc-choice:hover .spqc-choice-price {
  color: inherit;
}

.spqc-root .spqc-choice.is-selected {
  border-color: var(--spqc-orange);
  background: var(--spqc-selected-bg);
  box-shadow: 0 0 0 2px rgba(255,134,0,0.12), 0 16px 38px rgba(255,134,0,0.08);
}

.spqc-root .spqc-choice-title,
.spqc-root .spqc-choice-desc,
.spqc-root .spqc-choice-price {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
  white-space: normal;
  max-width: 100%;
}

.spqc-root .spqc-choice-title {
  padding-right: 34px;
  font-size: 19px;
  line-height: 1.22;
  font-weight: 950;
  color: #fff;
  margin: 0 0 10px;
}

.spqc-root .spqc-choice-desc {
  font-size: 13px;
  line-height: 1.48;
  color: var(--spqc-muted);
  margin: 0;
}

.spqc-root .spqc-choice-price {
  margin-top: auto;
  padding-top: 14px;
  color: #ffd2a3;
  font-weight: 900;
  font-size: 14px;
  line-height: 1.35;
}

.spqc-root .spqc-choice-check {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid var(--spqc-border);
  display: grid;
  place-items: center;
  color: transparent;
  font-size: 13px;
  font-weight: 900;
}

.spqc-root .spqc-choice.is-selected .spqc-choice-check {
  background: var(--spqc-orange);
  border-color: var(--spqc-orange);
  color: #111820;
}

.spqc-root .spqc-quantity-box {
  border: 1px solid var(--spqc-border);
  background: rgba(255,255,255,0.035);
  border-radius: 16px;
  padding: 20px;
  margin: 18px 0;
}

.spqc-root .spqc-quantity-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.spqc-root .spqc-quantity-head label {
  color: var(--spqc-muted);
  font-size: 14px;
  font-weight: 850;
}

.spqc-root .spqc-product-number {
  width: 150px !important;
  min-width: 150px;
  height: 68px;
  border: 1px solid rgba(255,134,0,0.45) !important;
  border-radius: 14px !important;
  background: rgba(255,134,0,0.08) !important;
  color: #fff !important;
  font-size: var(--spqc-number-font-size) !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  text-align: center;
  padding: 8px 10px !important;
}

.spqc-root .spqc-range {
  display: block;
  width: 100%;
  height: 48px;
  accent-color: var(--spqc-orange);
  cursor: pointer;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}

.spqc-root .spqc-range::-webkit-slider-thumb {
  width: 36px;
  height: 36px;
}

.spqc-root .spqc-small-hint {
  margin: 8px 0 0;
  color: var(--spqc-muted);
  font-size: 12px;
  line-height: 1.45;
}

.spqc-root .spqc-category-grid {
  display: grid;
  grid-template-columns: repeat(var(--spqc-category-cols), minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.spqc-root .spqc-cat {
  min-height: 112px;
  padding: 13px 9px;
  border: 1px solid var(--spqc-border);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
  overflow: hidden;
}

.spqc-root .spqc-cat:hover {
  border-color: rgba(255,134,0,0.65);
  background: var(--spqc-hover-bg);
  transform: translateY(-1px);
}

.spqc-root .spqc-cat:hover .spqc-cat-name,
.spqc-root .spqc-cat:hover .spqc-cat-icon,
.spqc-root .spqc-cat:hover .spqc-cat-icon i {
  color: inherit !important;
}

.spqc-root .spqc-cat.is-selected {
  border-color: var(--spqc-orange);
  background: var(--spqc-selected-bg);
  box-shadow: 0 0 0 2px rgba(255,134,0,0.12);
}

.spqc-root .spqc-cat-icon {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(255,134,0,0.12);
  color: #ffb15a;
  flex: 0 0 auto;
}

.spqc-root .spqc-cat-icon i,
.spqc-root .spqc-cat-icon svg {
  font-size: 20px !important;
  line-height: 1 !important;
  color: #ffb15a !important;
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  transform: none !important;
}

.spqc-root .spqc-cat-name {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  white-space: normal !important;
  overflow-wrap: anywhere;
}

.spqc-root .spqc-package-grid {
  display: grid;
  grid-template-columns: repeat(var(--spqc-package-cols), minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0 16px;
}

.spqc-root .spqc-package {
  min-height: 260px;
  padding: 22px 18px;
}

.spqc-root .spqc-package .spqc-choice-title {
  font-size: 18px;
}

.spqc-root .spqc-popular {
  position: absolute;
  left: 14px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--spqc-green);
  color: #06100a;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 10px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase !important;
  letter-spacing: .04em !important;
  z-index: 2;
}

.spqc-root .spqc-popular + .spqc-choice-check + .spqc-choice-title,
.spqc-root .spqc-package:has(.spqc-popular) .spqc-choice-title {
  margin-top: 22px;
}

.spqc-root .spqc-addon-box {
  border: 1px solid var(--spqc-border);
  background: rgba(255,255,255,0.035);
  border-radius: 16px;
  padding: 16px;
  margin: 14px 0;
}

.spqc-root .spqc-addon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.spqc-root .spqc-addon-row:last-child { border-bottom: 0; }
.spqc-root .spqc-addon-row.is-disabled { opacity: .48; }

.spqc-root .spqc-addon-copy { min-width: 0; }
.spqc-root .spqc-addon-title { color: #fff; font-weight: 900; font-size: 15px; line-height: 1.3; }
.spqc-root .spqc-addon-desc { margin-top: 4px; color: var(--spqc-muted); font-size: 12px; line-height: 1.45; }

.spqc-root .spqc-badge-inline {
  display: inline-block;
  margin-top: 7px;
  border: 1px solid rgba(93,183,255,0.35);
  background: rgba(93,183,255,0.08);
  color: #ccecff;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 850;
}

.spqc-root .spqc-switch {
  position: relative;
  width: 58px;
  height: 32px;
  flex: 0 0 58px;
  margin: 0;
}

.spqc-root .spqc-switch input { display: none !important; }

.spqc-root .spqc-slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: #27323d;
  border: 1px solid var(--spqc-border);
  border-radius: 999px;
  transition: .2s;
}

.spqc-root .spqc-slider:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
}

.spqc-root .spqc-switch input:checked + .spqc-slider {
  background: var(--spqc-orange);
  border-color: var(--spqc-orange);
}

.spqc-root .spqc-switch input:checked + .spqc-slider:before { transform: translateX(26px); }

.spqc-root .spqc-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 16px;
}

.spqc-root .spqc-field-grid .spqc-full { grid-column: 1 / -1; }

.spqc-root input:not([type="range"]):not([type="checkbox"]),
.spqc-root textarea,
.spqc-root select {
  width: 100% !important;
  min-width: 0;
  border: 1px solid var(--spqc-border) !important;
  background: #0c1117 !important;
  color: var(--spqc-text) !important;
  border-radius: 10px !important;
  padding: 13px 14px !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  outline: none !important;
  box-shadow: none !important;
}

.spqc-root textarea {
  min-height: 110px;
  resize: vertical;
}

.spqc-root input:not([type="range"]):not([type="checkbox"]):focus,
.spqc-root textarea:focus,
.spqc-root select:focus {
  border-color: var(--spqc-orange) !important;
  box-shadow: 0 0 0 3px rgba(255,134,0,0.14) !important;
}

.spqc-root .is-invalid {
  border-color: var(--spqc-danger) !important;
  box-shadow: 0 0 0 3px rgba(255,91,91,0.14) !important;
}

.spqc-root .spqc-field-label {
  display: block;
  margin: 2px 0 7px;
  color: var(--spqc-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.spqc-root .spqc-date-picker-wrap { position: relative; }
.spqc-root .spqc-date-trigger { cursor: pointer; background: #0c1117 !important; }

.spqc-root .spqc-calendar-popup {
  position: absolute;
  z-index: 50;
  left: 0;
  top: calc(100% + 10px);
  width: min(700px, calc(100vw - 44px));
  background: #fff;
  color: #1d252d;
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.38);
  padding: 22px;
  display: none;
}

.spqc-root .spqc-calendar-popup.is-open { display: block; }

.spqc-root .spqc-calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.spqc-root .spqc-calendar-head button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #2c333a;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.spqc-root .spqc-calendar-head button:hover { background: #eef2f6; }

.spqc-root .spqc-month-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.spqc-root .spqc-month-title {
  text-align: center;
  color: #111820;
  font-weight: 950;
  font-size: 16px;
  margin: 0 0 10px;
}

.spqc-root .spqc-weekdays,
.spqc-root .spqc-month-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0,1fr));
  gap: 4px;
  text-align: center;
}

.spqc-root .spqc-weekdays div {
  color: #6a737d;
  font-weight: 850;
  font-size: 12px;
}

.spqc-root .spqc-day {
  height: 30px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  color: #101820;
  font-size: 12px;
  font-weight: 700;
}

.spqc-root .spqc-day.spqc-blank { cursor: default; }
.spqc-root .spqc-day.is-disabled { color: #c5ccd3; cursor: not-allowed; }
.spqc-root .spqc-day.is-available:hover,
.spqc-root .spqc-day.is-selected { border-color: #1266c3; background: #eef6ff; color: #1266c3; }

.spqc-root .spqc-calendar-divider,
.spqc-root .spqc-calendar-hint { display: none !important; }

.spqc-root .spqc-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 12px;
  color: var(--spqc-muted);
  font-size: 12px;
  line-height: 1.45;
}

.spqc-root .spqc-consent input {
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px;
  margin: 1px 0 0;
  accent-color: var(--spqc-orange);
}

.spqc-root .spqc-hp {
  position: absolute !important;
  left: -99999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.spqc-root .spqc-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.spqc-root .spqc-nav-left { display: flex; align-items: center; gap: 10px; }

.spqc-root .spqc-btn {
  border-radius: 12px !important;
  padding: 15px 22px !important;
  font-weight: 950 !important;
  letter-spacing: .035em !important;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-transform: uppercase !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
  text-align: center;
  white-space: normal !important;
  overflow-wrap: anywhere;
}

.spqc-root .spqc-btn:disabled { opacity: .65; cursor: wait; }
.spqc-root .spqc-btn:hover:not(:disabled) { transform: translateY(-1px); }

.spqc-root .spqc-btn-primary {
  background: linear-gradient(90deg, var(--spqc-orange), var(--spqc-orange-2)) !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(255,134,0,0.28) !important;
}

.spqc-root .spqc-btn-secondary {
  background: #202a34 !important;
  color: #dce4ec !important;
  border: 1px solid var(--spqc-border) !important;
}

.spqc-root .spqc-summary-card {
  position: sticky;
  top: 24px;
  min-height: 820px;
  padding: 24px;
  border-color: rgba(255,134,0,0.55);
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.spqc-root .spqc-summary-title { margin: 0 0 5px; color: #fff; font-size: 20px; font-weight: 950; }
.spqc-root .spqc-summary-sub { margin: 0 0 18px; color: var(--spqc-muted); font-size: 13px; line-height: 1.45; }

.spqc-root .spqc-placeholder {
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 18px;
  color: var(--spqc-muted);
  font-size: 14px;
  line-height: 1.5;
  background: rgba(255,255,255,0.025);
}

.spqc-root .spqc-price-panel { display: none; }
.spqc-root .spqc-price-panel.is-active { display: flex; flex-direction: column; min-height: 650px; }

.spqc-root .spqc-discount-banner {
  border: 1px solid rgba(88,209,109,0.45);
  background: linear-gradient(135deg, rgba(88,209,109,0.17), rgba(88,209,109,0.06));
  color: #d9ffe0;
  border-radius: 14px;
  padding: 13px 14px;
  margin: 8px 0 14px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 850;
}

.spqc-root .spqc-discount-banner strong { display: block; margin-bottom: 3px; color: #fff; font-size: 18px; line-height: 1.25; }
.spqc-root .spqc-price-label { margin: 6px 0 2px; color: #ffd1a0; font-size: 12px; font-weight: 950; text-transform: uppercase !important; letter-spacing: .06em !important; }
.spqc-root .spqc-price-big { margin: 4px 0; color: #fff; font-size: 42px; font-weight: 950; letter-spacing: -0.03em !important; line-height: 1.05; }
.spqc-root .spqc-price-note { margin: 0 0 10px; color: var(--spqc-muted); font-size: 12px; line-height: 1.4; }

.spqc-root .spqc-total-small {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 10px 0;
  margin: 8px 0 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-end;
  color: var(--spqc-muted);
  font-size: 13px;
}

.spqc-root .spqc-total-small strong { color: #fff; font-size: 20px; font-weight: 950; text-align: right; }

.spqc-root .spqc-callout {
  background: rgba(88,209,109,0.10);
  border: 1px solid rgba(88,209,109,0.34);
  color: #c9ffd1;
  border-radius: 12px;
  padding: 12px;
  margin: 12px 0;
  font-size: 13px;
  line-height: 1.38;
}

.spqc-root .spqc-summary-list { display: flex; flex-direction: column; gap: 0; margin: 14px 0; }

.spqc-root .spqc-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.075);
  color: var(--spqc-muted);
  font-size: 13px;
  line-height: 1.4;
}

.spqc-root .spqc-summary-row strong { color: var(--spqc-text); font-weight: 850; text-align: right; max-width: 62%; overflow-wrap: anywhere; }

.spqc-root .spqc-finish-btn {
  width: 100%;
  margin-top: auto;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-wrap: anywhere;
}

.spqc-root .spqc-pdf-preview {
  max-height: 560px;
  overflow: auto;
  margin-top: 18px;
  border: 1px solid var(--spqc-border);
  background: #e2e6eb;
  color: #3f4a56;
  border-radius: 14px;
  padding: 18px;
  opacity: .78;
  filter: grayscale(.35) saturate(.75);
}

.spqc-root .spqc-pdf-head { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; border-bottom: 1px solid #d5dbe1; padding-bottom: 12px; margin-bottom: 12px; }
.spqc-root .spqc-pdf-logo { color: #111; font-weight: 950; text-transform: uppercase !important; }
.spqc-root .spqc-pdf-logo span { color: var(--spqc-orange); }
.spqc-root .spqc-pdf-preview p,
.spqc-root .spqc-pdf-preview li { color: #36424f; font-size: 12px; line-height: 1.48; }
.spqc-root .spqc-pdf-preview .spqc-rich-text p { margin: 0 0 8px; }
.spqc-root .spqc-pdf-preview .spqc-rich-text span,
.spqc-root .spqc-pdf-preview .spqc-rich-items span { font: inherit; }
.spqc-root .spqc-pdf-preview .spqc-rich-items p { margin: 6px 0; }
.spqc-root .spqc-pdf-preview ul { margin: 8px 0 0 17px; padding: 0; }
.spqc-root .spqc-pdf-preview h3 { margin: 14px 0 6px; color: #111; font-size: 15px; }
.spqc-root .spqc-pdf-price { margin: 12px 0; background: #101821; color: #fff; border-radius: 12px; padding: 14px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.spqc-root .spqc-pdf-price span { color: #ffb15a; font-size: 12px; font-weight: 900; text-transform: uppercase !important; }
.spqc-root .spqc-pdf-price strong { font-size: 24px; }
.spqc-root .spqc-pdf-footer { border-top: 1px solid #d5dbe1; margin-top: 16px; padding-top: 12px; font-size: 12px; line-height: 1.45; color: #36424f; }
.spqc-root .spqc-customer-message { background: #fff; border: 1px solid #d5dbe1; border-radius: 8px; padding: 10px; margin: 8px 0 12px; white-space: pre-wrap; color: #17202a; font-size: 12px; line-height: 1.45; }

.spqc-root .spqc-hidden { display: none !important; }
.spqc-root .spqc-status { margin-top: 12px; color: var(--spqc-muted); font-size: 13px; line-height: 1.45; }
.spqc-root .spqc-status.is-success { color: #c9ffd1; }
.spqc-root .spqc-status.is-error { color: #ffb4b4; }

@media (max-width: 1120px) {
  .spqc-root .spqc-layout { grid-template-columns: 1fr; }
  .spqc-root .spqc-summary-card { position: relative; top: auto; min-height: unset; }
  .spqc-root[data-step="0"] .spqc-summary-card,
  .spqc-root[data-step="1"] .spqc-summary-card,
  .spqc-root[data-step="2"] .spqc-summary-card { display: none; }
  .spqc-root .spqc-form-card { min-height: unset; }
  .spqc-root .spqc-category-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .spqc-root .spqc-package-grid { grid-template-columns: 1fr; }
  .spqc-root .spqc-package { min-height: 190px; }
  .spqc-root .spqc-price-panel.is-active { min-height: unset; }
}

@media (max-width: 700px) {
  .spqc-root .spqc-wrap { padding: 18px 12px 40px; }
  .spqc-root .spqc-form-card,
  .spqc-root .spqc-summary-card { padding: 18px; border-radius: 16px; }
  .spqc-root .spqc-option-grid-two,
  .spqc-root .spqc-field-grid { grid-template-columns: 1fr; }
  .spqc-root .spqc-choice { min-height: 150px; padding: 18px; }
  .spqc-root .spqc-category-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; }
  .spqc-root .spqc-cat { min-height: 98px; }
  .spqc-root .spqc-month-wrap { grid-template-columns: 1fr; }
  .spqc-root .spqc-calendar-popup { width: calc(100vw - 44px); padding: 16px; }
  .spqc-root .spqc-day { height: 30px; }
  .spqc-root .spqc-weekdays,
  .spqc-root .spqc-month-days { gap: 3px; }
  .spqc-root .spqc-quantity-head { align-items: flex-start; flex-direction: column; }
  .spqc-root .spqc-product-number { width: 100% !important; }
  .spqc-root .spqc-nav { align-items: stretch; flex-direction: column-reverse; }
  .spqc-root .spqc-nav-left { flex-direction: column-reverse; align-items: stretch; }
  .spqc-root .spqc-btn { width: 100%; padding: 16px 18px !important; }
  .spqc-root h1 { font-size: 27px; }
  .spqc-root .spqc-range { height: 54px; }
  .spqc-root .spqc-price-big { font-size: 38px; }
  .spqc-root .spqc-addon-row { align-items: flex-start; }
  .spqc-root .spqc-summary-row { flex-direction: column; gap: 4px; }
  .spqc-root .spqc-summary-row strong { max-width: 100%; text-align: left; }
}
