.rqw-widget {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  color: #333;
  line-height: 1.5;
  box-sizing: border-box;
}
.rqw-widget *, .rqw-widget *::before, .rqw-widget *::after {
  box-sizing: border-box;
}
.rqw-widget .rqw-loading {
  text-align: center;
  padding: 40px;
  color: #888;
}

/* Progress Steps */
.rqw-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 30px;
  flex-wrap: wrap;
  padding: 16px 0;
  background: #fafbfc;
  border-radius: 8px;
}
.rqw-step {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px 4px;
  transition: opacity 0.2s;
}
.rqw-step.disabled {
  cursor: default;
  opacity: 0.5;
}
.rqw-step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid #ccc;
  color: #999;
  background: #fff;
  transition: all 0.3s;
  flex-shrink: 0;
}
.rqw-step.active .rqw-step-circle {
  border-color: #00CBFE;
  background: #00CBFE;
  color: #fff;
  box-shadow: 0 0 0 3px rgba(0, 203, 254, 0.2);
}
.rqw-step.completed .rqw-step-circle {
  border-color: #22c55e;
  background: #22c55e;
  color: #fff;
}
.rqw-step.active.completed .rqw-step-circle {
  border-color: #22c55e;
  background: #22c55e;
  color: #fff;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}
.rqw-step-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
}
.rqw-step.active .rqw-step-label {
  color: #00CBFE;
}
.rqw-step.completed .rqw-step-label {
  color: #22c55e;
}
.rqw-step-line {
  width: 40px;
  height: 2px;
  background: #ddd;
  margin: 0 4px;
}
.rqw-step-line.completed {
  background: #22c55e;
}

/* Main Layout */
.rqw-main-layout {
  display: flex;
  gap: 24px;
}
.rqw-content-area {
  flex: 1;
  min-width: 0;
}
.rqw-sidebar {
  width: 280px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .rqw-widget {
    padding: 0 6px;
  }
  .rqw-main-layout {
    flex-direction: column;
    gap: 10px;
  }
  .rqw-sidebar {
    width: 100%;
    order: 1;
  }
  .rqw-sidebar-box {
    padding: 10px 12px;
  }
  .rqw-sidebar-title {
    font-size: 12px;
  }
  .rqw-sidebar-row {
    font-size: 12px;
    padding: 3px 0;
  }
  .rqw-sidebar-text {
    font-size: 12px;
    margin: 4px 0;
  }
  .rqw-sidebar-accent {
    margin-bottom: 8px;
  }
  .rqw-step-line {
    width: 20px;
  }
  .rqw-step-label {
    display: none;
  }
  .rqw-step-circle {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  .rqw-progress {
    margin-bottom: 14px;
    padding: 10px 6px;
  }
}

/* Sidebar */
.rqw-sidebar-box {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
  background: #fff;
}
.rqw-sidebar-title {
  font-weight: 700;
  font-size: 14px;
  margin: 0 0 4px 0;
}
.rqw-sidebar-accent {
  width: 32px;
  height: 3px;
  background: #00CBFE;
  margin-bottom: 16px;
  border-radius: 2px;
}
.rqw-sidebar-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 6px 0;
  font-size: 14px;
  gap: 8px;
}
.rqw-sidebar-row a {
  color: #00CBFE;
  text-decoration: none;
  cursor: pointer;
}
.rqw-sidebar-row .rqw-label {
  color: #888;
  flex-shrink: 0;
}
.rqw-sidebar-row .rqw-value {
  color: #333;
  font-weight: 500;
  text-align: right;
  word-break: break-word;
}
.rqw-price-row .rqw-price-value {
  color: #00CBFE;
  font-weight: 700;
  font-size: 15px;
}
.rqw-sidebar-text {
  font-size: 14px;
  color: #666;
  margin: 6px 0;
  padding-left: 12px;
  position: relative;
}
.rqw-sidebar-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #00CBFE;
  border-radius: 50%;
}

/* Device Grid */
.rqw-device-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .rqw-device-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.rqw-device-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
}
.rqw-device-card:hover {
  border-color: #00CBFE;
  box-shadow: 0 2px 12px rgba(0, 203, 254, 0.12);
}
.rqw-device-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .rqw-device-card {
    padding: 10px 6px;
    gap: 6px;
  }
  .rqw-device-card img {
    width: 44px;
    height: 44px;
  }
  .rqw-device-card span {
    font-size: 11px !important;
  }
}
.rqw-device-card span {
  font-size: 13px;
  font-weight: 600;
  color: #00CBFE;
  text-align: center;
}

/* Brand Grid */
.rqw-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .rqw-brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 16px;
  }
}
@media (max-width: 380px) {
  .rqw-brand-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
.rqw-brand-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
}
.rqw-brand-card:hover {
  border-color: #00CBFE;
  box-shadow: 0 2px 8px rgba(0, 203, 254, 0.12);
}
.rqw-brand-card span {
  font-size: 16px;
  font-weight: 600;
  color: #00CBFE;
}
.rqw-brand-card svg {
  color: #00CBFE;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .rqw-brand-card {
    padding: 10px 14px;
  }
  .rqw-brand-card span {
    font-size: 14px;
  }
}

/* Grouped Models */
.rqw-grouped-models {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 4px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .rqw-grouped-models {
    max-height: 320px;
    margin-bottom: 10px;
  }
}
.rqw-model-group {
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .rqw-model-group {
    margin-bottom: 10px;
  }
}
.rqw-group-title {
  font-size: 13px;
  font-weight: 700;
  color: #555;
  margin: 0 0 8px 4px;
  text-transform: none;
}
@media (max-width: 768px) {
  .rqw-group-title {
    font-size: 12px;
    margin: 0 0 5px 2px;
  }
}

/* Section Header & Back Button */
.rqw-model-section {}
.rqw-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .rqw-section-header {
    gap: 8px;
    margin-bottom: 12px;
  }
}
.rqw-back-btn {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  max-width: 36px !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid #00CBFE !important;
  background: #fff !important;
  cursor: pointer !important;
  font-size: 16px !important;
  color: #00CBFE !important;
  transition: all 0.2s !important;
  flex-shrink: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  overflow: visible !important;
  line-height: 1 !important;
  text-indent: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  position: relative !important;
}
.rqw-back-btn:hover {
  background: #00CBFE !important;
  color: #fff !important;
}
.rqw-back-btn svg {
  color: inherit !important;
  display: block !important;
  width: 16px !important;
  height: 16px !important;
}
@media (max-width: 768px) {
  .rqw-back-btn {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    max-width: 30px !important;
  }
}
.rqw-section-title {
  font-size: 18px;
  font-weight: 700;
  color: #00CBFE;
  margin: 0;
}
@media (max-width: 768px) {
  .rqw-section-title {
    font-size: 15px;
  }
}
.rqw-search-input {
  width: 100%;
  max-width: 400px;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
  outline: none;
  transition: border-color 0.2s;
}
.rqw-search-input:focus {
  border-color: #00CBFE;
  box-shadow: 0 0 0 3px rgba(0, 203, 254, 0.1);
}
@media (max-width: 768px) {
  .rqw-search-input {
    max-width: 100%;
    padding: 8px 10px;
    font-size: 13px;
    margin-bottom: 10px;
  }
}

/* Model Grid */
.rqw-model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .rqw-model-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-bottom: 12px;
  }
}
.rqw-model-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 8px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
  text-align: center;
}
.rqw-model-card:hover {
  border-color: #00CBFE;
  box-shadow: 0 1px 6px rgba(0, 203, 254, 0.12);
}
.rqw-model-card span {
  font-size: 12px;
  font-weight: 500;
  color: #333;
}
@media (max-width: 768px) {
  .rqw-model-card {
    padding: 7px 5px;
    gap: 4px;
  }
  .rqw-model-card span {
    font-size: 11px;
  }
}
.rqw-custom-model {
  border-top: 1px solid #e5e7eb;
  padding-top: 20px;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .rqw-custom-model {
    padding-top: 12px;
  }
}
.rqw-custom-model p {
  font-size: 14px;
  color: #666;
  margin: 0 0 10px 0;
}
@media (max-width: 768px) {
  .rqw-custom-model p {
    font-size: 12px;
    margin: 0 0 6px 0;
  }
}
.rqw-custom-model-row {
  display: flex;
  gap: 10px;
  max-width: 400px;
}
@media (max-width: 480px) {
  .rqw-custom-model-row {
    flex-direction: column;
    max-width: 100%;
    gap: 8px;
  }
}
.rqw-custom-model-row input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}
@media (max-width: 768px) {
  .rqw-custom-model-row input {
    padding: 8px 10px;
    font-size: 13px;
  }
}
.rqw-custom-model-row input:focus {
  border-color: #00CBFE;
}

/* Custom entry (unlock / other) */
.rqw-custom-entry {
  max-width: 500px;
}
@media (max-width: 480px) {
  .rqw-custom-entry {
    max-width: 100%;
  }
}
.rqw-custom-entry p {
  color: #666;
  font-size: 14px;
  margin: 0 0 16px 0;
}
.rqw-custom-entry input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
  outline: none;
}
.rqw-custom-entry input:focus {
  border-color: #00CBFE;
}
@media (max-width: 768px) {
  .rqw-custom-entry p {
    font-size: 13px;
    margin: 0 0 10px 0;
  }
  .rqw-custom-entry input {
    padding: 8px 10px;
    font-size: 13px;
    margin-bottom: 10px;
  }
}

/* Issue Grid */
.rqw-issue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .rqw-issue-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 14px;
  }
}
@media (max-width: 380px) {
  .rqw-issue-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
.rqw-issue-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
}
.rqw-issue-card:hover {
  border-color: #ccc;
}
.rqw-issue-card.selected {
  border-color: #00CBFE;
  background: rgba(0, 203, 254, 0.06);
}
.rqw-issue-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #f3f4f6;
  transition: background 0.2s;
}
.rqw-issue-card.selected .rqw-issue-icon-wrap {
  background: rgba(0, 203, 254, 0.12);
}
.rqw-issue-card .rqw-issue-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #666;
}
.rqw-issue-card.selected .rqw-issue-icon {
  color: #00CBFE;
}
/* Issue name + price stacked */
.rqw-issue-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.rqw-issue-name {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}
.rqw-issue-price {
  font-size: 12px;
  font-weight: 700;
  color: #00CBFE;
  background: rgba(0, 203, 254, 0.1);
  padding: 1px 6px;
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
}
.rqw-issue-price.rqw-issue-price-call {
  color: #888;
  background: #f3f4f6;
}
.rqw-issue-card.selected .rqw-issue-price {
  background: rgba(0, 203, 254, 0.18);
}
.rqw-issue-check {
  margin-left: auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rqw-issue-card.selected .rqw-issue-check {
  border-color: #00CBFE;
  background: #00CBFE;
  color: #fff;
}
@media (max-width: 768px) {
  .rqw-issue-card {
    padding: 9px 10px;
    gap: 8px;
  }
  .rqw-issue-icon-wrap {
    width: 34px;
    height: 34px;
    border-radius: 6px;
  }
  .rqw-issue-card .rqw-issue-icon {
    width: 18px;
    height: 18px;
  }
  .rqw-issue-check {
    width: 18px;
    height: 18px;
  }
  .rqw-issue-name {
    font-size: 12px;
  }
  .rqw-issue-price {
    font-size: 11px;
    padding: 1px 5px;
  }
}

/* Buttons */
.rqw-btn-primary {
  background: #00CBFE;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.rqw-btn-primary:hover {
  background: #00b5e2;
  box-shadow: 0 2px 8px rgba(0, 203, 254, 0.3);
}
.rqw-btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}
.rqw-btn-primary.full-width {
  width: 100%;
  justify-content: center;
  padding: 14px 28px;
}
@media (max-width: 768px) {
  .rqw-btn-primary {
    padding: 10px 20px;
    font-size: 13px;
  }
  .rqw-btn-primary.full-width {
    padding: 12px 20px;
  }
}

/* Details / Get Quote Form */
.rqw-details-form {
  max-width: 600px;
}
@media (max-width: 480px) {
  .rqw-details-form {
    max-width: 100%;
  }
}
.rqw-details-form h2 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 0 0 4px 0;
}
.rqw-details-form .rqw-subtitle {
  color: #888;
  font-size: 14px;
  margin: 0 0 16px 0;
}
.rqw-subtitle-bold {
  color: #444 !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  margin-bottom: 12px !important;
}
.rqw-contact-methods {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .rqw-contact-methods {
    gap: 10px;
    margin-bottom: 16px;
  }
  .rqw-details-form .rqw-subtitle {
    font-size: 13px;
    margin: 0 0 12px 0;
  }
}
.rqw-radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .rqw-radio-label {
    font-size: 13px;
  }
}
.rqw-radio-label input[type="radio"] {
  accent-color: #00CBFE;
  width: 16px;
  height: 16px;
}
.rqw-form-group {
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .rqw-form-group {
    margin-bottom: 10px;
  }
}
.rqw-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .rqw-form-group label {
    font-size: 12px;
    margin-bottom: 2px;
  }
}
.rqw-form-group input,
.rqw-form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
@media (max-width: 768px) {
  .rqw-form-group input,
  .rqw-form-group textarea {
    padding: 8px 10px;
    font-size: 13px;
  }
}
.rqw-form-group input:focus,
.rqw-form-group textarea:focus {
  border-color: #00CBFE;
  box-shadow: 0 0 0 3px rgba(0, 203, 254, 0.1);
}
.rqw-form-group textarea {
  resize: vertical;
  min-height: 80px;
}
@media (max-width: 768px) {
  .rqw-form-group textarea {
    min-height: 60px;
  }
}
.rqw-form-group input[readonly] {
  background: #f9fafb;
  color: #666;
}
.rqw-consent-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: #666;
}
@media (max-width: 768px) {
  .rqw-consent-row {
    font-size: 11px;
    margin-bottom: 14px;
    gap: 6px;
  }
}
.rqw-consent-row input[type="checkbox"] {
  margin-top: 2px;
  accent-color: #00CBFE;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Date/Time Picker Section */
.rqw-datetime-section {
  background: #f0fbff;
  border: 1px solid #b8ecfe;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}
.rqw-datetime-title {
  font-size: 14px;
  font-weight: 700;
  color: #00CBFE;
  margin: 0 0 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rqw-datetime-title svg {
  flex-shrink: 0;
}
.rqw-datetime-hours {
  font-size: 12px;
  color: #666;
  margin: 0 0 12px 0;
}
.rqw-datetime-row {
  display: flex;
  gap: 12px;
}
@media (max-width: 480px) {
  .rqw-datetime-row {
    flex-direction: column;
    gap: 8px;
  }
}
.rqw-date-group,
.rqw-time-group {
  flex: 1;
}
.rqw-form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.rqw-form-group select:focus {
  border-color: #00CBFE;
  box-shadow: 0 0 0 3px rgba(0, 203, 254, 0.1);
}
@media (max-width: 768px) {
  .rqw-datetime-section {
    padding: 12px;
    margin-bottom: 10px;
  }
  .rqw-datetime-title {
    font-size: 13px;
  }
  .rqw-datetime-hours {
    font-size: 11px;
    margin: 0 0 8px 0;
  }
  .rqw-form-group select {
    padding: 8px 10px;
    font-size: 13px;
    padding-right: 28px;
  }
}
.rqw-sunday-notice {
  color: #ef4444;
  font-size: 13px;
  font-weight: 500;
  margin: 8px 0 0 0;
}

/* Service Type Selection */
.rqw-service-section {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
}
.rqw-service-type-row {
  display: flex;
  gap: 12px;
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .rqw-service-type-row {
    flex-direction: column;
    gap: 8px;
  }
}
.rqw-service-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
}
.rqw-service-card:hover {
  border-color: #00CBFE;
}
.rqw-service-card.selected {
  border-color: #00CBFE;
  background: rgba(0, 203, 254, 0.06);
}
.rqw-service-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #666;
  transition: background 0.2s, color 0.2s;
}
.rqw-service-card.selected .rqw-service-icon {
  background: rgba(0, 203, 254, 0.12);
  color: #00CBFE;
}
.rqw-service-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rqw-service-info strong {
  font-size: 14px;
  font-weight: 700;
  color: #333;
}
.rqw-service-info span {
  font-size: 12px;
  color: #888;
}
.rqw-service-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: transparent;
  transition: all 0.2s;
}
.rqw-service-card.selected .rqw-service-check {
  border-color: #00CBFE;
  background: #00CBFE;
  color: #fff;
}
@media (max-width: 768px) {
  .rqw-service-section {
    padding: 12px;
    margin-bottom: 14px;
  }
  .rqw-service-card {
    padding: 10px 12px;
    gap: 10px;
  }
  .rqw-service-icon {
    width: 36px;
    height: 36px;
  }
  .rqw-service-info strong {
    font-size: 13px;
  }
  .rqw-service-info span {
    font-size: 11px;
  }
}

/* Location Selection */
.rqw-location-section {
  margin-top: 14px;
  border-top: 1px solid #e5e7eb;
  padding-top: 14px;
}
.rqw-location-label {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.rqw-location-label svg {
  color: #00CBFE;
}
.rqw-location-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
  margin-bottom: 8px;
}
.rqw-location-card:last-child {
  margin-bottom: 0;
}
.rqw-location-card:hover {
  border-color: #00CBFE;
}
.rqw-location-card.selected {
  border-color: #00CBFE;
  background: rgba(0, 203, 254, 0.06);
}
.rqw-location-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rqw-location-info strong {
  font-size: 13px;
  font-weight: 700;
  color: #333;
}
.rqw-location-info span {
  font-size: 12px;
  color: #888;
}
.rqw-map-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #00CBFE;
  text-decoration: none;
  padding: 4px 10px;
  border: 1px solid #00CBFE;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
}
.rqw-map-link:hover {
  background: #00CBFE;
  color: #fff;
}
.rqw-location-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #00CBFE;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .rqw-location-card {
    padding: 10px 12px;
    gap: 8px;
  }
  .rqw-location-info strong {
    font-size: 12px;
  }
  .rqw-location-info span {
    font-size: 11px;
  }
  .rqw-map-link {
    font-size: 11px;
    padding: 3px 8px;
  }
}

/* Success Page */
.rqw-success {
  text-align: center;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .rqw-success {
    padding: 20px 8px;
  }
}
.rqw-success-icon {
  width: 64px;
  height: 64px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
@media (max-width: 768px) {
  .rqw-success-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 10px;
  }
  .rqw-success-icon svg {
    width: 24px;
    height: 24px;
  }
}
.rqw-success h2 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin: 0 0 8px 0;
}
@media (max-width: 768px) {
  .rqw-success h2 {
    font-size: 17px;
  }
}
.rqw-success p {
  color: #666;
  font-size: 14px;
  margin: 0 0 24px 0;
}
@media (max-width: 768px) {
  .rqw-success p {
    font-size: 13px;
    margin: 0 0 14px 0;
  }
}
.rqw-success-details {
  background: #f9fafb;
  border-radius: 8px;
  padding: 20px;
  max-width: 400px;
  margin: 0 auto 24px;
  text-align: left;
}
@media (max-width: 768px) {
  .rqw-success-details {
    padding: 12px;
    margin: 0 auto 14px;
  }
}
.rqw-success-details .rqw-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  gap: 8px;
}
@media (max-width: 768px) {
  .rqw-success-details .rqw-detail-row {
    font-size: 12px;
    padding: 4px 0;
  }
}
.rqw-success-details .rqw-detail-row .label {
  color: #888;
  flex-shrink: 0;
}
.rqw-success-details .rqw-detail-row .value {
  font-weight: 500;
  color: #333;
  text-align: right;
  word-break: break-word;
}

/* Animations */
.rqw-step-content {
  animation: rqw-fadeIn 0.3s ease;
}
@keyframes rqw-fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Payment Step ── */
.rqw-payment-summary {
  background: #f8fffe;
  border: 1px solid #d0f0fe;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
}
.rqw-payment-summary-title {
  font-size: 14px;
  font-weight: 700;
  color: #555;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.rqw-payment-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 14px;
  color: #444;
  border-bottom: 1px solid #e8f7fe;
}
.rqw-payment-row:last-of-type { border-bottom: none; }
.rqw-payment-total {
  font-weight: 700;
  font-size: 16px;
  padding-top: 10px;
  margin-top: 4px;
  border-top: 2px solid #d0f0fe !important;
  border-bottom: none !important;
}
.rqw-payment-amount {
  color: #00CBFE;
  font-size: 20px;
  font-weight: 800;
}
.rqw-payment-note {
  font-size: 12px;
  color: #888;
  margin: 10px 0 0 0;
  line-height: 1.5;
}
.rqw-card-wrap {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
}
.rqw-card-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 10px;
}
.rqw-card-element {
  background: #f9f9f9;
  border: 1.5px solid #d0d0d0;
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color 0.2s;
}
.rqw-card-element.StripeElement--focus {
  border-color: #00CBFE;
  box-shadow: 0 0 0 3px rgba(0,203,254,0.1);
}
.rqw-card-element.StripeElement--invalid {
  border-color: #e74c3c;
}
.rqw-card-error {
  color: #e74c3c;
  font-size: 13px;
  margin-top: 8px;
  min-height: 18px;
}
.rqw-secure-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #888;
  margin: 12px 0 16px;
}
.rqw-pay-btn {
  margin-top: 4px;
}
.rqw-payment-loading {
  text-align: center;
  padding: 30px 0;
  color: #888;
  font-size: 14px;
}
.rqw-payment-loading::before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  border: 3px solid #e0e0e0;
  border-top-color: #00CBFE;
  border-radius: 50%;
  animation: rqw-spin 0.8s linear infinite;
  margin: 0 auto 12px;
}
.rqw-payment-error-msg {
  background: #fff5f5;
  border: 1px solid #fcd;
  border-radius: 8px;
  padding: 12px;
  color: #c0392b;
  font-size: 13px;
  margin-bottom: 12px;
}
@keyframes rqw-spin {
  to { transform: rotate(360deg); }
}
.rqw-btn-secondary {
  background: #f0f0f0;
  color: #333;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.rqw-btn-secondary:hover { background: #e0e0e0; }

/* Payment method selector */
.rqw-pay-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rqw-pay-method-option {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: #fff;
}
.rqw-pay-method-option:hover {
  border-color: #00CBFE;
}
.rqw-pay-method-selected {
  border-color: #00CBFE;
  background: #f5fdff;
}
.rqw-pay-method-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  margin: 0;
}
.rqw-pay-method-label input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #00CBFE;
  cursor: pointer;
  flex-shrink: 0;
}
.rqw-bank-details {
  margin-top: 14px;
  background: #f8fffe;
  border: 1px solid #d0f0fe;
  border-radius: 8px;
  padding: 14px 16px;
}
.rqw-bank-intro {
  font-size: 13px;
  color: #555;
  margin: 0 0 12px 0;
  line-height: 1.5;
}
.rqw-bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid #e0f5fe;
  font-size: 14px;
}
.rqw-bank-row:last-of-type { border-bottom: none; }
.rqw-bank-key {
  color: #888;
  font-weight: 500;
  min-width: 100px;
}
.rqw-bank-val {
  color: #222;
  font-weight: 700;
  text-align: right;
}
.rqw-cash-info {
  margin-top: 14px;
  background: #f8fff8;
  border: 1px solid #c8f0c8;
  border-radius: 8px;
  padding: 14px 16px;
}
.rqw-card-wrap {
  margin-top: 14px;
  background: #fff;
  border: none;
  border-radius: 0;
  padding: 0;
}

/* Coupon code field */
.rqw-coupon-row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.rqw-coupon-row input {
  flex: 1;
}
.rqw-coupon-btn {
  white-space: nowrap;
  padding: 10px 16px !important;
  font-size: 13px !important;
}
.rqw-coupon-msg {
  font-size: 13px;
  margin-top: 6px;
  padding: 6px 10px;
  border-radius: 6px;
}
.rqw-coupon-success {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #86efac;
  font-weight: 600;
}
.rqw-coupon-error {
  background: #fff5f5;
  color: #dc2626;
  border: 1px solid #fca5a5;
}
.rqw-coupon-saving {
  background: #f0fdf4;
  border-radius: 6px;
  padding: 6px 10px !important;
  margin: 4px 0;
}
