/* =============================================================================
   One Elite Hotel API — style.css
   Design: Warm travel editorial · Bridge-inspired
   v0.4.0 · 2026
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');

/* ─── 1. THEME OVERRIDES (WordPress page fixes) ─────────────────────────────── */

body.page-id-704 .content_inner                                    { overflow: visible; }
body.page-id-704 .default_template_holder.page_container_inner     { padding-top: 0; }
body.page-id-704 .default_template_holder.page_container_inner > p:empty { display: none; }
body.page-id-704 .oeh22-app                                        { margin-top: -92px; }

@media (max-width: 820px) {
  body.page-id-704 .oeh22-app { margin-top: -48px; }
}

/* ─── 2. DESIGN TOKENS ───────────────────────────────────────────────────────── */

.oeh22-app {
  /* Warm travel editorial palette — Bridge-inspired */
  --oeh22-text:          #1c1714;
  --oeh22-muted:         #857b72;
  --oeh22-border:        #e9dfd2;
  --oeh22-border-strong: #d4c6b4;
  --oeh22-surface:       #ffffff;
  --oeh22-surface-soft:  #faf7f3;
  --oeh22-surface-muted: #fdfcf9;
  --oeh22-accent:        #c8691e;   /* warm amber */
  --oeh22-accent-dark:   #a85518;
  --oeh22-brand:         #0f2144;   /* deep navy */
  --logo_color1:         #1892b4;
  --logo_color2:         #f6a815;
  --oeh22-ease-out:      cubic-bezier(0.22, 1, 0.36, 1);
  --oeh22-popup-corner:  58px;
  --oeh22-radius-lg: 0px;
  --oeh22-radius-md: 0px;
  --oeh22-radius-sm: 0px;

  display: grid;
  gap: 32px;
  max-width: 1120px;
  margin: 40px auto 80px;
  color: var(--oeh22-text);
  font-family: 'Outfit', 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

/* ─── 3. APP RESET ───────────────────────────────────────────────────────────── */

.oeh22-app,
.oeh22-app * { box-sizing: border-box; }

.oeh22-app h2,
.oeh22-app h3,
.oeh22-app h4 {
  margin: 0;
  color: var(--oeh22-text);
  font-family: 'Merriweather', serif;
  font-weight: 700;
}

.oeh22-app p,
.oeh22-app ul,
.oeh22-app li,
.oeh22-app label,
.oeh22-app fieldset { margin: 0; }

.oeh22-app input,
.oeh22-app select,
.oeh22-app button,
.oeh22-app textarea { font: inherit; }

.oeh22-app select:not(.oeh22-city-native) {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(15, 33, 68, 0.92) 50%),
    linear-gradient(135deg, rgba(15, 33, 68, 0.92) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

/* ─── 4. TYPOGRAPHY HELPERS ──────────────────────────────────────────────────── */

.oeh22-kicker {
  display: inline-block;
  color: var(--oeh22-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.oeh22-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.oeh22-muted { color: var(--oeh22-muted); line-height: 1.6; }

.oeh22-account-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  text-decoration: none;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.oeh22-account-link:hover,
.oeh22-account-link:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.34);
  color: #ffffff;
  transform: translateY(-1px);
}

.oeh22-account-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.3);
  outline-offset: 2px;
}

.oeh22-account-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.oeh22-account-link-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.oeh22-account-link-text {
  margin-left: 10px;
}

/* ─── 5. PANEL (base surface) ────────────────────────────────────────────────── */

.oeh22-panel,
.oeh22-offer {
  background: var(--oeh22-surface);
  border: 1px solid var(--oeh22-surface);
}

/* ─── 6. SEARCH PANEL ────────────────────────────────────────────────────────── */

.oeh22-search-panel {
  position: relative;
  overflow: visible;
  z-index: 18;
  padding: 28px 30px 34px;
  background: linear-gradient(135deg, #f3aa12 0%, #ffc530 45%, #ef9907 100%);
}

.oeh22-search-panel::before {
  content: "";
  position: absolute;
  inset: 10px 12px auto 40%;
  height: 48px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.42), transparent 72%);
  pointer-events: none;
  filter: blur(18px);
}

/* Hide legacy elements no longer used */
.oeh22-search-top,
.oeh22-search-note,
#oeh22-supplier-summary { display: none !important; }

.oeh22-search-quickbar {
  display: block;
  margin-top: 14px;
}

.oeh22-destination-popular {
  display: block;
}

/* Search Shell — horizontal inline form (Bridge style) */
.oeh22-search-shell {
  position: relative;
  z-index: 4;
  padding: 14px;
  border: 1px solid rgba(221, 213, 201, 0.7);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(249, 245, 239, 0.96));
  box-shadow: 0 18px 38px rgba(28, 20, 12, 0.12);
  backdrop-filter: blur(18px);
}

/* 6-column default grid (large desktop) */
.oeh22-search-shell .oeh22-grid--primary {
  display: grid;
  grid-template-columns:
    minmax(150px, 1fr)
    minmax(110px, 0.8fr)
    minmax(110px, 0.8fr)
    minmax(220px, 1.15fr)
    120px;
  gap: 8px;
  align-items: stretch;
}

.oeh22-search-shell .oeh22-grid--primary > label {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 15px 18px 16px;
  border: 1px solid rgba(233, 223, 210, 0.92);
  background: linear-gradient(180deg, #ffffff 0%, #fbf7f2 100%);
  cursor: text;
  transition:
    transform 0.28s var(--oeh22-ease-out),
    border-color 0.18s ease,
    box-shadow 0.28s ease,
    background-color 0.18s ease;
}

.oeh22-search-shell .oeh22-grid--primary > label::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.82), transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.oeh22-search-shell .oeh22-grid--primary > label:hover,
.oeh22-search-shell .oeh22-grid--primary > label:focus-within,
.oeh22-search-field--city.is-open {
  transform: translateY(-3px);
  border-color: rgba(200, 105, 30, 0.45);
  box-shadow: 0 14px 30px rgba(200, 105, 30, 0.12);
  z-index: 1;
}

.oeh22-search-field--city.is-open { z-index: 40; }

.oeh22-search-shell .oeh22-grid--primary > label:hover::before,
.oeh22-search-shell .oeh22-grid--primary > label:focus-within::before,
.oeh22-search-field--city.is-open::before {
  opacity: 1;
}

.oeh22-search-shell .oeh22-grid--primary > label > span {
  color: rgba(15, 33, 68, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.oeh22-search-shell .oeh22-grid--primary select,
.oeh22-search-shell .oeh22-grid--primary input {
  width: 100%;
  min-height: 34px;
  padding: 0 34px 0 0;
  border: 0;
  background: transparent;
  color: var(--oeh22-text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: none;
  outline: none;
}

.oeh22-search-shell .oeh22-grid--primary input::placeholder { color: #b8ac9e; }

.oeh22-search-field--date::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 15px;
  height: 15px;
  border: 1.6px solid rgba(15, 33, 68, 0.52);
  box-shadow: inset 0 4px 0 0 rgba(200, 105, 30, 0.85);
  opacity: 0.72;
  pointer-events: none;
}

/* Search field min-height consistency */
.oeh22-search-field {
  min-height: 88px;
  justify-content: start;
}

.oeh22-city-combobox {
  position: relative;
  display: grid;
  min-height: 34px;
  min-width: 225px;
  z-index: 2;
}

.oeh22-city-native {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.oeh22-city-trigger {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 34px;
  padding: 0 34px 0 0;
  border: 0;
  background: transparent !important;
  color: var(--oeh22-text) !important;
  box-shadow: none !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: left;
}

.oeh22-city-trigger-label {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.oeh22-city-trigger::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 1.8px solid rgba(15, 33, 68, 0.74);
  border-bottom: 1.8px solid rgba(15, 33, 68, 0.74);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.oeh22-search-field--city.is-open .oeh22-city-trigger::after {
  transform: translateY(-35%) rotate(225deg);
}

.oeh22-search-field--city.is-disabled {
  opacity: 0.68;
}

.oeh22-search-field--city.is-disabled .oeh22-city-trigger {
  cursor: not-allowed;
}

.oeh22-city-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  right: auto;
  z-index: 180;
  width: max(100%, 320px);
  max-width: min(420px, calc(100vw - 40px));
  padding: 14px;
  border: 1px solid rgba(233, 223, 210, 0.9);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 48px rgba(28, 20, 12, 0.16);
  backdrop-filter: blur(18px);
  transform: translateY(12px) scale(0.985);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.26s var(--oeh22-ease-out);
}

.oeh22-search-field--city.is-open .oeh22-city-dropdown {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.oeh22-city-dropdown-head {
  margin-bottom: 12px;
}

.oeh22-city-search {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(233, 223, 210, 0.92);
  background: linear-gradient(180deg, #ffffff 0%, #fbf7f2 100%);
  color: var(--oeh22-text);
  box-shadow: none;
}

.oeh22-city-search:focus {
  border-color: rgba(200, 105, 30, 0.45);
  box-shadow: 0 0 0 4px rgba(200, 105, 30, 0.08);
  outline: none;
}

.oeh22-city-options {
  display: grid;
  gap: 8px;
  max-height: 332px;
  overflow: auto;
  padding-right: 6px;
}

.oeh22-city-option,
.oeh22-app .oeh22-city-option {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid #e1e6ee !important;
  background: #f3f5f8 !important;
  color: var(--oeh22-brand) !important;
  box-shadow: none !important;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease;
}

.oeh22-city-option:hover,
.oeh22-city-option:focus-visible,
.oeh22-app .oeh22-city-option:hover,
.oeh22-app .oeh22-city-option:focus-visible {
  transform: translateX(4px);
  border-color: rgba(200, 105, 30, 0.28);
  background: #eef2f6 !important;
  color: var(--oeh22-brand) !important;
  outline: none;
}

.oeh22-city-option.is-active,
.oeh22-app .oeh22-city-option.is-active {
  border-color: rgba(15, 33, 68, 0.18) !important;
  background: #e9eef4 !important;
  color: var(--oeh22-brand) !important;
}

.oeh22-city-option.is-hidden { display: none; }

.oeh22-search-field--occupancy {
  min-width: 0;
}

.oeh22-occupancy-trigger {
  display: grid;
  align-items: center;
  justify-items: start;
  gap: 2px;
  width: 100%;
  min-height: 28px;
  padding: 0;
  border: 0;
  background: transparent !important;
  color: var(--oeh22-text) !important;
  box-shadow: none !important;
  text-align: left;
}

.oeh22-app .oeh22-occupancy-trigger,
.oeh22-app .oeh22-occupancy-trigger:hover,
.oeh22-app .oeh22-occupancy-trigger:focus,
.oeh22-app .oeh22-occupancy-trigger:active {
  background: #faf7f3 !important;
  color: var(--oeh22-text) !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 10px;
}

.oeh22-occupancy-trigger strong {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--oeh22-text);
}

.oeh22-occupancy-trigger small {
  color: var(--oeh22-muted);
  font-size: 12px;
  line-height: 1.2;
}

.oeh22-search-field--count input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.oeh22-search-field--count input[type="number"]::-webkit-outer-spin-button,
.oeh22-search-field--count input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ─── 7. SEARCH ACTIONS (filter icon + submit icon) ──────────────────────────── */

.oeh22-search-submit-wrap,
.oeh22-search-actions {
  display: grid;
  grid-template-columns: 52px 52px;
  gap: 8px;
  align-items: stretch;
  padding: 0 2px;
  width: 120px;
  min-width: 120px;
  min-height: 88px;
}

/* Force exact sizing even against theme overrides */
.oeh22-search-shell .oeh22-search-actions > .oeh22-filter-trigger,
.oeh22-search-shell .oeh22-search-actions > .oeh22-search-submit {
  width: 52px !important;
  min-width: 52px !important;
  max-width: 52px !important;
  flex: 0 0 52px;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  display: inline-flex !important;
  float: none !important;
  clear: none !important;
}

.oeh22-filter-trigger,
.oeh22-search-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0 !important;
  border: 1px solid rgba(15, 33, 68, 0.1);
  color: #ffffff;
  cursor: pointer;
  transition:
    transform 0.22s var(--oeh22-ease-out),
    box-shadow 0.22s ease,
    background-color 0.18s ease,
    border-color 0.18s ease;
}

.oeh22-filter-trigger {
  background: linear-gradient(180deg, #17345f 0%, #0f2144 100%);
  box-shadow: 0 12px 22px rgba(15, 33, 68, 0.2);
}

.oeh22-search-submit {
  background: linear-gradient(180deg, #d57b21 0%, #c8691e 100%);
  box-shadow: 0 12px 22px rgba(200, 105, 30, 0.22);
}

.oeh22-filter-trigger:hover,
.oeh22-filter-trigger:focus-visible,
.oeh22-search-submit:hover,
.oeh22-search-submit:focus-visible {
  transform: translateY(-2px);
}

.oeh22-search-submit.is-loading .oeh22-action-icon {
  animation: oeh22Spin 0.9s linear infinite;
}

.oeh22-search-submit {
  background: var(--oeh22-brand);
  border-color: var(--oeh22-brand);
  color: #ffffff;
}

.oeh22-filter-trigger:hover,
.oeh22-filter-trigger.has-active-filters {
  border-color: var(--oeh22-accent);
  background: #fdf5ec;
  color: var(--oeh22-accent);
}

.oeh22-search-submit:hover {
  background: var(--oeh22-accent);
  border-color: var(--oeh22-accent);
}

.oeh22-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  flex: 0 0 18px;
}

.oeh22-action-icon svg { width: 18px; height: 18px; display: block;margin-left: 2px; color: #fffff}

.oeh22-filter-count {
  position: absolute;
  top: 4px; right: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px; min-height: 16px;
  padding: 0 3px;
  background: var(--oeh22-accent);
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}

/* ─── 8. ADVANCED FILTERS (inline / in search panel) ────────────────────────── */

.oeh22-advanced-filters {
  margin-top: 10px;
  border: 1px solid var(--oeh22-border);
  background: var(--oeh22-surface-soft);
}

.oeh22-advanced-filters > summary {
  padding: 11px 14px;
  color: var(--oeh22-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.oeh22-advanced-filters > summary::-webkit-details-marker { display: none; }
.oeh22-advanced-filters[open] > summary { border-bottom: 1px solid var(--oeh22-border); }

.oeh22-advanced-filters .oeh22-grid--advanced {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 1fr auto;
  gap: 10px;
  padding: 12px 14px 10px;
  align-items: start;
}

.oeh22-advanced-filters .oeh22-grid--advanced > label,
.oeh22-filter-card {
  display: grid;
  gap: 7px;
  padding: 10px 12px;
  border: 1px solid var(--oeh22-border);
  background: #ffffff;
}

.oeh22-filter-label,
.oeh22-section-label {
  color: var(--oeh22-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.oeh22-advanced-filters select,
.oeh22-advanced-filters input[type="text"] {
  min-height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 14px;
  box-shadow: none;
}

.oeh22-filter-check {
  display: inline-flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 100%;
}

.oeh22-filter-check input { width: 18px; height: 18px; }

/* Tag & hotel selector blocks */
.oeh22-tag-block,
.oeh22-hotel-selector {
  margin: 0 14px 12px;
  padding: 12px;
  border: 1px solid var(--oeh22-border);
  background: #ffffff;
}

.oeh22-tag-block { max-height: 176px; overflow: auto; }

.oeh22-tag-filters,
.oeh22-chip-group { display: flex; flex-wrap: wrap; gap: 8px; }

.oeh22-tag-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--oeh22-border);
  background: #ffffff;
  color: var(--oeh22-text);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}

.oeh22-tag-toggle input { width: 14px; height: 14px; margin: 0; accent-color: var(--oeh22-accent); }

.oeh22-filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid #ccd5e8;
  background: #f0f4fb;
  color: var(--oeh22-brand);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.oeh22-filter-chip.is-active,
.oeh22-filter-chip:hover {
  background: var(--oeh22-brand);
  border-color: var(--oeh22-brand);
  color: #ffffff;
}

/* Hotel selector */
.oeh22-hotel-selector > summary {
  color: var(--oeh22-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.oeh22-hotel-selector-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.oeh22-hotel-selector-tools input {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--oeh22-border);
  background: #ffffff;
}

.oeh22-hotel-picker { margin-top: 10px; }

.oeh22-hotel-checks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-height: 220px;
  overflow: auto;
}

.oeh22-hotel-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid var(--oeh22-border);
  background: var(--oeh22-surface-muted);
}

.oeh22-hotel-check.is-hidden { display: none; }
.oeh22-hotel-check input { flex: 0 0 auto; margin-top: 2px; accent-color: var(--oeh22-accent); }
.oeh22-hotel-check span { display: grid; gap: 2px; }
.oeh22-hotel-check strong { color: var(--oeh22-text); font-size: 13px; }

.oeh22-hotel-check em,
.oeh22-hotel-check small {
  color: var(--oeh22-muted);
  font-size: 11px;
  font-style: normal;
  line-height: 1.4;
}

.oeh22-hotel-check small { grid-column: 2; }

/* ─── 9. RESULTS HEADER ──────────────────────────────────────────────────────── */

#oeh22-results,
#oeh22-prebook-box,
#oeh22-detail-box,
#oeh22-policy-box,
#oeh22-booking-box { display: grid; gap: 24px; }

.oeh22-results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.oeh22-results-head {
  display: grid;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--oeh22-surface-soft);
}

.oeh22-results-head-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.oeh22-results-head-main {
  min-width: 0;
}

.oeh22-results-head h2 {
  font-size:34px;
  line-height: 1.5;
  text-wrap: balance;
}

.oeh22-results-head-side {
  display: grid;
  justify-items: end;
  gap: 10px;
  min-width: min(100%, 360px);
}

.oeh22-results-search-row {
  display: grid;
  gap: 8px;
}

.oeh22-results-search {
  width: 100%;
}

.oeh22-results-search-input {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid #e0d7cc;
  background: #fbf8f3;
  color: var(--oeh22-text);
  font-size: 14px;
  box-shadow: none;
}

.oeh22-results-search-input:focus {
  border-color: rgba(200, 105, 30, 0.45);
  box-shadow: 0 0 0 4px rgba(200, 105, 30, 0.08);
  outline: none;
}

.oeh22-results-search-note {
  color: var(--oeh22-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.oeh22-results-pills,
.oeh22-summary-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

/* Pills */
.oeh22-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  background: var(--oeh22-surface-soft);
  color: var(--oeh22-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.oeh22-pill-accent { background: #fcf4e8; color: #8b5e2a; }
.oeh22-pill-light  { background: rgba(255,255,255,0.12); color: #ffffff; }

.oeh22-results-pills .oeh22-pill,
.oeh22-summary-pills .oeh22-pill {
  min-height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.oeh22-results-pills .oeh22-pill + .oeh22-pill,
.oeh22-summary-pills .oeh22-pill + .oeh22-pill { position: relative; }

.oeh22-results-pills .oeh22-pill + .oeh22-pill::before,
.oeh22-summary-pills .oeh22-pill + .oeh22-pill::before {
  content: "";
  position: absolute;
  left: -8px; top: 50%;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #c4b8a8;
  transform: translateY(-50%);
}

/* ─── 10. HOTEL CARDS ────────────────────────────────────────────────────────── */

.oeh22-hotel-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 18px;
  background: var(--oeh22-surface-soft);
  border: 1px solid var(--oeh22-surface-soft);
  transition:
    transform 0.34s var(--oeh22-ease-out),
    box-shadow 0.34s ease,
    border-color 0.22s ease;
}

.oeh22-hotel-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 105, 30, 0.18);
  box-shadow: 0 20px 38px rgba(28, 20, 12, 0.12);
}

.oeh22-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.oeh22-media {
  position: relative;
  overflow: hidden;
  min-height: 188px;
  max-height: none;
  border: 1px solid var(--oeh22-border);
  background: #e4d8c8;
}

.oeh22-hotel-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 188px;
  max-height: none;
  object-fit: cover;
}

.oeh22-media-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 12px;
  background: #c4b5a0;
  color: #ffffff;
}

.oeh22-media:not(.is-fallback) .oeh22-media-fallback { display: none; }

.oeh22-media-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.2);
  color: #ffffff;
  font-family: 'Merriweather', serif;
  font-size: 14px;
  font-weight: 700;
}

.oeh22-media-fallback strong {
  color: #ffffff;
  font-family: 'Merriweather', serif;
  font-size: 16px;
  line-height: 1.15;
}

.oeh22-media-fallback em { color: rgba(255,255,255,0.82); font-style: normal; }

.oeh22-summary {
  display: grid;
  gap: 12px;
  min-height: 100%;
}

.oeh22-summary-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
}

.oeh22-summary h3 {
  font-size: 20px;
  line-height: 1.1;
  text-wrap: balance;
}

.oeh22-address {
  max-width: none;
  color: var(--oeh22-muted);
  font-size: 13px;
  line-height: 1.45;
}

.oeh22-alert {
  padding: 10px 12px 10px 14px;
  border-left: 2px solid var(--oeh22-accent);
  color: #6b4e2a;
  font-size: 13px;
  line-height: 1.5;
}

.oeh22-alert--compact {
  margin-top: 4px;
  max-width: none;
  padding: 10px 12px 10px 14px;
  border-left: 2px solid #cfb28b;
  background: #fffaf3;
  color: #675241;
  font-size: 13px;
  line-height: 1.45;
}

.oeh22-hotel-toolbar {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--oeh22-border);
}

.oeh22-hotel-stats {
  display: grid;
  gap: 8px;
  width: 100%;
}

.oeh22-hotel-price-block {
  display: grid;
  gap: 7px;
  width: 100%;
  padding: 14px 16px 15px;
  border: 1px solid rgba(209, 187, 160, 0.7);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #fffdf9 0%, #f7efe3 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 12px 24px rgba(64, 38, 8, 0.05);
}

.oeh22-hotel-offer-count {
  color: #8a7050;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.oeh22-hotel-price-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.oeh22-hotel-price-prefix {
  color: #ab6d28;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.oeh22-hotel-price-value {
  color: #1f4fbf;
  font-family: 'Merriweather', serif;
  font-size: clamp(22px, 2.1vw, 31px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.oeh22-hotel-price-currency,
.oeh22-hotel-price-fallback {
  color: #5472bb;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ─── 11. BUTTONS ────────────────────────────────────────────────────────────── */

.oeh22-panel button,
.oeh22-offer button,
.oeh22-prebook-panel button {
  display: inline-flex;
  align-items: center;
  justify-content: normal;
  min-height: 38px;
  border: 1px solid var(--oeh22-brand);
  background: var(--oeh22-brand);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, transform 0.15s;
  padding-left: 15px;
}

.oeh22-panel button:hover,
.oeh22-offer button:hover,
.oeh22-prebook-panel button:hover {
  background: var(--oeh22-accent);
  border-color: var(--oeh22-accent);
  transform: translateY(-1px);
}

.oeh22-panel button:active,
.oeh22-offer button:active,
.oeh22-prebook-panel button:active { transform: scale(0.98); }

.oeh22-panel button:focus-visible,
.oeh22-offer button:focus-visible,
.oeh22-prebook-panel button:focus-visible {
  outline: 2px solid var(--oeh22-accent);
  outline-offset: 2px;
}

.oeh22-panel button[disabled],
.oeh22-offer button[disabled] { opacity: 0.5; cursor: not-allowed; transform: none; }

.oeh22-button-secondary {
  background: transparent !important;
  color: var(--oeh22-text) !important;
  border-color: var(--oeh22-border-strong) !important;
}

.oeh22-button-secondary:hover {
  background: var(--oeh22-surface-soft) !important;
  transform: translateY(-1px) !important;
}

.oeh22-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.oeh22-toggle-offers {
  width: 100%;
  min-width: 0;
}

.oeh22-inline-actions button,
.oeh22-toggle-offers {
  min-height: 36px;
  width: 100%;
  padding: 0 14px;
  font-size: 11px;
  letter-spacing: 0.06em;
  transition: background 0.18s, border-color 0.18s, transform 0.15s;
}

/* ─── 12. OFFERS DRAWER ──────────────────────────────────────────────────────── */

.oeh22-offers-drawer {
  display: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--oeh22-border);
}

.oeh22-offers-drawer.is-open { display: block; }

.oeh22-offers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-height: 360px;
  overflow: auto;
  padding-right: 4px;
}

.oeh22-offers-modal {
  display: grid;
  gap: 20px;
  padding: 28px;
}

.oeh22-offers-modal-head {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.oeh22-offers-modal-head .oeh22-media {
  min-height: 180px;
  max-height: 180px;
}

.oeh22-offers-modal-head .oeh22-hotel-image {
  min-height: 180px;
  max-height: 180px;
}

.oeh22-offers-modal-copy {
  display: grid;
  gap: 12px;
}

.oeh22-offers-modal-copy h3 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
}

.oeh22-offers-modal-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.oeh22-offers-browser {
  display: grid;
  gap: 14px;
}

.oeh22-offers-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.oeh22-offers-tab {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--oeh22-border);
  background: #f7f1e8;
  color: #5e4d40;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.oeh22-offers-tab strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 24px;
  padding: 0 6px;
  background: rgba(255, 255, 255, 0.78);
  color: inherit;
  font-size: 10px;
}

.oeh22-offers-tab.is-active,
.oeh22-offers-tab:hover,
.oeh22-offers-tab:focus-visible {
  border-color: #13316f;
  background: #13316f;
  color: #ffffff;
  outline: none;
  transform: translateY(-1px);
}

.oeh22-offers-tab.is-active strong,
.oeh22-offers-tab:hover strong,
.oeh22-offers-tab:focus-visible strong {
  background: rgba(255, 255, 255, 0.18);
}

.oeh22-offers-group { display: none; gap: 12px; }

.oeh22-offers-group.is-active { display: grid; }

.oeh22-offers-group-head {
  display: grid;
  gap: 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--oeh22-border);
}

.oeh22-offers-group-head h4 {
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
}

.oeh22-offers-group-head p {
  margin: 0;
  color: var(--oeh22-muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.oeh22-offers-modal .oeh22-offers {
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.oeh22-offer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--oeh22-border);
  background: #ffffff;
}

.oeh22-offer button { width: auto; }

.oeh22-offer .oeh22-inline-actions { justify-content: flex-start; }

.oeh22-offer-main {
  display: grid;
  grid-template-columns: max-content minmax(0, 1.8fr) max-content max-content;
  gap: 10px;
  align-items: center;
}

.oeh22-offer-badge {
  display: inline-flex;
  align-items: center;
  max-width: 180px;
  min-height: 30px;
  padding: 0 10px;
  overflow: hidden;
  background: #eef2fb;
  color: #16307a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.oeh22-offer-copy { min-width: 0; }

.oeh22-offer-copy h4 {
  overflow: hidden;
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.oeh22-offer-room {
  overflow: hidden;
  margin: 2px 0 0;
  color: var(--oeh22-muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.oeh22-offer-facts { display: inline-flex; align-items: center; gap: 8px; }

.oeh22-offer-fact {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  background: #f7f1e8;
  color: #5e4d40;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.oeh22-offer-fact--price {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #d8c3a6;
  background: linear-gradient(180deg, #fff9f0 0%, #f7ead5 100%);
  color: #0f3da8;
  font-family: 'Merriweather', serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.03em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.oeh22-offer-fact--stock {
  background: #f4ede2;
  color: #746150;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.oeh22-offer-fact.is-accent { background: #fff0d9; color: #ba6b16; }

.oeh22-offer-actions { display: inline-flex; align-items: center; gap: 6px; }

.oeh22-offer-actions button {
  min-height: 32px;
  padding: 0 12px;
  font-size: 10px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.oeh22-offer-actions .oeh22-button-secondary { background: var(--oeh22-surface-muted) !important; }

.oeh22-supplement-hint {
  margin: 6px 0 0;
  color: var(--oeh22-muted);
  font-size: 11px;
  line-height: 1.4;
}

/* ─── 13. DETAIL ROWS (inside modal / prebook) ───────────────────────────────── */

.oeh22-offer-meta { display: grid; gap: 0; }

.oeh22-offer-top {
  display: grid;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}

.oeh22-offer-copy h4 { font-size: 15px; line-height: 1.3; }

.oeh22-stock {
  color: var(--oeh22-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.oeh22-detail {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 8px 0;
  border-top: 1px solid var(--oeh22-border);
}

.oeh22-detail span {
  color: var(--oeh22-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.oeh22-detail strong {
  color: var(--oeh22-text);
  font-size: 13px;
  font-weight: 700;
  text-align: right;
  line-height: 1.5;
}

/* ─── 14. EMPTY & LOADING ────────────────────────────────────────────────────── */

.oeh22-empty-state,
.oeh22-loading-state {
  position: relative;
  overflow: hidden;
  padding: 40px 32px;
  text-align: center;
}

.oeh22-loading-state {
  display: grid;
  justify-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #faf5ef 100%);
}

.oeh22-loading-state::before {
  content: "";
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 105, 30, 0.28) 0%, rgba(24, 146, 180, 0.08) 62%, transparent 72%);
  animation: oeh22Pulse 1.8s ease-in-out infinite;
}

.oeh22-loading-state::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.7) 42%, transparent 78%);
  transform: translateX(-110%);
  animation: oeh22Shimmer 2.4s ease-in-out infinite;
}

.oeh22-empty-state h3,
.oeh22-loading-state h3 { margin-bottom: 8px; font-size: 22px; }

.oeh22-empty-state p,
.oeh22-loading-state p { color: var(--oeh22-muted); line-height: 1.7; }

.oeh22-empty-state h3,
.oeh22-empty-state p,
.oeh22-loading-state h3,
.oeh22-loading-state p {
  position: relative;
  z-index: 1;
}

/* ─── 15. PREBOOK PANEL ──────────────────────────────────────────────────────── */

.oeh22-prebook-panel {
  padding: 32px;
  background: var(--oeh22-surface);
  border: 0;
  box-shadow: none;
}

.oeh22-prebook-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

.oeh22-prebook-head h3 { font-size: clamp(26px, 3vw, 38px); line-height: 1.08; }
.oeh22-prebook-head p  { color: var(--oeh22-muted); line-height: 1.6; }

.oeh22-prebook-price,
.oeh22-result-price {
  display: grid;
  justify-items: end;
  gap: 4px;
  min-width: 130px;
  border: 0;
  background: transparent;
  color: var(--oeh22-text);
  font-family: 'Merriweather', serif;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1;
}

.oeh22-prebook-price small,
.oeh22-result-price small {
  color: var(--oeh22-muted);
  font-family: 'Outfit', 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ─── 16. FORMS ──────────────────────────────────────────────────────────────── */

#oeh22-prebook-form,
#oeh22-search-form,
#oeh22-booking-lookup-form,
#oeh22-booking-list-form { display: grid; gap: 18px; }

.oeh22-form-caption { color: var(--oeh22-muted); line-height: 1.7; }

.oeh22-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.oeh22-grid label,
.oeh22-passenger label { display: grid; gap: 7px; }

.oeh22-grid label {
  padding: 11px 13px;
  border: 1px solid var(--oeh22-border-strong);
  background: var(--oeh22-surface-muted);
}

.oeh22-panel label > span,
.oeh22-passenger label > span {
  color: var(--oeh22-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.oeh22-panel input,
.oeh22-panel select,
.oeh22-panel textarea {
  width: 100%;
  min-height: 34px;
  padding: 0 5px;
  border: 0;
  outline: 0;
  background: #fbf8f3;
  color: var(--oeh22-text);
  box-shadow: none;
}

.oeh22-panel textarea { min-height: 120px; resize: vertical; }

.oeh22-panel input::placeholder,
.oeh22-panel textarea::placeholder { color: #b8ac9e; }

.oeh22-panel input.oeh22-field-error,
.oeh22-panel select.oeh22-field-error,
.oeh22-panel textarea.oeh22-field-error {
  background: #fff3f0;
  box-shadow: inset 0 0 0 1px #d95d4c;
}

.oeh22-grid label:focus-within,
.oeh22-passenger label:focus-within,
.oeh22-supplements label:focus-within { border-color: var(--oeh22-accent); }

/* Passengers */
.oeh22-passengers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.oeh22-passenger {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--oeh22-border);
  background: var(--oeh22-surface);
}

.oeh22-passenger legend { padding: 0; color: var(--oeh22-text); font-size: 14px; font-weight: 700; }

.oeh22-passenger label,
.oeh22-supplements label {
  padding: 10px 12px;
  border: 1px solid var(--oeh22-border);
  background: var(--oeh22-surface-muted);
}

.oeh22-prebook-email {
  display: grid;
  gap: 7px;
  padding: 11px 13px;
  border: 1px solid var(--oeh22-border-strong);
  background: var(--oeh22-surface-muted);
}

.oeh22-prebook-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.oeh22-prebook-note {
  display: grid;
  gap: 7px;
  padding: 11px 13px;
  border: 1px solid var(--oeh22-border-strong);
  background: var(--oeh22-surface-muted);
}

.oeh22-login-panel {
  max-width: 720px;
  margin: 0 auto;
}

.oeh22-login-form-wrap {
  display: grid;
  gap: 16px;
}

.oeh22-login-form-wrap form {
  display: grid;
  gap: 16px;
}

.oeh22-login-form-wrap .login-username,
.oeh22-login-form-wrap .login-password {
  display: grid;
  gap: 7px;
  padding: 11px 13px;
  border: 1px solid var(--oeh22-border-strong);
  background: var(--oeh22-surface-muted);
  margin: 0;
}

.oeh22-login-form-wrap .login-username label,
.oeh22-login-form-wrap .login-password label {
  color: var(--oeh22-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.oeh22-login-form-wrap .login-remember {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--oeh22-muted);
}

.oeh22-login-form-wrap .login-remember label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.oeh22-login-form-wrap .login-remember input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--oeh22-accent);
}

.oeh22-login-form-wrap .login-submit {
  margin: 0;
}

.oeh22-login-form-wrap .login-submit input[type="submit"] {
  width: 100%;
}

.oeh22-modal.oeh22-modal--login-gate .oeh22-modal-dialog {
  width: min(620px, calc(100vw - 32px));
  max-height: calc(100vh - 140px);
}

.oeh22-modal.oeh22-modal--login-gate .oeh22-modal-content {
  padding: 10px;
}

.oeh22-modal.oeh22-modal--login-gate .oeh22-login-panel {
  max-width: 540px;
  padding: 22px;
}

.oeh22-modal.oeh22-modal--login-gate .oeh22-prebook-head {
  margin-bottom: 16px;
}

.oeh22-modal.oeh22-modal--login-gate .oeh22-prebook-head h3 {
  font-size: clamp(22px, 2.4vw, 32px);
}

.oeh22-modal.oeh22-modal--login-gate .oeh22-prebook-head p {
  max-width: 48ch;
  font-size: 14px;
}

.oeh22-modal.oeh22-modal--login-gate .oeh22-login-form-wrap form {
  gap: 12px;
}

.oeh22-modal.oeh22-modal--login-gate .login-username,
.oeh22-modal.oeh22-modal--login-gate .login-password {
  padding: 9px 11px;
}

.oeh22-modal.oeh22-modal--login-gate .oeh22-panel input {
  min-height: 28px;
}

.oeh22-prebook-empty-state {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px dashed var(--oeh22-border-strong);
  background: var(--oeh22-surface-muted);
}

.oeh22-prebook-empty-state h4,
.oeh22-prebook-empty-state p {
  margin: 0;
}

.oeh22-prebook-result-slot:empty {
  display: none;
}

.oeh22-prebook-tabs {
  display: flex;
  gap: 10px;
  overflow: auto;
  padding-bottom: 2px;
}

.oeh22-prebook-tab {
  display: grid !important;
  justify-items: start !important;
  gap: 4px;
  min-width: 148px;
  padding: 12px 14px !important;
  background: var(--oeh22-surface-muted) !important;
  color: var(--oeh22-text) !important;
  border-color: var(--oeh22-border-strong) !important;
}

.oeh22-prebook-tab.is-active {
  background: var(--oeh22-brand) !important;
  color: #ffffff !important;
  border-color: var(--oeh22-brand) !important;
}

.oeh22-prebook-tab-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.oeh22-prebook-tab small {
  color: inherit;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}

.oeh22-prebook-room-group {
  display: none;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--oeh22-border);
  background: var(--oeh22-surface);
}

.oeh22-prebook-room-group.is-active {
  display: grid;
}

.oeh22-prebook-step-copy {
  display: grid;
  gap: 8px;
}

.oeh22-prebook-room-block {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--oeh22-border);
  background: var(--oeh22-surface);
}

.oeh22-prebook-room-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}

.oeh22-prebook-room-head h4 {
  margin: 4px 0 0;
  font-size: 18px;
  line-height: 1.25;
}

/* Supplements */
.oeh22-supplements {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--oeh22-border);
  background: var(--oeh22-surface);
}

.oeh22-supplements > p { color: var(--oeh22-text); }

.oeh22-supplements label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--oeh22-muted);
  font-size: 14px;
  line-height: 1.6;
}

.oeh22-supplements input[type="checkbox"],
.oeh22-checkbox input {
  flex: 0 0 auto;
  width: 16px; height: 16px;
  margin: 0;
  accent-color: var(--oeh22-accent);
}

.oeh22-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--oeh22-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Actions bar */
.oeh22-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.oeh22-prebook-nav {
  position: sticky;
  bottom: -32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  padding: 14px 0 0;
  background: linear-gradient(to top, var(--oeh22-surface) 78%, rgba(251, 248, 243, 0));
}

.oeh22-prebook-nav-main {
  display: flex;
  align-items: center;
  gap: 12px;
}

.oeh22-prebook-step-label {
  margin: 0;
  color: var(--oeh22-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.oeh22-prebook-submit-wrap {
  display: none;
  margin-left: auto;
}

.oeh22-prebook-submit-wrap.is-visible {
  display: flex;
}

.oeh22-prebook-next.is-hidden {
  display: none !important;
}

/* ─── 17. PREBOOK RESULT CARD ────────────────────────────────────────────────── */

.oeh22-result-card { padding: 28px; }

.oeh22-result-card.is-success {
  background: var(--oeh22-surface);
  border-color: var(--oeh22-border);
  border-top: 2px solid var(--oeh22-accent);
}

.oeh22-result-card.is-error { border-top: 2px solid #df9a7d; }

.oeh22-result-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.oeh22-result-head h3 { font-size: clamp(24px, 3vw, 36px); line-height: 1.08; }
.oeh22-result-head p  { color: var(--oeh22-muted); line-height: 1.7; }

.oeh22-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 16px;
  margin-bottom: 16px;
}

.oeh22-result-note { color: var(--oeh22-muted); line-height: 1.75; }

.oeh22-success-screen {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 420px;
  padding-block: 42px;
  text-align: center;
}

.oeh22-success-screen h3 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.02;
}

.oeh22-success-screen > p {
  max-width: 52ch;
  margin: 0;
  color: var(--oeh22-muted);
  line-height: 1.75;
}

.oeh22-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 1px solid var(--oeh22-accent);
  background: color-mix(in srgb, var(--oeh22-accent) 10%, var(--oeh22-surface));
  color: var(--oeh22-accent);
  font-size: 32px;
  font-weight: 700;
}

.oeh22-success-actions {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

/* ─── 18. POLICY & CANCEL ────────────────────────────────────────────────────── */

.oeh22-policy {
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--oeh22-border);
}

.oeh22-policy-title {
  color: var(--oeh22-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.oeh22-cancel { padding-left: 18px; color: var(--oeh22-muted); font-size: 13px; line-height: 1.7; }
.oeh22-cancel li + li { margin-top: 6px; }

.oeh22-callout,
.oeh22-supplement-hint {
  padding: 10px 0 0;
  background: transparent;
  color: var(--oeh22-muted);
  font-size: 12px;
  line-height: 1.6;
}

.oeh22-callout { color: #7b5428; }

/* ─── 19. PAGINATION ─────────────────────────────────────────────────────────── */

.oeh22-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}

.oeh22-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px; min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--oeh22-border);
  background: #ffffff;
  color: var(--oeh22-text);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.oeh22-page-btn.is-active {
  border-color: var(--oeh22-brand);
  background: var(--oeh22-brand);
  color: #ffffff;
}

.oeh22-page-btn[disabled] { opacity: 0.4; cursor: not-allowed; }

/* ─── 20. MODAL ──────────────────────────────────────────────────────────────── */

.oeh22-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.oeh22-modal.is-open {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.oeh22-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 14, 10, 0.55);
}

.oeh22-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 32px));
  max-height: calc(100vh - 120px);
  margin: 84px auto 24px;
  overflow: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: var(--oeh22-surface);
  border: 1px solid var(--oeh22-border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  transform: translateY(18px) scale(0.98);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.oeh22-modal.is-open .oeh22-modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.oeh22-modal-content { padding: 16px; }
.oeh22-modal-panel   { border: 0; }

.oeh22-modal-close {
  position: sticky;
  top: 10px;
  left: calc(100% - 48px);
  z-index: 2;
  width: 36px; min-width: 36px;
  padding: 0;
  font-size: 20px;
  line-height: 1;
}

body.oeh22-modal-open { overflow: hidden; }

/* ─── 21. FILTER PANEL (side drawer) ────────────────────────────────────────── */

.oeh22-filter-panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.oeh22-filter-panel.is-open { opacity: 1; pointer-events: auto; }
body.oeh22-filter-open { overflow: hidden; }

.oeh22-occupancy-panel {
  position: fixed;
  inset: 0;
  z-index: 92;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.oeh22-occupancy-panel.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.oeh22-occupancy-open {
  overflow: hidden;
}

body.oeh22-occupancy-over-modal .oeh22-occupancy-panel {
  z-index: 10020;
}

.oeh22-occupancy-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(25, 24, 22, 0.38);
}

.oeh22-occupancy-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100vw - 28px));
  max-height: calc(100vh - 120px);
  margin: 84px auto 24px;
  padding: 20px 22px;
  overflow: auto;
  border: 1px solid #e6dccf;
  background: #fbf8f3;
  box-shadow: 0 20px 50px rgba(20, 16, 11, 0.14);
}

.oeh22-occupancy-head,
.oeh22-occupancy-actions,
.oeh22-room-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.oeh22-occupancy-head {
  padding-bottom: 14px;
  border-bottom: 1px solid #e8dece;
}

.oeh22-occupancy-head h3 {
  margin: 4px 0 0;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.oeh22-occupancy-close {
  width: 40px;
  min-width: 40px;
  min-height: 40px;
  padding: 0;
  border: 1px solid #ddcfbc;
  background: #ffffff;
  color: #534637;
  font-size: 24px;
  line-height: 1;
}

.oeh22-occupancy-rooms {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.oeh22-room-card {
  padding: 16px;
  border: 1px solid #e5dacb;
  background: #fffdfa;
}

.oeh22-room-card h4 {
  margin: 0;
  font-size: 16px;
}

.oeh22-room-card-copy {
  display: grid;
  gap: 4px;
}

.oeh22-room-card-summary {
  margin: 0;
  color: var(--oeh22-muted);
  font-size: 12px;
  line-height: 1.4;
}

.oeh22-room-remove {
  padding: 0;
  border: 0;
  background: transparent;
  color: #9f5e2c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.oeh22-room-grid,
.oeh22-room-ages {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.oeh22-room-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.oeh22-room-ages {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.oeh22-room-grid label,
.oeh22-room-ages label {
  display: grid;
  gap: 6px;
}

.oeh22-room-grid label span,
.oeh22-room-ages label span {
  color: var(--oeh22-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.oeh22-room-hint {
  margin: 10px 0 0;
  color: #9a8878;
  font-size: 12px;
}

.oeh22-occupancy-actions {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #e8dece;
}

.oeh22-occupancy-actions button {
  min-height: 42px;
  padding: 0 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.oeh22-filter-panel-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 10, 0.36);
}

.oeh22-filter-panel-dialog {
  position: absolute;
  top: 0; right: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(500px, calc(100vw - 18px));
  height: 100%;
  padding: 20px 20px 16px;
  overflow: hidden;
  border-left: 1px solid var(--oeh22-border);
  background: var(--oeh22-surface-soft);
  box-shadow: -16px 0 48px rgba(20, 14, 6, 0.12);
  transform: translateX(28px);
  transition: transform 0.22s ease;
}

.oeh22-filter-panel.is-open .oeh22-filter-panel-dialog { transform: translateX(0); }

.oeh22-filter-panel-head,
.oeh22-filter-panel-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.oeh22-filter-panel-head {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--oeh22-border);
}

.oeh22-filter-panel-head h3 {
  margin: 4px 0 0;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.oeh22-filter-panel-close {
  width: 38px; min-width: 38px; min-height: 38px;
  padding: 0;
  border: 1px solid var(--oeh22-border-strong);
  background: #ffffff;
  color: var(--oeh22-text);
  font-size: 22px;
  line-height: 1;
}

.oeh22-filter-panel .oeh22-advanced-filters {
  display: grid;
  gap: 14px;
  margin-top: 14px;
  overflow: auto;
  border: 0;
  background: transparent;
}

.oeh22-filter-panel .oeh22-grid--advanced     { grid-template-columns: 1fr; padding: 0; }
.oeh22-filter-panel .oeh22-tag-block          { max-height: none; }
.oeh22-filter-panel .oeh22-hotel-picker,
.oeh22-filter-panel .oeh22-hotel-checks       { max-height: 260px; }
.oeh22-filter-panel .oeh22-tag-block,
.oeh22-filter-panel .oeh22-hotel-selector     { margin: 0; }

.oeh22-filter-panel .oeh22-filter-card,
.oeh22-filter-panel .oeh22-grid--advanced > label,
.oeh22-filter-panel .oeh22-tag-block,
.oeh22-filter-panel .oeh22-hotel-selector     { background: #ffffff; }

.oeh22-filter-panel-actions {
  padding-top: 14px;
  border-top: 1px solid var(--oeh22-border);
}

.oeh22-filter-panel-actions button {
  min-height: 40px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.oeh22-filter-panel-apply { min-width: 148px; }

/* ─── 22. FLATPICKR ──────────────────────────────────────────────────────────── */

.oeh22-search-shell .flatpickr-input[readonly],
.oeh22-search-shell input[name="checkin"],
.oeh22-search-shell input[name="checkout"] { cursor: pointer; }

.flatpickr-calendar {
  box-sizing: content-box;
  border: 1px solid rgba(212, 198, 180, 0.8);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 54px rgba(20, 14, 6, 0.16);
  overflow: hidden;
  margin-top: 12px;
  padding: 12px 12px 14px;
  z-index: 170 !important;
}

body.oeh22-modal-open .flatpickr-calendar,
body.oeh22-modal-open .flatpickr-calendar.open,
body.oeh22-modal-open .flatpickr-calendar.inline {
  z-index: 10050 !important;
}

.oeh22-modal.oeh22-modal--top-availability .oeh22-modal-content,
.oeh22-modal.oeh22-modal--top-availability .oeh22-top-availability-modal,
.oeh22-modal.oeh22-modal--top-availability .oeh22-top-availability-form {
  overflow: visible;
}

.oeh22-modal.oeh22-modal--top-availability .flatpickr-calendar,
.oeh22-modal.oeh22-modal--top-availability .flatpickr-calendar.open,
.oeh22-modal.oeh22-modal--top-availability .flatpickr-calendar.inline {
  z-index: 10050 !important;
}

.flatpickr-months {
  padding: 6px 10px 10px;
  background: linear-gradient(180deg, #fffaf4 0%, #ffffff 100%);
}

.flatpickr-weekdays {
  background: #fbf6ef;
  margin: 0 0 8px;
  padding: 6px 0;
  border-radius: 16px;
  box-sizing: border-box;
}

.flatpickr-weekday {
  color: var(--oeh22-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year { color: #1c1714; }

.flatpickr-current-month {
  padding-top: 10px;
  font-size: 120%;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  top: 12px;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 15px;
  height: 15px;
}

.flatpickr-rContainer,
.flatpickr-innerContainer {
  box-sizing: content-box;
  padding: 0 0 4px;
}

.flatpickr-days {
  box-sizing: content-box;
  padding-top: 2px;
}

.dayContainer,
.flatpickr-weekdaycontainer {
  box-sizing: content-box;
}

.flatpickr-day {
  border-radius: 14px;
  min-height: 38px;
  line-height: 38px;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.flatpickr-day:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 105, 30, 0.22);
  background: #f8ecde;
}

.flatpickr-day.inRange {
  border-color: transparent;
  background: rgba(200, 105, 30, 0.12);
  box-shadow: inset 0 0 0 1px rgba(200, 105, 30, 0.08);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  border-color: var(--oeh22-brand);
  background: var(--oeh22-brand);
  box-shadow: 0 10px 20px rgba(15, 33, 68, 0.2);
      color: black;
}
}

.flatpickr-day.today {
  border-color: var(--oeh22-accent);
  box-shadow: inset 0 0 0 1px rgba(200, 105, 30, 0.12);
}

#oeh22-results,
.oeh22-results-grid {
  position: relative;
  z-index: 1;
}

/* ─── 23. ADMIN / SUPPLIER TOOLS ────────────────────────────────────────────── */

.oeh22-supplier-summary { display: grid; gap: 16px; margin-bottom: 0; }

.oeh22-summary-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.oeh22-summary-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--oeh22-border);
  background: var(--oeh22-surface-muted);
}

.oeh22-summary-card span  { color: var(--oeh22-muted); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.oeh22-summary-card strong { color: var(--oeh22-text); font-size: 15px; line-height: 1.45; }

.oeh22-summary-bar {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 16px;
  border: 1px solid var(--oeh22-border);
  background: var(--oeh22-surface-soft);
}

.oeh22-summary-copy { color: var(--oeh22-muted); font-size: 14px; line-height: 1.6; }
.oeh22-summary-metrics { display: flex; flex-wrap: wrap; gap: 8px; }

.oeh22-summary-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--oeh22-border);
  background: #ffffff;
  color: var(--oeh22-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.oeh22-tools-panel { padding: 28px; }

.oeh22-tools-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 14px;
  align-items: start;
  margin-bottom: 20px;
}

.oeh22-tools-head h3 { font-size: clamp(24px, 3vw, 32px); line-height: 1.1; }
.oeh22-tools-grid   { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }

.oeh22-tool-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--oeh22-border);
  background: var(--oeh22-surface-muted);
}

.oeh22-tool-card h4 { font-size: 18px; }
.oeh22-tool-card label { display: grid; gap: 7px; }

.oeh22-booking-list { display: grid; gap: 12px; }

.oeh22-booking-item {
  padding: 16px;
  border: 1px solid var(--oeh22-border);
  background: var(--oeh22-surface-muted);
}

.oeh22-detail-media { margin-bottom: 16px; }
.oeh22-detail-media img { display: block; width: 100%; max-height: 360px; object-fit: cover; }

.oeh22-rich-copy { margin-top: 16px; color: var(--oeh22-text); line-height: 1.75; }
.oeh22-rich-copy p,
.oeh22-rich-copy ul,
.oeh22-rich-copy li { margin-bottom: 12px; }

.oeh22-raw-details { margin-top: 16px; }

.oeh22-raw-details summary {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--oeh22-border);
  background: transparent;
  color: var(--oeh22-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.oeh22-raw-details summary::-webkit-details-marker { display: none; }

.oeh22-app pre,
#oeh22-prebook-box pre {
  margin-top: 12px;
  padding: 14px 16px;
  overflow: auto;
  border: 1px solid var(--oeh22-border);
  background: var(--oeh22-surface-soft);
  color: var(--oeh22-text);
  font: 12px/1.7 Consolas, Monaco, monospace;
  white-space: pre-wrap;
  word-break: break-word;
}

/* ─── 24. MISC UTILITY ───────────────────────────────────────────────────────── */

#oeh22-city-field.is-hidden { display: none; }

.oeh22-popular-card {
  display: grid;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #e8dfd1;
  background: #fffcf6;
}

.oeh22-popular-card-head {
  display: grid;
  gap: 4px;
}

.oeh22-popular-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}

.oeh22-popular-chips { display: flex; flex-wrap: wrap; gap: 8px; }

.oeh22-popular-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border: 1px solid #d7dfef;
  background: #f7f9fd;
  color: var(--oeh22-brand);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.oeh22-popular-chip:hover { border-color: var(--oeh22-brand); background: #edf2ff; }

.oeh22-popular-chip.is-active {
  border-color: var(--oeh22-brand);
  background: var(--oeh22-brand);
  color: #ffffff;
}

.oeh22-app code { padding: 2px 6px; background: #f1ede5; color: var(--oeh22-text); font-size: 0.92em; }

/* Grid helpers */
.oeh22-grid--search   { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.oeh22-grid--tools    { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.oeh22-grid--primary  { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.oeh22-grid--advanced { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.oeh22-field-span-2   { grid-column: span 2; }

/* ─── 25. RESPONSIVE ─────────────────────────────────────────────────────────── */

@media (min-width: 1180px) {
  .oeh22-search-shell .oeh22-grid--primary {
    grid-template-columns:
      minmax(170px, 1.2fr)
      minmax(110px, 0.8fr)
      minmax(110px, 0.8fr)
      minmax(220px, 1.15fr)
      120px;
  }
}

@media (max-width: 1180px) {
  .oeh22-app { margin-right: 24px; margin-left: 24px; }

  .oeh22-search-shell .oeh22-grid--primary {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .oeh22-search-submit-wrap { grid-column: span 4; }
  .oeh22-filter-panel-dialog { width: min(480px, calc(100vw - 12px)); }

  .oeh22-search-actions {
    grid-template-columns: repeat(2, 52px);
    justify-content: end;
    width: 114px; min-width: 114px;
  }

  .oeh22-offers-tabs { gap: 8px; }
  .oeh22-offers-tab {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
  }

  .oeh22-offer-main { grid-template-columns: minmax(0, 1fr); }
  .oeh22-offer-actions { justify-content: flex-start; }
  .oeh22-tools-head { grid-template-columns: 1fr; }

  .oeh22-summary-grid,
  .oeh22-tools-grid,
  .oeh22-hotel-checks { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .oeh22-advanced-filters .oeh22-grid--advanced {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oeh22-results-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .oeh22-grid,
  .oeh22-grid--search { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .oeh22-summary-head,
  .oeh22-result-head  { grid-template-columns: 1fr; }

  .oeh22-summary-pills,
  .oeh22-results-pills { justify-content: flex-start; }

  .oeh22-prebook-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .oeh22-prebook-nav-main {
    justify-content: space-between;
  }

  .oeh22-prebook-submit-wrap {
    margin-left: 0;
  }

  .oeh22-prebook-submit-wrap.is-visible,
  .oeh22-prebook-submit {
    width: 100%;
  }

  .oeh22-prebook-contact-grid,
  .oeh22-passengers,
  .oeh22-result-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .oeh22-results-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .oeh22-app { --oeh22-popup-corner: 44px; }

  .oeh22-search-panel,
  .oeh22-hotel-card { padding: 16px; }

  .oeh22-search-shell .oeh22-grid--primary,
  .oeh22-advanced-filters .oeh22-grid--advanced { grid-template-columns: 1fr 1fr; }

  .oeh22-search-submit-wrap,
  .oeh22-filter-card,
  .oeh22-tag-block,
  .oeh22-hotel-selector { grid-column: span 2; }

  .oeh22-hotel-toolbar,
  .oeh22-hotel-selector-tools { display: grid; grid-template-columns: 1fr; }

  .oeh22-results-head-top,
  .oeh22-actions,
  .oeh22-prebook-head { flex-direction: column; align-items: stretch; }

  .oeh22-prebook-price,
  .oeh22-result-price { justify-items: start; }

  .oeh22-filter-panel-dialog { width: 100%; padding: 16px 14px; }
  .oeh22-occupancy-dialog { width: min(calc(100vw - 12px), 760px); max-height: calc(100vh - 96px); margin: 64px auto 18px; padding: 16px 14px; }
  .oeh22-results-head { gap: 12px; }
  .oeh22-results-head-side,
  .oeh22-results-search,
  .oeh22-results-search-row { width: 100%; min-width: 0; justify-items: stretch; }
  .oeh22-summary-head { grid-template-columns: 1fr; gap: 12px; }
  .oeh22-summary-pills { justify-content: flex-start; }

  .oeh22-prebook-panel,
  .oeh22-result-card { padding: 22px; }

  .oeh22-results-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .oeh22-offers-modal-head {
    grid-template-columns: 1fr;
  }

  .oeh22-offers-modal-head .oeh22-media,
  .oeh22-offers-modal-head .oeh22-hotel-image {
    min-height: 220px;
    max-height: 220px;
  }
}

@media (max-width: 640px) {
  .oeh22-app { --oeh22-popup-corner: 34px; }

  .oeh22-app { gap: 20px; margin-right: 14px; margin-left: 14px; }

  .oeh22-search-shell .oeh22-grid--primary,
  .oeh22-advanced-filters .oeh22-grid--advanced { grid-template-columns: 1fr; }

  .oeh22-offers-tab {
    flex: 1 1 100%;
    width: 100%;
  }

  .oeh22-offers-group-head h4 { font-size: 18px; }

  .oeh22-modal.oeh22-modal--login-gate .oeh22-modal-dialog {
    width: min(520px, calc(100vw - 20px));
    max-height: calc(100vh - 84px);
  }

  .oeh22-modal.oeh22-modal--login-gate .oeh22-login-panel {
    max-width: 100%;
    padding: 18px;
  }

  .oeh22-search-submit-wrap,
  .oeh22-filter-card,
  .oeh22-tag-block,
  .oeh22-hotel-selector { grid-column: auto; }

  .oeh22-grid,
  .oeh22-prebook-contact-grid,
  .oeh22-passengers,
  .oeh22-result-grid,
  .oeh22-room-grid,
  .oeh22-room-ages { grid-template-columns: 1fr; }

  .oeh22-prebook-nav-main {
    flex-wrap: wrap;
  }

  .oeh22-prebook-tab {
    min-width: 124px;
  }

  .oeh22-success-screen {
    min-height: 320px;
    padding-block: 28px;
  }

  .oeh22-head {
    grid-template-columns: 1fr;
  }

  .oeh22-media,
  .oeh22-hotel-image { min-height: 160px; max-height: none; }

  .oeh22-results-grid { grid-template-columns: 1fr; }

  .oeh22-detail { flex-direction: column; gap: 4px; }
  .oeh22-detail strong { text-align: left; }

  .oeh22-modal-content { padding: 10px; }
  .oeh22-modal-dialog {
    width: min(calc(100vw - 10px), 920px);
    max-height: calc(100dvh - 24px);
    margin: 12px auto;
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 6px;
  }

  .oeh22-modal-close {
    top: 6px;
    left: auto;
    right: 6px;
    margin-left: auto;
  }

  .oeh22-prebook-panel,
  .oeh22-result-card,
  .oeh22-top-availability-modal {
    min-height: auto;
  }

  .oeh22-modal.oeh22-modal--top-availability .oeh22-modal-dialog {
    overflow-y: auto;
    overflow-x: hidden;
  }

  .oeh22-summary-grid,
  .oeh22-tools-grid,
  .oeh22-hotel-checks { grid-template-columns: 1fr; }

  .oeh22-tools-panel { padding: 16px; }
  .oeh22-inline-actions { flex-direction: column; }
  .oeh22-inline-actions button { width: 100%; }
  .oeh22-field-span-2 { grid-column: auto; }
}

/* ─── 26. ZERO BORDER-RADIUS (sharp corners everywhere) ─────────────────────── */

.oeh22-app .oeh22-panel,
.oeh22-app .oeh22-search-shell,
.oeh22-app .oeh22-search-shell .oeh22-grid--primary > label,
.oeh22-app .oeh22-search-submit-wrap button,
.oeh22-app .oeh22-filter-trigger,
.oeh22-app .oeh22-search-submit,
.oeh22-app .oeh22-filter-count,
.oeh22-app .oeh22-filter-panel-dialog,
.oeh22-app .oeh22-filter-panel-close,
.oeh22-app .oeh22-filter-panel .oeh22-filter-card,
.oeh22-app .oeh22-filter-panel .oeh22-grid--advanced > label,
.oeh22-app .oeh22-filter-panel .oeh22-tag-block,
.oeh22-app .oeh22-filter-panel .oeh22-hotel-selector,
.oeh22-app .oeh22-filter-panel-actions button,
.oeh22-app .oeh22-tag-toggle,
.oeh22-app .oeh22-hotel-check,
.oeh22-app .oeh22-hotel-card,
.oeh22-app .oeh22-hotel-image,
.oeh22-app .oeh22-media,
.oeh22-app .oeh22-alert,
.oeh22-app .oeh22-offer,
.oeh22-app .oeh22-offer-badge,
.oeh22-app .oeh22-offer-fact,
.oeh22-app .oeh22-offer-actions button,
.oeh22-app .oeh22-toggle-offers,
.oeh22-app .oeh22-pill,
.oeh22-app .oeh22-page-btn,
.oeh22-app .oeh22-modal-dialog,
.oeh22-app .oeh22-modal-close,
.oeh22-app .oeh22-passenger,
.oeh22-app .oeh22-supplements,
.oeh22-app input,
.oeh22-app select,
.oeh22-app textarea,
.oeh22-app button {
  border-radius: 20px !important;
}

.oeh22-app .oeh22-modal-dialog,
.oeh22-app .oeh22-occupancy-dialog,
.oeh22-app .oeh22-filter-panel-dialog {
  border-radius: var(--oeh22-popup-corner) 0 0 0 !important;
}

.oeh22-results-grid--animated:not(.is-ready) .oeh22-hotel {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
}

.oeh22-results-grid--animated.is-ready .oeh22-hotel {
  animation: oeh22CardReveal 0.64s var(--oeh22-ease-out) both;
  animation-delay: var(--oeh22-stagger, 0ms);
}

/* Popup motion refresh */
.oeh22-modal,
.oeh22-occupancy-panel,
.oeh22-filter-panel {
  transition:
    opacity 0.3s ease,
    backdrop-filter 0.34s ease;
  backdrop-filter: blur(0);
}

.oeh22-modal.is-open,
.oeh22-occupancy-panel.is-open,
.oeh22-filter-panel.is-open {
  backdrop-filter: blur(10px);
}

.oeh22-modal-backdrop,
.oeh22-occupancy-backdrop,
.oeh22-filter-panel-backdrop {
  opacity: 0;
  background: rgba(20, 16, 10, 0.24);
  backdrop-filter: blur(0);
  transition:
    opacity 0.32s ease,
    background-color 0.32s ease,
    backdrop-filter 0.32s ease;
}

.oeh22-modal.is-open .oeh22-modal-backdrop,
.oeh22-occupancy-panel.is-open .oeh22-occupancy-backdrop,
.oeh22-filter-panel.is-open .oeh22-filter-panel-backdrop {
  opacity: 1;
  background: rgba(20, 16, 10, 0.36);
  backdrop-filter: blur(10px);
}

.oeh22-modal-dialog,
.oeh22-occupancy-dialog,
.oeh22-filter-panel-dialog {
  opacity: 0;
  filter: saturate(0.92);
  transition:
    transform 0.42s var(--oeh22-ease-out),
    opacity 0.32s ease,
    filter 0.32s ease,
    box-shadow 0.32s ease;
}

.oeh22-modal-dialog,
.oeh22-occupancy-dialog {
  transform: translateY(26px) scale(0.972);
}

.oeh22-filter-panel-dialog {
  transform: translateX(42px) scale(0.985);
}

.oeh22-modal.is-open .oeh22-modal-dialog,
.oeh22-occupancy-panel.is-open .oeh22-occupancy-dialog {
  opacity: 1;
  filter: none;
  transform: translateY(0) scale(1);
}

.oeh22-filter-panel.is-open .oeh22-filter-panel-dialog {
  opacity: 1;
  filter: none;
  transform: translateX(0) scale(1);
}

.oeh22-modal-content > *,
.oeh22-occupancy-dialog > *,
.oeh22-filter-panel-head,
.oeh22-filter-panel .oeh22-advanced-filters,
.oeh22-filter-panel-actions {
  opacity: 1;
  transform: none;
}

.oeh22-modal.is-open .oeh22-modal-content > * {
  animation: oeh22PopupReveal 0.58s var(--oeh22-ease-out) both;
  animation-delay: 0.08s;
}

.oeh22-filter-panel.is-open .oeh22-filter-panel-head,
.oeh22-filter-panel.is-open .oeh22-advanced-filters,
.oeh22-filter-panel.is-open .oeh22-filter-panel-actions {
  animation: oeh22PopupReveal 0.58s var(--oeh22-ease-out) both;
}

.oeh22-occupancy-panel.is-open .oeh22-occupancy-dialog > * {
  animation: oeh22PopupReveal 0.58s var(--oeh22-ease-out) both;
}

.oeh22-occupancy-panel.is-open .oeh22-occupancy-dialog > *:nth-child(1),
.oeh22-filter-panel.is-open .oeh22-filter-panel-head {
  animation-delay: 0.04s;
}

.oeh22-occupancy-panel.is-open .oeh22-occupancy-dialog > *:nth-child(2),
.oeh22-filter-panel.is-open .oeh22-advanced-filters {
  animation-delay: 0.1s;
}

.oeh22-occupancy-panel.is-open .oeh22-occupancy-dialog > *:nth-child(3),
.oeh22-filter-panel.is-open .oeh22-filter-panel-actions {
  animation-delay: 0.16s;
}

@keyframes oeh22CardReveal {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes oeh22Pulse {
  0%, 100% { transform: scale(0.94); opacity: 0.72; }
  50% { transform: scale(1.04); opacity: 1; }
}

@keyframes oeh22Shimmer {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(120%); }
}

@keyframes oeh22Spin {
  to { transform: rotate(360deg); }
}

/* Top hotels shortcode mode */
.oeh22-app--top {
  gap: 0;
  margin-top: 28px;
  margin-bottom: 48px;
}

.oeh22-top-hotels {
  display: grid;
  gap: 0;
}

.oeh22-top-hotels-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.oeh22-top-hotel-card {
  min-height: 100%;
}

.oeh22-top-hotel-stats {
  margin-top: auto;
}

.oeh22-top-score-block {
  background: linear-gradient(180deg, #fffdf9 0%, #f8f2e8 100%);
}

.oeh22-top-score-prefix {
  color: #8b5e2a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.oeh22-top-card-footnote {
  margin: 8px 0 0;
  color: var(--oeh22-muted);
  font-size: 12px;
  line-height: 1.5;
}

.oeh22-top-hotel-toolbar {
  gap: 12px;
}

.oeh22-top-primary-action {
  width: 100%;
  min-width: 0;
  min-height: 36px;
  padding: 0 14px;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.oeh22-top-hotels-empty {
  min-height: 220px;
}

.oeh22-top-availability-modal {
  display: grid;
  gap: 18px;
}

.oeh22-top-availability-modal .oeh22-offers-modal-head {
  grid-template-columns: 220px minmax(0, 1fr);
}

.oeh22-top-availability-modal h3 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
}

.oeh22-top-availability-form {
  display: grid;
  gap: 16px;
}

.oeh22-top-availability-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.oeh22-top-availability-grid label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.oeh22-top-availability-grid span {
  color: var(--oeh22-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.oeh22-top-availability-grid input {
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid #e0d7cc;
  background: #fbf8f3;
  color: var(--oeh22-text);
}

.oeh22-top-availability-grid input:focus {
  border-color: rgba(200, 105, 30, 0.45);
  box-shadow: 0 0 0 4px rgba(200, 105, 30, 0.08);
  outline: none;
}

.oeh22-top-occupancy-editor {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(233, 223, 210, 0.92);
  background: linear-gradient(180deg, #fffdfa 0%, #f7f1e8 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.oeh22-top-occupancy-head,
.oeh22-top-occupancy-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.oeh22-top-occupancy-copy {
  display: grid;
  gap: 4px;
}

.oeh22-top-occupancy-label {
  color: var(--oeh22-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.oeh22-top-occupancy-copy strong {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--oeh22-text);
}

.oeh22-top-occupancy-copy small {
  color: var(--oeh22-muted);
  font-size: 13px;
  line-height: 1.4;
}

.oeh22-top-occupancy-rooms {
  display: grid;
  gap: 12px;
}

.oeh22-room-card--inline {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.oeh22-room-card--inline .oeh22-room-card-head {
  align-items: flex-start;
}

.oeh22-top-occupancy-note {
  margin: 0;
  color: var(--oeh22-muted);
  font-size: 13px;
  line-height: 1.5;
}

.oeh22-top-occupancy-add-room {
  white-space: nowrap;
}

.oeh22-top-availability-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.oeh22-top-availability-actions button {
  min-width: 180px;
}

@media (max-width: 1080px) {
  .oeh22-top-hotels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .oeh22-app--top {
    margin-bottom: 36px;
  }

  .oeh22-top-hotels-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .oeh22-top-availability-grid {
    grid-template-columns: 1fr;
  }

  .oeh22-top-occupancy-editor {
    padding: 16px 14px;
  }

  .oeh22-top-occupancy-head,
  .oeh22-top-occupancy-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .oeh22-top-occupancy-footer button,
  .oeh22-top-occupancy-add-room {
    width: 100%;
  }

  .oeh22-top-occupancy-editor .oeh22-room-grid {
    grid-template-columns: 1fr;
  }

  .oeh22-top-occupancy-editor .oeh22-room-ages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oeh22-top-availability-modal .oeh22-offers-modal-head {
    grid-template-columns: 1fr;
  }

  .oeh22-top-availability-actions button {
    width: 100%;
    min-width: 0;
  }
}
