/* Yapi Shuttle Booking — Public CSS */
:root {
  --ys-blue:    #0057B8;
  --ys-blue-d:  #00429A;
  --ys-orange:  #E87722;
  --ys-border:  #E2E8F0;
  --ys-bg:      #F8FAFC;
  --ys-text:    #0F172A;
  --ys-muted:   #94A3B8;
  --ys-radius:  12px;
  --ys-shadow:  0 8px 32px rgba(0,0,0,.10);
}

/* Widget - Full width on desktop */
.ys-booking-widget { 
  max-width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif; 
  font-size: 14px; 
  color: var(--ys-text); 
}

/* Panel */
.ys-panel { 
  background: #fff; 
  border: 1px solid var(--ys-border); 
  border-radius: var(--ys-radius); 
  padding: 28px 30px 26px; 
  box-shadow: var(--ys-shadow); 
}

/* Section labels */
.ys-section-label { 
  font-size: 12px; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: .5px; 
  color: var(--ys-text); 
  margin-bottom: 8px; 
}

/* Route block */
.ys-route-block { 
  border: 1.5px solid var(--ys-border); 
  border-radius: 10px; 
  background: var(--ys-bg); 
  position: relative; 
}

.ys-route-row { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  padding: 12px 14px; 
}

.ys-route-divider { 
  height: 1px; 
  background: var(--ys-border); 
}

.ys-route-input { 
  flex: 1; 
  border: none; 
  background: transparent; 
  font-size: 15px; 
  color: var(--ys-text); 
  outline: none; 
  padding: 4px 0;
}

.ys-route-input::placeholder { 
  color: var(--ys-muted); 
}

.ys-pin { 
  flex-shrink: 0; 
}

/* Swap */
#ys-swap { 
  position: absolute; 
  right: 14px; 
  top: 50%; 
  transform: translateY(-50%); 
  width: 28px; 
  height: 28px; 
  border-radius: 50%; 
  background: var(--ys-blue); 
  border: 2.5px solid #fff; 
  cursor: pointer; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  box-shadow: 0 2px 6px rgba(0,87,184,.3); 
  transition: background .15s; 
  z-index: 5; 
}

#ys-swap:hover { 
  background: var(--ys-blue-d); 
}

/* Flight row */
.ys-flight-row { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  margin-top: 10px; 
  background: #EFF6FF; 
  border: 1.5px solid #BFDBFE; 
  border-radius: 10px; 
  padding: 10px 14px; 
}

.ys-flight-icon { 
  font-size: 16px; 
  flex-shrink: 0; 
}

.ys-airport-tag { 
  font-size: 11px; 
  font-weight: 700; 
  background: var(--ys-blue); 
  color: #fff; 
  padding: 2px 8px; 
  border-radius: 6px; 
  white-space: nowrap; 
}

/* Datetime */
.ys-datetime-row { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 14px; 
}

.ys-dt-field { 
  display: flex; 
  align-items: center; 
  gap: 8px; 
  border: 1.5px solid var(--ys-border); 
  border-radius: 10px; 
  padding: 12px 14px; 
  background: var(--ys-bg); 
  transition: border-color .2s; 
}

.ys-dt-field:focus-within { 
  border-color: var(--ys-blue); 
  background: #fff; 
}

.ys-dt-input { 
  border: none; 
  background: transparent; 
  font-size: 15px; 
  color: var(--ys-text); 
  outline: none; 
  width: 100%; 
}

/* Return toggle */
.ys-return-row { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 12px 0 2px; 
  border-top: 1px solid var(--ys-border); 
  margin-top: 14px; 
  font-size: 14px; 
}

.ys-ios-toggle { 
  position: relative; 
  display: inline-block; 
  width: 42px; 
  height: 24px; 
  flex-shrink: 0; 
}

.ys-ios-toggle input { 
  opacity: 0; 
  width: 0; 
  height: 0; 
}

.ys-ios-slider { 
  position: absolute; 
  inset: 0; 
  background: #CBD5E1; 
  border-radius: 24px; 
  cursor: pointer; 
  transition: background .2s; 
}

.ys-ios-slider::before { 
  content: ''; 
  position: absolute; 
  width: 18px; 
  height: 18px; 
  left: 3px; 
  top: 3px; 
  background: #fff; 
  border-radius: 50%; 
  transition: transform .2s; 
  box-shadow: 0 1px 3px rgba(0,0,0,.2); 
}

.ys-ios-toggle input:checked + .ys-ios-slider { 
  background: var(--ys-blue); 
}

.ys-ios-toggle input:checked + .ys-ios-slider::before { 
  transform: translateX(18px); 
}

/* Select */
.ys-select-wrap { 
  position: relative; 
}

.ys-select { 
  width: 100%; 
  padding: 13px 36px 13px 16px; 
  border: 1.5px solid var(--ys-border); 
  border-radius: 10px; 
  background: var(--ys-bg); 
  font-size: 15px; 
  color: var(--ys-text); 
  appearance: none; 
  outline: none; 
  cursor: pointer; 
  transition: border-color .2s; 
}

.ys-select:focus { 
  border-color: var(--ys-blue); 
  background: #fff; 
}

.ys-select-arrow { 
  position: absolute; 
  right: 12px; 
  top: 50%; 
  transform: translateY(-50%); 
  color: var(--ys-muted); 
  pointer-events: none; 
}

/* Free extras - Two columns on desktop */
.ys-free-tag { 
  font-size: 10px; 
  font-weight: 700; 
  background: #d4edda; 
  color: #155724; 
  padding: 2px 7px; 
  border-radius: 8px; 
  vertical-align: middle; 
  margin-left: 6px; 
}

.ys-free-extras-grid { 
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px; 
}

.ys-free-extra-item { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  background: var(--ys-bg); 
  border: 1.5px solid var(--ys-border); 
  border-radius: 10px; 
  padding: 12px 16px; 
}

.ys-extra-icon { 
  font-size: 20px; 
  flex-shrink: 0; 
}

.ys-extra-info { 
  flex: 1; 
}

.ys-extra-name { 
  font-weight: 600; 
  font-size: 14px; 
}

.ys-extra-note { 
  font-size: 11px; 
  color: var(--ys-muted); 
}

.ys-qty-ctrl { 
  display: flex; 
  align-items: center; 
  gap: 8px; 
}

.ys-qty-btn { 
  width: 28px; 
  height: 28px; 
  border: 1.5px solid var(--ys-border); 
  border-radius: 50%; 
  background: #fff; 
  font-size: 18px; 
  cursor: pointer; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  line-height: 1; 
  transition: all .15s; 
  color: var(--ys-text); 
}

.ys-qty-btn:hover { 
  border-color: var(--ys-blue); 
  color: var(--ys-blue); 
}

.ys-qty-val { 
  font-weight: 700; 
  font-size: 15px; 
  min-width: 18px; 
  text-align: center; 
}

/* Paid extras - Two columns on desktop */
.ys-paid-extras-grid { 
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px; 
}

.ys-paid-extra-item { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  background: var(--ys-bg); 
  border: 1.5px solid var(--ys-border); 
  border-radius: 10px; 
  padding: 12px 16px; 
  cursor: pointer; 
  transition: all .15s; 
}

.ys-paid-extra-item:has(input:checked) { 
  border-color: var(--ys-blue); 
  background: #EFF6FF; 
}

.ys-paid-extra-item input[type=checkbox] { 
  accent-color: var(--ys-blue); 
  width: 18px; 
  height: 18px; 
  flex-shrink: 0; 
  cursor: pointer; 
}

.ys-paid-extra-info { 
  display: flex; 
  align-items: center; 
  gap: 8px; 
  flex: 1; 
  font-size: 14px; 
  font-weight: 600; 
}

.ys-paid-price { 
  font-weight: 700; 
  color: var(--ys-blue); 
  font-size: 14px; 
}

/* Info box */
.ys-info-box { 
  display: flex; 
  align-items: center; 
  gap: 8px; 
  background: #EFF6FF; 
  border: 1px solid #BFDBFE; 
  border-radius: 8px; 
  padding: 9px 13px; 
  font-size: 13px; 
  color: var(--ys-blue); 
  margin-top: 12px; 
}

/* CTA button */
.ys-cta-btn { 
  width: 100%; 
  padding: 16px; 
  margin-top: 18px; 
  background: linear-gradient(90deg, var(--ys-blue), var(--ys-orange)); 
  border: none; 
  border-radius: 10px; 
  color: #fff; 
  font-size: 17px; 
  font-weight: 700; 
  cursor: pointer; 
  transition: opacity .2s, transform .15s; 
  letter-spacing: .2px; 
}

.ys-cta-btn:hover { 
  opacity: .9; 
  transform: translateY(-1px); 
}

.ys-cta-btn:disabled { 
  opacity: .6; 
  cursor: not-allowed; 
  transform: none; 
}

/* Back button */
.ys-back-btn { 
  background: none; 
  border: none; 
  color: var(--ys-blue); 
  font-size: 13px; 
  font-weight: 600; 
  cursor: pointer; 
  padding: 0; 
  margin-bottom: 14px; 
}

.ys-back-btn:hover { 
  text-decoration: underline; 
}

/* Route pill */
.ys-route-pill { 
  display: flex; 
  align-items: center; 
  flex-wrap: wrap; 
  gap: 6px; 
  background: #EFF6FF; 
  border-radius: 8px; 
  padding: 10px 14px; 
  font-size: 13px; 
  color: var(--ys-blue); 
}

.ys-pill-arr { 
  color: var(--ys-orange); 
  font-weight: 700; 
}

.ys-pill-meta { 
  margin-left: auto; 
  color: var(--ys-muted); 
  font-size: 12px; 
}

/* Vehicles */
.ys-vehicles-list { 
  display: flex; 
  flex-direction: column; 
  gap: 0; 
  margin-top: 4px; 
}

.ys-vehicles-scroll { 
  max-height: 500px; 
  overflow-y: auto; 
  border: 1px solid var(--ys-border); 
  border-radius: 10px; 
}

.ys-vehicles-scroll::-webkit-scrollbar { 
  width: 6px; 
}

.ys-vehicles-scroll::-webkit-scrollbar-thumb { 
  background: #cbd5e1; 
  border-radius: 6px; 
}

.ys-v-card { 
  display: flex; 
  flex-direction: column; 
  border-bottom: 1px solid var(--ys-border); 
  background: #fff; 
  transition: background .15s; 
}

.ys-v-card:last-child { 
  border-bottom: none; 
}

.ys-v-card:hover { 
  background: #fafbfc; 
}

.ys-v-card.selected { 
  background: #f0fdf4; 
}

.ys-v-top { 
  display: flex; 
  align-items: flex-start; 
  gap: 18px; 
  padding: 20px 20px 16px; 
}

.ys-v-thumb { 
  width: 120px; 
  height: 76px; 
  border-radius: 8px; 
  background: linear-gradient(135deg, #e8f0fb, #f0f4fa); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 34px; 
  flex-shrink: 0; 
  overflow: hidden; 
}

.ys-v-thumb img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  border-radius: 8px; 
}

.ys-v-info { 
  flex: 1; 
  min-width: 0; 
}

.ys-v-name { 
  font-weight: 700; 
  font-size: 17px; 
  color: var(--ys-text); 
  margin-bottom: 4px; 
}

.ys-v-cap { 
  font-size: 13px; 
  color: var(--ys-muted); 
  display: flex; 
  align-items: center; 
  gap: 5px; 
  margin-bottom: 2px; 
}

.ys-v-label { 
  font-size: 11px; 
  color: var(--ys-muted); 
}

.ys-v-disc { 
  font-size: 11px; 
  color: #16a34a; 
  margin-top: 2px; 
}

.ys-v-bottom { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 10px 16px; 
  background: var(--ys-bg); 
}

.ys-v-card.selected .ys-v-bottom { 
  background: #dcfce7; 
}

.ys-v-fee-label { 
  font-size: 11px; 
  color: var(--ys-muted); 
  text-transform: uppercase; 
  letter-spacing: .4px; 
  display: block; 
  margin-bottom: 2px; 
}

.ys-v-price { 
  font-size: 20px; 
  font-weight: 700; 
  color: var(--ys-text); 
}

.ys-v-select-btn {
  width: 40%;
  padding: 9px 20px; 
  border-radius: 20px; 
  border: none; 
  background: #ff6b00; 
  color: #ffffff; 
  font-size: 13px; 
  font-weight: 700; 
  cursor: pointer; 
  border: 1.5px solid #ff6b00; 
  transition: all .15s; 
  display: flex; 
  align-items: center; 
  gap: 6px; 
}

.ys-v-select-btn:hover { 
  border-color: #ff6b00; 
}

.ys-v-card.selected .ys-v-select-btn { 
  background: #16a34a; 
  border-color: #16a34a; 
  color: #fff; 
}

/* Sticky confirm bar */
.ys-panel-vehicles { 
  padding-bottom: 0; 
  position: relative; 
}

.ys-confirm-bar { 
  width: 100%; 
  padding: 18px; 
  margin-top: 14px; 
  background: #0f172a; 
  border: none; 
  border-radius: 0 0 10px 10px; 
  color: #fff; 
  font-size: 17px; 
  font-weight: 700; 
  cursor: pointer; 
  transition: opacity .2s; 
  margin-left: -20px; 
  margin-right: -20px; 
  margin-bottom: -20px; 
  width: calc(100% + 40px); 
}

.ys-confirm-bar:disabled { 
  background: #94A3B8; 
  cursor: not-allowed; 
}

.ys-confirm-bar:not(:disabled):hover { 
  opacity: .92; 
}

/* Summary */
.ys-summary { 
  background: var(--ys-bg); 
  border: 1px solid var(--ys-border); 
  border-radius: 10px; 
  padding: 18px 20px; 
  font-size: 15px; 
}

.ys-sum-row { 
  display: flex; 
  justify-content: space-between; 
  padding: 5px 0; 
  border-bottom: 1px solid var(--ys-border); 
}

.ys-sum-row:last-child { 
  border-bottom: none; 
}

.ys-sum-row span:first-child { 
  color: var(--ys-muted); 
}

.ys-sum-row span:last-child { 
  font-weight: 600; 
}

.ys-sum-total { 
  font-size: 18px; 
  font-weight: 700; 
  padding-top: 10px !important; 
}

.ys-sum-total span:last-child { 
  color: var(--ys-blue); 
  font-size: 22px; 
}

/* Inputs */
.ys-input { 
  width: 100%; 
  padding: 13px 16px; 
  border: 1.5px solid var(--ys-border); 
  border-radius: 10px; 
  font-size: 15px; 
  color: var(--ys-text); 
  background: var(--ys-bg); 
  outline: none; 
  transition: border-color .2s, background .2s; 
  box-sizing: border-box; 
}

.ys-input:focus { 
  border-color: var(--ys-blue); 
  background: #fff; 
}

textarea.ys-input { 
  resize: vertical; 
}

/* Payment options - Three columns on desktop */
.ys-payment-options { 
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px; 
  margin-top: 4px; 
}

.ys-pay-opt { 
  display: flex; 
  align-items: center; 
  gap: 7px; 
  padding: 9px 16px; 
  border: 1.5px solid var(--ys-border); 
  border-radius: 10px; 
  cursor: pointer; 
  font-size: 13px; 
  font-weight: 600; 
  transition: all .15s; 
  background: var(--ys-bg); 
}

.ys-pay-opt input { 
  accent-color: var(--ys-blue); 
  flex-shrink: 0; 
}

.ys-pay-opt.selected, 
.ys-pay-opt:has(input:checked) { 
  border-color: var(--ys-blue); 
  background: #EFF6FF; 
}

.ys-bnpl-opt { 
  border-color: #E87722 !important; 
}

.ys-bnpl-opt:has(input:checked) { 
  background: #fff8f3 !important; 
}

.ys-bnpl-credit { 
  font-size: 11px; 
  font-weight: 400; 
  color: var(--ys-muted); 
  margin-left: auto; 
}

/* Yoco */
.ys-yoco-frame { 
  border: 1.5px solid var(--ys-border); 
  border-radius: 10px; 
  padding: 14px; 
  min-height: 60px; 
}

/* Error */
.ys-error-box { 
  background: #fef2f2; 
  border: 1px solid #fecaca; 
  border-radius: 8px; 
  padding: 11px 14px; 
  color: #dc2626; 
  font-size: 13px; 
  margin-top: 12px; 
}

/* Loading */
.ys-loading { 
  text-align: center; 
  padding: 28px; 
  color: var(--ys-muted); 
  font-size: 13px; 
}

.ys-loading::before { 
  content: ''; 
  display: block; 
  width: 28px; 
  height: 28px; 
  border: 3px solid var(--ys-border); 
  border-top-color: var(--ys-blue); 
  border-radius: 50%; 
  margin: 0 auto 10px; 
  animation: ys-spin .7s linear infinite; 
}

@keyframes ys-spin { 
  to { transform: rotate(360deg); } 
}

/* Agent dashboard - Full width */
.ys-dash { 
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif; 
  font-size: 14px; 
  color: #0F172A; 
  max-width: 100%;
}

.ys-dash-header { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  margin-bottom: 20px; 
}

.ys-dash-name { 
  font-size: 20px; 
  font-weight: 700; 
  margin: 0 0 4px; 
}

.ys-dash-company { 
  color: #64748B; 
  font-size: 14px; 
  margin: 0; 
}

.ys-dash-stats { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 18px; 
  margin-bottom: 24px; 
}

.ys-stat-card { 
  background: #fff; 
  border: 1px solid #E2E8F0; 
  border-radius: 10px; 
  padding: 20px; 
  text-align: center; 
}

.ys-stat-card.ys-stat-danger { 
  border-color: #fca5a5; 
  background: #fef2f2; 
}

.ys-stat-num { 
  font-size: 26px; 
  font-weight: 700; 
  color: #0057B8; 
}

.ys-stat-label { 
  font-size: 12px; 
  color: #94A3B8; 
  margin-top: 4px; 
}

.ys-bnpl-card { 
  background: #fff; 
  border: 1.5px solid #0057B8; 
  border-radius: 12px; 
  padding: 18px; 
  margin-bottom: 20px; 
}

.ys-bnpl-header { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  font-weight: 700; 
  margin-bottom: 12px; 
}

.ys-bnpl-badge { 
  background: #d4edda; 
  color: #155724; 
  font-size: 11px; 
  padding: 3px 10px; 
  border-radius: 8px; 
  font-weight: 700; 
}

.ys-credit-bar { 
  height: 10px; 
  background: #E2E8F0; 
  border-radius: 10px; 
  overflow: hidden; 
  margin-bottom: 6px; 
}

.ys-credit-fill { 
  height: 100%; 
  border-radius: 10px; 
  background: linear-gradient(90deg, #0057B8, #E87722); 
  transition: width .5s; 
}

.ys-fill-warn { 
  background: linear-gradient(90deg, #f59e0b, #ef4444); 
}

.ys-fill-danger { 
  background: #ef4444; 
}

.ys-fill-blue { 
  background: linear-gradient(90deg, #0057B8, #60a5fa); 
}

.ys-credit-labels { 
  display: flex; 
  justify-content: space-between; 
  font-size: 12px; 
  color: #94A3B8; 
}

.ys-bnpl-alert { 
  background: #fef2f2; 
  border: 1px solid #fca5a5; 
  border-radius: 8px; 
  padding: 10px 14px; 
  color: #dc2626; 
  font-size: 13px; 
  margin-top: 12px; 
}

.ys-bnpl-avail { 
  font-size: 13px; 
  color: #16a34a; 
  margin-top: 6px; 
}

.ys-bnpl-qualify-card { 
  background: #fff8f3; 
  border: 1.5px solid #E87722; 
  border-radius: 12px; 
  padding: 18px; 
  margin-bottom: 20px; 
}

.ys-qualify-title { 
  font-weight: 700; 
  font-size: 16px; 
  margin-bottom: 8px; 
}

.ys-qualify-note { 
  font-size: 12px; 
  color: #94A3B8; 
  margin-top: 4px; 
}

.ys-qualify-bar-wrap { 
  margin: 10px 0; 
}

.ys-dash-notice { 
  border-radius: 8px; 
  padding: 12px 16px; 
  font-size: 13px; 
  margin-bottom: 16px; 
}

.ys-notice-warn { 
  background: #fff3cd; 
  border: 1px solid #ffc107; 
  color: #856404; 
}

.ys-notice-error { 
  background: #f8d7da; 
  border: 1px solid #f5c6cb; 
  color: #721c24; 
}

.ys-dash-table { 
  width: 100%; 
  border-collapse: collapse; 
  font-size: 13px; 
}

.ys-dash-table th { 
  background: #F8FAFC; 
  padding: 8px 12px; 
  text-align: left; 
  font-weight: 600; 
  color: #64748B; 
  border-bottom: 2px solid #E2E8F0; 
}

.ys-dash-table td { 
  padding: 9px 12px; 
  border-bottom: 1px solid #F1F5F9; 
}

.ys-dash-table .ys-table-total td { 
  font-size: 14px; 
  background: #F8FAFC; 
  border-top: 2px solid #E2E8F0; 
}

/* Agent register - Full width */
.ys-register-wrap { 
  max-width: 100%;
}

.ys-register-title { 
  font-size: 22px; 
  font-weight: 700; 
  margin-bottom: 6px; 
}

.ys-register-sub { 
  color: #64748B; 
  margin-bottom: 20px; 
}

.ys-agent-zone-logo-register {
  height: 156px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

@media (max-width: 480px) {
  .ys-agent-zone-logo-register { height: 38px; }
}

.ys-register-field { 
  margin-bottom: 14px; 
}

.ys-register-field label { 
  display: block; 
  font-size: 12px; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: .4px; 
  margin-bottom: 6px; 
  color: #475569; 
}

.ys-bnpl-perks { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 8px; 
  margin-top: 20px; 
  background: #EFF6FF; 
  border-radius: 10px; 
  padding: 16px; 
}

.ys-perk { 
  display: flex; 
  align-items: center; 
  gap: 8px; 
  font-size: 13px; 
  font-weight: 500; 
}

/* Badges */
.ys-badge { 
  display: inline-block; 
  padding: 2px 8px; 
  border-radius: 10px; 
  font-size: 11px; 
  font-weight: 700; 
  text-transform: uppercase; 
}

.ys-s-pending { 
  background: #fff3cd; 
  color: #856404; 
}

.ys-s-approved { 
  background: #d4edda; 
  color: #155724; 
}

.ys-s-suspended { 
  background: #f8d7da; 
  color: #721c24; 
}

.ys-s-confirmed { 
  background: #d4edda; 
  color: #155724; 
}

.ys-s-completed { 
  background: #d1ecf1; 
  color: #0c5460; 
}

.ys-s-cancelled { 
  background: #f8d7da; 
  color: #721c24; 
}

.ys-pm-payfast { 
  background: #00c170; 
  color: #fff; 
}

.ys-pm-yoco { 
  background: #0e0e0e; 
  color: #fff; 
}

.ys-pm-bnpl { 
  background: #E87722; 
  color: #fff; 
}

.ys-bnpl-on { 
  background: #d4edda; 
  color: #155724; 
}

.ys-bnpl-off { 
  background: #f8d7da; 
  color: #721c24; 
}

.ys-bnpl-pending { 
  background: #e2e8f0; 
  color: #475569; 
}

/* Responsive - Mobile first */
@media (max-width: 1024px) {
  .ys-dash-stats { 
    grid-template-columns: repeat(3, 1fr); 
  }
}

@media (max-width: 768px) {
  .ys-panel { 
    padding: 18px 14px; 
  }
  
  .ys-datetime-row { 
    grid-template-columns: 1fr; 
  }
  
  .ys-dash-stats { 
    grid-template-columns: 1fr 1fr; 
  }
  
  .ys-bnpl-perks { 
    grid-template-columns: 1fr; 
  }
  
  .ys-free-extras-grid { 
    grid-template-columns: 1fr; 
  }
  
  .ys-paid-extras-grid { 
    grid-template-columns: 1fr; 
  }
  
  .ys-payment-options { 
    grid-template-columns: 1fr; 
  }
  
  .ys-v-thumb { 
    width: 80px; 
    height: 52px; 
  }
  
  .ys-v-top { 
    padding: 14px 14px 12px;
    gap: 12px;
  }
  
  .ys-v-name { 
    font-size: 15px; 
  }
  
  .ys-v-price { 
    font-size: 17px; 
  }
}

@media (max-width: 480px) {
  .ys-panel { 
    padding: 16px 12px; 
  }
  
  .ys-dash-stats { 
    grid-template-columns: 1fr 1fr; 
  }
  
  .ys-v-thumb { 
    width: 60px; 
    height: 40px; 
  }
  
  .ys-v-select-btn { 
    padding: 6px 14px;
    font-size: 12px;
  }
}

/* Large screen constraint - optional, remove for truly full width */
@media (min-width: 1400px) {
  .ys-booking-widget {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .ys-register-wrap {
    max-width: 800px;
    margin: 0 auto;
  }
}