/* Aris Water Sports — booking engine (Travelotopos / Popeye layout, blue theme) */
.page-booking-engine {
  --be-accent: #29b6f6;
  --be-accent-dark: #0d47a1;
  --be-accent-mid: #1976d2;
  --be-header: linear-gradient(180deg, #1e88e5 0%, #1565c0 55%, #0d47a1 100%);
  --be-panel: #e9f6fc;
  --be-slot-bg: #ffffff;
  --be-text: #0a2a43;
  --be-muted: #486581;
  --be-border: #0d47a1;
  --be-available: #c8e6c9;
  --be-font-display: "Bangers", "Bebas Neue", system-ui, sans-serif;
  --be-font-body: "DM Sans", system-ui, sans-serif;
  margin: 0;
  min-height: 100vh;
  background: var(--be-panel);
  color: var(--be-text);
  font-family: var(--be-font-body);
}

.page-booking-engine .site-header,
.page-booking-engine .site-footer,
.page-booking-engine .booking-page-hero,
.page-booking-engine .happy-hour {
  display: none !important;
}

.be {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.be-header {
  background: var(--be-header);
  color: #fff;
  box-shadow: 0 4px 24px rgba(13, 71, 161, 0.35);
}

.be-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem clamp(0.75rem, 3vw, 1.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
}

.be-header__logo img {
  display: block;
  height: clamp(32px, 6vw, 42px);
  width: auto;
  max-width: min(240px, 50vw);
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.be-header__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem 1.25rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-weight: 600;
}

.be-header__cart {
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.be-header__back {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.be-header__back:hover {
  text-decoration: underline;
}

.be-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(0.75rem, 3vw, 1.5rem) 1rem;
  flex-wrap: wrap;
}

.be-pick-date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: var(--be-font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.be-pick-date svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.be-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: #0a2a43;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: default;
}

.be-main {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(260px, 300px) 1fr;
  gap: 0;
  align-items: start;
}

@media (max-width: 900px) {
  .be-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .be--calendar-collapsible .be-sidebar {
    position: static;
    top: auto;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border-right: 0;
    border-bottom: 0;
    transition: max-height 0.25s ease, padding 0.25s ease, border-color 0.25s ease;
  }

  .be--calendar-collapsible.be--calendar-open .be-sidebar {
    max-height: 430px;
    overflow: auto;
    padding: 0.85rem;
    border-bottom: 2px solid rgba(13, 71, 161, 0.18);
  }
}

.be-sidebar {
  background: #fff;
  border-right: 2px solid rgba(13, 71, 161, 0.12);
  padding: 1rem 0.85rem 1.5rem;
  position: sticky;
  top: 0;
  max-height: 100vh;
  overflow: auto;
}

.be-cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.be-cal__month {
  font-family: var(--be-font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--be-accent-dark);
}

.be-cal__nav {
  display: flex;
  gap: 0.35rem;
}

.be-cal__nav button {
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--be-accent-dark);
  background: #fff;
  color: var(--be-accent-dark);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
}

.be-cal__nav button:hover {
  background: var(--be-accent);
  color: #fff;
  border-color: var(--be-accent);
}

.be-cal__weekdays,
.be-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  text-align: center;
  font-size: 0.78rem;
}

.be-cal__weekdays span {
  font-weight: 700;
  color: var(--be-muted);
  padding: 0.25rem 0;
}

.be-cal__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 6px;
  background: #f0f7fc;
  color: var(--be-text);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.be-cal__day--muted {
  opacity: 0.35;
  pointer-events: none;
}

.be-cal__day--past {
  opacity: 0.4;
  pointer-events: none;
  text-decoration: line-through;
}

.be-cal__day--available {
  background: var(--be-available);
}

.be-cal__day--selected {
  background: var(--be-accent-dark);
  color: #fff;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--be-accent-mid);
}

.be-catalog {
  padding: 0.75rem clamp(0.5rem, 2vw, 1.25rem) 2rem;
  min-width: 0;
}

#be-activities {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.be-banner {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 600;
}

.be-banner--error {
  background: #ffebee;
  color: #b71c1c;
  border: 1px solid #ef9a9a;
}

.be-banner--warn {
  background: #fff8e1;
  color: #e65100;
  border: 1px solid #ffcc80;
}

.be-cart-panel {
  margin: 0.65rem 1rem 0;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(13, 71, 161, 0.2);
  background: #ffffff;
}

.be-cart-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}

.be-cart-panel__head h3 {
  margin: 0;
  color: var(--be-accent-dark);
  font-family: var(--be-font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.be-cart-panel__empty {
  margin: 0;
  color: var(--be-muted);
  font-size: 0.9rem;
}

.be-cart-items {
  display: grid;
  gap: 0.45rem;
}

.be-cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 0.65rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(13, 71, 161, 0.18);
  border-radius: 8px;
  background: #f8fbff;
}

.be-cart-item__title {
  margin: 0;
  font-weight: 700;
  color: var(--be-accent-dark);
}

.be-cart-item__meta {
  margin: 0;
  font-size: 0.83rem;
  color: var(--be-muted);
}

.be-cart-item__price {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.be-cart-item__timer {
  margin: 0;
  font-size: 0.78rem;
  color: #c62828;
  font-weight: 700;
}

.be-cart-item__remove {
  align-self: start;
  border: 1px solid #c62828;
  border-radius: 6px;
  background: #fff;
  color: #c62828;
  padding: 0.2rem 0.45rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.75rem;
}

.be-cart-panel__actions {
  margin-top: 0.65rem;
  display: flex;
  justify-content: flex-end;
}

/* Override styles.css `section { padding: clamp(3rem, 8vw, 5rem) 0 }` on activity rows */
.be-catalog .be-activity,
#be-activities .be-activity {
  padding: 0;
  margin: 0;
}

.be-activity {
  border: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.be-activity__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0.85rem;
  border: 2px solid var(--be-border);
  border-radius: 4px;
  background: linear-gradient(90deg, #42a5f5 0%, #1e88e5 50%, #1565c0 100%);
  color: #fff;
  cursor: pointer;
  text-align: left;
  font-family: var(--be-font-display);
  font-size: clamp(1.2rem, 3.2vw, 1.65rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.be-activity--open {
  margin-bottom: 0.35rem;
  border: 2px solid var(--be-border);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px rgba(13, 71, 161, 0.08);
}

.be-activity--open .be-activity__head {
  border: none;
  border-radius: 0;
  padding: 0.75rem 1rem;
}

.be-activity__head:hover {
  filter: brightness(1.05);
}

.be-activity__chev {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s ease;
}

.be-activity--open .be-activity__chev {
  transform: rotate(180deg);
}

.be-activity__body {
  display: none;
  padding: 0;
  margin: 0;
  background: var(--be-panel);
}

.be-activity:not(.be-activity--open) .be-activity__body {
  display: none !important;
  height: 0;
  max-height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border: 0;
  visibility: hidden;
}

.be-activity--open .be-activity__body {
  display: block;
}

.be-slots:empty {
  display: none;
  border: 0;
  min-height: 0;
}

.be-slots-empty {
  margin: 0;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  color: var(--be-muted);
  text-align: center;
  background: rgba(255, 255, 255, 0.55);
}

.be-slots-loading {
  padding: 1.25rem;
  text-align: center;
  color: #0a2a43;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: #ffffff;
  border: 1px solid rgba(13, 71, 161, 0.2);
  border-radius: 8px;
  margin: 0.35rem 0 0.75rem;
}

.be-option-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(13, 71, 161, 0.12);
  background: rgba(255, 255, 255, 0.5);
}

.be-option-picker__title {
  flex: 1 1 100%;
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--be-accent-dark);
}

.be-option-picker__note,
.be-option-picker__fixed {
  flex: 1 1 100%;
  margin: 0 0 0.35rem;
  font-size: 0.85rem;
  color: #444;
}

.be-option-btn {
  border: 1px solid var(--be-border);
  background: #fff;
  color: var(--be-accent-dark);
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.be-option-btn:hover {
  background: #e3f2fd;
}

.be-option-btn--active {
  background: var(--be-accent);
  border-color: var(--be-accent-dark);
  color: #fff;
}

.be-info-panel {
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, #00b4e6 0%, #0099d6 100%);
  color: #fff;
  border-bottom: 1px solid rgba(13, 71, 161, 0.15);
  font-size: 0.92rem;
  line-height: 1.55;
}

.be-info-panel__lead {
  margin: 0 0 0.65rem;
  font-weight: 600;
}

.be-info-panel__list,
.be-info-panel__prices {
  margin: 0.35rem 0 0.85rem;
  padding-left: 1.2rem;
}

.be-info-panel__prices li {
  margin: 0.2rem 0;
  font-weight: 600;
}

.be-info-panel__rule {
  border: none;
  border-top: 1px dashed rgba(255, 255, 255, 0.55);
  margin: 0.75rem 0;
}

.be-info-panel__note {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  opacity: 0.95;
}

.be-info-panel__notice {
  margin: 0.85rem 0 0.35rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.18);
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
}

.be-info-panel__contact {
  margin: 0.5rem 0 0;
}

.be-info-panel__contact a {
  color: #fff;
  font-weight: 700;
}

.be-date-only-hint {
  flex: 1 1 100%;
  margin: 0 0 0.5rem;
  padding: 0.5rem 0.65rem;
  font-size: 0.85rem;
  color: var(--be-muted);
  background: rgba(255, 255, 255, 0.65);
  border-radius: 8px;
}

.be-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(13, 71, 161, 0.15);
}

.be-slot--day {
  grid-column: 1 / -1;
  min-height: 72px;
}

.be-slot:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.be-slot--unavailable:disabled {
  opacity: 1;
  cursor: not-allowed;
  background: repeating-linear-gradient(
    -45deg,
    #eef3f8,
    #eef3f8 8px,
    #e5ecf3 8px,
    #e5ecf3 16px
  );
}

.be-slot--unavailable .be-slot__time {
  color: #6d7f94;
  text-decoration: line-through;
}

.be-slot--unavailable .be-slot__price,
.be-slot--unavailable .be-slot__price-was {
  color: #7a8ea4;
}

.be-slot--unavailable .be-slot__cta {
  color: #b23a48;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.be-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 0.65rem 0.5rem;
  border: 1px solid var(--be-border);
  margin: -1px 0 0 -1px;
  background: var(--be-slot-bg);
  text-align: center;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.be-slot:hover {
  background: #e3f2fd;
  z-index: 1;
}

.be-slot__time {
  font-family: var(--be-font-display);
  font-size: 1.65rem;
  color: var(--be-accent-dark);
  letter-spacing: 0.04em;
  line-height: 1;
}

.be-slot__price {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--be-accent-mid);
  margin: 0.2rem 0;
  text-transform: uppercase;
}

.be-slot__cta {
  font-family: var(--be-font-display);
  font-size: 1.1rem;
  color: var(--be-accent-dark);
  letter-spacing: 0.05em;
}

.be-activity-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-top: 2px solid var(--be-border);
}

@media (max-width: 700px) {
  .be-activity-detail {
    grid-template-columns: 1fr;
  }
}

.be-activity-gallery {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  gap: 3px;
  width: fit-content;
  max-width: 100%;
  align-self: start;
  justify-self: start;
}

.be-activity-gallery img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.be-activity-gallery__main {
  grid-row: 1 / 3;
  align-self: center;
}

.be-activity-gallery--single {
  grid-template-columns: auto;
  grid-template-rows: auto;
  max-width: min(100%, 380px);
  justify-self: center;
}

.be-activity-gallery--single .be-activity-gallery__single {
  max-height: min(280px, 42vh);
  max-width: 100%;
  width: auto;
  height: auto;
  margin: 0 auto;
}

.be-activity-gallery--portrait {
  grid-template-columns: auto auto;
  grid-template-rows: auto;
  align-items: center;
}

.be-activity-gallery--portrait .be-activity-gallery__portrait--secondary {
  align-self: center;
}

.be-activity-tabs {
  padding: 0;
  background: #fff;
}

.be-activity-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--be-border);
}

.be-activity-tabs__btn {
  flex: 1 1 auto;
  min-width: 120px;
  padding: 0.65rem 0.5rem;
  border: none;
  background: #fff;
  color: var(--be-text);
  font-family: var(--be-font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-transform: uppercase;
}

.be-activity-tabs__btn--active {
  background: linear-gradient(180deg, #42a5f5 0%, #1e88e5 100%);
  color: #fff;
}

.be-activity-tabs__panel {
  display: none;
  padding: 1rem 1.1rem;
  font-size: 0.92rem;
  line-height: 1.55;
}

.be-activity-tabs__panel--active {
  display: block;
}

.be-activity-tabs__panel ul {
  margin: 0;
  padding-left: 1.1rem;
}

.be-footer {
  background: var(--be-header);
  color: #fff;
  padding: 1rem clamp(0.75rem, 3vw, 1.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
}

.be-footer a {
  color: #fff;
  font-weight: 600;
}

.be-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.be-footer__phones {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
}

/* Checkout modal */
.be-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(6, 24, 36, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.be-modal-overlay[hidden] {
  display: none !important;
}

.be-modal {
  width: min(520px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: 12px;
  border: 3px solid var(--be-accent-dark);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.be-modal__head {
  padding: 1rem 1.25rem;
  background: var(--be-header);
  color: #fff;
}

.be-modal__head h2 {
  margin: 0;
  font-family: var(--be-font-display);
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.be-modal__body {
  padding: 1.25rem;
}

.be-modal__summary {
  background: var(--be-panel);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  border: 1px solid rgba(13, 71, 161, 0.15);
}

.be-hold-timer {
  margin: -0.5rem 0 0.8rem;
  padding: 0.45rem 0.6rem;
  border-radius: 6px;
  background: #fff8e1;
  border: 1px solid #ffcc80;
  color: #7a4f00;
  font-size: 0.85rem;
  font-weight: 700;
}

.be-form-group {
  margin-bottom: 0.85rem;
}

.be-form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.be-form-group input,
.be-form-group select,
.be-form-group textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 2px solid rgba(13, 71, 161, 0.25);
  border-radius: 6px;
  font: inherit;
  box-sizing: border-box;
}

.be-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.be-participants-note {
  margin: -0.35rem 0 0.75rem;
  font-size: 0.82rem;
  color: var(--be-muted);
}

.be-arrival-alert {
  margin: 0.5rem 0 0.85rem;
  padding: 0.75rem 0.9rem;
  border: 2px solid #f59e0b;
  border-radius: 8px;
  background: #fff7e6;
  color: #8a4b00;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.be-arrival-alert a {
  color: inherit;
  text-decoration: underline;
}

.be-form-group--phone {
  margin-bottom: 0.85rem;
}

.be-transfer {
  background: #f8fdff;
  border: 1px solid rgba(13, 71, 161, 0.2);
  border-radius: 8px;
  padding: 0.75rem;
}

.be-form-group .be-transfer__toggle {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
}

.be-transfer__toggle input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.be-transfer__hint {
  margin: 0 0 0.65rem;
  color: var(--be-muted);
  font-size: 0.82rem;
}

.be-transfer__pickup {
  margin-bottom: 0.55rem;
  color: var(--be-accent-dark);
  font-weight: 700;
}

.be-transfer__pickup a {
  color: inherit;
  text-decoration: underline;
}

#be-transfer-fields label {
  margin-top: 0.45rem;
}

.be-parasailing {
  background: #f8fdff;
  border: 1px solid rgba(13, 71, 161, 0.2);
  border-radius: 8px;
  padding: 0.75rem;
}

.be-para-passenger {
  margin-top: 0.55rem;
  padding-top: 0.55rem;
  border-top: 1px dashed rgba(13, 71, 161, 0.2);
}

.be-para-passenger__title {
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
}

.be-parasailing-booking-note {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-radius: 0;
  background: #fff3cd;
  border: 1px solid #f5c26b;
  color: #7a4f00;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.be-day-closure-note {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-radius: 0;
  background: #ffebee;
  border: 1px solid #ef9a9a;
  color: #8e1d1d;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.be-phone-input {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 2px solid rgba(13, 71, 161, 0.25);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.be-phone-input:focus-within {
  border-color: var(--be-accent-mid);
  box-shadow: 0 0 0 2px rgba(41, 182, 246, 0.25);
}

.be-phone-input__country {
  flex: 0 0 min(42%, 11.5rem);
  max-width: 11.5rem;
  min-width: 7.5rem;
  padding: 0.5rem 1.75rem 0.5rem 0.45rem;
  border: none;
  border-right: 2px solid rgba(13, 71, 161, 0.15);
  border-radius: 0;
  font: inherit;
  font-size: 0.8rem;
  background: #f5fbff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230d47a1' d='M1 1l5 5 5-5'/%3E%3C/svg%3E")
    no-repeat right 0.45rem center;
  appearance: none;
  cursor: pointer;
}

.be-phone-input__number {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.55rem 0.65rem;
  border: none;
  border-radius: 0;
  font: inherit;
  box-sizing: border-box;
}

.be-phone-input__number:focus {
  outline: none;
}

.be-discount__row {
  display: flex;
  align-items: stretch;
  gap: 0.4rem;
}

.be-discount .be-discount__row input[type="text"] {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  margin: 0;
}

.be-btn--discount {
  flex-shrink: 0;
  font-family: var(--be-font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 2px solid #f9a825;
  background: #ffca28;
  color: #3e2723;
  cursor: pointer;
  text-transform: uppercase;
}

.be-btn--discount:hover {
  background: #ffd54f;
}

.be-btn--discount:disabled {
  opacity: 0.65;
  cursor: wait;
}

.be-discount__clear {
  flex-shrink: 0;
  width: 2.35rem;
  border: 2px solid #c62828;
  background: #fff;
  color: #c62828;
  border-radius: 6px;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.be-discount__clear:hover {
  background: #ffebee;
}

.be-discount__msg {
  margin: 0.45rem 0 0;
  font-size: 0.85rem;
  font-weight: 600;
}

.be-discount__msg--ok {
  color: #2e7d32;
}

.be-discount__msg--error {
  color: #c62828;
}

.be-discount__msg--loading {
  color: var(--be-muted);
}

.be-price-was {
  text-decoration: line-through;
  color: var(--be-muted);
  font-weight: 600;
  margin-right: 0.35rem;
}

.be-price-now {
  color: var(--be-accent-dark);
  font-size: 1.1em;
}

.be-happy-tag,
.be-discount-tag {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.be-happy-tag {
  background: #fff3e0;
  color: #e65100;
  border: 1px solid #ffcc80;
}

.be-discount-tag {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.be-slot--happy {
  background: #fff8e1;
}

.be-slot__happy {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #e65100;
  margin: 0.15rem 0 0.1rem;
}

.be-slot__price-was {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--be-muted);
  text-decoration: line-through;
  margin-right: 0.2rem;
}

.be-cancel-policy {
  margin: 1rem 0 0.85rem;
  padding: 0.85rem 1rem;
  background: #f5fbff;
  border: 2px solid rgba(13, 71, 161, 0.18);
  border-radius: 8px;
}

.be-cancel-policy__title {
  margin: 0 0 0.4rem;
  font-family: var(--be-font-display);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--be-accent-dark);
}

.be-cancel-policy__text {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--be-text);
}

.be-cancel-policy__accept {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  color: var(--be-text);
}

.be-cancel-policy__accept input {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  accent-color: var(--be-accent-mid);
  cursor: pointer;
}

.be-cancel-policy--error {
  border-color: #c62828;
  background: #ffebee;
}

.be-cancel-policy--error .be-cancel-policy__title {
  color: #b71c1c;
}

.be-pay-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0 0 1rem;
}

.be-pay-option {
  display: flex;
  gap: 0.65rem;
  padding: 0.75rem;
  border: 2px solid rgba(13, 71, 161, 0.2);
  border-radius: 8px;
  cursor: pointer;
}

.be-pay-option:has(input:checked) {
  border-color: var(--be-accent-mid);
  background: #e3f2fd;
}

.be-modal__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  padding: 0 1.25rem 1.25rem;
}

.be-btn {
  font-family: var(--be-font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-transform: uppercase;
}

.be-btn--primary {
  background: linear-gradient(180deg, #42a5f5 0%, #1565c0 100%);
  color: #fff;
  border-color: #0d47a1;
}

.be-btn--outline {
  background: #fff;
  color: var(--be-accent-dark);
  border-color: var(--be-accent-dark);
}

.be-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.be-success-panel {
  margin: 2rem auto;
  max-width: 520px;
  padding: 2rem;
  text-align: center;
  background: #fff;
  border: 3px solid var(--be-accent-mid);
  border-radius: 12px;
}

.be-success-panel[hidden] {
  display: none !important;
}

.be-note {
  margin: 0.8rem 0 1rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid #8fb0d8;
  border-radius: 8px;
  background: #eef5ff;
  color: #153a64;
  font-size: 0.95rem;
}

.be-success-details {
  margin: 1rem 0 1.25rem;
  padding: 0.9rem 1rem;
  text-align: left;
  border: 1px solid var(--be-border);
  border-radius: 10px;
  background: #f8fbff;
}

.be-success-details__row {
  margin: 0.2rem 0;
  font-size: 0.95rem;
  color: var(--be-accent-dark);
}

.be-success-details__label {
  font-weight: 700;
}

#lang-switcher.be-lang {
  position: relative;
  z-index: 300;
}

#lang-switcher.be-lang .lang-switcher__panel {
  z-index: 301;
}

#lang-switcher.be-lang .lang-switcher__btn {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

@media (max-width: 1024px) {
  .be-slots {
    grid-template-columns: repeat(auto-fill, minmax(115px, 1fr));
  }

  .be-slot {
    min-height: 74px;
    padding: 0.45rem 0.35rem;
  }

  .be-slot__time {
    font-size: 1.35rem;
  }

  .be-slot__cta {
    font-size: 0.95rem;
  }
}

@media (max-width: 700px) {
  .be-slots {
    grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  }

  .be-slot {
    min-height: 64px;
    padding: 0.35rem 0.25rem;
  }

  .be-slot__time {
    font-size: 1.1rem;
  }

  .be-slot__price,
  .be-slot__price-was {
    font-size: 0.62rem;
  }

  .be-slot__cta {
    font-size: 0.8rem;
  }

  .be-slot__happy {
    font-size: 0.55rem;
  }

  .be-parasailing-booking-note {
    font-size: 0.8rem;
    padding: 0.6rem 0.55rem;
  }
}
