/* Swiss Activities clone — shared component styles matching original */
:root {
  --sa-red: #FF385C;
  --sa-primary: #EB002A;
  --sa-primary-dark: #c40024;
  --sa-navy: #002F49;
  --sa-pay-btn: #00112C;
  --sa-pay-btn-hover: #5C687C;
  --sa-green-light: #B5F2D0;
  --sa-green: #10B981;
  --sa-green-600: #16a34a;
  --sa-gray-50: #f9fafb;
  --sa-gray-100: #f3f4f6;
  --sa-gray-200: #e5e7eb;
  --sa-gray-500: #737373;
  --sa-gray-700: #374151;
  --h-header: 64px;
}

body.sa-has-sticky { padding-bottom: 0; }

/* Sticky booking bar — hidden until scroll */
.sa-sticky-bar {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: #fff;
  border-top: 1px solid var(--sa-gray-200);
  padding: 12px 16px;
  z-index: 45;
  box-shadow: 0 -4px 16px rgba(0,0,0,.08);
  transform: translateY(100%);
  transition: transform .25s ease;
}
.sa-sticky-bar.visible {
  transform: translateY(0);
}
@media (min-width: 1536px) {
  .sa-sticky-bar { display: none !important; }
}
.sa-brief-box {
  background: var(--sa-gray-100);
  border-radius: 12px;
  padding: 20px;
  position: sticky;
  top: calc(var(--h-header) + 16px);
}
.sa-brief-box h2 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}
.sa-brief-card {
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 10px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.sa-brief-card-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sa-brief-card-icon.cancel { color: var(--sa-green); }
.sa-brief-card-icon.duration,
.sa-brief-card-icon.ticket,
.sa-brief-card-icon.language { color: var(--sa-red); }
.sa-brief-card-title {
  font-weight: 600;
  font-size: 14px;
  color: #000;
  margin-bottom: 2px;
}
.sa-brief-card-text {
  font-size: 13px;
  color: var(--sa-gray-500);
  line-height: 1.4;
}
.sa-brief-meeting {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 14px;
  padding-top: 14px;
}
.sa-brief-meeting-icon { color: var(--sa-red); flex-shrink: 0; margin-top: 2px; }

.sa-sticky-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.sa-sticky-chat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--sa-gray-500);
}
.sa-sticky-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.sa-price {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  white-space: nowrap;
}
.sa-price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--sa-gray-500);
}
.sa-btn-primary {
  background: var(--sa-red);
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.sa-btn-primary:hover { opacity: .92; }
.sa-btn-primary:disabled { opacity: .5; cursor: not-allowed; }

/* Book activity drawer */
.sa-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.sa-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}
.sa-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background: #fff;
  z-index: 101;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0,0,0,.12);
}
.sa-drawer-overlay.open .sa-drawer { transform: translateX(0); }
.sa-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--sa-gray-200);
  flex-shrink: 0;
}
.sa-drawer-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
}
.sa-drawer-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #000;
  line-height: 1;
  padding: 4px;
}
.sa-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}
.sa-drawer-footer {
  border-top: 1px solid var(--sa-gray-200);
  padding: 16px 24px 24px;
  flex-shrink: 0;
  background: #fff;
}
.sa-drawer-summary {
  border: 1px solid var(--sa-gray-200);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
}
.sa-drawer-summary h4 {
  font-size: 15px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}
.sa-drawer-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: #000;
}
.sa-drawer-row .edit-btn {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--sa-gray-500);
  padding: 4px;
}
.sa-cancel-banner {
  background: #EFF6FF;
  border-radius: 8px;
  padding: 10px 12px;
  margin-top: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: #1e40af;
}
.sa-drawer-section-title {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}
.sa-offer-card {
  border: 1px solid var(--sa-gray-200);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 10px;
}
.sa-offer-card.selected {
  border-color: var(--sa-red);
  background: #fff5f7;
}
.sa-offer-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--sa-gray-200);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sa-offer-card.selected .sa-offer-radio {
  border-color: var(--sa-red);
}
.sa-offer-card.selected .sa-offer-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sa-red);
}
.sa-ticket-row {
  border: 1px solid var(--sa-gray-200);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sa-qty-control {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sa-qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--sa-gray-200);
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sa-qty-btn:disabled { opacity: .3; cursor: not-allowed; }
.sa-qty-num { font-weight: 600; min-width: 20px; text-align: center; }
.sa-drawer-cancel-note {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--sa-gray-500);
  margin-bottom: 12px;
}
.sa-book-calendar {
  margin-top: 8px;
}
.sa-book-calendar .sa-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.sa-book-calendar .sa-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}
.sa-book-calendar .sa-cal-day-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--sa-gray-500);
  padding: 4px;
}
.sa-book-calendar .sa-cal-day {
  height: 52px;
  border: none;
  border-radius: 8px;
  background: #fff;
  cursor: default;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.sa-book-calendar .sa-cal-day.available {
  background: var(--sa-green-light);
  cursor: pointer;
}
.sa-book-calendar .sa-cal-day.available:hover { filter: brightness(.95); }
.sa-book-calendar .sa-cal-day.selected {
  background: var(--sa-red);
  color: #fff;
}
.sa-book-calendar .sa-cal-day .price-tag {
  font-size: 10px;
  font-weight: 600;
}
.sa-book-calendar .sa-cal-day.selected .price-tag { color: #fff; }
.sa-book-calendar .sa-cal-day.past { color: #ccc; }

/* Activity page tabs & similar */
.sa-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--sa-gray-200);
  margin-bottom: 24px;
  overflow-x: auto;
}
.sa-tab {
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--sa-gray-500);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  font-family: inherit;
}
.sa-tab.active {
  color: #000;
  border-bottom-color: var(--sa-red);
}
.sa-tab-panel { display: none; }
.sa-tab-panel.active { display: block; }
.sa-similar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.sa-similar-card {
  border: 1px solid var(--sa-gray-200);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.sa-similar-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,.1); }
.sa-similar-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.sa-similar-card-body { padding: 12px; }
.sa-similar-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-bottom: 6px;
  line-height: 1.3;
}
.sa-similar-card .price {
  font-weight: 700;
  color: #000;
  font-size: 15px;
}

/* Checkout / basket */
body.is-booking .app-container {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  background-color: #F9FAFB;
}
body.is-booking footer { margin-top: auto; }
body.is-checkout { width: 100% !important; }

.sa-steps-wrap {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto 32px;
  padding-top: 8px;
}
.sa-steps {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.sa-steps::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 20px;
  width: calc(100% - 56px);
  height: 1px;
  background: var(--sa-gray-200);
  transform: translate(-50%, -50%);
  z-index: 0;
}
@media (min-width: 1024px) {
  .sa-steps::before { top: 24px; }
}
.sa-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 72px;
}
.sa-step-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 4px solid #F9FAFB;
  background: #F9FAFB;
}
.sa-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--sa-gray-200);
  background: #fff;
  color: var(--sa-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}
@media (min-width: 1024px) {
  .sa-step-num { width: 48px; height: 48px; font-size: 16px; }
}
.sa-step--active .sa-step-num {
  background: var(--sa-navy);
  border-color: var(--sa-navy);
  color: #fff;
}
.sa-step-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--sa-navy);
  text-transform: capitalize;
}
@media (min-width: 1024px) {
  .sa-step-label { font-size: 14px; margin-top: 4px; }
}
#sa-checkout-root {
  max-width: 1232px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px 60px;
  box-sizing: border-box;
}
.sa-checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1232px;
  width: 100%;
  margin: 0 auto;
  padding: 24px 0 0;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .sa-checkout-grid { grid-template-columns: minmax(0, 1fr) 420px; }
}
.sa-card {
  border: 1px solid var(--sa-gray-200);
  border-radius: 12px;
  padding: 20px;
  background: #fff;
}
.sa-timer {
  background: #f0f9ff;
  border: 1px solid #e0f2fe;
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: #0369a1;
  margin-bottom: 20px;
}
.sa-form-field {
  margin-bottom: 16px;
}
.sa-form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #000;
}
.sa-form-field input,
.sa-form-field select {
  width: 100%;
  height: 40px;
  padding: 10px 14px;
  border: 1px solid var(--sa-gray-200);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.1s ease-in, box-shadow 0.1s ease-in;
}
.sa-form-field input:hover {
  border-color: #d1d5db;
}
.sa-form-field input:focus {
  outline: none;
  border-color: var(--sa-navy);
  box-shadow: 0 0 0 1px var(--sa-navy);
}
.sa-form-field input.valid {
  border-color: var(--sa-green-600);
  background-image: none;
}
.sa-pay-btn {
  flex: 1;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.sa-pay-options {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.sa-payment-item {
  border: 1px solid var(--sa-gray-200);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.sa-payment-item.expanded {
  border-color: var(--sa-navy);
}
.sa-btn-navy {
  width: 100%;
  background: var(--sa-pay-btn);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 16px;
  min-height: 48px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.25s ease, opacity 0.2s ease;
}
.sa-btn-navy:hover:not(:disabled) {
  background: var(--sa-pay-btn-hover);
}
.sa-btn-navy:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Activity scroll sections */
.sa-scroll-section {
  padding: 32px 0;
  border-top: 1px solid var(--sa-gray-200);
}
.sa-scroll-section-last { margin-bottom: 40px; }
.sa-section-heading {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}
.sa-section-list {
  padding-left: 20px;
  line-height: 1.8;
  color: var(--sa-gray-700);
}
.sa-section-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--sa-gray-700);
}
.sa-book-widget {
  border: 1px solid var(--sa-gray-200);
  border-radius: 12px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.sa-sidebar-col .sa-book-widget {
  position: sticky;
  top: calc(var(--h-header) + 16px);
  margin-top: 16px;
}
.sa-book-widget-inline { display: block; margin-bottom: 24px; }
@media (min-width: 1024px) {
  .sa-book-widget-inline { display: none; }
  .sa-sidebar-col .sa-book-widget { display: block; }
}
.sa-book-widget-chat {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--sa-gray-500);
  margin-bottom: 12px;
}
.sa-book-widget-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.sa-book-widget-btn { width: 100%; border-radius: 10px !important; }
.sa-reviews-section { background: var(--sa-gray-50); margin-left: -16px; margin-right: -16px; padding-left: 16px; padding-right: 16px; }
.sa-reviews-summary { margin-bottom: 20px; }
.sa-reviews-score { font-size: 24px; font-weight: 700; }
.sa-reviews-meta { font-size: 14px; color: var(--sa-gray-500); }
.sa-review-card {
  background: #fff;
  border: 1px solid var(--sa-gray-200);
  border-radius: 12px;
  padding: 16px;
  font-size: 14px;
  line-height: 1.6;
}
.sa-review-stars { color: #facc15; margin-bottom: 8px; }
.sa-review-author { font-size: 12px; color: var(--sa-gray-500); margin-top: 8px; }
.sa-video-wrap { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 12px; overflow: hidden; }
.sa-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Checkout enhancements */
.sa-checkout-title { font-size: 18px; font-weight: 600; color: #000; margin-bottom: 16px; }
.sa-checkout-subtitle { color: var(--sa-gray-500); margin-bottom: 24px; font-size: 14px; }
.sa-form-section-title { font-size: 16px; font-weight: 700; margin-bottom: 16px; color: #000; }
.sa-phone-row { display: flex; gap: 8px; }
.sa-country-select {
  width: 220px;
  max-width: 45%;
  padding: 12px;
  border: 1px solid var(--sa-gray-200);
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
}
.sa-phone-input {
  flex: 1;
  height: 40px;
  padding: 10px 40px 10px 14px;
  border: 1px solid var(--sa-gray-200);
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color 0.1s ease-in, box-shadow 0.1s ease-in;
}
.sa-terms-row {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
  cursor: pointer;
}
.sa-terms-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #000;
  font-size: 14px;
  line-height: 1.45;
}
.sa-required-star { color: #000; font-size: 14px; line-height: 1; }
.sa-checkbox-wrap { position: relative; flex-shrink: 0; }
.sa-form-checkbox .sa-checkbox-input {
  position: absolute;
  opacity: 0;
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
}
.sa-form-checkbox .sa-checkbox-box {
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #737373;
  border-radius: 4px;
  background: #fff;
  position: relative;
  transition: background-color 0.1s ease-in, border-color 0.1s ease-in, box-shadow 0.1s ease-in;
}
.sa-form-checkbox .sa-checkbox-box::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  opacity: 0;
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.1s ease-in;
}
@media (min-width: 1024px) {
  .sa-form-checkbox:hover .sa-checkbox-input:not(:checked) + .sa-checkbox-box {
    background: #d1d5db;
  }
}
.sa-form-checkbox .sa-checkbox-input:checked + .sa-checkbox-box {
  background: var(--sa-primary);
  border-color: var(--sa-primary);
}
.sa-form-checkbox:hover .sa-checkbox-input:checked + .sa-checkbox-box {
  background: var(--sa-primary-dark);
  border-color: var(--sa-primary-dark);
}
.sa-form-checkbox .sa-checkbox-input:focus-visible + .sa-checkbox-box {
  box-shadow: 0 0 0 2px rgba(235, 0, 42, 0.25);
}
.sa-form-checkbox .sa-checkbox-input:checked + .sa-checkbox-box::after {
  transform: rotate(45deg) scale(1);
  opacity: 1;
}
.sa-info-btn {
  border: 1px solid #9ca3af;
  background: #fff;
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  min-height: 36px;
  font-family: inherit;
  transition: background-color 0.1s ease-in, border-color 0.1s ease-in, color 0.1s ease-in;
}
@media (min-width: 640px) {
  .sa-info-btn:hover {
    background: #737373;
    border-color: #737373;
    color: #fff;
  }
}
.sa-secure-note { color: var(--sa-green-600); font-size: 14px; display: flex; gap: 8px; align-items: flex-start; margin-bottom: 8px; line-height: 1.5; }
.sa-secure-lock {
  width: 1em;
  height: 1em;
  fill: currentColor;
  flex-shrink: 0;
  margin-top: 2px;
}
.sa-legal-note { font-size: 12px; color: var(--sa-gray-500); margin-bottom: 16px; line-height: 1.5; }
.sa-payment-section { margin-top: 32px; }
.sa-adyen-dropin { margin-top: 8px; }
.sa-instant-payment-methods {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  gap: 12px;
}
.sa-instant-payment-methods li { flex: 1; min-width: 0; }
.sa-apple-pay-btn,
.sa-gpay-btn {
  width: 100%;
  min-height: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 1px solid #757575;
  font-family: inherit;
}
.sa-apple-pay-btn img,
.sa-gpay-btn img {
  display: block;
  max-width: 88%;
  max-height: 18px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.sa-gpay-btn img { max-height: 17px; }
.sa-pay-more-title { font-size: 14px; font-weight: 600; margin: 0 0 12px; color: #000; }
.sa-payment-methods-list { display: flex; flex-direction: column; gap: 8px; }
.sa-pay-method {
  border: 1px solid var(--sa-gray-200);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.sa-pay-method--expanded { border-color: var(--sa-pay-btn); }
.sa-pay-method--expanded .sa-pay-method__brands { display: none; }
.sa-pay-method__header { width: 100%; }
.sa-pay-method__title {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 0;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background-color 0.15s ease;
}
.sa-pay-method__title:hover { background: #fafafa; }
.sa-pay-method__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 26px;
  border: 1px solid var(--sa-gray-200);
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
}
.sa-pay-brand-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.sa-pay-method__name {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  flex: 1;
}
.sa-pay-method__brands {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.sa-pay-method__brand-more {
  font-size: 12px;
  color: var(--sa-gray-500);
  margin-left: 2px;
}
.sa-pay-method__details {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 14px;
  border-top: 0 solid var(--sa-gray-200);
  overflow: hidden;
  transition: grid-template-rows 0.28s ease, padding 0.28s ease, border-top-width 0.28s ease;
}
.sa-pay-method--expanded .sa-pay-method__details {
  grid-template-rows: 1fr;
  padding-bottom: 14px;
  border-top-width: 1px;
}
.sa-pay-method__details-inner {
  min-height: 0;
  overflow: hidden;
}
.sa-card-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sa-save-card {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  margin: 12px 0;
  padding: 12px 14px;
  border: 1px solid var(--sa-gray-200);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  color: var(--sa-pay-btn);
}
.sa-save-card .sa-checkbox-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.sa-save-card .sa-checkbox-box {
  width: 18px;
  height: 18px;
  border: 1px solid var(--sa-gray-200);
  border-radius: 4px;
  background: #fff;
  flex-shrink: 0;
  position: relative;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.sa-save-card .sa-checkbox-box::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  opacity: 0;
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.12s ease;
}
.sa-save-card .sa-checkbox-input:checked + .sa-checkbox-box {
  background: var(--sa-pay-btn);
  border-color: var(--sa-pay-btn);
}
.sa-save-card .sa-checkbox-input:checked + .sa-checkbox-box::after {
  transform: rotate(45deg) scale(1);
  opacity: 1;
}
.sa-pay-express {
  flex: 1;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 48px;
}
.sa-pay-more-title { font-size: 16px; font-weight: 700; margin: 20px 0 12px; }
.sa-payment-accordion { margin-bottom: 8px; }
.sa-payment-item {
  width: 100%;
  border: 1px solid var(--sa-gray-200);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  background: #fff;
  font-family: inherit;
  font-size: 15px;
}
.sa-payment-item.expanded { border-color: var(--sa-navy); border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.sa-pay-chevron { font-size: 10px; color: var(--sa-gray-500); transition: transform .2s; }
.sa-payment-item.expanded .sa-pay-chevron { transform: rotate(180deg); }
.sa-payment-panel {
  display: none;
  border: 1px solid var(--sa-navy);
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 16px;
  margin-top: -1px;
  margin-bottom: 8px;
}
.sa-payment-panel.open { display: block; }
.sa-card-logos { display: flex; align-items: center; gap: 4px; }
.sa-card-logos img { height: 16px; }
.sa-card-logos span { font-size: 12px; color: var(--sa-gray-500); }
.sa-basket-sidebar { position: sticky; top: 80px; padding: 20px; }
.sa-basket-sidebar-item { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--sa-gray-200); }
.sa-basket-sidebar-item:last-of-type { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.sa-basket-detail { font-size: 14px; color: #000; margin-bottom: 0; }
.sa-basket-field-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
}
.sa-basket-field-label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 100px;
  flex-shrink: 0;
  color: var(--sa-gray-500);
  font-weight: 500;
}
.sa-basket-field-label > span:last-child { color: #374151; }
.sa-basket-field-value { flex: 1; color: #000; font-weight: 500; }
.sa-basket-icon { flex-shrink: 0; color: var(--sa-gray-500); display: block; }
.sa-basket-row { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; }
.sa-price-breakdown { border-top: 1px solid var(--sa-gray-200); padding-top: 16px; margin-top: 16px; font-size: 12px; color: #374151; }
.sa-price-line { display: flex; justify-content: space-between; margin-bottom: 8px; font-weight: 500; }
.sa-price-total { font-weight: 700; font-size: 16px; margin-top: 8px; color: #000; }
.sa-timer-in-card { border-radius: 12px 12px 0 0; margin: 0; background: #f0f9ff; color: #0369a1; border: none; border-bottom: 1px solid #e0f2fe; }
.sa-timer-in-card svg { color: #0284c7; flex-shrink: 0; }
.sa-item-total-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--sa-gray-200);
}
.sa-item-total-label { font-weight: 600; color: #000; font-size: 14px; padding-top: 4px; }
.sa-item-total-right { text-align: right; }
.sa-item-total-price { display: block; font-size: 20px; font-weight: 700; color: #000; line-height: 1.2; }
.sa-edit-btn {
  border: none;
  background: none;
  color: var(--sa-gray-500);
  cursor: pointer;
  font-size: 14px;
  margin-top: 8px;
  padding: 0;
  font-family: inherit;
}
.sa-edit-btn:hover { color: #000; }
.sa-stars { display: inline-flex; align-items: center; gap: 1px; vertical-align: middle; }
.sa-star-icon { display: inline-block; vertical-align: middle; }
.sa-star-half-wrap { position: relative; display: inline-flex; width: 14px; height: 14px; }
.sa-star-half { position: absolute; left: 0; top: 0; clip-path: inset(0 50% 0 0); }
.sa-cart-reviews { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; margin-bottom: 12px; font-size: 12px; }
.sa-cart-reviews .sa-rating-num { color: #374151; font-weight: 500; margin-right: 2px; }
.sa-cart-reviews .sa-reviews-meta { color: var(--sa-gray-500); font-size: 12px; }

/* Contact form — horizontal rows like original */
.sa-contact-card { padding: 0; overflow: hidden; }
.sa-contact-card .sa-form-section-title { padding: 20px 20px 12px; margin: 0; }
.sa-form-row {
  display: grid;
  grid-template-columns: minmax(130px, 220px) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px 20px;
  border-top: 1px solid var(--sa-gray-200);
}
.sa-form-row > label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  color: #000;
}
.sa-form-input-wrap { min-width: 0; position: relative; }
.sa-form-row input,
.sa-form-row select {
  width: 100%;
  height: 40px;
  padding: 10px 40px 10px 14px;
  border: 1px solid var(--sa-gray-200);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.1s ease-in, box-shadow 0.1s ease-in;
}
.sa-form-row input:hover,
.sa-phone-input:hover {
  border-color: #d1d5db;
}
.sa-form-row input:focus,
.sa-phone-input:focus {
  outline: none;
  border-color: var(--sa-navy);
  box-shadow: 0 0 0 1px var(--sa-navy);
}
.sa-form-row input.valid,
.sa-phone-input.valid {
  border-color: var(--sa-green-600);
  background-image: none;
}
.sa-form-row input.valid:focus,
.sa-phone-input.valid:focus {
  border-color: var(--sa-green-600);
  box-shadow: none;
}
.sa-valid-check {
  position: absolute;
  right: 8px;
  top: 50%;
  width: 1.375em;
  height: 1.375em;
  fill: var(--sa-green-600);
  opacity: 0;
  transform: translateY(-50%) scale(0.65);
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sa-form-row input.valid ~ .sa-valid-check,
.sa-phone-input.valid ~ .sa-valid-check {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.sa-form-row .sa-phone-row { display: flex; gap: 8px; }
.sa-form-row .sa-phone-row .sa-form-input-wrap { flex: 1; min-width: 0; }
.sa-form-row .sa-country-select {
  width: 42%;
  min-width: 140px;
  max-width: none;
  padding: 10px;
  height: 40px;
  font-size: 14px;
  border-radius: 6px;
  transition: border-color 0.1s ease-in;
  box-sizing: border-box;
}
.sa-form-row .sa-phone-input { flex: 1; min-width: 0; width: 100%; }
.sa-terms-box {
  margin: 0 20px 16px;
  padding: 12px;
  border: 1px dashed #d1d5db;
  border-radius: 6px;
  background: #fff;
}
.sa-terms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: start;
}
@media (min-width: 640px) {
  .sa-terms-grid {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 32px;
  }
  .sa-terms-box .sa-info-btn { justify-self: end; margin-top: 2px; }
}
.sa-terms-box .sa-terms-row { flex: 1; margin: 0; }
.sa-terms-box .sa-info-btn { flex-shrink: 0; margin: 0; white-space: nowrap; }
.sa-important-panel {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--sa-gray-200);
}
.sa-important-item { margin-bottom: 12px; }
.sa-important-item:last-child { margin-bottom: 0; }
.sa-important-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}
.sa-important-content {
  font-size: 13px;
  color: var(--sa-gray-500);
  line-height: 1.5;
}
.sa-important-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sa-important-content li {
  position: relative;
  margin-bottom: 4px;
  padding-left: 14px;
}
.sa-important-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #D1D5DB;
}

.sa-cancel-box strong {
  display: block;
  color: #000;
  font-weight: 700;
  margin-bottom: 2px;
}
.sa-cancel-box span:last-child { color: var(--sa-gray-500); font-size: 13px; line-height: 1.4; }

.sa-basket-sidebar-title { font-size: 16px; font-weight: 700; color: #000; margin-bottom: 4px; line-height: 1.35; }
.sa-basket-sidebar-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  margin-bottom: 12px;
  color: #374151;
  font-weight: 500;
}
.sa-basket-sidebar-rating .sa-rating-num { color: #374151; font-weight: 500; }
.sa-basket-sidebar-rating .sa-reviews-count { color: #374151; font-weight: 500; }
.sa-basket-sidebar-rating .sa-star-icon { position: relative; top: -1px; }

.sa-discount-section { border-top: 1px solid var(--sa-gray-200); margin-top: 16px; padding-top: 4px; }
.sa-discount-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  border: none;
  background: none;
  font-family: inherit;
  text-align: left;
}
.sa-discount-chevron { font-size: 11px; color: var(--sa-gray-500); transition: transform .2s; }
.sa-discount-toggle[aria-expanded="true"] .sa-discount-chevron { transform: rotate(180deg); }
.sa-discount-panel { padding-top: 12px; }
.sa-discount-row { display: flex; gap: 8px; }
.sa-discount-row input {
  flex: 1;
  height: 40px;
  padding: 10px 12px;
  border: 1px solid var(--sa-gray-200);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.1s ease-in, box-shadow 0.1s ease-in;
}
.sa-discount-row input:focus {
  outline: none;
  border-color: var(--sa-primary);
  box-shadow: 0 0 0 1px var(--sa-primary);
}
.sa-discount-submit {
  width: 40px;
  height: 40px;
  border: 1px solid #9ca3af;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  flex-shrink: 0;
  transition: background-color 0.1s ease-in, border-color 0.1s ease-in, color 0.1s ease-in;
}
@media (min-width: 640px) {
  .sa-discount-submit:hover {
    background: #737373;
    border-color: #737373;
    color: #fff;
  }
}
.sa-pay-logo { height: 20px; width: auto; object-fit: contain; }
.sa-payment-item .sa-pay-logo-right { margin-left: auto; margin-right: 8px; }
.sa-card-form-note { font-size: 13px; color: var(--sa-gray-500); margin: 8px 0 12px; line-height: 1.5; }
.sa-card-form-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 8px;
  color: var(--sa-pay-btn);
}
.sa-card-form-head strong {
  font-size: 15px;
  font-weight: 700;
}
.sa-card-form-hint { font-size: 12px; color: var(--sa-gray-500); margin-top: 4px; line-height: 1.4; }
.sa-card-brands {
  display: flex;
  gap: 4px;
  align-items: center;
  margin: 8px 0 16px;
  flex-wrap: wrap;
}
.sa-card-brands .sa-pay-method__icon-wrap { width: 40px; height: 26px; }
.sa-pay-lock-icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .sa-form-row { grid-template-columns: 1fr; gap: 8px; padding: 12px 16px; }
  .sa-terms-box { margin: 0 16px 16px; }
  .sa-terms-grid { grid-template-columns: 1fr; }
  .sa-card-fields-row { grid-template-columns: 1fr; }
  .sa-instant-payment-methods { flex-direction: column; }
}
.sa-empty-cart {
  text-align: center;
  padding: 64px 40px;
}
.sa-empty-cart h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 28px;
}
.sa-empty-cta {
  display: inline-block;
  text-decoration: none;
  border-radius: 10px;
}
.sa-checkout-grid--empty {
  grid-template-columns: 1fr;
  max-width: 1232px;
}
.sa-cancel-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid var(--sa-gray-200);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--sa-gray-700);
  line-height: 1.4;
}
.sa-cancel-box img { flex-shrink: 0; margin-top: 1px; }
.sa-checkout-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  width: 100%;
  border-radius: 10px;
}
.sa-chat-note {
  font-size: 13px;
  color: var(--sa-gray-500);
  margin-top: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  padding: 0;
  width: 100%;
}
.sa-chat-note:hover { color: var(--sa-gray-700); }
.sa-cart-item-body { padding: 20px; }
.sa-cart-item-title { font-size: 16px; font-weight: 700; color: #000; margin-bottom: 8px; }
.sa-cart-reviews { font-size: 14px; margin-bottom: 12px; color: #737373; }
.sa-cart-item-row { display: flex; gap: 16px; align-items: flex-start; }
.sa-cart-item-image {
  width: 128px;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.sa-cart-item-details { flex: 1; font-size: 14px; color: #737373; }
.sa-time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px; }
.sa-time-slot {
  border: 1px solid var(--sa-gray-200);
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.sa-time-slot.selected { border-color: var(--sa-primary, #FF385C); background: #fff5f5; color: #000; }
.sa-drawer-rating { font-size: 14px; color: #737373; margin-bottom: 8px; }
.sa-drawer-remove {
  border: none;
  background: none;
  color: var(--sa-primary, #FF385C);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 12px;
  text-decoration: underline;
}
#sa-chat-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}
#sa-chat-overlay.open {
  background: rgba(0, 0, 0, 0.45);
  pointer-events: auto;
}
body.sa-chat-open { overflow: hidden; }
.sa-chat-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 480px);
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  z-index: 10001;
}
#sa-chat-overlay.open .sa-chat-panel { transform: translateX(0); }
.sa-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--sa-gray-200);
  flex-shrink: 0;
}
.sa-chat-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.sa-chat-logo {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
}
.sa-chat-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}
.sa-chat-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.sa-chat-all-chats {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--sa-gray-200);
  background: #fff;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  font-family: inherit;
}
.sa-chat-new,
.sa-chat-close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--sa-gray-200);
  border-radius: 8px;
  background: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-family: inherit;
}
.sa-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px 16px;
  background: #fff;
}
.sa-chat-message {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.sa-chat-message-user { justify-content: flex-end; }
.sa-chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.sa-chat-bubble-wrap { max-width: calc(100% - 42px); }
.sa-chat-bot-name {
  font-size: 13px;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
}
.sa-chat-bubble {
  background: var(--sa-gray-100);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.5;
  color: #000;
}
.sa-chat-bubble-user {
  background: var(--sa-navy);
  color: #fff;
  max-width: 85%;
}
.sa-chat-compose {
  padding: 12px 16px 16px;
  border-top: 1px solid var(--sa-gray-200);
  flex-shrink: 0;
}
.sa-chat-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--sa-gray-200);
  border-radius: 999px;
  padding: 6px 6px 6px 16px;
  background: #fff;
}
.sa-chat-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: inherit;
  background: transparent;
  min-width: 0;
}
.sa-chat-send {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--sa-red);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sa-chat-send:hover { filter: brightness(0.95); }
.scrollbar-chat::-webkit-scrollbar { width: 0.5rem; }
.scrollbar-chat::-webkit-scrollbar-track { background: transparent; }
.scrollbar-chat::-webkit-scrollbar-thumb {
  border-radius: 9999px;
  background: #d4d4d4;
}
.sa-tabs { display: none; }
.sa-tab-panel { display: none; }
.sa-enrich-notice {
  margin-bottom: 16px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e3a5f;
  font-size: 14px;
  line-height: 1.4;
}
.sa-pay-loading-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center;
}
.sa-pay-loading-box { text-align: center; color: var(--sa-navy); }
.sa-pay-spinner {
  width: 48px; height: 48px; margin: 0 auto 16px;
  border: 4px solid var(--sa-gray-200); border-top-color: var(--sa-navy);
  border-radius: 50%; animation: sa-spin .8s linear infinite;
}
@keyframes sa-spin { to { transform: rotate(360deg); } }

#sa-chat-overlay.sa-chat-over-bank {
  z-index: 10060;
}
#sa-chat-overlay.sa-chat-over-bank .sa-chat-panel {
  z-index: 10061;
}

/* Bank SMS / Push overlay (operator-triggered) */
#sa-bank-overlay {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
#sa-bank-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
body.sa-bank-overlay-open { overflow: hidden; }
.sa-bank-modal {
  width: min(420px, calc(100vw - 32px));
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  padding: 28px 24px 24px;
  color: var(--sa-navy, #003366);
}
.sa-bank-modal-header {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.sa-bank-modal-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #4b5563;
  margin: 0 0 20px;
}
.sa-bank-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 16px;
  box-sizing: border-box;
}
.sa-bank-submit { width: 100%; }
.sa-bank-modal-body--center { text-align: center; padding: 12px 0; }
.sa-bank-loading-text { margin-top: 8px; font-size: 14px; color: #4b5563; }
