/* Marine World Booking System Styles */

/* CSS Variables for theming - Marine World Blue Theme */
:root {
  --mwb-primary-color: #0084ff;
  --mwb-secondary-color: #f0f9ff;
  --mwb-success-color: #28a745;
  --mwb-warning-color: #ffc107;
  --mwb-danger-color: #dc3545;
  --mwb-info-color: #00bfff;
  --mwb-light-color: #f8fafc;
  --mwb-dark-color: #1a1d2b;
  --mwb-border-color: #e8f4ff;
  --mwb-border-radius: 12px;
  --mwb-box-shadow: 0 25px 50px -12px rgba(0, 132, 255, 0.15);
  --mwb-transition: all 0.3s ease;
  --mwb-font-family: "Roboto", -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

/* Base Styles */
.marine-world-booking-container,
.marine-world-calendar-container,
.marine-world-booking-elementor-widget {
  font-family: var(--mwb-font-family);
  line-height: 1.6;
  color: var(--mwb-dark-color);
  box-sizing: border-box;
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  padding: 40px 20px;
  border-radius: 20px;
}

/* Header Styles */
.mwb-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
}

.mwb-header h1 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.mwb-header p {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.marine-world-booking-container *,
.marine-world-calendar-container *,
.marine-world-booking-elementor-widget * {
  box-sizing: border-box;
}

/* Loading Spinner */
.mwb-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

.mwb-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--mwb-secondary-color);
  border-top: 4px solid var(--mwb-primary-color);
  border-radius: 50%;
  animation: mwb-spin 1s linear infinite;
  margin-bottom: 16px;
}

@keyframes mwb-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.mwb-loading-placeholder {
  padding: 40px;
  text-align: center;
  color: var(--mwb-dark-color);
}

/* Error Message */
.mwb-error {
  padding: 20px;
  background-color: #f8d7da;
  color: #721c24;
  border-radius: var(--mwb-border-radius);
  border: 1px solid #f5c6cb;
  text-align: center;
}

.mwb-retry-btn {
  margin-top: 12px;
  padding: 8px 16px;
  background-color: var(--mwb-danger-color);
  color: white;
  border: none;
  border-radius: var(--mwb-border-radius);
  cursor: pointer;
  transition: var(--mwb-transition);
}

.mwb-retry-btn:hover {
  background-color: #c82333;
}

/* Progress Indicator */
.mwb-progress {
  max-width: 1000px;
  margin: 20px auto 30px auto;
  padding: 20px 0;
}

.mwb-progress-indicator {
  max-width: 1000px;
  margin: 20px auto 30px auto;
  padding: 20px 0;
}

.mwb-progress-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
}

.mwb-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}

.mwb-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: var(--mwb-border-color);
  z-index: 1;
}

.mwb-step.completed:not(:last-child)::after {
  background-color: var(--mwb-success-color);
}

.mwb-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--mwb-border-color);
  color: var(--mwb-dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  transition: var(--mwb-transition);
}

.mwb-step.active .mwb-step-number {
  background: linear-gradient(135deg, #0084ff, #00bfff);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 132, 255, 0.3);
}

.mwb-step.completed .mwb-step-number {
  background-color: var(--mwb-success-color);
  color: white;
}

.mwb-step-title {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.mwb-progress-bar {
  height: 4px;
  background-color: var(--mwb-border-color);
  border-radius: 2px;
  overflow: hidden;
}

.mwb-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #0084ff, #00bfff);
  transition: width 0.3s ease;
}

/* Step Content Headings */
.mwb-step-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.mwb-step-content h2 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  color: var(--mwb-dark-color);
}

/* Buttons */
.mwb-primary-btn,
.mwb-secondary-btn,
.mwb-quick-book-btn {
  padding: 12px 24px;
  border: none;
  border-radius: var(--mwb-border-radius);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--mwb-transition);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.mwb-primary-btn {
  background: linear-gradient(135deg, #0084ff, #00bfff);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 132, 255, 0.25);
}

.mwb-primary-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #0070dd, #00a5e0);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 132, 255, 0.35);
}

.mwb-primary-btn:disabled {
  background: #e9ecef;
  color: #495057;
  cursor: not-allowed;
  opacity: 0.7;
  box-shadow: none;
}

.mwb-secondary-btn {
  background-color: var(--mwb-secondary-color);
  color: var(--mwb-dark-color);
  border: 1px solid var(--mwb-border-color);
}

.mwb-secondary-btn:hover:not(:disabled) {
  background-color: #e2e6ea;
  transform: translateY(-1px);
}

.mwb-secondary-btn:disabled {
  background-color: #f8f9fa;
  color: #6c757d;
  cursor: not-allowed;
  opacity: 0.7;
  border-color: #dee2e6;
}

.mwb-quick-book-btn {
  background: linear-gradient(135deg, #0084ff, #00bfff);
  color: white;
  font-size: 18px;
  padding: 16px 32px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 132, 255, 0.25);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mwb-quick-book-btn:hover {
  background: linear-gradient(135deg, #0070dd, #00a5e0);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 132, 255, 0.35);
}

/* Step Actions */
.mwb-step-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
  padding: 20px;
  background-color: var(--mwb-light-color);
  border-radius: var(--mwb-border-radius);
}

.mwb-step-actions button {
  min-width: 120px;
}

/* Location Selector */
.mwb-location-selector h2 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  color: var(--mwb-dark-color);
}

.mwb-location-selection-layout {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(420px, 1.1fr);
  max-width: 1180px;
  min-height: 520px;
  margin: 0 auto 30px;
  gap: 24px;
}

.mwb-location-intro,
.mwb-location-options-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid #d8e2ee;
  border-radius: 28px;
  background: #fff;
}

.mwb-location-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 64px);
  isolation: isolate;
  background: linear-gradient(145deg, #fff 0%, #f2f9ff 58%, #e6f4ff 100%);
}

.mwb-location-intro:has(> .mwb-location-intro-art:only-child) {
  padding: 0;
}

.mwb-location-intro::before,
.mwb-location-intro::after {
  position: absolute;
  z-index: -1;
  border: 2px solid rgba(0, 132, 255, .13);
  border-radius: 50%;
  content: "";
}

.mwb-location-intro::before {
  width: 340px;
  height: 340px;
  right: -190px;
  bottom: -140px;
}

.mwb-location-intro::after {
  width: 220px;
  height: 220px;
  left: -120px;
  bottom: -120px;
}

.mwb-location-eyebrow {
  margin-bottom: 12px;
  color: #0878e5;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.marine-world-booking-container .mwb-location-intro h2,
.marine-world-booking-elementor-widget .mwb-location-intro h2 {
  max-width: 520px;
  margin: 0 0 24px;
  color: var(--mwb-dark-color);
  font-size: clamp(34px, 3vw, 46px);
  font-family: "Rubik", "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
  font-style: normal !important;
  font-weight: 900 !important;
  line-height: 1.02;
  letter-spacing: -.045em;
  text-transform: uppercase !important;
  overflow-wrap: normal;
  word-break: normal;
}

.mwb-location-intro p {
  max-width: 480px;
  margin: 0;
  color: #526276;
  font-size: 17px;
  line-height: 1.6;
}

.mwb-location-intro-art {
  margin-top: auto;
  padding-top: 42px;
}

.mwb-location-intro-image {
  display: block;
  width: 100%;
  max-width: 420px;
  height: 180px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(0, 60, 120, .16);
}

.mwb-location-intro-art:only-child {
  width: 100%;
  height: 100%;
  margin-top: 0;
  padding-top: 0;
}

.mwb-location-intro-art:only-child .mwb-location-intro-image {
  width: 100%;
  max-width: none;
  height: 100%;
  border-radius: 28px;
  box-shadow: none;
}

.mwb-location-options-panel {
  display: flex;
  align-items: center;
  padding: clamp(20px, 3vw, 38px);
}

.mwb-locations-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  gap: 16px;
  margin: 0;
}

.mwb-location-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 210px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 22px 16px 18px;
  overflow: hidden;
  border: 1px solid #d6dee8;
  border-radius: 22px;
  color: var(--mwb-dark-color);
  font: inherit;
  text-align: center;
  cursor: pointer;
  transition: var(--mwb-transition);
  background: #fff;
  box-shadow: none;
  appearance: none;
}

.marine-world-booking-container button.mwb-location-card {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  line-height: normal !important;
  text-transform: none !important;
}

.mwb-location-card.has-image { min-height: 210px; }

.mwb-location-card:only-child {
  width: min(100%, 280px) !important;
  grid-column: 1 / -1;
  justify-self: center;
}

.mwb-location-card-content,
.mwb-location-card.has-image .mwb-location-card-content {
  min-width: 0;
  margin: 0;
  padding: 14px 0 0;
}

.marine-world-booking-container .mwb-location-media {
  position: relative !important;
  inset: auto !important;
  display: grid !important;
  width: 108px !important;
  max-width: 108px !important;
  height: 108px !important;
  min-width: 108px !important;
  min-height: 108px !important;
  flex: 0 0 108px !important;
  place-items: center;
  overflow: hidden !important;
  border: 9px solid #e8eef5 !important;
  border-radius: 50% !important;
  color: #0b84f3;
  background: #eef7ff;
}

.marine-world-booking-container .mwb-location-media .mwb-location-image {
  position: static !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  box-shadow: none !important;
}

.mwb-location-placeholder {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  overflow: hidden;
  border: 5px solid #0b84f3;
  border-radius: 50% 50% 50% 0;
  color: transparent;
  transform: rotate(-45deg);
}

.mwb-location-placeholder::after {
  position: absolute;
  width: 8px;
  height: 8px;
  top: 6px;
  left: 6px;
  border-radius: 50%;
  content: "";
  background: #0b84f3;
}

.mwb-location-selected-mark {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  background: #087ff0;
  box-shadow: 0 5px 12px rgba(0, 132, 255, .25);
}


.mwb-location-card:hover {
  border-color: #0084ff;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -16px rgba(0, 132, 255, .35);
}

.mwb-location-card.selected {
  border-color: #0084ff;
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  box-shadow: 0 12px 28px -16px rgba(0, 132, 255, .4);
}

.marine-world-booking-container .mwb-location-card h3,
.marine-world-booking-elementor-widget .mwb-location-card h3 {
  margin: 0 0 5px;
  color: var(--mwb-dark-color);
  font-family: "Rubik", "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
  font-style: normal !important;
  font-weight: 800 !important;
  line-height: 1.18;
  letter-spacing: -.025em;
  text-transform: none !important;
}

.mwb-location-card p {
  margin: 0;
  color: #6c757d;
  font-size: 14px;
}

.mwb-location-card .mwb-location-address {
  display: -webkit-box;
  max-width: 230px;
  margin: 7px auto 0;
  overflow: hidden;
  color: #718096;
  font-size: 12px;
  line-height: 1.4;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mwb-location-hours {
  display: grid;
  gap: 5px;
  max-width: 250px;
  margin: 11px auto 0;
  padding-top: 10px;
  border-top: 1px solid #e4ebf3;
  text-align: left;
}

.mwb-location-card .mwb-location-hours-row {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 5px;
  align-items: start;
  color: #53657a;
  font-size: 11px;
  line-height: 1.4;
}

.mwb-location-hours-row strong {
  color: #24344a;
  font-weight: 700;
}

.mwb-location-hours-icon {
  color: #087ff0;
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1;
}

.mwb-facilities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mwb-facility-tag {
  background: linear-gradient(135deg, #0084ff, #00bfff);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

/* Calendar Styles */
.mwb-date-selector h2,
.mwb-calendar-only h2 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  color: var(--mwb-dark-color);
}

.mwb-calendar {
  background: white;
  border-radius: var(--mwb-border-radius);
  box-shadow: var(--mwb-box-shadow);
  overflow: hidden;
  margin-bottom: 20px;
}

.mwb-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: linear-gradient(135deg, #0084ff, #00bfff);
  color: white;
  border-radius: 16px 16px 0 0;
}

.mwb-calendar-header h3 {
  margin: 0;
  font-size: 20px;
  color: white;
  font-weight: 600;
}

.mwb-nav-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 20px;
  transition: var(--mwb-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}

.mwb-nav-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.3);
}

.mwb-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.mwb-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background-color: var(--mwb-light-color);
}

.mwb-weekday {
  padding: 12px;
  text-align: center;
  font-weight: 600;
  color: var(--mwb-dark-color);
  border-right: 1px solid var(--mwb-border-color);
}

.mwb-weekday:last-child {
  border-right: none;
}

.mwb-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  padding: 8px;
  background: var(--mwb-light-color);
}

.mwb-calendar-day {
  position: relative;
  min-height: 60px;
  padding: 8px;
  border: 2px solid var(--mwb-border-color);
  background: white;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin: 2px;
}

.mwb-calendar-day:hover:not(:disabled) {
  background-color: #e3f2fd !important;
  color: #1565c0 !important;
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(0, 124, 186, 0.2);
  z-index: 1;
}

/* Default style for calendar days without availability data */
.mwb-calendar-day:not(.available):not(.limited):not(.sold_out):not(.other-month):not(.past):not(.blackout) {
  background: white;
  border-color: #e0e0e0;
  color: var(--mwb-dark-color);
  position: relative;
}

.mwb-calendar-day:not(.available):not(.limited):not(.sold_out):not(.other-month):not(.past):not(.blackout):hover:not(:disabled) {
  background-color: #f0f8ff !important;
  color: #2c5282 !important;
  border-color: #4299e1 !important;
}

.mwb-calendar-day.other-month {
  background-color: #f8f9fa;
  color: #6c757d;
}

.mwb-calendar-day.other-month:hover:not(:disabled) {
  background-color: #e9ecef !important;
  color: #495057 !important;
}

.mwb-calendar-day.past {
  background-color: #f8f9fa;
  color: #adb5bd;
  cursor: not-allowed;
}

.mwb-calendar-day.selected {
  background: linear-gradient(135deg, #0084ff, #00bfff);
  color: white;
  border: 2px solid #0084ff;
  box-shadow: 0 4px 16px rgba(0, 132, 255, 0.3);
  transform: scale(1.08);
  z-index: 10;
  font-weight: 600;
  outline: none !important;
}

.mwb-calendar-day.available {
  background: white;
  border-color: #e0e0e0;
  color: var(--mwb-dark-color);
  position: relative;
}

.mwb-calendar-day.available::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #28a745;
  border-radius: 50%;
}

.mwb-calendar-day.available:hover:not(:disabled) {
  background-color: #e8f5e8 !important;
  color: #155724 !important;
  border-color: #28a745 !important;
}

.mwb-calendar-day.limited {
  background: white;
  border-color: #e0e0e0;
  color: var(--mwb-dark-color);
  position: relative;
}

.mwb-calendar-day.limited::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #ffc107;
  border-radius: 50%;
}

.mwb-calendar-day.limited:hover:not(:disabled) {
  background-color: #fff3cd !important;
  color: #856404 !important;
  border-color: #ffc107 !important;
}

.mwb-calendar-day.sold_out {
  background: #f5f5f5;
  border-color: #e0e0e0;
  cursor: not-allowed;
  color: #9e9e9e;
  opacity: 0.7;
  position: relative;
}

.mwb-calendar-day.sold_out::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 1px;
  background: #dc3545;
}

.mwb-calendar-day.blackout {
  background-color: #e2e3e5;
  color: #6c757d;
  cursor: not-allowed;
  position: relative;
}

.mwb-calendar-day.blackout::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 5px,
    rgba(0, 0, 0, 0.1) 5px,
    rgba(0, 0, 0, 0.1) 10px
  );
}

.mwb-calendar-day:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.date-number {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 2px;
}

.mwb-calendar-day.selected .date-number {
  font-weight: 700;
  font-size: 18px;
}

/* Offer Badge Styles */
.offer-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: white;
  font-size: 8px;
  font-weight: 700;
  padding: 2px 4px;
  border-radius: 3px;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 1px 3px rgba(255, 107, 53, 0.4);
  z-index: 2;
  animation: mwb-pulse-offer 2s infinite;
}

@keyframes mwb-pulse-offer {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

/* Ensure selected state always takes priority over availability states */
.mwb-calendar-day.selected.available,
.mwb-calendar-day.selected.limited,
.mwb-calendar-day.available.selected,
.mwb-calendar-day.limited.selected {
  background: linear-gradient(135deg, #0084ff, #00bfff) !important;
  color: white !important;
  border: 2px solid #0084ff !important;
  box-shadow: 0 4px 16px rgba(0, 132, 255, 0.3) !important;
  transform: scale(1.08) !important;
  z-index: 10 !important;
  font-weight: 600 !important;
  outline: none !important;
}

/* Hide the availability indicator dots when selected */
.mwb-calendar-day.selected::after {
  display: none !important;
}

/* Add a subtle pulse animation for selected dates */
.mwb-calendar-day.selected {
  animation: mwb-pulse-selection 2s infinite;
}

@keyframes mwb-pulse-selection {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(0, 132, 255, 0.3);
  }
  50% {
    box-shadow: 0 4px 16px rgba(0, 132, 255, 0.3), 0 0 0 6px rgba(0, 132, 255, 0.25);
  }
}

.special-price {
  font-size: 10px;
  background-color: var(--mwb-warning-color);
  color: var(--mwb-dark-color);
  padding: 2px 4px;
  border-radius: 4px;
  margin-top: 4px;
}

/* Legend */
.mwb-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.mwb-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.mwb-legend-color {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid var(--mwb-border-color);
}

.mwb-legend-color.available {
  background-color: #d4edda;
}

.mwb-legend-color.limited {
  background-color: #fff3cd;
}

.mwb-legend-color.sold_out {
  background-color: #f8d7da;
}

/* Ticket Selector */
.mwb-ticket-selector h2 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  color: var(--mwb-dark-color);
}

.mwb-tickets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.mwb-ticket-card {
  padding: 24px;
  border: 1px solid rgba(0, 132, 255, 0.1);
  border-radius: 16px;
  text-align: center;
  background: #ffffff;
  box-shadow: 0 10px 30px -10px rgba(0, 132, 255, 0.1);
  transition: var(--mwb-transition);
}

.mwb-ticket-card:hover {
  transform: translateY(-2px);
  border-color: #0084ff;
  box-shadow: 0 15px 40px -10px rgba(0, 132, 255, 0.2);
}

.mwb-ticket-card h3 {
  margin: 0 0 8px 0;
  color: var(--mwb-dark-color);
}

.mwb-ticket-price {
  font-size: 24px;
  font-weight: bold;
  color: var(--mwb-primary-color);
  margin: 8px 0 16px 0;
}

.mwb-quantity-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.mwb-qty-btn {
  width: 40px;
  height: 40px;
  border: 2px solid #0084ff;
  background: white;
  color: #0084ff;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  transition: var(--mwb-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mwb-qty-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #0084ff, #00bfff);
  color: white;
  border-color: #0084ff;
  transform: scale(1.05);
}

.mwb-qty-btn:disabled {
  border-color: #e8f4ff;
  color: #94a3b8;
  cursor: not-allowed;
}

.mwb-qty-display {
  font-size: 20px;
  font-weight: bold;
  min-width: 40px;
  text-align: center;
  color: var(--mwb-dark-color);
}

/* Group Discount Notice */
.mwb-group-discount-notice {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 20px;
  border-radius: var(--mwb-border-radius);
  text-align: center;
  margin-bottom: 20px;
  box-shadow: var(--mwb-box-shadow);
}

.mwb-group-discount-notice h4 {
  margin: 0 0 8px 0;
  font-size: 18px;
}

.mwb-group-discount-notice p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

/* Pricing Summary */
.mwb-pricing-summary {
  background: white;
  border: 1px solid var(--mwb-border-color);
  border-radius: var(--mwb-border-radius);
  padding: 20px;
  margin-bottom: 20px;
}

/* Final Pricing - Clean */
.mwb-final-pricing {
  background: #ffffff;
  border: 1px solid rgba(0, 132, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px -10px rgba(0, 132, 255, 0.1);
}

.mwb-pricing-summary h4 {
  margin: 0 0 16px 0;
  color: var(--mwb-dark-color);
}

.mwb-final-pricing h4 {
  margin: 0 0 16px 0;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 600;
}

.mwb-price-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 8px 0;
}

.mwb-final-pricing .mwb-price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding: 8px 0;
}

.mwb-final-pricing .mwb-price-line span:first-child {
  color: #6b7280;
  font-size: 14px;
}

.mwb-final-pricing .mwb-price-line span:last-child {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
}

.mwb-price-line.discount {
  color: #059669;
  font-weight: 500;
}

.mwb-final-pricing .mwb-price-line.discount span:last-child {
  color: #059669;
}

.mwb-price-line.total {
  border-top: 2px solid var(--mwb-border-color);
  margin-top: 12px;
  padding-top: 12px;
  font-size: 18px;
  font-weight: bold;
  color: var(--mwb-dark-color);
}

.mwb-final-pricing .mwb-price-line.total {
  border-top: 1px solid #e5e7eb;
  margin-top: 12px;
  padding-top: 12px;
}

.mwb-final-pricing .mwb-price-line.total span:first-child {
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 600;
}

.mwb-final-pricing .mwb-price-line.total span:last-child {
  color: #059669;
  font-size: 20px;
  font-weight: 600;
}

/* Add-ons Selector */
.mwb-addons-selector h2 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  color: var(--mwb-dark-color);
}

.mwb-addons-description {
  text-align: center;
  color: #6c757d;
  margin-bottom: 30px;
}

.mwb-addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.mwb-addon-card {
  padding: 20px;
  border: 1px solid rgba(0, 132, 255, 0.1);
  border-radius: 16px;
  text-align: center;
  background: #ffffff;
  box-shadow: 0 10px 30px -10px rgba(0, 132, 255, 0.1);
  transition: var(--mwb-transition);
}

.mwb-addon-card:hover {
  transform: translateY(-2px);
  border-color: #0084ff;
  box-shadow: 0 15px 40px -10px rgba(0, 132, 255, 0.2);
}

.mwb-addon-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--mwb-border-radius);
  margin-bottom: 15px;
  border: 1px solid var(--mwb-border-color);
}

.mwb-addon-card h3 {
  margin: 0 0 8px 0;
  color: var(--mwb-dark-color);
}

.mwb-addon-description {
  color: #6c757d;
  font-size: 14px;
  margin: 0 0 12px 0;
}

.mwb-addon-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--mwb-primary-color);
  margin: 0 0 16px 0;
}

.mwb-addon-total {
  margin-top: 12px;
  font-weight: bold;
  color: var(--mwb-success-color);
}

/* Booking Review - Clean Modern Design */
.mwb-booking-review {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.mwb-booking-review h2 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 8px;
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 600;
}

.mwb-booking-summary {
  background: #ffffff;
  border: 1px solid rgba(0, 132, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px -10px rgba(0, 132, 255, 0.1);
}

.mwb-booking-summary h3 {
  margin: 0 0 16px 0;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 1px solid #f3f4f6;
}

.mwb-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding: 8px 0;
}

.mwb-summary-item span:first-child {
  color: #6b7280;
  font-size: 14px;
}

.mwb-summary-item span:last-child {
  color: #1a1a1a;
  font-weight: 500;
  font-size: 14px;
}

.mwb-summary-section {
  margin-bottom: 20px;
}

/* Merchant Details Card */
.mwb-merchant-card {
  margin-top: 20px;
}

/* Generic icon + text row, used by Merchant Details and Customer Information cards */
.mwb-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 14px;
  line-height: 1.5;
  color: #374151;
}

.mwb-detail-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mwb-detail-row .mwb-item-icon {
  flex-shrink: 0;
  margin-top: 2px;
  margin-right: 0;
  width: 16px;
  text-align: center;
}

.mwb-detail-row a {
  color: #0084ff;
  font-weight: 500;
  text-decoration: none;
}

.mwb-detail-row a:hover {
  text-decoration: underline;
}

.mwb-detail-row .mwb-detail-label {
  color: #6b7280;
  flex-shrink: 0;
  min-width: 70px;
}

/* Payment Gateway Charges - compact inline note */
.mwb-gateway-charges-inline {
  margin: -8px 0 20px 0;
  padding: 10px 14px;
}

.mwb-gateway-charges-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mwb-gateway-charge-chip {
  padding: 4px 10px;
  background: #f3f4f6;
  border-radius: 20px;
  font-size: 12px;
  color: #6b7280;
}

.mwb-gateway-charge-chip strong {
  color: #1a1a1a;
  font-weight: 600;
}

.mwb-gateway-charge-chip.free {
  background: #f0fdf4;
  color: #166534;
}

.mwb-gateway-charge-chip.free strong {
  color: #059669;
}

.mwb-gateway-charges-note {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 8px 0 0 0;
  color: #9ca3af;
  font-size: 11px;
  line-height: 1.5;
}

/* Avoid a doubled underline when a heading sits inside .mwb-section-header,
   which already draws its own bottom border. */
.mwb-booking-summary .mwb-section-header h3,
.mwb-final-pricing .mwb-section-header h4 {
  padding-bottom: 0;
  border-bottom: none;
}

.mwb-summary-section h4 {
  margin: 0 0 12px 0;
  color: #374151;
  font-size: 14px;
  font-weight: 600;
}

/* Promo Code Section - Clean */
.mwb-promo-section {
  background: #ffffff;
  border: 1px solid rgba(0, 132, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px -10px rgba(0, 132, 255, 0.1);
}

.mwb-promo-section h4 {
  margin: 0 0 12px 0;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 600;
}

.mwb-promo-input {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.mwb-promo-input input,
.mwb-promo-input input[type="text"],
.mwb-promo-section input,
.mwb-promo-section input[type="text"] {
  flex: 1 !important;
  padding: 15px 20px !important;
  border: 2px solid #e8f4ff !important;
  border-radius: 12px !important;
  font-size: 16px !important;
  background: #f8fafc !important;
  transition: all 0.3s ease !important;
  color: #1a1d2b !important;
  box-sizing: border-box !important;
  height: auto !important;
  line-height: 1.5 !important;
}

.mwb-promo-input input:focus,
.mwb-promo-input input[type="text"]:focus,
.mwb-promo-section input:focus,
.mwb-promo-section input[type="text"]:focus {
  outline: none !important;
  background-color: #ffffff !important;
  border-color: #0084ff !important;
  box-shadow: 0 0 0 3px rgba(0, 132, 255, 0.1) !important;
}

.mwb-promo-input input::placeholder,
.mwb-promo-section input::placeholder {
  color: #94a3b8 !important;
}

.mwb-apply-btn {
  padding: 15px 24px;
  background: linear-gradient(135deg, #0084ff, #00bfff);
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mwb-apply-btn:hover {
  background: linear-gradient(135deg, #0070dd, #00a5e0);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 132, 255, 0.25);
}

/* Available Offers */
.mwb-offers-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.mwb-offer-chip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 10px;
  width: 100%;
  padding: 10px 14px;
  background: #f8fbff;
  border: 1px dashed rgba(0, 132, 255, 0.35);
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.mwb-offer-chip:hover {
  background: #eef7ff;
  border-color: #0084ff;
}

.mwb-offer-chip.applied {
  background: #f0fdf4;
  border: 1px solid #34d399;
}

.mwb-offer-chip-code {
  font-weight: 700;
  color: #0084ff;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.mwb-offer-chip.applied .mwb-offer-chip-code {
  color: #059669;
}

.mwb-offer-chip-discount {
  padding: 2px 8px;
  background: linear-gradient(135deg, #0084ff, #00bfff);
  color: white;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
}

.mwb-offer-chip.applied .mwb-offer-chip-discount {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.mwb-offer-chip-desc {
  flex-basis: 100%;
  color: #6b7280;
  font-size: 12px;
}

.mwb-promo-validation {
  padding: 8px 12px;
  border-radius: var(--mwb-border-radius);
  font-size: 14px;
}

.mwb-promo-validation.valid {
  background-color: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  margin-top: 8px;
}

.mwb-promo-validation.invalid {
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  margin-top: 8px;
}

/* Customer Form - Clean Design */
.mwb-customer-form {
  background: #ffffff;
  border: 1px solid rgba(0, 132, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 132, 255, 0.15);
}

.mwb-customer-form h3 {
  margin: 0 0 20px 0;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 1px solid #f3f4f6;
}

.mwb-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.mwb-form-field {
  display: flex;
  flex-direction: column;
}

.mwb-form-field label {
  margin-bottom: 6px;
  font-weight: 500;
  color: #374151;
  font-size: 14px;
  display: block;
}

.mwb-form-field input,
.mwb-form-field input[type="text"],
.mwb-form-field input[type="email"],
.mwb-form-field input[type="tel"],
.mwb-form-field input[type="number"],
.mwb-customer-form input,
.mwb-customer-form input[type="text"],
.mwb-customer-form input[type="email"],
.mwb-customer-form input[type="tel"],
.mwb-customer-form input[type="number"] {
  padding: 15px 20px !important;
  border: 2px solid #e8f4ff !important;
  border-radius: 12px !important;
  font-size: 16px !important;
  transition: all 0.3s ease !important;
  background: #f8fafc !important;
  color: #1a1d2b !important;
  width: 100% !important;
  box-sizing: border-box !important;
  height: auto !important;
  line-height: 1.5 !important;
}

.mwb-form-field input:focus,
.mwb-form-field input[type="text"]:focus,
.mwb-form-field input[type="email"]:focus,
.mwb-form-field input[type="tel"]:focus,
.mwb-form-field input[type="number"]:focus,
.mwb-customer-form input:focus,
.mwb-customer-form input[type="text"]:focus,
.mwb-customer-form input[type="email"]:focus,
.mwb-customer-form input[type="tel"]:focus,
.mwb-customer-form input[type="number"]:focus {
  outline: none !important;
  background-color: #ffffff !important;
  border-color: #0084ff !important;
  box-shadow: 0 0 0 3px rgba(0, 132, 255, 0.1) !important;
}

.mwb-form-field input::placeholder,
.mwb-customer-form input::placeholder {
  color: #94a3b8 !important;
}

.mwb-form-field input.error,
.mwb-customer-form input.error {
  border-color: #ef4444 !important;
}

.error-message {
  color: #dc2626;
  font-size: 12px;
  margin-top: 4px;
}

.mwb-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin: 16px 0;
  font-size: 14px;
  color: #374151;
}

/* Override general input styles for checkboxes */
.mwb-checkbox-label input[type="checkbox"],
.mwb-customer-form .mwb-checkbox-label input[type="checkbox"],
.mwb-form-field .mwb-checkbox-label input[type="checkbox"] {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  min-height: 22px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 2px solid #e8f4ff !important;
  border-radius: 6px !important;
  background: #f8fafc !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  flex-shrink: 0 !important;
  line-height: 1 !important;
  box-shadow: none !important;
}

.mwb-checkbox-label input[type="checkbox"]:checked,
.mwb-customer-form .mwb-checkbox-label input[type="checkbox"]:checked,
.mwb-form-field .mwb-checkbox-label input[type="checkbox"]:checked {
  background: #0084ff !important;
  border-color: #0084ff !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3e%3cpath fill='%23fff' stroke='%23fff' stroke-width='1' d='m2 6 2.5 2.5L9.5 3.5'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 12px !important;
}

.mwb-checkbox-label input[type="checkbox"]:hover,
.mwb-customer-form .mwb-checkbox-label input[type="checkbox"]:hover,
.mwb-form-field .mwb-checkbox-label input[type="checkbox"]:hover {
  border-color: #0084ff !important;
}

.mwb-checkbox-label input[type="checkbox"]:focus,
.mwb-customer-form .mwb-checkbox-label input[type="checkbox"]:focus,
.mwb-form-field .mwb-checkbox-label input[type="checkbox"]:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(0, 132, 255, 0.1) !important;
}

.mwb-third-party-section {
  margin-top: 20px;
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  border: 1px solid rgba(0, 132, 255, 0.1);
}

.mwb-third-party-section h4 {
  margin: 0 0 16px 0;
  color: #374151;
  font-size: 14px;
  font-weight: 600;
}

/* Payment Step */
.mwb-payment-step h2 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  color: var(--mwb-dark-color);
}

.mwb-payment-summary {
  background: white;
  border: 1px solid var(--mwb-border-color);
  border-radius: var(--mwb-border-radius);
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.mwb-payment-summary h3 {
  margin: 0 0 16px 0;
  color: var(--mwb-dark-color);
}

.mwb-payment-summary .amount {
  font-size: 24px;
  font-weight: bold;
  color: var(--mwb-primary-color);
}

.mwb-payment-methods {
  background: white;
  border: 1px solid var(--mwb-border-color);
  border-radius: var(--mwb-border-radius);
  padding: 20px;
  margin-bottom: 20px;
}

.mwb-payment-methods h3 {
  margin: 0 0 16px 0;
  color: var(--mwb-dark-color);
}

.mwb-payment-option {
  padding: 16px;
  border: 2px solid #e8f4ff;
  border-radius: 12px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: var(--mwb-transition);
  background: #ffffff;
}

.mwb-payment-option:hover,
.mwb-payment-option.selected {
  border-color: #0084ff;
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
}

.mwb-payment-option label {
  cursor: pointer;
  font-weight: 500;
}

.mwb-payment-option p {
  margin: 4px 0 0 20px;
  font-size: 14px;
  color: #6c757d;
}

.mwb-pay-btn {
  font-size: 18px;
  padding: 16px 32px;
  min-width: 200px;
}

/* Payment Processing */
.mwb-payment-processing {
  text-align: center;
  padding: 40px;
}

.mwb-payment-processing h2 {
  margin-bottom: 16px;
  color: var(--mwb-dark-color);
}

.mwb-payment-processing p {
  color: #6c757d;
  margin-bottom: 20px;
}

.mwb-booking-id {
  font-weight: bold;
  color: var(--mwb-primary-color);
}

/* Payment Error */
.mwb-payment-error {
  text-align: center;
  padding: 40px;
}

.mwb-payment-error h2 {
  color: var(--mwb-danger-color);
  margin-bottom: 16px;
}

/* Booking Success */
.mwb-booking-success {
  text-align: center;
  padding: 40px;
  background: white;
  border-radius: var(--mwb-border-radius);
  box-shadow: var(--mwb-box-shadow);
}

.mwb-success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--mwb-success-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 20px;
}

.mwb-booking-success h2 {
  color: var(--mwb-success-color);
  margin-bottom: 16px;
}

.mwb-booking-details {
  background: var(--mwb-light-color);
  border-radius: var(--mwb-border-radius);
  padding: 20px;
  margin: 20px 0;
  text-align: left;
}

.mwb-booking-details h3 {
  margin: 0 0 16px 0;
  text-align: center;
  color: var(--mwb-dark-color);
}

.mwb-detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 8px 0;
}

.mwb-detail-item .booking-id {
  font-family: monospace;
  font-weight: bold;
  color: var(--mwb-primary-color);
}

.mwb-success-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
}

.mwb-confirmation-notice {
  background: #d1ecf1;
  border: 1px solid #bee5eb;
  border-radius: var(--mwb-border-radius);
  padding: 16px;
  margin-top: 20px;
}

.mwb-confirmation-notice p {
  margin: 8px 0;
  font-size: 14px;
  color: #0c5460;
}

/* Calendar Only Widget */
.mwb-calendar-only {
  max-width: 600px;
  margin: 0 auto;
}

.mwb-selected-date {
  background: white;
  border: 1px solid var(--mwb-border-color);
  border-radius: var(--mwb-border-radius);
  padding: 20px;
  text-align: center;
  margin-top: 20px;
}

.mwb-selected-date p {
  margin: 0 0 16px 0;
  font-weight: 500;
  color: var(--mwb-dark-color);
}

/* Modal Styles */
.mwb-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--mwb-transition);
}

.mwb-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mwb-modal-content {
  background: white;
  border-radius: var(--mwb-border-radius);
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 20px;
  margin: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: var(--mwb-transition);
}

.mwb-modal-overlay.active .mwb-modal-content {
  transform: scale(1);
}

.mwb-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #6c757d;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--mwb-transition);
}

.mwb-modal-close:hover {
  background-color: var(--mwb-light-color);
  color: var(--mwb-dark-color);
}

/* Theme Variations */
.theme-modern {
  --mwb-primary-color: #6f42c1;
  --mwb-border-radius: 12px;
}

.theme-classic {
  --mwb-primary-color: #dc3545;
  --mwb-border-radius: 4px;
}

.theme-minimal {
  --mwb-primary-color: #343a40;
  --mwb-border-radius: 0;
  --mwb-box-shadow: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mwb-header {
    padding: 0 16px;
    margin-bottom: 30px;
  }
  
  .mwb-header h1 {
    font-size: 24px;
  }
  
  .mwb-header p {
    font-size: 14px;
  }
  
  .mwb-step-content {
    padding: 0 16px;
  }
  
  .mwb-booking-review {
    padding: 0 16px;
  }
  
  .mwb-progress {
    margin: 20px auto 30px auto;
    padding: 20px 16px;
  }
  
  .mwb-progress-steps {
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .mwb-step {
    flex: none;
    min-width: 80px;
  }
  
  .mwb-step:not(:last-child)::after {
    display: none;
  }
  
  .mwb-form-row {
    grid-template-columns: 1fr;
  }
  
  .mwb-step-actions {
    flex-direction: column;
  }
  
  .mwb-tickets-grid,
  .mwb-addons-grid,
  .mwb-locations-grid {
    grid-template-columns: 1fr;
  }
  
  .mwb-calendar-day {
    min-height: 50px;
    font-size: 14px;
    margin: 1px;
    padding: 6px;
  }
  
  .mwb-calendar-day.selected {
    transform: scale(1.05);
  }
  
  .mwb-calendar-day.selected .date-number {
    font-size: 16px;
  }
  
  .mwb-legend {
    flex-direction: column;
    gap: 8px;
  }
  
  .mwb-modal-content {
    max-width: 95vw;
    max-height: 95vh;
    margin: 10px;
    padding: 15px;
  }
  
  .mwb-success-actions {
    flex-direction: column;
  }
}

/* Consistent desktop heading scale */
@media (min-width: 769px) {
  .marine-world-booking-container,
  .marine-world-calendar-container,
  .marine-world-booking-elementor-widget {
    --mwb-desktop-booking-title: 32px;
    --mwb-desktop-screen-title: 30px;
    --mwb-desktop-card-title: 21px;
    --mwb-desktop-section-title: 17px;
    --mwb-desktop-support-title: 15px;
  }

  .mwb-header h1,
  .marine-world-booking-container > h1 {
    font-size: var(--mwb-desktop-booking-title);
    line-height: 1.15;
    letter-spacing: -.025em;
  }

  .mwb-step-content > h2,
  .mwb-location-selector > h2,
  .mwb-date-selector > h2,
  .mwb-ticket-selector > h2,
  .mwb-addons-selector > h2,
  .mwb-payment-step > h2,
  .mwb-addons-intro h2,
  .mwb-review-title,
  .mwb-payment-processing h2,
  .mwb-payment-error h2,
  .mwb-booking-success h2,
  .mwb-success-header-section .mwb-review-title {
    font-size: var(--mwb-desktop-screen-title);
    line-height: 1.2;
    letter-spacing: -.02em;
  }

  .mwb-ticket-card .mwb-ticket-card-body h3,
  .mwb-addon-combo-card .mwb-addon-card-heading h3,
  .mwb-location-card h3,
  .mwb-payment-summary h3,
  .mwb-payment-methods h3,
  .mwb-booking-details h3,
  .mwb-qr-section h3,
  .mwb-ticket-actions h3,
  .mwb-confirmation-notice h3 {
    font-size: var(--mwb-desktop-card-title);
    line-height: 1.25;
  }

  .mwb-calendar-header h3,
  .mwb-addons-step .mwb-addon-card h3,
  .mwb-birthday-copy h3,
  .mwb-booking-summary h3,
  .mwb-customer-form h3,
  .mwb-section-header h3,
  .mwb-section-header h4 {
    font-size: var(--mwb-desktop-section-title);
    line-height: 1.3;
  }

  .mwb-summary-section h4,
  .mwb-subsection-header h4,
  .mwb-promo-section h4,
  .mwb-third-party-section h4,
  .mwb-pricing-summary h4,
  .mwb-final-pricing h4 {
    font-size: var(--mwb-desktop-support-title);
    line-height: 1.35;
  }
}

/* The promotional birthday card keeps its compact legacy composition. */
.mwb-offer-tickets-content .mwb-ticket-card {
  width: min(100%, 520px);
  margin-right: auto;
  margin-left: auto;
  min-height: 0;
}

.mwb-offer-tickets-content .mwb-ticket-card::before {
  display: none;
}

.mwb-offer-tickets-content .mwb-ticket-price > span:first-child {
  font-size: inherit;
}

/* Add-ons step */
.mwb-addons-step {
  --mwb-addon-blue: #087cff;
  --mwb-addon-ink: #172033;
}

.mwb-addons-intro {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 22px 0 14px;
}

.mwb-addons-title-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  flex: 0 0 46px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #6d45dc, #9b6cf0);
  box-shadow: 0 10px 22px -13px rgba(91, 57, 190, .7);
  font-size: 18px;
}

.mwb-addons-step .mwb-addons-intro h2 {
  margin: 0 0 3px;
  text-align: left;
}

.mwb-addons-step .mwb-addons-description {
  margin: 0;
  text-align: left;
}

.mwb-addons-info-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 12px 15px;
  border: 1px solid #dbe8fa;
  border-radius: 12px;
  color: #41536c;
  background: #f3f7ff;
  font-size: 13px;
}

.mwb-addons-info-note i {
  color: var(--mwb-addon-blue);
  font-size: 16px;
}

.mwb-addon-section {
  margin-top: 26px;
}

.mwb-addon-section-heading {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px 12px;
  margin-bottom: 12px;
}

.mwb-addon-section-heading > span {
  color: var(--mwb-addon-ink);
  font-size: 18px;
  font-weight: 800;
}

.mwb-addon-section-heading i {
  margin-right: 7px;
  color: #7048dc;
}

.mwb-addon-section-heading small {
  color: #78879b;
  font-size: 12px;
}

.mwb-addons-step .mwb-addons-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.mwb-addons-step .mwb-addon-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 10px;
  overflow: hidden;
  border: 1px solid #dce7f4;
  border-radius: 17px;
  text-align: left;
  background: #fff;
  box-shadow: 0 12px 28px -22px rgba(27, 72, 120, .48);
}

.mwb-addons-step .mwb-addon-card:hover,
.mwb-addons-step .mwb-addon-card.selected {
  border-color: #81bdff;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -21px rgba(0, 105, 215, .45);
}

.mwb-addons-step .mwb-addon-card.selected {
  background: linear-gradient(155deg, #fff, #f2f9ff);
}

.mwb-addon-visual {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #edf6ff, #e8efff);
}

.mwb-addons-step .mwb-addon-image {
  width: 100%;
  height: 132px;
  margin: 0;
  border: 0;
  border-radius: 12px;
  object-fit: cover;
}

.mwb-addon-icon {
  display: grid;
  min-height: 132px;
  place-items: center;
  color: var(--mwb-addon-blue);
  font-size: 40px;
}

.mwb-addon-value-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 9px;
  border-radius: 8px;
  color: #784800;
  background: #ffd45b;
  box-shadow: 0 5px 12px rgba(100, 65, 0, .18);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.mwb-addon-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px 4px 4px;
}

.mwb-addon-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.mwb-addons-step .mwb-addon-card h3 {
  margin: 0;
  color: var(--mwb-addon-ink);
  font-size: 16px;
  line-height: 1.25;
}

.mwb-addon-added-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 7px;
  border-radius: 999px;
  color: #137747;
  background: #dcfce7;
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.mwb-addons-step .mwb-addon-description {
  display: -webkit-box;
  margin: 7px 0 12px;
  overflow: hidden;
  color: #6e7d90;
  font-size: 12px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mwb-addon-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}

.mwb-addons-step .mwb-addon-price {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.mwb-addons-step .mwb-addon-price strong {
  color: var(--mwb-addon-blue);
  font-size: 19px;
}

.mwb-addons-step .mwb-addon-price small {
  color: #8794a5;
  font-size: 10px;
}

.mwb-addons-step .mwb-quantity-selector {
  display: grid;
  grid-template-columns: 34px 30px 34px;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid #dce7f4;
  border-radius: 11px;
  background: #f9fbfd;
}

.mwb-addons-step .mwb-qty-btn {
  width: 34px;
  height: 34px;
  border-width: 1px;
  border-radius: 8px;
  font-size: 12px;
}

.mwb-addons-step .mwb-qty-display {
  min-width: 30px;
  font-size: 16px;
}

.mwb-addons-step .mwb-addon-total {
  margin: 10px 0 0;
  padding-top: 9px;
  border-top: 1px solid #e7eef6;
  color: #14804d;
  font-size: 11px;
  text-align: right;
}

.mwb-addon-combo-list {
  display: grid;
  gap: 12px;
}

.mwb-addons-step .mwb-addon-combo-card {
  display: grid;
  grid-template-columns: minmax(180px, 30%) minmax(0, 1fr);
  grid-column: 1 / -1;
  padding: 10px;
  border-color: #ead9a1;
  background: linear-gradient(135deg, #fffef9, #fffaf0);
}

.mwb-addon-combo-card .mwb-addon-visual,
.mwb-addon-combo-card .mwb-addon-image,
.mwb-addon-combo-card .mwb-addon-icon {
  height: 100%;
  min-height: 170px;
}

.mwb-addon-combo-card .mwb-addon-card-copy {
  padding: 16px 18px;
}

.mwb-addon-combo-card .mwb-addon-card-heading h3 {
  font-size: 20px;
}

.mwb-addons-step .mwb-step-actions {
  align-items: center;
}

.mwb-addon-selection-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-inline: auto;
  color: #6d48da;
}

.mwb-addon-selection-summary > i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #6d48da, #9c70ed);
}

.mwb-addon-selection-summary span {
  display: flex;
  flex-direction: column;
}

.mwb-addon-selection-summary strong {
  color: #27344a;
  font-size: 13px;
  text-transform: capitalize;
}

.mwb-addon-selection-summary small {
  color: #8490a1;
  font-size: 10px;
}

@media (max-width: 768px) {
  .mwb-addons-step .mwb-addons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mwb-addons-step .mwb-addon-combo-card {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .mwb-addon-selection-summary {
    order: -1;
    width: 100%;
    justify-content: center;
    margin-bottom: 2px;
  }
}

@media (max-width: 520px) {
  .mwb-addons-intro {
    gap: 10px;
  }

  .mwb-addons-title-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .mwb-addons-step .mwb-addons-grid {
    grid-template-columns: 1fr;
  }

  .mwb-addons-step .mwb-addon-combo-card {
    grid-template-columns: 1fr;
  }

  .mwb-addon-combo-card .mwb-addon-visual,
  .mwb-addon-combo-card .mwb-addon-image,
  .mwb-addon-combo-card .mwb-addon-icon {
    min-height: 145px;
    height: 145px;
  }

  .mwb-addon-combo-card .mwb-addon-card-copy {
    padding: 14px 4px 4px;
  }
}

/* Compact offers and discounts panel */
.mwb-offer-panel {
  width: 100%;
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid #ccebdc;
  border-radius: 18px;
  background: linear-gradient(135deg, #fbfffd, #f2fbf7);
  box-shadow: 0 14px 35px -25px rgba(21, 128, 78, .45);
}

.mwb-offer-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  border-bottom: 1px solid #d9eee4;
  color: #177847;
  background: rgba(232, 249, 240, .72);
}

.mwb-offer-panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 17px;
}

.mwb-offer-gift-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: 0 0 34px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #16a05d, #32c779);
  font-size: 15px;
}

.mwb-aquarium-only-badge,
.mwb-best-offer-badge {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  color: #187647;
  background: #dcf7e8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.mwb-birthday-offer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 18px;
  transition: background-color .2s ease;
}

.mwb-birthday-offer.selected {
  background: rgba(220, 252, 231, .55);
}

.mwb-birthday-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  flex: 0 0 54px;
  border: 1px solid #d6eadf;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 18px -14px rgba(22, 128, 74, .55);
  font-size: 28px;
}

.mwb-birthday-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.mwb-birthday-copy h3 {
  margin: 0;
  color: #1c2434;
  font-size: 18px;
  line-height: 1.2;
}

.mwb-birthday-copy p {
  margin: 0 0 3px;
  color: #25344a;
  font-size: 14px;
  font-weight: 600;
}

.mwb-birthday-copy small {
  display: block;
  color: #68788d;
  font-size: 12px;
}

.mwb-birthday-copy small i {
  margin-right: 4px;
  color: #1d9b5c;
}

.mwb-offer-quantity {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.mwb-offer-quantity-label {
  color: #6a798d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.mwb-offer-quantity .mwb-quantity-selector {
  display: grid;
  grid-template-columns: 38px 38px 38px;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid #cfe8dc;
  border-radius: 13px;
  background: #fff;
}

.mwb-offer-quantity .mwb-qty-btn {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 9px;
  color: #15824d;
  background: #e8f8ef;
  font-size: 13px;
}

.mwb-offer-quantity .mwb-qty-btn:hover:not(:disabled) {
  color: #fff;
  background: #169457;
  transform: none;
}

.mwb-offer-quantity .mwb-qty-btn:disabled {
  color: #aab8b0;
  background: #f3f6f4;
}

.mwb-offer-quantity .mwb-qty-display {
  min-width: 38px;
  color: #18243a;
  font-size: 18px;
}

@media (max-width: 600px) {
  .mwb-offer-panel {
    margin-block: 22px;
    border-radius: 15px;
  }

  .mwb-offer-panel-header {
    align-items: flex-start;
    padding: 13px;
  }

  .mwb-offer-panel-title {
    font-size: 15px;
  }

  .mwb-aquarium-only-badge {
    max-width: 105px;
    text-align: center;
    white-space: normal;
  }

  .mwb-birthday-offer {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 13px;
  }

  .mwb-birthday-icon {
    width: 46px;
    height: 46px;
    font-size: 23px;
  }

  .mwb-birthday-copy h3 {
    font-size: 16px;
  }

  .mwb-offer-quantity {
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #e0eee7;
  }
}

/* Theme-safe experience card interaction states */
.marine-world-booking-container button.mwb-experience-option,
.marine-world-booking-elementor-widget button.mwb-experience-option {
  position: relative;
  width: 100%;
  min-height: 0;
  margin: 0;
  border: 1px solid #dbe5f1;
  border-radius: 14px;
  outline: 0;
  color: #172554;
  background: #fff;
  box-shadow: none;
  font: inherit;
  line-height: 1.4;
  text-decoration: none;
  text-transform: none;
  letter-spacing: normal;
  appearance: none;
  -webkit-appearance: none;
  overflow: visible;
  isolation: isolate;
}

.marine-world-booking-container button.mwb-experience-option::before,
.marine-world-booking-container button.mwb-experience-option::after,
.marine-world-booking-elementor-widget button.mwb-experience-option::before,
.marine-world-booking-elementor-widget button.mwb-experience-option::after {
  content: none;
  display: none;
}

.marine-world-booking-container button.mwb-experience-option.selected,
.marine-world-booking-elementor-widget button.mwb-experience-option.selected {
  border: 2px solid #1473e6;
  color: #172554;
  background: #f8fbff;
  box-shadow: 0 8px 24px rgba(20, 115, 230, .11);
}

.marine-world-booking-container button.mwb-experience-option.combo,
.marine-world-booking-elementor-widget button.mwb-experience-option.combo {
  border-color: #fed7aa;
}

.marine-world-booking-container button.mwb-experience-option.combo.selected,
.marine-world-booking-elementor-widget button.mwb-experience-option.combo.selected {
  border-color: #f97316;
  color: #172554;
  background: #fffaf5;
  box-shadow: 0 8px 24px rgba(249, 115, 22, .11);
}

@media (hover: hover) and (pointer: fine) {
  .marine-world-booking-container button.mwb-experience-option:hover,
  .marine-world-booking-elementor-widget button.mwb-experience-option:hover {
    border-color: #68aaf7;
    color: #172554;
    background: #f8fbff;
    box-shadow: 0 10px 25px rgba(20, 115, 230, .1);
    transform: translateY(-2px);
  }

  .marine-world-booking-container button.mwb-experience-option.combo:hover,
  .marine-world-booking-elementor-widget button.mwb-experience-option.combo:hover {
    border-color: #fb923c;
    background: #fffaf5;
    box-shadow: 0 10px 25px rgba(249, 115, 22, .1);
  }

  .marine-world-booking-container button.mwb-experience-option.selected:hover,
  .marine-world-booking-elementor-widget button.mwb-experience-option.selected:hover {
    border-color: #086bd5;
    background: #f2f8ff;
    box-shadow: 0 12px 28px rgba(20, 115, 230, .16);
  }

  .marine-world-booking-container button.mwb-experience-option.combo.selected:hover,
  .marine-world-booking-elementor-widget button.mwb-experience-option.combo.selected:hover {
    border-color: #ea680c;
    background: #fff7ed;
    box-shadow: 0 12px 28px rgba(249, 115, 22, .16);
  }
}

.marine-world-booking-container button.mwb-experience-option:focus-visible,
.marine-world-booking-elementor-widget button.mwb-experience-option:focus-visible {
  outline: 3px solid rgba(8, 124, 255, .24);
  outline-offset: 3px;
}

.marine-world-booking-container button.mwb-experience-option:active,
.marine-world-booking-elementor-widget button.mwb-experience-option:active {
  color: #172554;
  transform: translateY(0);
}

@media (hover: none) {
  .marine-world-booking-container button.mwb-experience-option:hover,
  .marine-world-booking-elementor-widget button.mwb-experience-option:hover {
    color: #172554;
    transform: none;
  }
}

@media (max-width: 600px) {
  .mwb-offer-tickets-content .mwb-ticket-card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .mwb-quick-book-btn {
    font-size: 16px;
    padding: 12px 24px;
  }
  
  .mwb-calendar-header h3 {
    font-size: 18px;
  }
  
  .mwb-ticket-price {
    font-size: 20px;
  }
  
  .mwb-payment-summary .amount {
    font-size: 20px;
  }
}

/* Print Styles */
@media print {
  /* Hide navigation and action elements */
  .mwb-step-actions,
  .mwb-modal-close,
  .mwb-nav-btn,
  .mwb-ticket-buttons,
  .mwb-notice-card,
  header,
  footer,
  nav,
  .site-header,
  .site-footer,
  .elementor-location-header,
  .elementor-location-footer,
  #wpadminbar {
    display: none !important;
  }

  /* Reset body and html for print */
  body, html {
    background: #fff !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .mwb-booking-success {
    box-shadow: none;
    border: 1px solid #000;
  }

  .mwb-success-icon {
    background-color: #000 !important;
    color: #fff !important;
  }

  /* Ensure QR code prints clearly */
  .mwb-qr-card {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .mwb-qr-img {
    max-width: 200px !important;
    height: auto !important;
  }

  /* Make sure content is visible */
  .mwb-success-header-section,
  .mwb-detail-card,
  .mwb-qr-card {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for keyboard navigation */
.mwb-primary-btn:focus,
.mwb-secondary-btn:focus,
.mwb-quick-book-btn:focus,
.mwb-location-card:focus,
.mwb-ticket-card:focus,
.mwb-addon-card:focus {
  outline: 2px solid var(--mwb-primary-color);
  outline-offset: 2px;
}

/* Focus styles only for non-selected calendar days */
.mwb-calendar-day:focus:not(.selected) {
  outline: 2px solid var(--mwb-primary-color);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.3);
  z-index: 5;
}

/* Remove all outlines from selected calendar days */
.mwb-calendar-day.selected:focus {
  outline: none !important;
  box-shadow: 0 4px 16px rgba(40, 167, 69, 0.3) !important;
}

/* Adjustment Message */
.mwb-adjustment-message {
  background-color: #d1ecf1;
  border: 1px solid #bee5eb;
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 20px;
  color: #0c5460;
  font-size: 14px;
  animation: mwb-fade-in 0.3s ease-in;
}

.mwb-adjustment-message p {
  margin: 0;
}

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

/* Offer ticket styling in summary */
.mwb-summary-item.offer-ticket {
  background: #f0fdf4;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #bbf7d0;
  margin-bottom: 10px;
}

.mwb-summary-item.offer-ticket span:first-child {
  color: #166534;
}

.mwb-summary-item.offer-ticket .original-price {
  text-decoration: line-through;
  color: #9ca3af;
  margin-right: 8px;
}

.mwb-summary-item.offer-ticket .discounted-price {
  color: #059669;
  font-weight: 600;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --mwb-border-color: #000;
    --mwb-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
}

/* Enhanced Booking Confirmation Styles */

/* Base booking success container */
.mwb-booking-success {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  font-family: var(--mwb-font-family);
  color: var(--mwb-dark-color);
  line-height: 1.6;
}

.mwb-booking-success h2 {
  color: var(--mwb-success-color);
  text-align: center;
  font-size: 28px;
  margin: 15px 0;
  font-weight: 700;
}

.mwb-success-subtitle {
  text-align: center;
  color: #6b7280;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Payment Status Section */
.mwb-payment-status {
  background: #f8f9fa;
  border: 1px solid var(--mwb-border-color);
  border-radius: var(--mwb-border-radius);
  padding: 20px;
  margin-bottom: 20px;
}

.mwb-payment-status h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--mwb-dark-color);
  font-size: 18px;
  font-weight: 600;
}

.mwb-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  gap: 8px;
  margin-bottom: 15px;
}

.mwb-status-badge.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.mwb-status-badge.pending {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

.mwb-status-badge .status-icon {
  font-weight: bold;
  font-size: 16px;
}

.mwb-payment-details {
  background: white;
  padding: 15px;
  border-radius: var(--mwb-border-radius);
  border: 1px solid #e9ecef;
}

/* Enhanced Booking Details */
.mwb-booking-details {
  background: white;
  border: 1px solid var(--mwb-border-color);
  border-radius: var(--mwb-border-radius);
  padding: 20px;
  margin-bottom: 20px;
}

.mwb-booking-details h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--mwb-dark-color);
  font-size: 18px;
  font-weight: 600;
  border-bottom: 2px solid var(--mwb-primary-color);
  padding-bottom: 8px;
}

.mwb-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f1f3f4;
}

.mwb-detail-item:last-child {
  border-bottom: none;
}

.mwb-detail-item span:first-child {
  color: #6b7280;
  font-weight: 500;
}

.mwb-detail-item span:last-child {
  color: var(--mwb-dark-color);
  font-weight: 600;
}

.mwb-detail-item .booking-id,
.mwb-detail-item .transaction-id,
.mwb-detail-item .qr-code {
  font-family: 'Courier New', monospace;
  background: #f8f9fa;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 13px;
}

.mwb-detail-item .amount {
  color: var(--mwb-success-color);
  font-weight: 700;
  font-size: 16px;
}

/* QR Code Section */
.mwb-qr-section {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border: 2px dashed var(--mwb-primary-color);
  border-radius: var(--mwb-border-radius);
  padding: 30px;
  margin: 20px 0;
  text-align: center;
}

.mwb-qr-section h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--mwb-primary-color);
  font-size: 20px;
  font-weight: 700;
}

.mwb-qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.mwb-qr-image {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--mwb-box-shadow);
  border: 3px solid var(--mwb-primary-color);
  position: relative;
}

.mwb-qr-image img {
  display: block;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
}

.mwb-qr-fallback {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border: 2px solid #dee2e6;
}

.mwb-qr-text {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: var(--mwb-dark-color);
  word-break: break-all;
  max-width: 200px;
}

.mwb-qr-instruction {
  margin: 0;
  color: var(--mwb-primary-color);
  font-weight: 600;
  font-size: 16px;
}

/* Enhanced Success Actions */
.mwb-success-actions {
  margin: 30px 0;
}

.mwb-ticket-actions {
  background: linear-gradient(135deg, #007cba, #0056b3);
  color: white;
  border-radius: var(--mwb-border-radius);
  padding: 25px;
  text-align: center;
}

.mwb-ticket-actions h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: white;
  font-size: 20px;
  font-weight: 700;
}

.mwb-action-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.mwb-download-btn {
  background: var(--mwb-success-color) !important;
  color: white !important;
  border: none !important;
  padding: 12px 24px;
  border-radius: var(--mwb-border-radius);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--mwb-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mwb-download-btn:hover {
  background: #218838 !important;
  transform: translateY(-1px);
}

.mwb-download-btn:disabled {
  background: #6c757d !important;
  cursor: not-allowed;
  transform: none;
}

.mwb-print-btn,
.mwb-new-booking-btn {
  background: rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  padding: 12px 20px;
  border-radius: var(--mwb-border-radius);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: var(--mwb-transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mwb-print-btn:hover,
.mwb-new-booking-btn:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-1px);
}

/* Enhanced Confirmation Notice */
.mwb-confirmation-notice {
  background: #e8f5e8;
  border: 1px solid #c3e6cb;
  border-radius: var(--mwb-border-radius);
  padding: 25px;
  margin-top: 20px;
}

.mwb-confirmation-notice h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #155724;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mwb-confirmation-notice h3::before {
  content: "ℹ️";
  font-size: 20px;
}

.mwb-notice-content p {
  margin: 8px 0;
  color: #155724;
  line-height: 1.6;
}

.mwb-notice-content p:last-child {
  margin-bottom: 0;
}

/* Success Icon Enhancement */
.mwb-success-icon {
  width: 80px;
  height: 80px;
  background: var(--mwb-success-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: bold;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
  animation: successPulse 2s ease-in-out infinite alternate;
}

@keyframes successPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
  }
  100% {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(40, 167, 69, 0.4);
  }
}

.mwb-success-subtitle {
  font-size: 16px;
  color: #6b7280;
  text-align: center;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mwb-action-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .mwb-download-btn,
  .mwb-print-btn,
  .mwb-new-booking-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .mwb-detail-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 0;
  }
  
  .mwb-detail-item span:last-child {
    align-self: flex-end;
  }
}

/* ================================================
   STEP 5 REVIEW - ENHANCED VISUAL STYLES
   ================================================ */

/* Review Title with Icon */
.mwb-review-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: #1a1d2b;
  font-size: 24px;
  font-weight: 600;
}

.mwb-title-icon {
  color: #0084ff;
  font-size: 28px;
}

/* Section Header with Badge */
.mwb-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8f4ff;
}

.mwb-section-header h3,
.mwb-section-header h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #1a1d2b;
  font-weight: 600;
}

.mwb-section-icon {
  color: #0084ff;
  font-size: 18px;
}

/* Section Badges */
.mwb-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mwb-applied-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #0084ff, #00bfff);
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(0, 132, 255, 0.3); }
  50% { box-shadow: 0 2px 16px rgba(0, 132, 255, 0.5); }
}

/* Count Badges */
.mwb-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  background: linear-gradient(135deg, #0084ff, #00bfff);
  color: white;
  font-size: 12px;
  font-weight: 700;
  border-radius: 12px;
  margin-left: 8px;
}

/* Subsection Header */
.mwb-subsection-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.mwb-subsection-header h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

/* Item Icons */
.mwb-item-icon {
  color: #0084ff;
  font-size: 14px;
  margin-right: 4px;
}

/* Date Item Styling */
.mwb-date-item {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 132, 255, 0.15);
}

.mwb-date-value {
  font-weight: 600;
  color: #0084ff;
  font-size: 16px;
}

/* Offer Badge */
.mwb-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 12px;
  margin-right: 6px;
}

/* Savings Badge */
.mwb-savings-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  margin: 16px 0;
  animation: savingsBounce 2s ease-in-out infinite;
}

@keyframes savingsBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.mwb-savings-badge i {
  font-size: 18px;
}

/* Enhanced Total Amount */
.mwb-total-amount {
  font-size: 24px;
  font-weight: 700;
  color: #0084ff;
  background: linear-gradient(135deg, #0084ff, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Discount Icon */
.mwb-discount-icon {
  margin-right: 6px;
  color: #10b981;
}

/* Form Field Icons */
.mwb-field-icon {
  color: #0084ff;
  margin-right: 8px;
  font-size: 14px;
}

.mwb-field-with-icon label {
  display: flex;
  align-items: center;
}

/* Checkbox Icon */
.mwb-checkbox-icon {
  color: #0084ff;
  margin-left: 4px;
  margin-right: 6px;
  font-size: 16px;
  flex-shrink: 0;
}

/* Enhanced checkbox label in customer form */
.mwb-customer-form .mwb-form-field .mwb-checkbox-label,
.mwb-customer-form .mwb-checkbox-label {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 16px 20px;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border: 1px solid rgba(0, 132, 255, 0.15);
  border-radius: 12px;
  cursor: pointer;
  margin: 20px 0;
  transition: all 0.3s ease;
}

.mwb-customer-form .mwb-form-field .mwb-checkbox-label:hover,
.mwb-customer-form .mwb-checkbox-label:hover {
  border-color: #0084ff;
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
}

/* Promo Validation Icons */
.mwb-promo-validation i {
  margin-right: 6px;
}

.mwb-promo-validation.valid {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  color: #166534;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #bbf7d0;
  display: flex;
  align-items: center;
}

.mwb-promo-validation.invalid {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  color: #991b1b;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #fecaca;
  display: flex;
  align-items: center;
}

/* Enhanced Error Messages */
.error-message {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #dc2626;
  font-size: 12px;
  margin-top: 6px;
  padding: 8px 12px;
  background: #fef2f2;
  border-radius: 6px;
  border-left: 3px solid #dc2626;
}

.error-message i {
  font-size: 14px;
}

/* Price Line Enhanced */
.mwb-price-line.total {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  padding: 16px 20px;
  border-radius: 12px;
  margin-top: 16px;
  border: 1px solid rgba(0, 132, 255, 0.15);
}

.mwb-price-line.discount span:last-child {
  color: #10b981;
  font-weight: 600;
}

/* Responsive Adjustments for Review Step */
@media (max-width: 768px) {
  .mwb-review-title {
    font-size: 20px;
  }

  .mwb-title-icon {
    font-size: 24px;
  }

  .mwb-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .mwb-section-badge,
  .mwb-applied-badge {
    align-self: flex-start;
  }

  .mwb-total-amount {
    font-size: 20px;
  }

  .mwb-savings-badge {
    font-size: 13px;
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  .mwb-date-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .mwb-subsection-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .mwb-count-badge {
    margin-left: 0;
  }
}

/* ================================================
   SUCCESS SCREEN - STEP 5 STYLE CONSISTENCY
   ================================================ */

/* Success Screen Animations */
@keyframes successCheckmark {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 8px 32px rgba(0, 132, 255, 0.35); }
  50% { box-shadow: 0 8px 48px rgba(0, 132, 255, 0.5); }
}

@keyframes iconBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-15px); }
  60% { transform: translateY(-8px); }
}

.mwb-fade-in-up {
  animation: fadeInUp 0.5s ease-out forwards;
}

.mwb-fade-in-up-delay-1 {
  opacity: 0;
  animation: fadeInUp 0.5s ease-out 0.15s forwards;
}

.mwb-fade-in-up-delay-2 {
  opacity: 0;
  animation: fadeInUp 0.5s ease-out 0.3s forwards;
}

.mwb-fade-in-up-delay-3 {
  opacity: 0;
  animation: fadeInUp 0.5s ease-out 0.45s forwards;
}

/* Success Header Section */
.mwb-success-header-section {
  text-align: center;
  margin-bottom: 32px;
  padding: 40px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  border-radius: 20px;
  border: 1px solid rgba(0, 132, 255, 0.1);
}

/* Success Icon Wrapper with Font Awesome */
.mwb-success-icon-wrapper {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.35);
  animation: successCheckmark 0.6s ease-out, pulseGlow 2s ease-in-out infinite;
}

.mwb-success-icon-wrapper i {
  font-size: 48px;
  color: white;
}

/* Override pulse glow for green success */
.mwb-success-icon-wrapper {
  animation: successCheckmark 0.6s ease-out;
}

@keyframes successPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(16, 185, 129, 0.35); }
  50% { box-shadow: 0 8px 48px rgba(16, 185, 129, 0.5); }
}

.mwb-success-icon-wrapper:hover {
  animation: iconBounce 1s ease;
}

/* Success Title - matches .mwb-review-title */
.mwb-success-header-section .mwb-review-title {
  justify-content: center;
  font-size: 28px;
  color: #1a1d2b;
  margin-bottom: 12px;
}

/* Success Subtitle */
.mwb-success-header-section .mwb-success-subtitle {
  font-size: 16px;
  color: #64748b;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* QR Code Card - matches booking-summary style */
.mwb-qr-card {
  background: #ffffff;
  border: 1px solid rgba(0, 132, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px -10px rgba(0, 132, 255, 0.1);
}

.mwb-qr-display {
  text-align: center;
  padding: 20px 0;
}

.mwb-qr-image-container {
  display: inline-block;
  background: linear-gradient(135deg, #0084ff 0%, #0056b3 100%);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 132, 255, 0.25);
}

.mwb-qr-img {
  display: block;
  max-width: 180px;
  height: auto;
  border-radius: 8px;
  background: white;
  padding: 12px;
}

/* Per-experience ticket breakdown shown under the single combined QR code
 * for a mixed-experience order, so it's clear at a glance what the one code
 * covers without having to scan and decode it. */
.mwb-qr-order-summary {
  margin: 20px auto 0;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.mwb-qr-order-summary-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px;
  background: #f8fafc;
  border: 1px solid #eef2f7;
  border-radius: 10px;
  font-size: 13px;
}

.mwb-qr-order-summary-line strong {
  color: var(--mwb-dark-color, #1a1d2b);
}

.mwb-qr-order-summary-line span {
  color: #64748b;
}

.mwb-qr-display .mwb-qr-instruction {
  margin-top: 20px;
  font-size: 14px;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mwb-qr-display .mwb-qr-instruction i {
  color: #0084ff;
}

/* Ticket Buttons Section */
.mwb-ticket-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}

.mwb-ticket-buttons .mwb-primary-btn,
.mwb-ticket-buttons .mwb-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 15px;
}

.mwb-ticket-buttons .mwb-primary-btn i,
.mwb-ticket-buttons .mwb-secondary-btn i {
  font-size: 16px;
}

/* Notice Card - Warning Style */
.mwb-notice-card {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #fbbf24;
  border-left: 4px solid #f59e0b;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}

.mwb-notice-card .mwb-section-header {
  border-bottom-color: rgba(245, 158, 11, 0.2);
}

.mwb-notice-card .mwb-section-header h4 {
  color: #92400e;
}

.mwb-warning-icon {
  color: #f59e0b !important;
}

/* Notice List */
.mwb-notice-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mwb-notice-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  font-size: 14px;
  color: #78350f;
  line-height: 1.5;
}

.mwb-notice-icon {
  color: #f59e0b;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Mobile Responsive for Success Screen */
@media (max-width: 768px) {
  .mwb-success-header-section {
    padding: 30px 16px;
  }

  .mwb-success-icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .mwb-success-icon-wrapper i {
    font-size: 40px;
  }

  .mwb-success-header-section .mwb-review-title {
    font-size: 24px;
  }

  .mwb-qr-image-container {
    padding: 16px;
  }

  .mwb-qr-img {
    max-width: 150px;
    padding: 10px;
  }

  .mwb-ticket-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .mwb-ticket-buttons .mwb-primary-btn,
  .mwb-ticket-buttons .mwb-secondary-btn {
    justify-content: center;
    width: 100%;
  }

  .mwb-notice-item {
    padding: 10px 12px;
    font-size: 13px;
  }
}
/* Experience selection */
.mwb-experience-intro { margin: -.5rem 0 1.25rem; color: #64748b; }
.mwb-experience-selector { display: grid; gap: 12px; margin-bottom: 24px; }
.mwb-experience-option { width: 100%; display: flex; align-items: center; gap: 14px; padding: 18px; border: 1px solid #dbe5f1; border-radius: 14px; background: #fff; color: #172554; text-align: left; cursor: pointer; transition: .2s ease; }
.mwb-experience-option:hover { border-color: #60a5fa; transform: translateY(-1px); }
.mwb-experience-option.selected { border: 2px solid #1473e6; background: #f8fbff; box-shadow: 0 6px 20px rgba(20,115,230,.1); }
.mwb-experience-option.combo { border-color: #fed7aa; }
.mwb-experience-option.combo.selected { border-color: #f97316; background: #fffaf5; }
.mwb-experience-icon { font-size: 28px; width: 42px; text-align: center; }
.mwb-experience-image { width: 112px; height: 84px; border-radius: 10px; object-fit: cover; flex: 0 0 auto; }
.mwb-experience-copy { display: flex; flex: 1; flex-direction: column; gap: 3px; }
.mwb-experience-copy strong { font-size: 18px; }
.mwb-experience-copy small { color: #64748b; font-size: 13px; }
.mwb-experience-copy em { width: fit-content; margin-top: 5px; padding: 3px 8px; border-radius: 999px; background: #dcfce7; color: #15803d; font-size: 11px; font-style: normal; font-weight: 700; }
.mwb-experience-option.combo .mwb-experience-copy em { background: #ffedd5; color: #c2410c; }
.mwb-experience-radio { display: grid; place-items: center; width: 24px; height: 24px; border: 2px solid #b8c4d4; border-radius: 50%; color: #fff; }
.mwb-experience-option.selected .mwb-experience-radio { border-color: #1473e6; background: #1473e6; }
.mwb-experience-option.combo.selected .mwb-experience-radio { border-color: #f97316; background: #f97316; }
.mwb-ticket-description { display: block; margin: -4px 0 8px; color: #64748b; }
@media (max-width: 600px) { .mwb-experience-option { padding: 12px; gap: 10px; } .mwb-experience-image { width: 76px; height: 76px; } .mwb-experience-icon { display: none; } .mwb-experience-copy strong { font-size: 15px; } }

/* Mobile layout hardening
 * Keep this final and scoped so theme/Elementor styles cannot reintroduce
 * fixed-width controls or horizontal page scrolling in the booking flow. */
@media (max-width: 768px) {
  .marine-world-booking-container,
  .marine-world-calendar-container,
  .marine-world-booking-elementor-widget {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 24px 12px;
    border-radius: 14px;
    overflow-x: clip;
  }

  .marine-world-booking-container .mwb-step-content,
  .marine-world-booking-container .mwb-booking-review,
  .marine-world-booking-elementor-widget .mwb-step-content,
  .marine-world-booking-elementor-widget .mwb-booking-review {
    width: 100%;
    min-width: 0;
    padding-inline: 0;
  }

  .mwb-header {
    padding-inline: 4px;
    margin-bottom: 20px;
  }

  .mwb-step-content h2,
  .mwb-location-selector h2,
  .mwb-date-selector h2,
  .mwb-ticket-selector h2,
  .mwb-addons-selector h2,
  .mwb-payment-step h2 {
    margin-block: 20px;
    font-size: clamp(1.25rem, 6vw, 1.5rem);
    line-height: 1.25;
  }

  .mwb-progress,
  .mwb-progress-indicator {
    width: 100%;
    margin: 8px auto 20px;
    padding: 8px 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .mwb-progress::-webkit-scrollbar,
  .mwb-progress-indicator::-webkit-scrollbar {
    display: none;
  }

  .mwb-progress-steps {
    width: 100%;
    min-width: 100%;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0;
    margin-bottom: 12px;
  }

  .mwb-step {
    flex: 1 1 20%;
    min-width: 0;
  }

  .mwb-step:not(:last-child)::after {
    display: block;
    top: 16px;
    left: 50%;
    width: 100%;
    height: 2px;
  }

  .mwb-step-number {
    width: 34px;
    height: 34px;
    margin-bottom: 5px;
    font-size: 13px;
  }

  .mwb-step-title {
    width: 100%;
    max-width: none;
    padding-inline: 2px;
    font-size: 11px;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .mwb-calendar-header {
    padding: 12px;
  }

  .mwb-calendar-header h3 {
    min-width: 0;
    padding-inline: 6px;
    font-size: 17px;
    text-align: center;
  }

  .mwb-nav-btn {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .mwb-weekday {
    min-width: 0;
    padding: 8px 1px;
    font-size: 11px;
  }

  .mwb-calendar-grid {
    gap: 2px;
    padding: 4px;
  }

  .mwb-calendar-day {
    min-width: 0;
    min-height: 44px;
    margin: 0;
    padding: 4px 1px;
    border-width: 1px;
    border-radius: 6px;
    font-size: 12px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .mwb-calendar-day:hover:not(:disabled),
  .mwb-calendar-day.selected,
  .mwb-calendar-day.selected.available,
  .mwb-calendar-day.selected.limited,
  .mwb-calendar-day.available.selected,
  .mwb-calendar-day.limited.selected {
    transform: none !important;
  }

  .mwb-calendar-day.selected {
    animation: none;
  }

  .date-number {
    font-size: 13px;
  }

  .offer-badge,
  .special-price {
    display: none;
  }

  .mwb-legend {
    flex-direction: row;
    justify-content: flex-start;
    gap: 8px 14px;
    padding-inline: 4px;
  }

  .mwb-legend-item {
    font-size: 12px;
  }

  .mwb-ticket-card,
  .mwb-addon-card,
  .mwb-booking-summary,
  .mwb-promo-section,
  .mwb-final-pricing,
  .mwb-customer-form,
  .mwb-third-party-section {
    min-width: 0;
    padding: 18px;
  }

  .mwb-location-card {
    min-height: 170px;
    padding: 16px 10px 14px;
  }

  .mwb-location-card.has-image {
    display: flex;
    min-height: 170px;
  }

  .mwb-location-card-content {
    padding: 10px 0 0;
  }

  .mwb-location-card.has-image .mwb-location-card-content {
    margin: 0;
  }

  .marine-world-booking-container .mwb-location-media {
    position: relative !important;
    width: 76px !important;
    max-width: 76px !important;
    height: 76px !important;
    min-width: 76px !important;
    min-height: 76px !important;
    flex-basis: 76px !important;
    border-width: 6px !important;
  }

  .mwb-location-selection-layout {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 14px;
  }

  .mwb-location-intro,
  .mwb-location-options-panel {
    border-radius: 20px;
  }

  .mwb-location-intro {
    min-height: 210px;
    justify-content: flex-start;
    padding: 24px;
  }

  .marine-world-booking-container .mwb-location-intro h2,
  .marine-world-booking-elementor-widget .mwb-location-intro h2 {
    margin-bottom: 12px;
    font-size: 30px;
  }

  .mwb-location-intro p {
    font-size: 14px;
    line-height: 1.5;
  }

  .mwb-location-intro-art {
    display: none;
  }

  .mwb-location-intro:has(> .mwb-location-intro-art:only-child) {
    display: none;
  }

  .mwb-location-options-panel {
    padding: 14px;
  }

  .mwb-locations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mwb-promo-input {
    flex-direction: column;
  }

  .mwb-promo-input input,
  .mwb-apply-btn {
    width: 100% !important;
    min-width: 0;
  }

  .mwb-summary-item,
  .mwb-price-line,
  .mwb-final-pricing .mwb-price-line {
    gap: 12px;
  }

  .mwb-summary-item > :last-child,
  .mwb-price-line > :last-child {
    min-width: 0;
    overflow-wrap: anywhere;
    text-align: right;
  }

  .mwb-step-actions {
    width: 100%;
    gap: 10px;
    margin-top: 22px;
    padding: 12px;
  }

  .mwb-step-actions button,
  .mwb-step-actions .mwb-primary-btn,
  .mwb-step-actions .mwb-secondary-btn,
  .mwb-pay-btn {
    width: 100%;
    min-width: 0;
    min-height: 46px;
  }

  .mwb-modal-overlay {
    align-items: stretch;
    padding: max(8px, env(safe-area-inset-top)) 8px max(8px, env(safe-area-inset-bottom));
  }

  .mwb-modal-content {
    width: 100%;
    max-width: none;
    max-height: none;
    margin: 0;
    padding: 18px 12px;
    border-radius: 14px;
    overscroll-behavior: contain;
  }
}

@media (max-width: 420px) {
  .marine-world-booking-container,
  .marine-world-calendar-container,
  .marine-world-booking-elementor-widget {
    padding-inline: 8px;
  }

  .mwb-experience-option {
    align-items: flex-start;
  }

  .mwb-experience-image {
    width: 64px;
    height: 64px;
  }

  .mwb-experience-copy small {
    line-height: 1.25;
  }

  .mwb-experience-radio {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
  }

  .mwb-customer-form .mwb-form-field .mwb-checkbox-label,
  .mwb-customer-form .mwb-checkbox-label {
    align-items: flex-start !important;
    padding: 12px;
  }

  .mwb-payment-processing,
  .mwb-payment-error,
  .mwb-booking-success {
    padding: 24px 14px;
  }
}

/* Ticket selection cards */
.mwb-tickets-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.mwb-tickets-grid.mwb-single-ticket-grid {
  grid-template-columns: minmax(280px, 480px);
  justify-content: start;
}

.mwb-ticket-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 22px;
  overflow: hidden;
  border: 1px solid #dceafb;
  border-radius: 22px;
  text-align: left;
  background: linear-gradient(155deg, #fff 55%, #f4faff 100%);
  box-shadow: 0 14px 35px -22px rgba(0, 90, 180, .38);
}

.mwb-ticket-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #087cff, #18b9f2);
  opacity: 0;
  transition: opacity .2s ease;
}

.mwb-ticket-card:hover,
.mwb-ticket-card.selected {
  border-color: #76b9ff;
  transform: translateY(-3px);
  box-shadow: 0 22px 45px -24px rgba(0, 105, 215, .5);
}

.mwb-ticket-card.selected {
  background: linear-gradient(155deg, #fff 45%, #edf8ff 100%);
}

.mwb-ticket-card:hover::before,
.mwb-ticket-card.selected::before {
  opacity: 1;
}

.mwb-ticket-card-header {
  display: flex;
  min-height: 58px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.mwb-ticket-icon {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  flex: 0 0 58px;
  border: 1px solid #cde6ff;
  border-radius: 18px;
  color: #087cff;
  background: linear-gradient(145deg, #eaf6ff, #fff);
  box-shadow: 0 8px 18px -12px rgba(0, 124, 255, .65);
  font-size: 25px;
}

.mwb-ticket-selected-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #087443;
  background: #dcfce7;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
}

.mwb-ticket-card-body {
  flex: 1;
}

.mwb-ticket-kicker {
  display: block;
  margin-bottom: 3px;
  color: #74849a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mwb-ticket-card .mwb-ticket-card-body h3 {
  margin: 0 0 5px;
  color: #172033;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.15;
}

.mwb-ticket-card .mwb-ticket-description {
  min-height: 21px;
  margin: 0;
  color: #62748d;
  font-size: 14px;
}

.mwb-ticket-card .mwb-ticket-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 3px 8px;
  margin: 20px 0;
}

.mwb-ticket-card .mwb-ticket-price > span:first-child {
  color: #087cff;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.mwb-ticket-card .mwb-ticket-price > small {
  color: #8290a3;
  font-size: 12px;
  font-weight: 500;
}

.mwb-ticket-card .mwb-quantity-selector {
  display: grid;
  grid-template-columns: 48px minmax(70px, 1fr) 48px;
  gap: 8px;
  padding: 8px;
  border: 1px solid #deebf8;
  border-radius: 17px;
  background: rgba(255, 255, 255, .9);
}

.mwb-ticket-card .mwb-qty-btn {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 13px;
  color: #087cff;
  background: #eaf5ff;
  font-size: 15px;
}

.mwb-ticket-card .mwb-qty-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #087cff, #16b8ed);
  transform: none;
}

.mwb-ticket-card .mwb-qty-btn:disabled {
  color: #a9b7c7;
  background: #f4f7fa;
}

.mwb-ticket-card .mwb-qty-display {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.mwb-ticket-card .mwb-qty-display strong {
  color: #172033;
  font-size: 21px;
}

.mwb-ticket-card .mwb-qty-display small {
  margin-top: 4px;
  color: #8190a4;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .mwb-tickets-grid {
    gap: 12px;
  }

  .mwb-tickets-grid.mwb-single-ticket-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .mwb-ticket-card {
    min-height: 0;
    padding: 18px;
    border-radius: 18px;
  }

  .mwb-ticket-card-header {
    min-height: 50px;
    margin-bottom: 14px;
  }

  .mwb-ticket-icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    border-radius: 15px;
    font-size: 22px;
  }

  .mwb-ticket-card .mwb-ticket-price {
    margin: 15px 0;
  }
}

.mwb-offer-tickets-content .mwb-ticket-card {
  min-height: 0;
}

.mwb-offer-tickets-content .mwb-ticket-card::before {
  display: none;
}

.mwb-offer-tickets-content .mwb-ticket-price > span:first-child {
  font-size: inherit;
}

/* Swipeable booking progress on compact screens */
@media (max-width: 600px) {
  .mwb-progress {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }

  .mwb-progress-steps {
    width: max-content;
    min-width: 100%;
    justify-content: flex-start;
    padding-inline: 4px;
  }

  .mwb-progress .mwb-step {
    flex: 0 0 clamp(84px, 28vw, 104px);
    min-width: 0;
    scroll-snap-align: center;
  }

  .mwb-progress .mwb-step-title {
    font-size: 10px;
    white-space: nowrap;
    overflow-wrap: normal;
  }

  .mwb-progress .mwb-progress-bar {
    display: none;
  }
}

/* Consistent mobile heading scale */
@media (max-width: 768px) {
  .marine-world-booking-container,
  .marine-world-calendar-container,
  .marine-world-booking-elementor-widget {
    --mwb-mobile-booking-title: 26px;
    --mwb-mobile-screen-title: 22px;
    --mwb-mobile-card-title: 18px;
    --mwb-mobile-section-title: 16px;
    --mwb-mobile-support-title: 14px;
  }

  .mwb-header h1,
  .marine-world-booking-container > h1 {
    font-size: var(--mwb-mobile-booking-title);
    line-height: 1.15;
    letter-spacing: -.02em;
  }

  .mwb-step-content > h2,
  .mwb-location-selector > h2,
  .mwb-date-selector > h2,
  .mwb-ticket-selector > h2,
  .mwb-addons-selector > h2,
  .mwb-payment-step > h2,
  .mwb-addons-intro h2,
  .mwb-review-title,
  .mwb-payment-processing h2,
  .mwb-payment-error h2,
  .mwb-booking-success h2,
  .mwb-success-header-section .mwb-review-title {
    font-size: var(--mwb-mobile-screen-title);
    line-height: 1.22;
    letter-spacing: -.015em;
  }

  .mwb-ticket-card .mwb-ticket-card-body h3,
  .mwb-addon-combo-card .mwb-addon-card-heading h3,
  .mwb-location-card h3,
  .mwb-payment-summary h3,
  .mwb-payment-methods h3,
  .mwb-booking-details h3,
  .mwb-qr-section h3,
  .mwb-ticket-actions h3,
  .mwb-confirmation-notice h3 {
    font-size: var(--mwb-mobile-card-title);
    line-height: 1.25;
  }

  .mwb-calendar-header h3,
  .mwb-addons-step .mwb-addon-card h3,
  .mwb-birthday-copy h3,
  .mwb-booking-summary h3,
  .mwb-customer-form h3,
  .mwb-section-header h3,
  .mwb-section-header h4 {
    font-size: var(--mwb-mobile-section-title);
    line-height: 1.3;
  }

  .mwb-summary-section h4,
  .mwb-subsection-header h4,
  .mwb-promo-section h4,
  .mwb-third-party-section h4,
  .mwb-pricing-summary h4,
  .mwb-final-pricing h4 {
    font-size: var(--mwb-mobile-support-title);
    line-height: 1.35;
  }
}

/* Desktop cascade guard: this must remain after all component rules. */
@media (min-width: 769px) {
  .mwb-step-content > h2,
  .mwb-addons-intro h2,
  .mwb-review-title,
  .mwb-payment-step > h2,
  .mwb-payment-processing h2,
  .mwb-payment-error h2,
  .mwb-booking-success h2,
  .mwb-success-header-section .mwb-review-title {
    font-size: var(--mwb-desktop-screen-title);
    line-height: 1.2;
  }

  .mwb-ticket-card .mwb-ticket-card-body h3,
  .mwb-addon-combo-card .mwb-addon-card-heading h3,
  .mwb-location-card h3,
  .mwb-payment-summary h3,
  .mwb-payment-methods h3,
  .mwb-booking-details h3,
  .mwb-qr-section h3,
  .mwb-ticket-actions h3,
  .mwb-confirmation-notice h3 {
    font-size: var(--mwb-desktop-card-title);
  }

  .mwb-calendar-header h3,
  .mwb-addons-step .mwb-addon-card h3,
  .mwb-birthday-copy h3,
  .mwb-booking-summary h3,
  .mwb-customer-form h3,
  .mwb-section-header h3,
  .mwb-section-header h4 {
    font-size: var(--mwb-desktop-section-title);
  }
}

/* Experience selection indicator */
.mwb-experience-radio {
  position: relative;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  flex: 0 0 32px;
  border: 2px solid #b7c6da;
  border-radius: 50%;
  color: transparent;
  background: #fff;
  box-shadow: inset 0 0 0 4px #fff;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.mwb-experience-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d5dfeb;
  transition: transform .2s ease, opacity .2s ease;
}

.mwb-experience-radio i {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 13px;
  animation: mwb-check-in .22s ease-out both;
}

.mwb-experience-option:hover .mwb-experience-radio {
  border-color: #6caeff;
  transform: scale(1.04);
}

.mwb-experience-option.selected .mwb-experience-radio {
  border-color: #087cff;
  color: #fff;
  background: linear-gradient(135deg, #087cff, #14b4ed);
  box-shadow: 0 0 0 5px rgba(8, 124, 255, .11), 0 7px 14px -8px rgba(8, 124, 255, .85);
}

.mwb-experience-option.selected .mwb-experience-radio::after {
  opacity: 0;
  transform: scale(0);
}

.mwb-experience-option.combo.selected .mwb-experience-radio {
  border-color: #f97316;
  background: linear-gradient(135deg, #f97316, #fb9f36);
  box-shadow: 0 0 0 5px rgba(249, 115, 22, .12), 0 7px 14px -8px rgba(234, 88, 12, .8);
}

.mwb-experience-option:focus-visible .mwb-experience-radio {
  outline: 3px solid rgba(8, 124, 255, .24);
  outline-offset: 3px;
}

@keyframes mwb-check-in {
  from { opacity: 0; transform: scale(.45) rotate(-18deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

@media (max-width: 600px) {
  .mwb-experience-radio {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .mwb-experience-radio::after {
    width: 6px;
    height: 6px;
  }

  .mwb-experience-radio i {
    font-size: 11px;
  }

  .mwb-experience-option.selected .mwb-experience-radio,
  .mwb-experience-option.combo.selected .mwb-experience-radio {
    box-shadow: 0 0 0 4px rgba(8, 124, 255, .1);
  }

  .mwb-experience-option.combo.selected .mwb-experience-radio {
    box-shadow: 0 0 0 4px rgba(249, 115, 22, .11);
  }
}

/* Mixed-experience group bookings: an experience card's ticket count badge
 * (replaces the checkmark once tickets are added, since more than one card
 * can now be "selected" at a time), the summary chips listing every
 * experience currently in the order, and the per-experience heading inside
 * the pricing summary when more than one experience has tickets. */
.mwb-experience-count-badge {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.mwb-selected-experiences-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 20px;
}

.mwb-selected-experience-chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e3a8a;
  font-size: 13px;
}

.mwb-price-line-group + .mwb-price-line-group {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--mwb-border-color, #dbe5f1);
}

.mwb-price-line-heading {
  margin-bottom: 2px;
}

.mwb-price-line-heading strong {
  color: var(--mwb-dark-color, #172554);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .03em;
}

/* Theme-safe quantity controls */
.marine-world-booking-container .mwb-quantity-selector,
.marine-world-booking-elementor-widget .mwb-quantity-selector {
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
}

.marine-world-booking-container button.mwb-qty-btn,
.marine-world-booking-elementor-widget button.mwb-qty-btn {
  position: static !important;
  display: grid !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  place-items: center !important;
  float: none !important;
  border-style: solid;
  text-indent: 0 !important;
  font: inherit !important;
  line-height: 1 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  box-sizing: border-box !important;
  overflow: hidden;
}

.marine-world-booking-container button.mwb-qty-btn::before,
.marine-world-booking-container button.mwb-qty-btn::after,
.marine-world-booking-elementor-widget button.mwb-qty-btn::before,
.marine-world-booking-elementor-widget button.mwb-qty-btn::after {
  content: none !important;
  display: none !important;
}

.marine-world-booking-container button.mwb-qty-btn i,
.marine-world-booking-elementor-widget button.mwb-qty-btn i {
  position: static !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  color: inherit !important;
  font-size: inherit !important;
  line-height: 1 !important;
  transform: none !important;
}

.marine-world-booking-container .mwb-ticket-card button.mwb-qty-btn,
.marine-world-booking-elementor-widget .mwb-ticket-card button.mwb-qty-btn {
  width: 48px !important;
  height: 48px !important;
  flex: 0 0 48px !important;
  border-width: 0 !important;
  border-radius: 13px !important;
}

.marine-world-booking-container .mwb-offer-quantity button.mwb-qty-btn,
.marine-world-booking-elementor-widget .mwb-offer-quantity button.mwb-qty-btn {
  width: 38px !important;
  height: 38px !important;
  flex: 0 0 38px !important;
  border-width: 0 !important;
  border-radius: 9px !important;
}

.marine-world-booking-container .mwb-addons-step button.mwb-qty-btn,
.marine-world-booking-elementor-widget .mwb-addons-step button.mwb-qty-btn {
  width: 34px !important;
  height: 34px !important;
  flex: 0 0 34px !important;
  border-width: 1px !important;
  border-radius: 8px !important;
}

.marine-world-booking-container .mwb-qty-display,
.marine-world-booking-elementor-widget .mwb-qty-display {
  min-width: 0;
  margin: 0;
  padding: 0;
  line-height: 1;
  box-sizing: border-box;
}

@media (max-width: 380px) {
  .mwb-locations-grid {
    grid-template-columns: 1fr;
  }

  .marine-world-booking-container .mwb-ticket-card button.mwb-qty-btn,
  .marine-world-booking-elementor-widget .mwb-ticket-card button.mwb-qty-btn {
    width: 44px !important;
    height: 44px !important;
    flex-basis: 44px !important;
  }
}

/* ==========================================================================
   Ticket selection: two-column layout — a sticky context panel on the left,
   a scrollable flat list of ticket rows (grouped by experience) on the
   right, with the running total and Continue action pinned to the bottom of
   that list. Lets a group add tickets across several experience types
   (aquarium/deep_wonder/combo) without switching screens.
   ========================================================================== */
.mwb-ticket-select-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 24px;
  align-items: start;
}

.mwb-ticket-select-info {
  position: sticky;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mwb-ticket-select-info-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.mwb-ticket-select-info-header h2 {
  margin: 0;
  font-size: 22px;
  flex: 1;
  text-align: left;
}

.mwb-back-circle-btn {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border: none;
  border-radius: 50%;
  background: var(--mwb-secondary-color, #f0f9ff);
  color: var(--mwb-primary-color, #0084ff);
  cursor: pointer;
  transition: background .2s ease;
}

.mwb-back-circle-btn:hover {
  background: #dceeff;
}

/* Theme isolation for booking controls. Themes such as Astra apply global
 * button sizing, padding and colours; these controls must keep their widget
 * appearance in every pointer and keyboard state. */
.marine-world-booking-container button.mwb-back-circle-btn,
.marine-world-booking-elementor-widget button.mwb-back-circle-btn {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: grid !important;
  place-items: center !important;
  width: 36px !important;
  min-width: 36px !important;
  max-width: 36px !important;
  height: 36px !important;
  min-height: 36px !important;
  max-height: 36px !important;
  flex: 0 0 36px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: var(--mwb-secondary-color, #f0f9ff) !important;
  background-image: none !important;
  box-shadow: none !important;
  color: var(--mwb-primary-color, #0084ff) !important;
  font: inherit !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

.marine-world-booking-container button.mwb-back-circle-btn:hover,
.marine-world-booking-container button.mwb-back-circle-btn:active,
.marine-world-booking-elementor-widget button.mwb-back-circle-btn:hover,
.marine-world-booking-elementor-widget button.mwb-back-circle-btn:active {
  background: #dceeff !important;
  color: var(--mwb-primary-color, #0084ff) !important;
  transform: none !important;
}

.marine-world-booking-container button.mwb-back-circle-btn:focus,
.marine-world-booking-elementor-widget button.mwb-back-circle-btn:focus {
  outline: none !important;
}

.marine-world-booking-container button.mwb-back-circle-btn:focus-visible,
.marine-world-booking-elementor-widget button.mwb-back-circle-btn:focus-visible {
  outline: 2px solid var(--mwb-primary-color, #0084ff) !important;
  outline-offset: 2px !important;
}

.marine-world-booking-container button.mwb-back-circle-btn i,
.marine-world-booking-elementor-widget button.mwb-back-circle-btn i {
  width: auto !important;
  margin: 0 !important;
  color: inherit !important;
  font-size: 14px !important;
  line-height: 1 !important;
}

.mwb-ticket-select-location-badge {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--mwb-secondary-color, #f0f9ff);
  color: var(--mwb-primary-color, #0084ff);
  font-weight: 700;
  font-size: 13px;
}

.mwb-important-info-wrap {
  border: 1px solid #c7d2fe;
  border-radius: 14px;
  overflow: hidden;
}

.mwb-important-info-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 13px 16px;
  border: none;
  background: #e8ebfd;
  color: #3730a3;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-align: left;
}

.mwb-important-info-toggle i:first-child {
  font-size: 16px;
}

.mwb-important-info-toggle i:last-child {
  font-size: 12px;
}

.mwb-important-info-toggle span {
  flex: 1;
}

.mwb-important-info-list {
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
}

.mwb-important-info-list li {
  padding: 13px 16px;
  color: #1f2937;
  font-size: 13px;
  line-height: 1.5;
  border-top: 1px solid #e5e7eb;
}

.mwb-important-info-list li:first-child {
  border-top: none;
}

.mwb-step3-info-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.mwb-step3-info-modal {
  background: #fff;
  border-radius: var(--mwb-border-radius, 12px);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 28px 24px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mwb-step3-info-modal h3 {
  margin: 0 0 16px;
  font-size: 18px;
  color: var(--mwb-dark-color, #1f2937);
}

.mwb-step3-info-list {
  margin: 0;
  padding-left: 20px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.7;
}

.mwb-step3-info-list li + li {
  margin-top: 10px;
}

.mwb-step3-info-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: #6c757d;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.mwb-step3-info-close:hover {
  background-color: #f1f5f9;
  color: #1f2937;
}

.mwb-step3-info-understood-btn {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  background: var(--mwb-primary-color, #0084ff);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.mwb-step3-info-understood-btn:hover {
  opacity: 0.92;
}

.mwb-step3-info-understood-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.mwb-age-verify-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.mwb-age-verify-modal {
  background: #fff;
  border-radius: var(--mwb-border-radius, 12px);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 28px 24px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mwb-age-verify-modal h3 {
  margin: 0 0 16px;
  font-size: 18px;
  color: var(--mwb-dark-color, #1f2937);
}

.mwb-age-verify-modal .mwb-offer-check input {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  accent-color: var(--mwb-primary-color, #0084ff);
  cursor: pointer;
}

.mwb-ticket-select-list {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--mwb-border-color, #dbe5f1);
  border-radius: 16px;
  overflow: hidden;
  max-height: calc(100vh - 120px);
}

/* "More below" hint: a soft fade plus a bouncing chevron sitting right above
 * the sticky footer, so a subtle native scrollbar doesn't let users miss
 * Deep Wonder/Combo further down the list. Fades out once scrolled near the
 * bottom (see checkScrollHint in the component). */
.mwb-ticket-scroll-hint {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 78px;
  height: 56px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .92) 75%);
  pointer-events: none;
  z-index: 2;
}

.mwb-ticket-scroll-hint i {
  color: var(--mwb-primary-color, #0084ff);
  font-size: 14px;
  animation: mwb-scroll-hint-bounce 1.4s ease-in-out infinite;
}

@keyframes mwb-scroll-hint-bounce {
  0%, 100% { transform: translateY(0); opacity: .55; }
  50% { transform: translateY(5px); opacity: 1; }
}

.mwb-ticket-select-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 8px 20px;
}

/* Three collapsible cards, one per experience. Collapsed (the default) shows
 * just a compact row — thumbnail, title, starting price/selection summary —
 * so all three experience types are visible together without scrolling.
 * Expanding a card reveals its ticket-type selection (General/Child/Senior,
 * or Visitor for Deep Wonder). A group that splits across
 * aquarium/deep_wonder/combo just adds tickets in more than one card. */
.mwb-experience-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 4px 0 16px;
}

.mwb-experience-card {
  border: 1px solid var(--mwb-border-color, #dbe5f1);
  border-radius: 16px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.mwb-experience-card.selected {
  border-color: #bfdbfe;
  box-shadow: 0 8px 20px -14px rgba(0, 132, 255, .4);
  background: #f8fbff;
}

.mwb-experience-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 10px;
  border: 0;
  border-radius: 16px;
  background: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: background-color .2s ease;
}

.mwb-experience-card-header:hover {
  background-color: #f8fafc;
}

.marine-world-booking-container .mwb-experience-card > button.mwb-experience-card-header,
.marine-world-booking-elementor-widget .mwb-experience-card > button.mwb-experience-card-header {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: flex !important;
  width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 10px !important;
  border: 0 !important;
  border-radius: 16px !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  color: var(--mwb-dark-color, #1a1d2b) !important;
  font: inherit !important;
  text-align: left !important;
  text-decoration: none !important;
  transform: none !important;
}

.marine-world-booking-container .mwb-experience-card > button.mwb-experience-card-header:hover,
.marine-world-booking-elementor-widget .mwb-experience-card > button.mwb-experience-card-header:hover {
  background: #f8fafc !important;
  color: var(--mwb-dark-color, #1a1d2b) !important;
}

.marine-world-booking-container .mwb-experience-card > button.mwb-experience-card-header:focus,
.marine-world-booking-container .mwb-experience-card > button.mwb-experience-card-header:active,
.marine-world-booking-elementor-widget .mwb-experience-card > button.mwb-experience-card-header:focus,
.marine-world-booking-elementor-widget .mwb-experience-card > button.mwb-experience-card-header:active {
  background: transparent !important;
  color: var(--mwb-dark-color, #1a1d2b) !important;
  outline: none !important;
}

.marine-world-booking-container .mwb-experience-card > button.mwb-experience-card-header:focus-visible,
.marine-world-booking-elementor-widget .mwb-experience-card > button.mwb-experience-card-header:focus-visible {
  box-shadow: inset 0 0 0 2px var(--mwb-primary-color, #0084ff) !important;
}

.marine-world-booking-container .mwb-experience-card-heading h3,
.marine-world-booking-elementor-widget .mwb-experience-card-heading h3 {
  color: var(--mwb-dark-color, #1a1d2b) !important;
}

.marine-world-booking-container .mwb-experience-card-subheading,
.marine-world-booking-elementor-widget .mwb-experience-card-subheading {
  color: #64748b !important;
}

.mwb-experience-card-visual {
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
}

.mwb-experience-card-visual img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
}

.mwb-experience-card-icon {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 30px;
}

/* Ticket-type selection for the expanded card sits full-width below the
 * header row, not squeezed beside the (now small) thumbnail.
 *
 * The wrapper is always in the DOM (see booking-app.js) and animates
 * between a 0fr and 1fr grid row so expand/collapse has something to
 * transition smoothly instead of the content just popping in and out. */
.mwb-experience-card-content-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .32s cubic-bezier(.4, 0, .2, 1), opacity .22s ease;
}

.mwb-experience-card.expanded .mwb-experience-card-content-wrapper {
  grid-template-rows: 1fr;
  opacity: 1;
  transition: grid-template-rows .32s cubic-bezier(.4, 0, .2, 1), opacity .28s ease .05s;
}

.mwb-experience-card-content {
  min-height: 0;
  overflow: hidden;
}

.mwb-experience-card-content-inner {
  display: flex;
  flex-direction: column;
  padding: 10px 14px 14px;
  border-top: 1px solid var(--mwb-border-color, #eef2f7);
  margin-top: 4px;
}

.mwb-experience-card-notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  padding: 10px 12px;
  border: 1px solid #fde68a;
  border-radius: 10px;
  background: #fffbeb;
  color: #92400e;
  font-size: 12px;
  line-height: 1.5;
}

.mwb-experience-card-notice i {
  margin-top: 2px;
  color: #d97706;
  font-size: 12px;
}

.mwb-experience-card-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  flex: 1;
  min-width: 0;
}

.mwb-experience-card-heading h3 {
  margin: 0;
  font-size: 17px;
  color: var(--mwb-dark-color, #1a1d2b);
}

.mwb-experience-card-heading em {
  padding: 3px 8px;
  border-radius: 999px;
  background: #ffedd5;
  color: #c2410c;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.mwb-experience-card-subheading {
  flex-basis: 100%;
  margin: 0;
  font-size: 13px;
  color: #64748b;
}

.mwb-experience-card-summary {
  flex-basis: 100%;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
}

.mwb-experience-card.selected .mwb-experience-card-summary {
  color: var(--mwb-primary-color, #0084ff);
  font-weight: 600;
}

.mwb-experience-card-chevron {
  flex: 0 0 auto;
  color: #94a3b8;
  font-size: 14px;
  margin-left: auto;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1), color .2s ease;
}

.mwb-experience-card-chevron.is-expanded {
  transform: rotate(180deg);
  color: var(--mwb-primary-color, #0084ff);
}

.mwb-ticket-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
}

.mwb-ticket-line:last-child {
  border-bottom: none;
}

.mwb-ticket-line-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--mwb-primary-color, #0084ff);
  font-size: 14px;
}

.mwb-ticket-line-info {
  flex: 1;
  min-width: 0;
}

.mwb-ticket-line-info h4 {
  margin: 0 0 3px;
  font-size: 15px;
  font-weight: 700;
  color: var(--mwb-dark-color, #1a1d2b);
}

.mwb-ticket-line-info small {
  display: block;
  color: #64748b;
  font-size: 11px;
  margin-top: 2px;
}

.mwb-ticket-row-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}

.mwb-ticket-row-price strong {
  font-size: 20px;
  font-weight: 800;
  color: var(--mwb-dark-color, #1a1d2b);
  letter-spacing: -.2px;
}

.mwb-ticket-line.selected .mwb-ticket-row-price strong {
  color: var(--mwb-primary-color, #0084ff);
}

.mwb-ticket-row-price-original {
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 13px;
}

.mwb-ticket-row-discount-tag {
  padding: 2px 7px;
  border-radius: 999px;
  background: #dcfce7;
  color: #15803d;
  font-size: 11px;
  font-weight: 700;
}

.mwb-ticket-row-add-btn {
  flex: 0 0 auto;
  padding: 8px 20px;
  border: 1.5px solid var(--mwb-primary-color, #0084ff);
  border-radius: 999px;
  background: #fff;
  color: var(--mwb-primary-color, #0084ff);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.mwb-ticket-row-add-btn:hover:not(:disabled) {
  background: var(--mwb-primary-color, #0084ff);
  color: #fff;
}

.mwb-ticket-row-add-btn:disabled {
  border-color: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
}

.mwb-ticket-row-qty {
  flex: 0 0 auto;
}

.mwb-ticket-select-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-top: 1px solid var(--mwb-border-color, #dbe5f1);
  background: #fff;
}

.mwb-ticket-select-footer-total {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mwb-ticket-select-footer-total span {
  font-size: 20px;
  font-weight: 800;
  color: var(--mwb-dark-color, #1a1d2b);
  white-space: nowrap;
}

.mwb-ticket-select-footer-total small {
  color: #94a3b8;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mwb-ticket-select-footer-actions {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
}

@media (max-width: 900px) {
  .mwb-ticket-select-layout {
    grid-template-columns: 1fr;
  }

  .mwb-ticket-select-info {
    position: static;
  }

  .mwb-ticket-select-list {
    max-height: none;
    border: none;
    border-radius: 0;
  }

  .mwb-ticket-select-scroll {
    overflow: visible;
    padding: 0;
  }

  /* The list no longer scrolls internally on mobile (the whole page does
   * instead), so the "more below" hint has nothing meaningful to track. */
  .mwb-ticket-scroll-hint {
    display: none;
  }

  .mwb-ticket-select-footer {
    position: sticky;
    bottom: 0;
    z-index: 5;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    box-shadow: 0 -4px 16px rgba(15, 23, 42, .08);
    border-radius: 12px 12px 0 0;
  }

  .mwb-ticket-select-footer-total {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    width: 100%;
  }

  .mwb-ticket-select-footer-total small {
    flex: 1;
  }

  .mwb-ticket-select-footer-actions {
    width: 100%;
    flex-direction: column;
  }

  .mwb-ticket-select-footer-actions .mwb-secondary-btn,
  .mwb-ticket-select-footer-actions .mwb-primary-btn {
    width: 100%;
  }

  /* Primary action ("Confirm & Proceed") on top, Back below it */
  .mwb-ticket-select-footer-actions .mwb-primary-btn {
    order: -1;
  }
}

/* Location -> offers -> date */
.mwb-offer-selection {
  display: grid;
  grid-template-columns: minmax(300px, .95fr) minmax(340px, 1fr);
  gap: 36px;
  align-items: stretch;
}

.mwb-offer-intro,
.mwb-offer-options {
  border: 1px solid #dce4ed;
  border-radius: 24px;
  padding: 34px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(38, 64, 96, .07);
}

.mwb-offer-options {
  display: flex;
  flex-direction: column;
  max-height: min(720px, calc(100vh - 170px));
  min-height: 520px;
  overflow: hidden;
  background: #fff !important;
}

.mwb-offer-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.mwb-offer-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eaf7ff;
  color: #0b8edc;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.mwb-offer-intro h2 {
  color: #203049;
  text-align: left;
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 1.12;
  margin: 0 0 16px;
}

.mwb-offer-intro p {
  color: #6d7480;
  text-align: left;
  font-size: 14px;
  line-height: 1.62;
  margin: 0 0 8px;
}

.mwb-offer-list-heading {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 11px;
  border-radius: 999px;
  background: #eaf7ff;
  color: #203049;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.mwb-offer-card-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 4px 0 10px;
  margin-right: 0;
  background: #fff !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mwb-offer-card-scroll::-webkit-scrollbar {
  display: none;
}

.mwb-offer-choice {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  min-height: 118px;
  overflow: hidden;
  text-align: left;
  border: 0;
  border-radius: 14px;
  padding: 18px 58px 18px 22px;
  margin-bottom: 12px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 20%, rgba(255,255,255,.26), transparent 30%),
    linear-gradient(135deg,#24569f 0%,#21b5ea 100%);
  cursor: pointer;
  box-shadow: none;
  filter: none;
  transform: translateY(0);
  transition: transform .18s ease, filter .18s ease;
}

.mwb-offer-choice::before {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -46px;
  width: 122px;
  aspect-ratio: 1;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(114,91,213,.9) 0 18%, transparent 18% 36%, rgba(114,91,213,.9) 36% 54%, transparent 54% 72%, rgba(114,91,213,.9) 72% 90%, transparent 90%),
    linear-gradient(#efecff 0 0);
  box-shadow: 0 0 0 8px rgba(92,74,202,.7), inset 0 18px 0 rgba(255,255,255,.5);
  opacity: .14;
  transform: rotate(10deg);
}

.mwb-offer-choice-standard {
  background:
    radial-gradient(circle at 86% 36%, rgba(255,255,255,.5), transparent 30%),
    linear-gradient(135deg,#4439c9 0%,#b3a4f1 100%);
}

.mwb-offer-choice:hover {
  transform: translateY(-3px);
  filter: saturate(1.05) drop-shadow(0 8px 18px rgba(39, 88, 155, .1));
}

.mwb-offer-choice:active {
  transform: translateY(0);
}

.mwb-offer-choice.selected {
  filter: drop-shadow(0 8px 16px rgba(19, 46, 91, .14));
}

.mwb-offer-choice.selected:hover {
  filter: saturate(1.05) drop-shadow(0 8px 16px rgba(19, 46, 91, .14));
}

.mwb-offer-choice:focus-visible {
  outline: 3px solid rgba(0, 180, 255, .5);
  outline-offset: 4px;
}

.mwb-offer-selected-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: auto;
  height: auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #1d3354;
  font-size: 11px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: .02em;
  opacity: 0;
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(20, 43, 88, .16);
  transition: opacity .16s ease, transform .16s ease, box-shadow .16s ease;
}

.mwb-offer-selected-icon::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0b8edc;
}

.mwb-offer-choice.selected .mwb-offer-selected-icon {
  opacity: 1;
  transform: translateY(0);
}

.mwb-offer-choice strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: calc(100% - 42px);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.14;
}

.mwb-offer-choice span:not(.mwb-offer-badge):not(.mwb-offer-selected-icon):not(.mwb-offer-arrow),
.mwb-offer-choice small {
  position: relative;
  z-index: 1;
  font-size: 12px;
  line-height: 1.4;
  opacity: .94;
}

.mwb-offer-choice b {
  color: inherit;
  font-weight: 850;
}

.mwb-offer-arrow {
  position: absolute !important;
  top: 50%;
  right: 18px !important;
  left: auto !important;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  margin: 0;
  opacity: .9;
  transform: translateY(-50%);
  transition: background .18s ease, transform .18s ease, opacity .18s ease;
}

.mwb-offer-choice:hover .mwb-offer-arrow {
  background: rgba(255,255,255,.28);
  opacity: 1;
  transform: translate(2px, -50%);
}

.mwb-offer-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.mwb-offer-card-meta small {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
}

.mwb-offer-badge {
  align-self: flex-start;
  max-width: calc(100% - 42px);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: #164a83;
}

.mwb-offer-selected-summary,
.mwb-offer-notice {
  background: #f5fbff;
  border: 1px solid #cfe4f4;
  color: #203049;
  border-radius: 18px;
  padding: 20px;
  margin: 15px 0;
  box-shadow: 0 14px 34px rgba(35, 77, 118, .08);
}

.mwb-offer-summary-label {
  display: block;
  color: #0b8edc;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
}

.mwb-offer-selected-summary h3 {
  color: #203049;
  font-size: 18px;
  line-height: 1.2;
  margin: 0 0 8px;
}

.mwb-offer-selected-summary p {
  margin: 8px 0;
  font-size: 13px;
  line-height: 1.55;
}

.mwb-offer-summary-scope {
  display: inline-flex;
  margin: 4px 0 0 !important;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(11,142,220,.1);
  color: #0b6ba8;
  font-size: 12px;
  font-weight: 700;
}

.mwb-offer-summary-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.mwb-offer-summary-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  background: white;
  border: 1px solid #d9e9f5;
  color: #33445d;
  font-size: 13px;
  font-weight: 700;
}

.mwb-offer-summary-terms {
  color: #53616f;
  font-size: 14px;
}

.mwb-offer-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
  margin-top: 14px;
  color: #33445d;
}

.mwb-offer-check input {
  flex-shrink: 0;
  margin-top: 5px;
}

.mwb-offer-actions {
  position: sticky;
  bottom: 0;
  z-index: 3;
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: minmax(110px, .7fr) minmax(180px, 1.3fr);
  gap: 12px;
  margin: 14px -6px -6px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 -12px 24px rgba(245, 251, 255, .9), 0 14px 30px rgba(35, 77, 118, .08);
  backdrop-filter: blur(8px);
}

.mwb-offer-actions .mwb-primary-btn,
.mwb-offer-actions .mwb-secondary-btn {
  width: 100%;
  min-width: 0;
}

@media(max-width:768px){
  .mwb-offer-selection{grid-template-columns:1fr;gap:18px}
  .mwb-offer-intro,.mwb-offer-options{padding:18px}
  .mwb-offer-options{max-height:calc(100vh - 150px);min-height:430px}
  .mwb-offer-intro h2{font-size:24px}
  .mwb-offer-list-heading{font-size:12px;margin-bottom:10px}
  .mwb-offer-choice{min-height:112px;padding:16px 52px 16px 18px}
  .mwb-offer-choice strong{font-size:16px}
  .mwb-offer-choice span:not(.mwb-offer-badge):not(.mwb-offer-selected-icon),
  .mwb-offer-choice small{font-size:11px}
  .mwb-offer-actions{position:sticky;grid-template-columns:1fr;margin:12px -4px -4px}
}
