/* Layout */

/* Ensure body background doesn't interfere with blurred background on operator pages */
.single-ota_operator body,
.single-ota_operator #page,
.single-ota_operator .site {
  background: transparent !important;
}

.ota-container {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;

}

.ota-row {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/**
 * Single Operator Page Styles
 * Hero section with booking form and company information
 * CONDITIONAL: Only loaded on single ota_operator pages
 */

/* Hide default entry header on single operator pages */
.single-ota_operator .entry-header,
.single-ota_operator .entry-title {
  display: none !important;
}

/* Hero Section */
.ota-operator-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 60px 40px;
  margin-top: 0;
  margin-bottom: 0;
}

.ota-operator-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.ota-operator-hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.85) 40%,
      rgba(255, 255, 255, 0.3) 60%,
      transparent 100%);
  z-index: 1;
}

.ota-operator-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* Booking Form */
.ota-operator-booking-form {
  flex: 0 0 450px;
  background: rgb(var(--background));
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(var(--shadow));
}

.ota-operator-search-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.ota-operator-form-field {
  width: 100%;
  position: relative;
}

/* Swap button wrapper - positioned between origin and destination fields */
.ota-operator-swap-wrapper {
  position: absolute;
  right: 12px;
  top: calc(48px + 8px);
  /* Height of first field + half gap (16px / 2) */
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: auto;
}

.ota-operator-swap-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
  background: rgb(var(--primary));
  color: rgb(var(--background));
  box-shadow: 0 4px 12px rgba(var(--primary) / 0.4);
  border: 1px solid rgb(var(--primary));
}

.ota-operator-swap-btn:hover {
  background: rgb(var(--background)/0.2);
  color: rgb(var(--primary));
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: 0 2px 8px rgba(var(--primary) / 0.2);

  transform: scale(1.1);
}

.ota-operator-swap-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.ota-operator-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ota-operator-input-wrapper {
  position: relative;
  width: 100%;
  display: block;
}

.ota-operator-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: rgb(var(--primary));
}


.ota-operator-input-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  display: block;
  flex-shrink: 0;
}

.ota-operator-input {
  width: 100%;
  height: 48px;
  padding: 0 14px 0 42px;
  border: 1px solid rgb(var(--border));
  border-radius: 8px;
  background: rgb(var(--surface));
  color: rgb(var(--foreground));
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  display: block;
}

/* Ensure icons are visible for date and number inputs in form-row */
.ota-operator-form-row .ota-operator-input-icon {
  z-index: 3;
  visibility: visible;
  opacity: 1;
  left: auto;
  right: 14px;
}

/* Add right padding for first two fields (origin and destination) to make room for swap button */
.ota-operator-form-field:first-of-type .ota-operator-input,
.ota-operator-form-field:nth-of-type(2) .ota-operator-input {
  padding-right: 60px;
}

/* Custom dropdown arrow for select inputs */
.ota-operator-input-wrapper::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgb(var(--muted));
  pointer-events: none;
  z-index: 2;
}

/* Hide arrow for inputs in form-row (date and number inputs) */
.ota-operator-form-row .ota-operator-input-wrapper::after {
  display: none;
}

/* Adjust dropdown arrow position for first two fields (selects only) */
.ota-operator-form-field:first-of-type .ota-operator-input-wrapper::after,
.ota-operator-form-field:nth-of-type(2) .ota-operator-input-wrapper::after {
  right: 60px;
  /* Move arrow left to avoid swap button */
}

/* Date input - add right padding for calendar picker */
.ota-operator-input[type="date"] {
  padding-right: 42px;
  padding-left: 14px;
  color-scheme: light;
  text-align: left;
  position: relative;
}

/* Ensure date input text is visible and properly formatted */
.ota-operator-input[type="date"]::-webkit-datetime-edit {
  padding: 0;
  margin: 0;
}

.ota-operator-input[type="date"]::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

.ota-operator-input[type="date"]::-webkit-datetime-edit-text {
  padding: 0 2px;
}

/* Date input calendar picker - position on the right */
.ota-operator-input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  position: absolute;
  right: 42px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0.6;
  width: 20px;
  height: 20px;
  background: transparent;
}

.ota-operator-input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

/* Firefox date input */
.ota-operator-input[type="date"]::-moz-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
}

.ota-operator-input[type="date"]::-moz-calendar-picker-indicator:hover {
  opacity: 1;
}

/* Number input - ensure proper display */
.ota-operator-input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
  padding-right: 42px;
  padding-left: 14px;
  text-align: left;
}

/* Ensure number input value is visible */
.ota-operator-input[type="number"]::-webkit-textfield-decoration-container {
  display: none;
}

/* Number input spinner - hide default spinners */
.ota-operator-input[type="number"]::-webkit-inner-spin-button,
.ota-operator-input[type="number"]::-webkit-outer-spin-button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  display: none;
}

.ota-operator-input:focus {
  outline: none;
  border-color: rgb(var(--primary));
  background: rgb(var(--background));
  box-shadow: 0 0 0 3px rgba(var(--primary) / 0.1);
}

.ota-operator-input:focus+.ota-operator-input-icon,
.ota-operator-input-wrapper:focus-within .ota-operator-input-icon {
  color: rgb(var(--primary));
}

.ota-operator-submit-btn {
  width: 100%;
  height: 48px;
  padding: 0 24px;
  border: none;
  border-radius: 8px;
  background: rgb(var(--primary));
  color: rgb(var(--background));
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.ota-operator-submit-btn:hover {
  background: rgb(var(--secondary));
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(var(--primary) / 0.4);
}

.ota-operator-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.ota-operator-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: rgb(var(--primary));
}

.ota-operator-checkbox label {
  font-size: 14px;
  color: rgb(var(--foreground));
  cursor: pointer;
}

/* Company Information Section */
.ota-operator-info {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0px 0px 0px;
  background: rgb(var(--background));
}

.ota-operator-info-content {
  position: relative;
}

.ota-operator-title {
  font-size: 2rem;
  font-weight: 700;
  color: rgb(var(--foreground));
  margin: 0 0 16px;
  line-height: 1.3;
}

.ota-operator-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ota-operator-stars {
  display: flex;
  gap: 2px;
}

.ota-operator-stars .star {
  font-size: 20px;
  color: rgb(var(--muted));
}

.ota-operator-stars .star.filled {
  color: rgb(var(--primary));
}

.ota-operator-stars .star.half {
  color: rgb(var(--primary));
  opacity: 0.7;
}

.ota-operator-rating-text {
  font-size: 16px;
  font-weight: 600;
  color: rgb(var(--foreground));
}

.ota-operator-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgb(var(--muted));
  margin: 0 0 24px;
  max-width: 800px;
}

.ota-operator-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.ota-operator-contact-item {
  font-size: 15px;
  color: rgb(var(--foreground));
  line-height: 1.6;
}

.ota-operator-contact-item strong {
  font-weight: 600;
  color: rgb(var(--foreground));
}

.ota-operator-logo {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
}

.ota-operator-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsive Design */
@media (max-width: 968px) {
  .ota-operator-hero {
    min-height: auto;
    padding: 40px 20px;
  }

  .ota-operator-hero-content {
    flex-direction: column;
    gap: 24px;
  }

  .ota-operator-booking-form {
    flex: 1;
    width: 100%;
    max-width: 100%;
  }

  .ota-operator-info {
    padding: 24px 20px;
  }

  .ota-operator-logo {
    position: static;
    margin-top: 24px;
  }
}

@media (max-width: 640px) {
  .ota-operator-form-row {
    grid-template-columns: 1fr;
  }

  .ota-operator-title {
    font-size: 1.5rem;
  }
}

.ota-operator-landing {
  max-width: 1200px;
  margin: 0 auto;
}
/* FAQ Accordion - Operator page */
.ota-operator-faq {
  margin-top: 32px;
}
.ota-operator-faq-inner {
  background: rgb(var(--background));
  border-radius: 0;
  border: 1px solid rgb(var(--border));
  padding: 32px 32px 24px;
}
.ota-operator-faq-heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  color: rgb(var(--muted));
}
.ota-operator-faq-label {
  font-weight: 600;
}
.ota-operator-faq-title {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.ota-operator-faq-list {
  border-top: 1px solid rgb(var(--border));
}
.ota-operator-faq-item {
  border-bottom: 1px solid rgb(var(--border));
}
.ota-operator-faq-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: opacity 0.2s ease;
}
.ota-operator-faq-toggle:hover {
  opacity: 0.8;
}
.ota-operator-faq-number {
  font-size: 13px;
  font-weight: 500;
  color: rgb(var(--muted));
}
.ota-operator-faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ota-operator-faq-question {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: rgb(var(--foreground));
  transition: font-weight 0.25s ease;
}
.ota-operator-faq-icon {
  position: relative;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ota-operator-faq-icon-line {
  position: absolute;
  background: rgb(var(--foreground));
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.ota-operator-faq-icon-line-horizontal {
  width: 14px;
  height: 1px;
}
.ota-operator-faq-icon-line-vertical {
  width: 1px;
  height: 14px;
}
.ota-operator-faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
  padding: 0 0 0 60px;
}
.ota-operator-faq-answer-inner {
  font-size: 14px;
  line-height: 1.7;
  color: rgb(var(--muted));
}
/* Open state */
.ota-operator-faq-item.is-open .ota-operator-faq-icon-line-vertical {
  transform: rotate(90deg);
  opacity: 0;
}
.ota-operator-faq-item.is-open .ota-operator-faq-question {
  font-weight: 600;
}
.ota-operator-faq-item.is-open .ota-operator-faq-answer {
  max-height: 1000px;
  opacity: 1;
  padding: 0 0 16px 60px;
}
@media (max-width: 768px) {
  .ota-operator-faq-inner {
    padding: 24px 16px 16px;
  }
  .ota-operator-faq-toggle {
    grid-template-columns: 40px minmax(0, 1fr) 32px;
    gap: 12px;
  }
  .ota-operator-faq-answer {
    padding-left: 40px;
  }
  .ota-operator-faq-item.is-open .ota-operator-faq-answer {
    padding: 0 0 16px 40px;
  }
}

/* ======================================================================
 * New Traveloka-style Operator Layout
 * Scoped under .ota-operator-wrapper to avoid conflicts
 * Matches refactored operator-view.php markup
 * ==================================================================== */

.ota-operator-wrapper {
  /* OTA variables are now global in colors.css - can override here if needed */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ota-color-text);
  position: relative;
}

/* Blurred Background Image - Traveloka Style */
.ota-operator-wrapper .ota-operator-blur-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(40px);
  -webkit-filter: blur(40px);
  transform: scale(1.1);
  z-index: -1;
  opacity: 0.2;
  pointer-events: none;
  will-change: transform;
  backface-visibility: hidden;
}

/* Ensure content is above the blurred background */
.ota-operator-wrapper .ota-operator-inner {
  position: relative;
  z-index: 1;
}

.ota-operator-wrapper .ota-operator-inner {
  max-width: var(--ota-operator-max-width);
  margin: 0 auto 40px;
  padding: 16px 16px 40px;
  position: relative;
  z-index: 1;
}

/* HERO / GALLERY --------------------------------------------------------- */

.ota-operator-wrapper .ota-operator-hero {
  margin-bottom: 16px;
  position: static;
  width: 100%;
  margin-left: 0;
  min-height: auto;
  padding: 0;
}

.ota-operator-wrapper .ota-hero-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 500px;
}

.ota-operator-wrapper .ota-hero-gallery-item {
  overflow: hidden;
  border-radius: var(--ota-radius-lg);
  background: #e5e7eb;
  position: relative;
  width: 100%;
  height: 100%;
}

.ota-operator-wrapper .ota-hero-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ota-operator-wrapper .ota-hero-gallery-main {
  grid-row: 1 / 2;
  height: 100%;
}

.ota-operator-wrapper .ota-hero-gallery-item--main {
  height: 100%;
  width: 100%;
}

.ota-operator-wrapper .ota-hero-gallery-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 100%;
}

.ota-operator-wrapper .ota-hero-gallery-side-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  height: 100%;
}

.ota-operator-wrapper .ota-hero-gallery-side-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr ;
  gap: 8px;
  height: 100%;
}

.ota-operator-wrapper .ota-hero-gallery-item--has-button {
  position: relative;
}

.ota-operator-wrapper .ota-hero-gallery-view-more {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 8px;
  color: #111827;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.ota-operator-wrapper .ota-hero-gallery-view-more:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.ota-operator-wrapper .ota-hero-gallery-view-more:active {
  transform: translateY(0);
}

.ota-operator-wrapper .ota-hero-gallery-view-more svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.ota-operator-wrapper .ota-hero-gallery-view-more span {
  white-space: nowrap;
}

/* Modal Gallery Styles - Slider */
.ota-operator-modal-gallery {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--ota-radius-lg);
  background: #e5e7eb;
  max-height: 70vh;
  min-height: 400px;
}

.ota-operator-modal-gallery .ota-gallery-slider-track {
  display: flex;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  width: 100%;
}

.ota-operator-modal-gallery .ota-gallery-slider-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  display: block;
}

.ota-operator-modal-gallery .ota-gallery-slider-slide-item {
  width: 100%;
  height: 0;
  padding-bottom: 75%; /* 4:3 aspect ratio */
  position: relative;
  overflow: hidden;
  margin: 0;
}

.ota-operator-modal-gallery .ota-gallery-slider-slide-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #fff;
}

/* Modal Slider Navigation Arrows */
.ota-operator-modal-gallery .ota-gallery-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.ota-operator-modal-gallery .ota-gallery-slider-nav:hover {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%) scale(1.05);
}

.ota-operator-modal-gallery .ota-gallery-slider-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.ota-operator-modal-gallery .ota-gallery-slider-nav--prev {
  left: 16px;
}

.ota-operator-modal-gallery .ota-gallery-slider-nav--next {
  right: 16px;
}

.ota-operator-modal-gallery .ota-gallery-slider-nav svg {
  width: 24px;
  height: 24px;
  color: #111827;
  stroke: currentColor;
}

.ota-operator-modal-gallery .ota-gallery-slider-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* Modal Slider Dots Indicator */
.ota-operator-modal-gallery .ota-gallery-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.ota-operator-modal-gallery .ota-gallery-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.ota-operator-modal-gallery .ota-gallery-slider-dot.active {
  background: #ffffff;
  width: 24px;
  border-radius: 4px;
}

.ota-operator-modal-gallery .ota-gallery-slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Mobile Slider Styles */
/* CRITICAL: Don't use display:none - it prevents rendering and causes Render Delay */
/* Instead, render both desktop and mobile, then hide/show via media queries */
.ota-operator-wrapper .ota-hero-gallery--mobile {
  display: block;
  position: relative; /* Required for absolute positioning of view-more button */
  /* Initially visible on mobile, will be hidden on desktop via media query */
}

.ota-operator-wrapper .ota-hero-gallery-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--ota-radius-lg);
  background: #e5e7eb;
}

.ota-operator-wrapper .ota-hero-gallery-slider-track {
  display: flex;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  width: 100%;
}

.ota-operator-wrapper .ota-hero-gallery-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  display: block;
}

.ota-operator-wrapper .ota-hero-gallery-slide-item {
  width: 100%;
  height: 0;
  padding-bottom: 75%; /* 4:3 aspect ratio */
  position: relative;
  overflow: hidden;
  margin: 0;
}

.ota-operator-wrapper .ota-hero-gallery-slide-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Navigation Arrows */
.ota-operator-wrapper .ota-hero-gallery-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.ota-operator-wrapper .ota-hero-gallery-slider-nav:hover {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%) scale(1.05);
}

.ota-operator-wrapper .ota-hero-gallery-slider-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.ota-operator-wrapper .ota-hero-gallery-slider-nav--prev {
  left: 12px;
}

.ota-operator-wrapper .ota-hero-gallery-slider-nav--next {
  right: 12px;
}

.ota-operator-wrapper .ota-hero-gallery-slider-nav svg {
  width: 20px;
  height: 20px;
  color: #111827;
  stroke: currentColor;
}

.ota-operator-wrapper .ota-hero-gallery-slider-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* Dots Indicator */
.ota-operator-wrapper .ota-hero-gallery-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.ota-operator-wrapper .ota-hero-gallery-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.ota-operator-wrapper .ota-hero-gallery-slider-dot.active {
  background: #ffffff;
  width: 24px;
  border-radius: 4px;
}

.ota-operator-wrapper .ota-hero-gallery-slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* View More Button (Mobile) */
.ota-operator-wrapper .ota-hero-gallery-view-more-mobile {
  position: absolute;
  bottom: 50px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 8px;
  color: #111827;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.ota-operator-wrapper .ota-hero-gallery-view-more-mobile:hover {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.ota-operator-wrapper .ota-hero-gallery-view-more-mobile svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Desktop: Hide mobile, show desktop */
@media (min-width: 769px) {
  .ota-operator-wrapper .ota-hero-gallery--mobile {
    display: none !important;
  }
  
  .ota-operator-wrapper .ota-hero-gallery--desktop {
    display: grid !important;
  }
}

@media (max-width: 768px) {
  /* Hide desktop grid on mobile */
  .ota-operator-wrapper .ota-hero-gallery--desktop {
    display: none !important;
  }
  
  /* Show mobile slider on mobile (already visible by default) */
  .ota-operator-wrapper .ota-hero-gallery--mobile {
    display: block !important;
    width: 100%;
  }
  
  .ota-operator-wrapper .ota-hero-gallery-slide-item {
    padding-bottom: 70%; /* Slightly taller on mobile */
  }
  
  .ota-operator-wrapper .ota-hero-gallery-slider-nav {
    width: 40px;
    height: 40px;
  }
  
  .ota-operator-wrapper .ota-hero-gallery-slider-nav svg {
    width: 18px;
    height: 18px;
  }
  
  .ota-operator-modal-gallery {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .ota-operator-wrapper .ota-hero-gallery-side-bottom {
    grid-template-columns: 1fr;
  }
}

.ota-operator-wrapper .ota-hero-banner-figure {
  border-radius: var(--ota-radius-lg);
  overflow: hidden;
  background: #e5e7eb;
}

.ota-operator-wrapper .ota-hero-banner-figure img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* HEADER INFO ------------------------------------------------------------ */

.ota-operator-wrapper .ota-operator-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin: 20px 0 16px;
}

.ota-operator-wrapper .ota-operator-header-main {
  flex: 1 1 auto;
}

.ota-operator-wrapper .ota-operator-title {
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ota-color-text);
}

.ota-operator-wrapper .ota-operator-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ota-operator-wrapper .ota-operator-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.06);
  color: var(--ota-color-primary);
  font-size: 0.78rem;
  font-weight: 600;
}

.ota-operator-wrapper .ota-operator-header-meta {
  flex: 0 0 auto;
  text-align: right;
}

.ota-operator-wrapper .ota-operator-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.07);
}

.ota-operator-wrapper .ota-operator-stars {
  display: flex;
  gap: 2px;
  font-size: 0.9rem;
  color: #f59e0b;
}

.ota-operator-wrapper .ota-operator-stars .star {
  opacity: 0.4;
}

.ota-operator-wrapper .ota-operator-stars .star.filled,
.ota-operator-wrapper .ota-operator-stars .star.half {
  opacity: 1;
}

.ota-operator-wrapper .ota-operator-rating-text {
  font-size: 0.8rem;
  color: var(--ota-text-muted);
}

/* LAYOUT GRID ------------------------------------------------------------ */

.ota-operator-wrapper .ota-operator-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
  gap: var(--ota-gap-lg);
  align-items: flex-start;
  margin-top: 12px;
}

.ota-operator-wrapper .ota-operator-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ota-operator-wrapper .ota-operator-sidebar {
  position: relative;
}

.ota-operator-wrapper .ota-operator-booking-card {
  position: sticky;
  top: 20px;
  background: var(--ota-bg-surface);
  border-radius: 14px;
  border: var(--ota-border-subtle);
  box-shadow: var(--ota-shadow-soft);
  padding: 18px 18px 20px;
}

/* BOOKING CARD ----------------------------------------------------------- */

.ota-operator-wrapper .ota-operator-booking-card-header {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: baseline;
  margin-bottom: 12px;
}

.ota-operator-wrapper .ota-operator-booking-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.ota-operator-wrapper .ota-operator-booking-price {
  text-align: right;
}

.ota-operator-wrapper .ota-operator-booking-price-label {
  display: block;
  font-size: 0.72rem;
  color: var(--ota-text-muted);
}

.ota-operator-wrapper .ota-operator-booking-price-value {
  font-weight: 700;
  color: var(--ota-color-primary);
  font-size: 0.95rem;
}

/* Form inputs */
.ota-operator-wrapper .ota-operator-search-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ota-operator-wrapper .ota-operator-form-row {
  display: flex;
  gap: 8px;
}

.ota-operator-wrapper .ota-operator-form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ota-operator-wrapper .ota-operator-input-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ota-text-muted);
}

.ota-operator-wrapper .ota-operator-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.ota-operator-wrapper .ota-operator-input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  padding: 8px 12px 8px 34px;
  font-size: 0.85rem;
  color: var(--ota-color-text);
  background-color: #f9fafb;
  transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
  appearance: none;
}

.ota-operator-wrapper .ota-operator-input:focus {
  outline: none;
  border-color: var(--ota-color-primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.12);
}

.ota-operator-wrapper .ota-operator-input-icon {
  position: absolute;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}

.ota-operator-wrapper .ota-operator-input-icon .ota-icon-svg {
  width: 16px;
  height: 16px;
}

/* Swap button */
.ota-operator-wrapper .ota-operator-swap-wrapper {
  display: flex;
  justify-content: center;
}

.ota-operator-wrapper .ota-operator-swap-btn {
  border-radius: 999px;
  width: 32px;
  height: 32px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgb(var(--text-muted));
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.ota-operator-wrapper .ota-operator-swap-btn:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  transform: translateY(-1px);
}

/* Submit button */
.ota-operator-wrapper .ota-operator-submit-btn {
  margin-top: 6px;
  width: 100%;
  border-radius: 999px;
  border: none;
  padding: 10px 14px;
  background: var(--ota-color-primary);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.ota-operator-wrapper .ota-operator-submit-btn:hover {
  background: #1d4ed8;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.3);
  transform: translateY(-1px);
}

/* MAIN CONTENT SECTIONS -------------------------------------------------- */

.ota-operator-wrapper .ota-operator-tagline {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ota-text-muted);
}

.ota-operator-wrapper .ota-operator-section {
  padding: 14px 16px;
  border-radius: var(--ota-radius-md);
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.ota-operator-wrapper .ota-operator-section-title {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
}

.ota-operator-wrapper .ota-operator-description-wrapper {
  max-height: none;
}

.ota-operator-wrapper .ota-operator-description {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ota-text-muted);
}

/* Facts pills / amenities style */
.ota-operator-wrapper .ota-operator-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ota-operator-wrapper .ota-operator-fact-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.03);
  font-size: 0.78rem;
  color: var(--ota-text-muted);
}

/* Cards grid under contact section */
.ota-operator-wrapper .ota-operator-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.ota-operator-wrapper .ota-operator-card {
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 10px 12px;
  background: #ffffff;
}

.ota-operator-wrapper .ota-operator-card-title {
  margin: 0 0 8px;
  font-size: 0.86rem;
  font-weight: 700;
}

.ota-operator-wrapper .ota-operator-card-body {
  font-size: 0.85rem;
  color: var(--ota-text-muted);
}

.ota-operator-wrapper .ota-operator-card-note {
  margin-top: 4px;
  font-size: 0.78rem;
  color: #9ca3af;
}

.ota-operator-wrapper .ota-operator-logo img {
  max-width: 120px;
  height: auto;
  display: block;
}

/* Gallery grid inside content section */
.ota-operator-wrapper .ota-operator-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
}

.ota-operator-wrapper .ota-operator-gallery-item {
  border-radius: 10px;
  overflow: hidden;
  background: #e5e7eb;
}

.ota-operator-wrapper .ota-operator-gallery-item img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  display: block;
}

/* Routes list as cards --------------------------------------------------- */

.ota-operator-wrapper .ota-operator-routes-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ota-operator-wrapper .ota-operator-route-overview {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(248, 250, 252, 0.95);
  margin-bottom: 10px;
}

.ota-operator-wrapper .ota-operator-route-overview-item {
  padding: 8px 10px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.15);
}

.ota-operator-wrapper .ota-operator-route-overview-label {
  font-size: 0.72rem;
  color: rgba(15, 23, 42, 0.7);
  font-weight: 600;
  margin-bottom: 4px;
}

.ota-operator-wrapper .ota-operator-route-overview-value {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ota-color-text);
  line-height: 1.2;
}

.ota-operator-wrapper .ota-operator-routes-list--bookaway {
  gap: 10px;
}

.ota-operator-wrapper .ota-operator-route-card {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: #ffffff;
  overflow: hidden;
  transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.ota-operator-wrapper .ota-operator-route-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 14px 30px rgba(148, 163, 184, 0.25);
  transform: translateY(-1px);
}

.ota-operator-wrapper .ota-operator-route-card-link {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px;
  text-decoration: none;
  color: inherit;
}

.ota-operator-wrapper .ota-operator-route-card-main {
  min-width: 0;
  flex: 1 1 auto;
}

.ota-operator-wrapper .ota-operator-route-card-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--ota-color-text);
}

.ota-operator-wrapper .ota-operator-route-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: rgba(15, 23, 42, 0.65);
  font-size: 0.82rem;
}

.ota-operator-wrapper .ota-operator-route-card-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.035);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.ota-operator-wrapper .ota-operator-route-card-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ota-operator-wrapper .ota-operator-route-card-tag {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.06);
  color: var(--ota-color-primary);
}

.ota-operator-wrapper .ota-operator-route-card-side {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  min-width: 140px;
}

.ota-operator-wrapper .ota-operator-route-card-price-label {
  font-size: 0.72rem;
  color: rgba(15, 23, 42, 0.65);
  font-weight: 600;
}

.ota-operator-wrapper .ota-operator-route-card-price-value {
  font-size: 1rem;
  font-weight: 900;
  color: var(--ota-color-primary);
}

.ota-operator-wrapper .ota-operator-route-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--ota-color-primary);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.ota-operator-wrapper .ota-operator-route-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease, background 0.15s ease;
}

.ota-operator-wrapper .ota-operator-route-item:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 10px 22px rgba(148, 163, 184, 0.28);
  transform: translateY(-1px);
  background: #ffffff;
}

.ota-operator-wrapper .ota-operator-route-main {
  min-width: 0;
}

.ota-operator-wrapper .ota-operator-route-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.ota-operator-wrapper .ota-operator-route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--ota-text-muted);
}

.ota-operator-wrapper .ota-operator-route-meta-item::before {
  content: "• ";
}

.ota-operator-wrapper .ota-operator-route-price {
  text-align: right;
}

.ota-operator-wrapper .ota-operator-route-price-label {
  display: block;
  font-size: 0.72rem;
  color: var(--ota-text-muted);
}

.ota-operator-wrapper .ota-operator-route-price-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ota-color-primary);
}

.ota-operator-wrapper .ota-operator-routes-footer {
  margin-top: 10px;
}

.ota-operator-wrapper .ota-operator-routes-link {
  font-size: 0.85rem;
  color: var(--ota-color-primary);
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 960px) {
  .ota-operator-wrapper .ota-operator-route-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ota-operator-wrapper .ota-operator-route-card-link {
    flex-direction: column;
    align-items: stretch;
  }

  .ota-operator-wrapper .ota-operator-route-card-side {
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    min-width: 0;
  }
}

/* FAQ accordion (scoped) ------------------------------------------------- */

.ota-operator-wrapper .ota-operator-section--faq {
  padding: 0;
  border: none;
  background: transparent;
}

.ota-operator-wrapper .ota-operator-faq-inner {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: #ffffff;
  padding: 14px 16px;
}

.ota-operator-wrapper .ota-operator-faq-heading {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.ota-operator-wrapper .ota-operator-faq-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ota-color-primary);
  font-weight: 700;
}

.ota-operator-wrapper .ota-operator-faq-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.ota-operator-wrapper .ota-operator-faq-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ota-operator-wrapper .ota-operator-faq-item {
  border-radius: 10px;
  border: 1px solid transparent;
  background: #f9fafb;
  overflow: hidden;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.ota-operator-wrapper .ota-operator-faq-item.is-open {
  border-color: rgba(37, 99, 235, 0.4);
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(148, 163, 184, 0.25);
}

.ota-operator-wrapper .ota-operator-faq-toggle {
  width: 100%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  cursor: pointer;
}

.ota-operator-wrapper .ota-operator-faq-number {
  font-size: 0.78rem;
  font-weight: 700;
  color: #9ca3af;
}

.ota-operator-wrapper .ota-operator-faq-summary {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ota-operator-wrapper .ota-operator-faq-question {
  margin: 0;
  font-size: 0.9rem;
  text-align: left;
}

.ota-operator-wrapper .ota-operator-faq-icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 auto;
}

.ota-operator-wrapper .ota-operator-faq-icon-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: #9ca3af;
  transform: translate(-50%, -50%);
}

.ota-operator-wrapper .ota-operator-faq-icon-line-vertical {
  transform: translate(-50%, -50%) rotate(90deg);
}

.ota-operator-wrapper .ota-operator-faq-item.is-open .ota-operator-faq-icon-line-vertical {
  opacity: 0;
}

.ota-operator-wrapper .ota-operator-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.18s ease;
}

.ota-operator-wrapper .ota-operator-faq-item.is-open .ota-operator-faq-answer {
  max-height: 300px;
}

.ota-operator-wrapper .ota-operator-faq-answer-inner {
  padding: 0 12px 10px 40px;
  font-size: 0.85rem;
  color: var(--ota-text-muted);
}

/* MOBILE CTA ------------------------------------------------------------- */

.ota-operator-wrapper .ota-operator-mobile-cta {
  display: none;
}

/* RESPONSIVE ------------------------------------------------------------- */

@media (max-width: 960px) {
  .ota-operator-wrapper .ota-hero-gallery {
    grid-template-columns: 1fr;
  }

  .ota-operator-wrapper .ota-hero-gallery-main {
    min-height: 220px;
  }

  .ota-operator-wrapper .ota-hero-gallery-side {
    grid-template-rows: 1fr;
    grid-auto-rows: 1fr;
  }

  .ota-operator-wrapper .ota-operator-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .ota-operator-wrapper .ota-operator-header-meta {
    text-align: left;
  }

  .ota-operator-wrapper .ota-operator-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  /* Sidebar card becomes normal (non-sticky) and mobile CTA appears */
  .ota-operator-wrapper .ota-operator-booking-card {
    position: static;
    margin-top: 8px;
  }

  .ota-operator-wrapper .ota-operator-mobile-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    padding: 8px 12px;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
  }

  .ota-operator-wrapper .ota-operator-mobile-cta-inner {
    max-width: var(--ota-operator-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .ota-operator-wrapper .ota-operator-mobile-cta-price-label {
    display: block;
    font-size: 0.7rem;
    color: #e5e7eb;
  }

  .ota-operator-wrapper .ota-operator-mobile-cta-price-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
  }

  .ota-operator-wrapper .ota-operator-mobile-cta-button {
    flex: 1;
    border-radius: 999px;
    border: none;
    padding: 9px 12px;
    background: var(--ota-color-primary);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
  }

  .ota-operator-wrapper .ota-operator-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ota-operator-wrapper .ota-operator-inner {
    padding-inline: 12px;
  }

  .ota-operator-wrapper .ota-operator-card-grid {
    grid-template-columns: 1fr;
  }

  .ota-operator-wrapper .ota-operator-section {
    padding: 12px 12px;
  }
}

@media (max-width: 768px) {
  /* Performance optimization: Hide heavy blur background on mobile */
  .ota-operator-wrapper .ota-operator-blur-background {
    display: none !important;
  }
}