/* ============================================================
   Alfa Star Travel Inquiry Wizard — Frontend Styles
   ============================================================ */

:root {
  --ast-primary:       #2d3e50;
  --ast-primary-hover: #1e2d3d;
  --ast-primary-light: #eef2f7;
  --ast-orange:        #e87520;
  --ast-orange-hover:  #d06818;
  --ast-orange-light:  #fef4ec;
  --ast-success:       #10b981;
  --ast-danger:        #ef4444;
  --ast-border:        #dde3ec;
  --ast-bg:            #f7f9fc;
  --ast-text:          #1f2937;
  --ast-muted:         #6b7280;
}

/* Reset & Base */
.ast-wizard *,
.ast-wizard *::before,
.ast-wizard *::after { box-sizing: border-box; }

/* Outer page background */
.ast-wizard-page-bg {
  background: linear-gradient(160deg, #e8eef5 0%, #fef0e4 50%, #edf2f7 100%);
  padding: 32px 16px 48px;
}

.ast-wizard {
  max-width: 840px;
  margin: 0 auto;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 15px;
  color: var(--ast-text);
  line-height: 1.6;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(45, 62, 80, 0.12), 0 2px 8px rgba(45, 62, 80, 0.06);
  overflow: visible; /* allow searchable select dropdowns to escape the card */
}

/* Content padding inside the white card */
.ast-wizard > * { padding-left: 32px; padding-right: 32px; }
.ast-wizard > .ast-wizard-header { padding: 28px 32px 20px; }
.ast-wizard > .ast-wizard-divider { padding: 0; margin: 0; }
.ast-wizard > .ast-progress-wrap  { padding: 20px 32px 0; }
.ast-wizard > .ast-step           { padding: 24px 32px 0; }
.ast-wizard > .ast-navigation     { padding: 20px 32px 28px; margin-top: 0; }
.ast-wizard > #ast-success        { padding: 52px 32px 40px; }

/* ============================================================
   Brand Header
   ============================================================ */
.ast-wizard-header {
  text-align: center;
  padding: 28px 16px 24px;
  margin-bottom: 4px;
}
.ast-wizard-logo {
  max-height: 64px !important;
  max-width: 200px !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
  margin: 0 auto 8px !important;
}
.ast-wizard-brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1;
}
.ast-brand-alfa  { color: var(--ast-primary); }
.ast-brand-star  { color: var(--ast-orange); }
.ast-brand-sub   {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--ast-muted);
  text-transform: uppercase;
  margin-top: 4px;
}
.ast-wizard-divider {
  height: 3px;
  background: linear-gradient(90deg, var(--ast-primary) 0%, var(--ast-orange) 100%);
  border-radius: 2px;
  margin: 16px 0 28px;
  overflow: hidden;
}

/* ============================================================
   Progress Bar
   ============================================================ */
.ast-progress-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.ast-progress-bar {
  flex: 1;
  height: 7px;
  background: var(--ast-border);
  border-radius: 4px;
  overflow: hidden;
}
.ast-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--ast-primary) 0%, var(--ast-orange) 100%);
  border-radius: 4px;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.ast-step-counter {
  font-size: 13px;
  color: var(--ast-muted);
  white-space: nowrap;
  font-weight: 700;
}

/* ============================================================
   Steps
   ============================================================ */
/* Use .ast-wizard prefix + !important to win against any theme RTL overrides */
.ast-wizard .ast-step {
  display: none !important;
  animation: ast-fade-in 0.3s ease;
}
.ast-wizard .ast-step.active { display: block !important; }

@keyframes ast-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Step header */
.ast-step-header { margin-bottom: 28px; }
.ast-step-header h2 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
  color: var(--ast-primary);
  line-height: 1.3;
}
.ast-step-header p {
  margin: 0;
  color: var(--ast-muted);
  font-size: 14px;
}

/* ============================================================
   Service Selection Cards
   ============================================================ */
.ast-service-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 14px;
  margin-bottom: 12px;
}
.ast-service-card {
  background: #ffffff;
  border: 2px solid var(--ast-border);
  border-radius: 16px;
  padding: 24px 12px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s, background 0.2s;
  outline: none;
  position: relative;
  overflow: hidden;
}
.ast-service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(232,117,32,0.06) 100%);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  border-radius: 14px;
}
.ast-service-card:hover,
.ast-service-card:focus {
  border-color: var(--ast-primary);
  box-shadow: 0 6px 20px rgba(45, 62, 80, 0.14);
  transform: translateY(-3px);
}
.ast-service-card:hover::after,
.ast-service-card:focus::after { opacity: 1; }
.ast-service-card.selected {
  border-color: var(--ast-orange);
  background: var(--ast-orange-light);
  box-shadow: 0 6px 20px rgba(232, 117, 32, 0.22);
  transform: translateY(-3px);
}
.ast-service-card.selected::after { opacity: 1; }
.ast-service-card.selected .ast-service-name { color: var(--ast-orange-hover); }
.ast-service-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
  transition: transform 0.2s;
}
.ast-service-card:hover .ast-service-icon,
.ast-service-card.selected .ast-service-icon { transform: scale(1.12); }
.ast-service-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ast-primary);
  line-height: 1.35;
  transition: color 0.2s;
}

/* ============================================================
   Form Fields
   ============================================================ */
.ast-field-group { margin-bottom: 20px; }
.ast-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 7px;
}
.ast-req { color: var(--ast-danger); margin-left: 2px; }
.ast-input,
.ast-select,
.ast-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--ast-border);
  border-radius: 9px;
  font-size: 15px;
  color: #111827;
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.ast-input:focus,
.ast-select:focus,
.ast-textarea:focus {
  border-color: var(--ast-orange);
  box-shadow: 0 0 0 3px rgba(232, 117, 32, 0.12);
}
.ast-input.ast-invalid,
.ast-select.ast-invalid {
  border-color: var(--ast-danger);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.ast-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.ast-textarea { resize: vertical; min-height: 100px; }

/* Rows */
.ast-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ============================================================
   Option Cards (radio / checkbox groups)
   ============================================================ */
.ast-option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(152px, 1fr));
  gap: 10px;
}
.ast-option-item input[type="checkbox"],
.ast-option-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.ast-option-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1.5px solid var(--ast-border);
  border-radius: 9px;
  cursor: pointer;
  font-size: 13.5px;
  color: #374151;
  transition: all 0.18s ease;
  background: #ffffff;
  user-select: none;
}
.ast-option-item label::before {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid var(--ast-border);
  border-radius: 3px;
  flex-shrink: 0;
  transition: all 0.18s;
}
.ast-radios .ast-option-item label::before { border-radius: 50%; }
.ast-option-item input:checked + label {
  border-color: var(--ast-orange);
  background: var(--ast-orange-light);
  color: var(--ast-orange-hover);
  font-weight: 600;
}
.ast-option-item input:checked + label::before {
  background: var(--ast-orange);
  border-color: var(--ast-orange);
}
.ast-option-item label:hover {
  border-color: var(--ast-primary);
  background: var(--ast-primary-light);
}

/* ============================================================
   Travelers Counter
   ============================================================ */
.ast-travelers-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.ast-traveler-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 100px;
}
.ast-traveler-lbl {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  text-align: center;
}
.ast-counter {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ast-counter-btn {
  width: 36px;
  height: 36px;
  border: 2px solid var(--ast-border);
  border-radius: 50%;
  background: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  transition: all 0.18s;
  font-weight: 700;
}
.ast-counter-btn:hover {
  border-color: var(--ast-orange);
  color: var(--ast-orange);
  background: var(--ast-orange-light);
}
.ast-counter-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--ast-primary);
  min-width: 28px;
  text-align: center;
}

/* ============================================================
   Checkboxes / consent
   ============================================================ */
.ast-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #374151;
}
.ast-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--ast-orange);
}
.ast-consent {
  padding: 14px 16px;
  background: var(--ast-bg);
  border: 1px solid var(--ast-border);
  border-radius: 9px;
  line-height: 1.5;
}
.ast-consent a { color: var(--ast-primary); text-decoration: underline; }
.ast-small { font-size: 12.5px; margin-top: 6px; }

/* ============================================================
   Navigation
   ============================================================ */
.ast-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 2px solid var(--ast-bg);
  gap: 12px;
}
.ast-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  letter-spacing: 0.1px;
}
.ast-btn:disabled { opacity: 0.55; cursor: not-allowed; }
.ast-btn-back {
  background: #f3f4f6;
  color: #374151;
  border: 1.5px solid var(--ast-border);
}
.ast-btn-back:hover { background: #e9edf2; border-color: #c5cdd8; }
.ast-btn-next {
  background: var(--ast-primary);
  color: #ffffff;
  margin-left: auto;
  box-shadow: 0 4px 12px rgba(45, 62, 80, 0.25);
}
.ast-btn-next:hover {
  background: var(--ast-orange);
  box-shadow: 0 4px 16px rgba(232, 117, 32, 0.35);
}
.ast-btn-submit {
  background: linear-gradient(135deg, var(--ast-orange) 0%, #f09030 100%);
  color: #ffffff;
  margin-left: auto;
  box-shadow: 0 4px 14px rgba(232, 117, 32, 0.35);
}
.ast-btn-submit:hover {
  background: linear-gradient(135deg, var(--ast-orange-hover) 0%, #e07828 100%);
  box-shadow: 0 6px 18px rgba(232, 117, 32, 0.45);
  transform: translateY(-1px);
}

/* ============================================================
   Review Step
   ============================================================ */
.ast-review-section {
  background: var(--ast-bg);
  border: 1.5px solid var(--ast-border);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 14px;
}
.ast-review-section-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ast-muted);
  margin: 0 0 12px;
}
.ast-review-row {
  display: flex;
  gap: 16px;
  padding: 7px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--ast-border);
}
.ast-review-row:last-child { border-bottom: none; }
.ast-review-label {
  font-weight: 700;
  color: var(--ast-primary);
  min-width: 160px;
  flex-shrink: 0;
}
.ast-review-value { color: var(--ast-muted); }

/* ============================================================
   Inline Field Errors (per-field blur validation)
   ============================================================ */
.ast-field-error {
  display: block;
  color: var(--ast-danger);
  font-size: 12px;
  font-weight: 600;
  margin-top: 5px;
  padding-left: 2px;
  animation: ast-fade-in 0.2s ease;
}

/* ============================================================
   Error Messages (step-level)
   ============================================================ */
.ast-error-msg {
  color: var(--ast-danger);
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
  padding: 9px 13px;
  background: #fef2f2;
  border-radius: 7px;
  border-left: 3px solid var(--ast-danger);
}

/* ============================================================
   Success Screen
   ============================================================ */
.ast-success {
  text-align: center;
  padding: 52px 24px 40px;
}
.ast-success-icon {
  font-size: 72px;
  margin-bottom: 16px;
  display: block;
  animation: ast-pop 0.5s ease;
}
@keyframes ast-pop {
  0%   { transform: scale(0.6); opacity: 0; }
  70%  { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
.ast-success h2 {
  font-size: 30px;
  font-weight: 900;
  color: var(--ast-success);
  margin: 0 0 12px;
}
.ast-success p {
  color: var(--ast-muted);
  font-size: 16px;
  margin: 0 auto 8px;
  max-width: 480px;
}
.ast-success-ref {
  display: inline-block;
  background: #f0fdf4;
  border: 2px solid var(--ast-success);
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 30px;
  font-weight: 900;
  color: #065f46;
  letter-spacing: 4px;
  margin: 20px 0;
}
.ast-success-sub { font-size: 13px !important; color: #9ca3af !important; }

/* ============================================================
   Conditional fields
   ============================================================ */
.ast-conditional { transition: all 0.2s; }

/* ============================================================
   Language Toggle Button
   ============================================================ */
.ast-wizard-header { position: relative; }
.ast-lang-toggle {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  background: var(--ast-primary);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s;
  font-family: inherit;
}
.ast-lang-toggle:hover { background: var(--ast-orange); }

/* ============================================================
   Searchable Select Component
   ============================================================ */
.ast-ss-wrap {
  position: relative;
  width: 100%;
}

.ast-ss-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border: 1.5px solid var(--ast-border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 44px;
  user-select: none;
}
.ast-ss-display:hover { border-color: var(--ast-primary); }
.ast-ss-wrap.ast-ss-open .ast-ss-display {
  border-color: var(--ast-primary);
  box-shadow: 0 0 0 3px rgba(45, 62, 80, 0.1);
}
.ast-ss-wrap.ast-invalid .ast-ss-display { border-color: var(--ast-danger); }

.ast-ss-placeholder {
  font-size: 14px;
  color: var(--ast-muted);
  flex: 1;
  text-align: left;
}
.ast-ss-placeholder.ast-ss-selected { color: var(--ast-text); font-weight: 600; }

.ast-ss-arrow {
  font-size: 10px;
  color: var(--ast-muted);
  transition: transform 0.2s;
  margin-left: 8px;
  flex-shrink: 0;
}
.ast-ss-wrap.ast-ss-open .ast-ss-arrow { transform: rotate(180deg); }

.ast-ss-panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid var(--ast-border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(45, 62, 80, 0.12);
  z-index: 1000;
  overflow: hidden;
}

.ast-ss-search-wrap {
  padding: 10px 10px 6px;
  border-bottom: 1px solid var(--ast-border);
}
.ast-ss-input {
  width: 100%;
  border: 1.5px solid var(--ast-border);
  border-radius: 6px;
  padding: 7px 10px;
  font-size: 13px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
}
.ast-ss-input:focus { border-color: var(--ast-primary); }

.ast-ss-list {
  max-height: 220px;
  overflow-y: auto;
  padding: 4px 0;
}

.ast-ss-option {
  padding: 9px 14px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s;
  color: var(--ast-text);
}
.ast-ss-option:hover { background: var(--ast-primary-light); color: var(--ast-primary); }

.ast-ss-noresult {
  padding: 12px 14px;
  font-size: 13px;
  color: var(--ast-muted);
  text-align: center;
  font-style: italic;
}

/* ============================================================
   RTL Support
   ============================================================ */
.ast-wizard[dir="rtl"] { direction: rtl; text-align: right; }
.ast-wizard[dir="rtl"] .ast-wizard-header { text-align: center; }
.ast-wizard[dir="rtl"] .ast-lang-toggle { right: auto; left: 24px; }
@media (max-width: 640px) {
  .ast-wizard[dir="rtl"] .ast-lang-toggle { left: 14px; right: auto; }
}
.ast-wizard[dir="rtl"] .ast-navigation { flex-direction: row-reverse; }
.ast-wizard[dir="rtl"] .ast-btn-next { margin-left: 0; margin-right: auto; }
.ast-wizard[dir="rtl"] .ast-btn-submit { margin-left: 0; margin-right: auto; }
.ast-wizard[dir="rtl"] .ast-review-row { flex-direction: row-reverse; }
.ast-wizard[dir="rtl"] .ast-select {
  background-position: left 12px center;
  padding-right: 14px;
  padding-left: 36px;
}
.ast-wizard[dir="rtl"] .ast-ss-placeholder { text-align: right; }
.ast-wizard[dir="rtl"] .ast-ss-arrow { margin-left: 0; margin-right: 8px; }
.ast-wizard[dir="rtl"] .ast-ss-panel { left: 0; right: 0; }
.ast-wizard[dir="rtl"] .ast-field-error { padding-left: 0; padding-right: 2px; }

/* ============================================================
   Responsive — Tablet
   ============================================================ */
@media (max-width: 768px) {
  .ast-wizard-page-bg { padding: 20px 12px 36px; }
}

/* ============================================================
   Responsive — Mobile
   ============================================================ */
@media (max-width: 640px) {
  /* Card shape */
  .ast-wizard { border-radius: 14px; }
  .ast-wizard-page-bg { padding: 10px 8px 28px; }

  /* Override inner padding — was 32px each side, now 16px */
  .ast-wizard > * { padding-left: 16px !important; padding-right: 16px !important; }
  .ast-wizard > .ast-wizard-header { padding: 20px 16px 14px !important; }
  .ast-wizard > .ast-progress-wrap { padding: 12px 16px 0 !important; }
  .ast-wizard > .ast-step           { padding: 16px 16px 0 !important; }
  .ast-wizard > .ast-navigation     { padding: 12px 16px 20px !important; }
  .ast-wizard > #ast-success        { padding: 36px 16px 28px !important; }

  /* Base font */
  .ast-wizard { font-size: 14px; }

  /* Brand header */
  .ast-wizard-brand-text { font-size: 22px; }
  .ast-lang-toggle { font-size: 11px; padding: 4px 10px; top: 18px; transform: none; }

  /* Step header */
  .ast-step-header { margin-bottom: 18px; }
  .ast-step-header h2 { font-size: 18px; }
  .ast-step-header p { font-size: 13px; }

  /* Service cards — 2 columns */
  .ast-service-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ast-service-card { padding: 18px 8px 14px; }
  .ast-service-icon { font-size: 28px; }
  .ast-service-name { font-size: 11.5px; }

  /* Form layout */
  .ast-row { grid-template-columns: 1fr; gap: 0; }
  .ast-option-grid { grid-template-columns: repeat(2, 1fr); }
  .ast-label { font-size: 13px; }
  .ast-input, .ast-select, .ast-textarea { font-size: 14px; padding: 10px 12px; }

  /* Travelers */
  .ast-travelers-row { gap: 12px; }
  .ast-traveler-col { min-width: 80px; }

  /* Review step — stack label above value to prevent overflow */
  .ast-review-section { padding: 12px 14px; margin-bottom: 10px; }
  .ast-review-row { flex-direction: column; gap: 2px; padding: 8px 0; }
  .ast-review-label { min-width: unset; font-size: 11px; letter-spacing: 0.3px; text-transform: uppercase; color: var(--ast-muted); font-weight: 700; }
  .ast-review-value { font-size: 14px; color: var(--ast-text); font-weight: 500; word-break: break-word; overflow-wrap: anywhere; }

  /* Navigation */
  .ast-navigation { flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 20px; }
  .ast-btn { padding: 11px 20px; font-size: 14px; }
  .ast-btn-next, .ast-btn-submit { margin-left: 0; width: 100%; justify-content: center; }
  .ast-btn-back { width: 100%; justify-content: center; order: 2; }

  /* Success screen */
  .ast-success-icon { font-size: 56px; }
  .ast-success h2 { font-size: 22px; }
  .ast-success p { font-size: 14px; }
  .ast-success-ref { font-size: 20px; padding: 12px 20px; letter-spacing: 2px; margin: 14px 0; }

  /* Searchable select */
  .ast-ss-list { max-height: 180px; }
  .ast-ss-option { font-size: 13px; padding: 8px 12px; }
}

/* ============================================================
   Responsive — Small Mobile (< 400px)
   ============================================================ */
@media (max-width: 400px) {
  .ast-wizard-page-bg { padding: 6px 4px 20px; }
  .ast-service-grid { gap: 8px; }
  .ast-service-card { padding: 14px 6px 10px; }
  .ast-service-icon { font-size: 24px; }
  .ast-service-name { font-size: 10.5px; }
  .ast-option-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .ast-option-item label { font-size: 12px; padding: 8px 10px; }
}

/* ============================================================
   Success screen — Continue on WhatsApp button (v2.1.0)
   ============================================================ */
.ast-wa-success-btn {
  display: inline-block;
  background: linear-gradient(135deg, #25d366, #1ebe57);
  color: #fff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37, 211, 102, .35);
  transition: transform .18s ease, box-shadow .18s ease;
}
.ast-wa-success-btn:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 7px 20px rgba(37, 211, 102, .45);
}
