.field {
  margin: 2em 0;
}
.pq-steps {
  display: flex;
  gap: 0.3em;
  margin-bottom: 1.8rem;
  counter-reset: step;
}
.pq-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  font-size: 0.8rem;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s;
}
.pq-step::before {
  counter-increment: step;
  content: counter(step);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #d4dce1;
  color: var(--muted);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  z-index: 2;
  position: relative;
  transition: background 0.2s, color 0.2s;
}
.pq-step::after {
  content: '';
  position: absolute;
  top: 16px;
  left: calc(50% + 16px);
  width: calc(100% - 32px);
  height: 2px;
  background: #d4dce1;
  z-index: 1;
}
.pq-step:last-child::after {
  display: none;
}
.pq-step span {
  line-height: 1.3;
  font-weight: 500;
}
.pq-step.active {
  color: #0f766e;
  font-weight: 600;
}
.pq-step.active::before {
  background: #0f766e;
  color: #fff;
}
.pq-step.completed::before {
  background: #14242f;
  color: #fff;
  content: '✓';
}
.pq-nav-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.3em;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(19, 34, 55, 0.08);
}
.pq-nav-actions .btn {
  min-width: 120px;
}
.pq-block {
  border: 1px solid rgba(19, 34, 55, 0.11);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  margin-top: 0.9rem;
  background: rgba(255, 255, 255, 0.65);
}
.pq-block-title {
  display: flex;
  align-items: center;
  gap: 0.3em;
  margin: 0 0 0.2rem;
  font-size: 1.15rem;
  color: #14242f;
}
.pq-block-num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #0f766e;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pq-subtitle {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.pq-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0.85rem 0 0.5rem;
}
.pq-divider {
  border: 0;
  border-top: 1px solid rgba(19, 34, 55, 0.08);
  margin: 0.9rem 0;
}
.pq-card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.3em;
}
.pq-card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.3em;
}
.pq-card {
  display: block;
  border: 1px solid rgba(19, 34, 55, 0.15);
  border-radius: 13px;
  padding: 0.75rem;
  background: #fff;
  cursor: pointer;
  transition: border-color 120ms, background 120ms;
}
.pq-card:hover {
  border-color: rgba(15, 118, 110, 0.34);
}
.pq-card.is-selected {
  border-color: rgba(15, 118, 110, 0.42);
  background: rgba(15, 118, 110, 0.07);
}
.pq-card:has(input:checked) {
  border-color: rgba(15, 118, 110, 0.42);
  background: rgba(15, 118, 110, 0.07);
}
.pq-card input {
  margin-right: 0.4rem;
}
.pq-card strong {
  font-size: 0.93rem;
}
.pq-card small {
  display: block;
  color: var(--muted);
  margin-top: 0.25rem;
  line-height: 1.35;
  font-size: 0.83rem;
}
.pq-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em;
  margin-top: 0.5rem;
  overflow: hidden;
  max-height: 40px;
  transition: max-height 0.4s ease;
}
.pq-preset {
  border: 1px solid rgba(19, 34, 55, 0.13);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.87rem;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
}
.pq-preset:hover {
  background: rgba(15, 118, 110, 0.08);
  border-color: rgba(15, 118, 110, 0.24);
}
.pq-preset:active {
  background: #0f766e;
  color: #fff;
  border-color: #0f766e;
}
.pq-presets--open {
  max-height: 600px;
}
.pq-preset--extra {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.pq-presets--open .pq-preset--extra {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.pq-preset-toggle {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0;
  background: none;
  border: none;
  color: #0f766e;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(15, 118, 110, 0.3);
}
.pq-preset-toggle:hover {
  color: #0b5f59;
  text-decoration-color: #0b5f59;
}
.pq-qty {
  display: flex;
  align-items: center;
  gap: 0.3em;
}
.pq-qty-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(19, 34, 55, 0.15);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 1.1rem;
  cursor: pointer;
  flex-shrink: 0;
}
.pq-qty-btn:hover {
  background: rgba(15, 118, 110, 0.08);
  border-color: rgba(15, 118, 110, 0.24);
}
.pq-qty input {
  width: 64px;
  height: 40px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  padding: 0;
}
.pq-file-wrap {
  border: 2px dashed rgba(15, 118, 110, 0.35);
  border-radius: 12px;
  background: rgba(15, 118, 110, 0.03);
  padding: 0.7rem 0.85rem;
  transition: border-color 150ms, background 150ms;
}
.pq-file-wrap:focus-within {
  border-color: #0f766e;
  background: rgba(15, 118, 110, 0.07);
}
.pq-file-wrap input[type="file"] {
  width: 100%;
  padding: 0;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--muted);
  background: transparent;
}
.pq-file-wrap input[type="file"]::file-selector-button {
  padding: 0.45rem 1rem;
  margin-right: 0.75rem;
  border: none;
  border-radius: 8px;
  background: #0f766e;
  color: #fff;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 120ms;
}
.pq-file-wrap input[type="file"]::file-selector-button:hover {
  background: #0b5f59;
}
.pq-targa-wrap {
  text-align: center;
}
.pq-targa {
  display: inline-flex;
  align-items: stretch;
  border-radius: 8px;
  overflow: hidden;
  border: 3px solid #1a1a1a;
  background: #f5f5f0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  max-width: 420px;
  width: 100%;
  height: 66px;
}
.pq-targa-eu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #034ea2;
  color: #fff;
  width: 38px;
  flex-shrink: 0;
  gap: 0;
  padding: 3px 0;
  line-height: 1;
  font-weight: 700;
  position: relative;
}
.pq-targa-eu-stars {
  font-size: 1rem;
  color: #ffcc00;
  line-height: 1;
  margin-bottom: 3px;
}
.pq-targa-eu-stars::before {
  content: '★';
}
.pq-targa-eu i {
  font-style: normal;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-top: 2px;
}
#vehicle_plate.pq-targa-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a1a1a;
  padding: 0 10px;
  text-align: center;
  min-width: 0;
}
#vehicle_plate.pq-targa-input::placeholder {
  color: #b0b0a8;
  letter-spacing: 0.12em;
  font-size: 1.3rem;
  font-weight: 600;
}
.pq-combobox {
  position: relative;
}
.pq-combobox input {
  width: 100%;
}
.pq-combobox-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #c6d2e0;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.13);
  z-index: 50;
  overflow: hidden;
  max-height: 220px;
  overflow-y: auto;
}
.pq-combobox-opt {
  display: block;
  width: 100%;
  padding: 0.6rem 1rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-size: 0.93rem;
  color: #14242f;
  border-bottom: 1px solid rgba(19, 34, 55, 0.06);
  transition: background 120ms;
}
.pq-combobox-opt:last-child {
  border-bottom: none;
}
.pq-combobox-opt:hover,
.pq-combobox-opt:focus {
  background: #f0faf9;
  outline: none;
}
.pq-vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.3em;
}
.pq-vehicle-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.3em;
}
.pq-advanced {
  margin-top: 0.7rem;
}
.pq-advanced summary {
  cursor: pointer;
  color: #0b5f59;
  font-size: 0.88rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 0.3em;
  flex-wrap: wrap;
  width: 100%;
}
.pq-advanced summary::-webkit-details-marker {
  display: none;
}
.pq-advanced summary::before {
  content: '▶';
  font-size: 0.7rem;
  transition: transform 200ms;
  margin-top: 0.15rem;
}
.pq-advanced summary span {
  flex: 1 1 100%;
  margin-left: 0.1rem;
}
.pq-advanced[open] summary::before {
  transform: rotate(90deg);
}
.pq-profile-card {
  background: rgba(15, 118, 110, 0.06);
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 13px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.3em;
  flex-wrap: wrap;
}
.pq-profile-info {
  flex: 1;
  min-width: 0;
  font-size: 0.91rem;
}
.pq-profile-info strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 1rem;
  color: #14242f;
}
.pq-profile-info span {
  color: var(--muted);
  font-size: 0.9rem;
}
.pq-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.3em;
}
.pq-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.3em;
}
.pq-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.3em;
}
.pq-committed-item {
  border: 1px solid rgba(15, 118, 110, 0.25);
  border-radius: 13px;
  padding: 0.75rem 0.9rem;
  margin-bottom: 0.55rem;
  background: #fff;
  box-shadow: 0 1px 4px rgba(15, 118, 110, 0.06);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.pq-committed-item:hover {
  border-color: rgba(15, 118, 110, 0.4);
  box-shadow: 0 2px 8px rgba(15, 118, 110, 0.1);
}
.pq-committed-item--new {
  animation: pq-slide-in 0.35s ease-out;
}
.pq-committed-item--removing {
  animation: pq-slide-out 0.25s ease-in forwards;
  overflow: hidden;
}
@keyframes pq-slide-in {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes pq-slide-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
    max-height: 80px;
  }
  to {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
    max-height: 0;
    padding: 0;
    margin: 0;
    border-width: 0;
  }
}
.pq-committed-row {
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.pq-committed-info {
  flex: 1;
  min-width: 0;
}
.pq-committed-info strong {
  display: block;
  font-size: 0.95rem;
  color: #14242f;
}
.pq-committed-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.pq-committed-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  background: #f1f5f9;
  border-radius: 8px;
  padding: 1px;
}
.pq-committed-qty .pq-qty-btn {
  width: 30px;
  height: 28px;
  border: none;
  border-radius: 7px;
  background: transparent;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1e293b;
}
.pq-committed-qty .pq-qty-btn:hover {
  background: rgba(15, 118, 110, 0.12);
  color: #0f766e;
}
.pq-committed-qty .pq-qty-value {
  min-width: 20px;
  text-align: center;
  font-weight: 700;
  font-size: 0.88rem;
  color: #0f766e;
}
.pq-extra-remove {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(200, 30, 30, 0.2);
  border-radius: 9px;
  background: #fff;
  color: #c81e1e;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.pq-extra-remove:hover {
  background: #fef2f2;
  border-color: rgba(200, 30, 30, 0.45);
}
.pq-committed-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0f766e;
  margin: 1.2rem 0 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(15, 118, 110, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.pq-committed-list {
  min-height: 8px;
}
.pq-staging {
  border-radius: 14px;
  padding: 1rem 1rem 0.85rem;
  background: rgba(255, 255, 255, 0.5);
}
.pq-staging-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0 0 0.75rem;
}
.pq-add-item-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  border: 1px solid rgba(15, 118, 110, 0.4);
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  color: #0b5f59;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  transition: background 120ms, border-color 120ms;
}
.pq-add-item-btn:hover {
  background: rgba(15, 118, 110, 0.16);
  border-color: rgba(15, 118, 110, 0.55);
}
.pq-step3-card {
  background: #fff;
  border: 1px solid rgba(19, 34, 55, 0.09);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin-bottom: 0.85rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}
.pq-step3-card-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #14242f;
  margin-bottom: 0.75rem;
}
.pq-step3-card-head span {
  font-size: 1.1rem;
}
.pq-wa-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  padding: 0.5rem 0.9rem;
  border: 1.5px solid rgba(37, 211, 102, 0.25);
  border-radius: 12px;
  background: rgba(37, 211, 102, 0.05);
  cursor: pointer;
  user-select: none;
  transition: border-color 0.2s, background 0.2s;
}
.pq-wa-toggle:hover {
  border-color: rgba(37, 211, 102, 0.5);
  background: rgba(37, 211, 102, 0.1);
}
.pq-wa-toggle:has(input:checked) {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.12);
}
.pq-wa-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.pq-wa-toggle .pq-wa-slider {
  position: relative;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
  background: #cbd5e1;
  border-radius: 12px;
  transition: background 0.25s;
}
.pq-wa-toggle .pq-wa-slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.25s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.pq-wa-toggle input:checked + .pq-wa-slider {
  background: #25d366;
}
.pq-wa-toggle input:checked + .pq-wa-slider::after {
  transform: translateX(18px);
}
.pq-wa-toggle .pq-wa-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #14242f;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.pq-wa-toggle .pq-wa-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2325d366'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}
.pq-step3-urgency {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.pq-step3-urg-opt {
  flex: 1;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  border: 1.5px solid rgba(19, 34, 55, 0.12);
  border-radius: 12px;
  padding: 0.55rem 0.7rem;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
}
.pq-step3-urg-opt:hover {
  border-color: rgba(15, 118, 110, 0.35);
  background: rgba(15, 118, 110, 0.03);
}
.pq-step3-urg-opt.is-selected {
  border-color: #0f766e;
  background: rgba(15, 118, 110, 0.06);
}
.pq-step3-urg-opt:has(input:checked) {
  border-color: #0f766e;
  background: rgba(15, 118, 110, 0.06);
}
.pq-step3-urg-opt input {
  position: absolute;
  opacity: 0;
}
.pq-step3-urg-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #14242f;
}
.pq-step3-urg-help {
  font-size: 0.75rem;
  color: #64748b;
}
.pq-step3-urg-price {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f766e;
}
.pq-step3-details {
  margin: 0.6rem 0 0.4rem;
  border: 1px dashed rgba(19, 34, 55, 0.15);
  border-radius: 12px;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.5);
}
.pq-step3-details summary {
  cursor: pointer;
  font-size: 0.9rem;
  color: #475569;
  font-weight: 500;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.pq-step3-details summary::-webkit-details-marker {
  display: none;
}
.pq-step3-details summary span {
  color: #94a3b8;
  font-weight: 400;
  font-size: 0.82rem;
}
.pq-step3-details textarea#request_note {
  width: 100%;
  min-height: 80px;
  resize: vertical;
  padding: 0.75rem 0.85rem;
  border: 1.5px solid #d1d9e6;
  border-radius: 10px;
  font: inherit;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #14242f;
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.pq-step3-details textarea#request_note::placeholder {
  color: #94a3b8;
  font-style: italic;
  font-size: 0.88rem;
}
.pq-step3-details textarea#request_note:focus {
  border-color: #0f766e;
  box-shadow: var(--focus-ring);
}
.pq-step3-privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  background: rgba(15, 118, 110, 0.04);
  border: 1px solid rgba(15, 118, 110, 0.12);
  font-size: 0.85rem;
  color: #475569;
  cursor: pointer;
  line-height: 1.45;
}
.pq-step3-privacy input {
  width: 18px;
  height: 18px;
  accent-color: #0f766e;
  margin-top: 0.1rem;
  flex-shrink: 0;
  cursor: pointer;
}
.pq-step3-privacy a {
  color: #0f766e;
  text-decoration: underline;
}
.pq-accordion-head {
  justify-content: space-between !important;
}
.pq-accordion-head::after {
  content: '▾';
  font-size: 0.75rem;
  color: #94a3b8;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: auto;
}
details[open] .pq-accordion-head::after {
  transform: rotate(180deg);
}
details[open] .pq-accordion-head {
  border-bottom-color: rgba(19, 34, 55, 0.08) !important;
}
details[open] .pq-accordion-body {
  animation: pq-accordion-open 0.3s ease-out;
}
@keyframes pq-accordion-open {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pq-required-hint {
  font-size: 0.78rem;
  color: #94a3b8;
  margin: 0 0 0.8rem;
}
.pq-required-hint::before {
  content: '*';
  color: #dc2626;
  font-weight: 700;
  margin-right: 2px;
}
.pq-step3-card input,
.pq-step3-card select,
.pq-step3-card textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #d1d9e6;
  border-radius: 10px;
  font-size: 0.92rem;
  color: #14242f;
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.pq-step3-card input:focus,
.pq-step3-card select:focus,
.pq-step3-card textarea:focus {
  border-color: #0f766e;
  box-shadow: var(--focus-ring);
}
.pq-step3-card input:required,
.pq-step3-card select:required,
.pq-step3-card textarea:required {
  border-left: 3px solid #dc2626 !important;
}
.pq-step3-card input:required:focus,
.pq-step3-card select:required:focus {
  border-left-color: #0f766e !important;
}
.pq-step3-card input:required:not(:placeholder-shown):valid {
  border-left-color: #86bb9a !important;
}
.pq-step3-card input.is-locked {
  background: #f1f5f9;
  color: #94a3b8;
  cursor: not-allowed;
  border-left: 0 !important;
}
.pq-step3-card input[type="checkbox"] {
  width: 18px;
  height: 18px;
  padding: 0;
  margin: 0;
  border: 0 !important;
  border-radius: 0;
  box-shadow: none;
  accent-color: #0f766e;
  flex-shrink: 0;
  cursor: pointer;
}
.pq-step3-card input[type="checkbox"]:focus {
  box-shadow: none;
}
.pq-shipping-badge {
  display: inline-block;
  background: #0f766e;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  margin-left: 0.3rem;
}
.pq-checkbox-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(19, 34, 55, 0.14);
  border-radius: 13px;
  background: #fff;
  cursor: pointer;
  transition: border-color 140ms, background 140ms;
}
.pq-checkbox-card:hover {
  border-color: rgba(15, 118, 110, 0.35);
  background: rgba(15, 118, 110, 0.03);
}
.pq-checkbox-card:has(input:checked) {
  border-color: #0f766e;
  background: rgba(15, 118, 110, 0.06);
}
.pq-checkbox-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1.35;
}
.pq-checkbox-card-body strong {
  font-size: 0.95rem;
  color: #14242f;
}
.pq-checkbox-card-body small {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 400;
}
.pq-click-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  text-align: left;
  padding: 0.6rem 0.85rem;
  border: 1.5px solid rgba(19, 34, 55, 0.13);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font: inherit;
  transition: border-color 140ms, background 140ms, box-shadow 140ms;
}
.pq-click-card:hover {
  border-color: #0f766e;
  background: rgba(15, 118, 110, 0.05);
  box-shadow: 0 1px 6px rgba(15, 118, 110, 0.1);
}
.pq-click-card:active {
  background: rgba(15, 118, 110, 0.12);
  transform: scale(0.995);
}
.pq-click-card-body {
  flex: 1;
  min-width: 0;
  line-height: 1.35;
}
.pq-click-card-body strong {
  display: block;
  font-size: 0.9rem;
  color: #14242f;
}
.pq-click-card-body small {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
}
.pq-click-card-add {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(15, 118, 110, 0.1);
  color: #0f766e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  transition: background 140ms, color 140ms;
}
.pq-click-card:hover .pq-click-card-add {
  background: #0f766e;
  color: #fff;
}
[hidden] {
  display: none !important;
}
@media (max-width: 920px) {
  .pq-steps {
    gap: 0.15rem;
    margin-bottom: 0.4rem;
  }
  .pq-step span {
    display: none;
  }
  .pq-card-grid-2,
  .pq-card-grid-3,
  .pq-grid-2,
  .pq-grid-3,
  .pq-grid-4,
  .pq-vehicle-grid,
  .pq-vehicle-grid-4,
  .pq-step3-grid {
    grid-template-columns: 1fr;
  }
  .pq-nav-actions {
    flex-direction: column-reverse;
    margin-top: 0.6rem;
  }
  .pq-nav-actions .btn {
    width: 100%;
  }
  .pq-block {
    padding: 0.5rem 0.5rem;
  }
  .pq-block-title {
    font-size: 1rem;
  }
  .pq-subtitle {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
  }
  .pq-section-label {
    margin-top: 0.3rem;
    margin-bottom: 0.15rem;
  }
  .pq-staging {
    padding: 0.5rem;
  }
  .pq-committed-item {
    padding: 0.4rem 0.5rem;
  }
  .pq-committed-heading {
    margin-top: 0.5rem;
    margin-bottom: 0.2rem;
    padding: 0.25rem 0.4rem;
  }
  .pq-click-card {
    padding: 0.4rem 0.5rem;
  }
  .pq-presets {
    gap: 0.15rem;
    margin-top: 0.2rem;
  }
  .pq-preset {
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
  }
  .pq-checkbox-card {
    padding: 0.4rem 0.5rem;
  }
  .pq-card-grid-2 {
    gap: 0.15rem;
  }
  .pq-step3-card {
    padding: 0.5rem;
    margin-bottom: 0.35rem;
  }
}
