
    :root {
      --bg: #ffffff;
      --text: #101620;
      --muted: #5f6877;
      --line: #d9dee7;
      --soft: #f5f7fa;
      --accent: #006b5f;
      --accent-2: #0f8a78;
      --dark: #0b1320;
      --radius: 8px;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    * { box-sizing: border-box; }
    [hidden] { display: none !important; }
    body { margin: 0; min-width: 320px; color: var(--text); background: var(--bg); letter-spacing: 0; overflow-x: hidden; }
    button, input, select { font: inherit; letter-spacing: 0; }
    a { color: inherit; text-decoration: none; }
    .topbar {
      min-height: 76px;
      border-bottom: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      padding: 0 30px;
      background: rgba(255,255,255,.95);
      position: sticky;
      top: 0;
      z-index: 220;
      backdrop-filter: blur(14px);
    }
    .brand { font-size: clamp(22px, 2.5vw, 30px); font-weight: 820; white-space: nowrap; }
    .brand span { color: var(--accent); }
    .nav { display: flex; align-items: center; gap: 34px; color: #172033; font-size: 15px; }
    .btn, .ghost-btn {
      min-height: 44px;
      border-radius: var(--radius);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0 16px;
      font-weight: 760;
      cursor: pointer;
      border: 0;
    }
    .btn { background: var(--accent); color: #fff; }
    .btn:hover { background: #005b51; }
    .ghost-btn { background: #fff; color: var(--text); border: 1px solid var(--line); }
    .page { max-width: 1480px; margin: 0 auto; padding: 26px 30px 44px; }
    .search-strip {
      display: grid;
      grid-template-columns: minmax(220px, 1.4fr) repeat(2, minmax(150px, 1fr)) repeat(2, minmax(130px, .75fr)) auto;
      gap: 10px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 12px;
      box-shadow: 0 18px 48px rgba(17,24,39,.06);
      background: #fff;
    }
    .search-strip > .btn {
      position: relative;
      z-index: 30;
    }
    .field {
      min-height: 50px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 12px;
      background: #fff;
      min-width: 0;
    }
    .intent-field {
      position: relative;
      z-index: 40;
    }
    .intent-field.is-invalid {
      border-color: #d92d20;
      box-shadow: 0 0 0 3px rgba(217, 45, 32, .12);
    }
    .field svg { flex: 0 0 20px; color: var(--accent); }
    .field input, .field select { width: 100%; border: 0; outline: 0; background: transparent; color: #111722; min-width: 0; }
    .intent-dropdown {
      position: absolute;
      left: -1px;
      right: -1px;
      top: calc(100% + 8px);
      z-index: 50;
      display: grid;
      gap: 4px;
      max-height: min(420px, 62vh);
      overflow-y: auto;
      padding: 8px;
      border: 1px solid #c8d3df;
      border-radius: var(--radius);
      background: rgba(255,255,255,.98);
      box-shadow: 0 12px 32px rgba(11,19,32,.08);
      backdrop-filter: blur(14px);
    }
    .intent-dropdown[hidden] { display: none; }
    .intent-status {
      position: absolute;
      left: -1px;
      right: -1px;
      top: calc(100% + 8px);
      z-index: 52;
      border: 1px solid #b8d7d0;
      border-radius: var(--radius);
      background: #edf7f4;
      color: #035d53;
      box-shadow: 0 18px 42px rgba(3,93,83,.12);
      padding: 10px 12px;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.28;
    }
    .intent-status.is-error {
      border-color: #fecdca;
      background: #fff7f5;
      color: #b42318;
      box-shadow: 0 18px 42px rgba(180,35,24,.12);
    }
    .intent-status[hidden] { display: none; }
    .intent-option {
      width: 100%;
      min-height: 58px;
      border: 1px solid transparent;
      border-radius: var(--radius);
      background: transparent;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 12px;
      align-items: center;
      padding: 9px 10px;
      color: var(--text);
      cursor: pointer;
      text-align: left;
    }
    .intent-option:hover,
    .intent-option.is-active {
      border-color: #b8d7d0;
      background: #edf7f4;
    }
    .intent-option strong {
      display: block;
      font-size: 14px;
      line-height: 1.15;
      overflow-wrap: anywhere;
    }
    .intent-option small {
      display: block;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.25;
      margin-top: 3px;
    }
    .intent-kind {
      min-height: 28px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 9px;
      color: #035d53;
      background: #e6f4f1;
      font-style: normal;
      font-size: 12px;
      font-weight: 760;
      white-space: nowrap;
    }
    .children-ages {
      display: none;
      grid-column: 1 / -1;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
    }
    .children-ages.active { display: grid; }
    .children-ages .field { min-height: 44px; }
    .content {
      display: grid;
      grid-template-columns: 280px minmax(0, 1fr);
      gap: 24px;
      margin-top: 26px;
      align-items: start;
    }
    .results-panel { min-width: 0; }
    .mobile-filter-bar,
    .mobile-filter-backdrop {
      display: none;
    }
    .filters {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 18px;
      position: sticky;
      top: 96px;
      max-height: calc(100vh - 112px);
      overflow-y: auto;
      overscroll-behavior: contain;
      background: #fff;
    }
    .filters-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 18px;
    }
    .filters-title { margin: 0; font-size: 24px; line-height: 1.12; }
    .mobile-filter-close { display: none; }
    .filter-section-label {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 14px 0 -2px;
      color: #0f766e;
      font-size: 11px;
      font-weight: 900;
      line-height: 1.2;
      text-transform: uppercase;
    }
    .filter-section-label::after {
      content: "";
      flex: 1 1 auto;
      height: 1px;
      background: #dbe7e4;
    }
    .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;
    }
    .filter-block { border-top: 1px solid var(--line); padding-top: 16px; margin-top: 16px; }
    .filter-title { font-size: 13px; font-weight: 790; color: #263142; margin-bottom: 10px; }
    .filter-subtitle {
      margin: 14px 0 6px;
      color: #667085;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }
    .filter-subtitle-count {
      min-width: 0;
      padding: 2px 6px;
      border-radius: 999px;
      background: #eef6f4;
      color: #0f766e;
      font-size: 10px;
      font-weight: 800;
      text-transform: none;
      white-space: nowrap;
    }
    .filter-subtitle.is-filter-unavailable {
      color: #98a2b3;
    }
    .filter-subtitle.is-filter-unavailable .filter-subtitle-count {
      background: #f3f5f7;
      color: #98a2b3;
    }
    .filter-subtitle.is-filter-active .filter-subtitle-count {
      background: #dff7ee;
      color: #047857;
    }
    .filter-tools {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 8px;
      margin: 10px 0 12px;
    }
    .filter-search-field {
      display: block;
      min-width: 0;
    }
    .filter-search-field input {
      width: 100%;
      min-height: 38px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 0 10px;
      color: #263142;
      background: #fff;
      font: inherit;
      font-size: 13px;
    }
    .filter-search-field input:focus {
      outline: 2px solid #b8d7d0;
      outline-offset: 1px;
      border-color: #9fd0c4;
    }
    .filter-group-reset {
      width: 100%;
      min-height: 34px;
      border: 1px solid #ccd8e4;
      border-radius: var(--radius);
      background: #fff;
      color: #0f766e;
      cursor: pointer;
      font-weight: 760;
      font-size: 13px;
    }
    .filter-group-reset:hover:not(:disabled) {
      background: #edf7f4;
      border-color: #b8d7d0;
    }
    .filter-group-reset:disabled {
      color: #98a2b3;
      background: #f8fafc;
      cursor: not-allowed;
    }
    .filter-search-empty {
      padding: 8px 10px;
      border: 1px dashed #d8e1ea;
      border-radius: var(--radius);
      background: #f8fafc;
      font-size: 13px;
    }
    .filter-subtitle[hidden],
    .filter-search-empty[hidden],
    .check-row[hidden] {
      display: none !important;
    }
    .filters .field + .field { margin-top: 8px; }
    .field.is-filter-unavailable {
      background: #f8fafc;
      border-color: #e4eaf1;
    }
    .field.is-filter-unavailable select {
      color: #667085;
    }
    .check-row {
      display: flex;
      align-items: center;
      gap: 10px;
      min-height: 34px;
      margin-left: -6px;
      margin-right: -6px;
      padding: 3px 6px;
      border: 1px solid transparent;
      border-radius: 6px;
      color: #344054;
      font-size: 14px;
    }
    .check-row.is-filter-available {
      border-color: #d9eee9;
      background: #f6fbf9;
      color: #173f3a;
      font-weight: 700;
    }
    .check-row.is-filter-unavailable {
      color: #8a94a6;
      background: #f8fafc;
    }
    .check-row.is-filter-active {
      border-color: #9fd0c4;
      background: #edf7f4;
      color: #0b3f39;
      font-weight: 780;
    }
    .check-row.is-filter-unavailable input {
      opacity: .55;
    }
    .check-row input { width: 16px; height: 16px; accent-color: var(--accent); }
    .range-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .range-row input { border: 1px solid var(--line); border-radius: var(--radius); min-height: 40px; padding: 0 10px; width: 100%; }
    .toolbar {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 16px;
      margin-bottom: 14px;
    }
    .toolbar h1 { margin: 0; font-size: 30px; line-height: 1.08; }
    .muted { color: var(--muted); font-size: 14px; }
    .sort { min-height: 42px; border: 1px solid var(--line); border-radius: var(--radius); padding: 0 12px; background: #fff; }
    .active-filters {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      min-height: 40px;
      margin: -2px 0 14px;
    }
    .active-filter-empty,
    .active-filter-count,
    .active-filter-chip,
    .active-filter-reset {
      border-radius: var(--radius);
      min-height: 32px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      font-size: 13px;
      line-height: 1.2;
    }
    .active-filter-empty { color: var(--muted); background: #f8fafc; border: 1px dashed #d8e1ea; }
    .active-filter-count { color: #035d53; background: #edf7f4; border: 1px solid #c8ded9; font-weight: 760; }
    .active-filter-chip {
      max-width: min(100%, 340px);
      color: #1f2937;
      background: #fff;
      border: 1px solid var(--line);
      cursor: pointer;
      appearance: none;
      font: inherit;
      text-align: left;
    }
    .active-filter-chip strong { color: #111722; font-weight: 780; }
    .active-filter-chip span { min-width: 0; overflow-wrap: anywhere; }
    .active-filter-chip:hover { background: #f8fafc; border-color: #b8d7d0; }
    .active-filter-chip:focus-visible { outline: 3px solid rgba(15, 118, 110, .2); outline-offset: 2px; }
    .active-filter-remove { color: #64748b; font-size: 16px; line-height: 1; margin-left: 2px; }
    .active-filter-reset { border: 1px solid #ccd8e4; background: #fff; color: #0f766e; cursor: pointer; font-weight: 760; }
    .active-filter-reset:hover { background: #edf7f4; border-color: #b8d7d0; }
    .quick-filters {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      min-height: 38px;
      margin: -4px 0 14px;
    }
    .quick-filter-chip {
      min-height: 34px;
      border: 1px solid #d8e1ea;
      border-radius: var(--radius);
      background: #fff;
      color: #263142;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      font-size: 13px;
      font-weight: 760;
      line-height: 1.2;
      cursor: pointer;
    }
    .quick-filter-chip:hover {
      border-color: #b8d7d0;
      background: #f6fbf9;
    }
    .quick-filter-chip.is-active {
      border-color: #9fd0c4;
      background: #edf7f4;
      color: #035d53;
    }
    .quick-filter-chip:disabled {
      border-color: #e4eaf1;
      background: #f8fafc;
      color: #8a94a6;
      cursor: not-allowed;
    }
    .quick-filter-chip small {
      color: inherit;
      font-size: 12px;
      font-weight: 720;
      opacity: .8;
    }
    .view-switch {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      margin: 0 0 14px;
      padding: 4px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
    }
    .view-switch-btn {
      min-width: 92px;
      min-height: 34px;
      border: 0;
      border-radius: 6px;
      background: transparent;
      color: #425466;
      font-weight: 780;
      cursor: pointer;
    }
    .view-switch-btn.is-active {
      background: #0f766e;
      color: #fff;
    }
    .view-switch-btn:disabled {
      color: #7b8794;
      background: #f1f5f7;
      cursor: not-allowed;
    }
    .search-map-unavailable {
      max-width: 760px;
      margin: -6px 0 14px;
      padding: 10px 12px;
      border: 1px solid #d7e0e8;
      border-radius: var(--radius);
      background: #f8fafc;
      color: #425466;
      font-size: 13px;
      line-height: 1.45;
    }
    .search-map-panel {
      display: grid;
      gap: 10px;
      margin: 0 0 14px;
      padding: 12px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
    }
    .search-map-panel[hidden] { display: none; }
    .price-coverage-status {
      margin: 0 0 14px;
      padding: 10px 12px;
      border: 1px solid #b9ddd6;
      border-radius: var(--radius);
      background: #f0faf7;
      color: #155e55;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.45;
    }
    .search-map-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }
    .search-map-head strong { font-size: 15px; line-height: 1.2; }
    .search-map-head .muted { text-align: right; }
    .search-map-pins {
      position: relative;
      min-height: 360px;
      overflow: hidden;
      border: 1px solid #d7e0e8;
      border-radius: var(--radius);
      background:
        linear-gradient(90deg, rgba(15, 118, 110, .08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(15, 118, 110, .08) 1px, transparent 1px),
        #f8fafc;
      background-size: 72px 72px;
    }
    .search-map-pin {
      position: absolute;
      z-index: 1;
      display: grid;
      gap: 3px;
      min-width: 132px;
      max-width: 186px;
      min-height: 58px;
      padding: 8px 10px 8px 38px;
      border: 1px solid #b8d7d0;
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 10px 24px rgba(17, 24, 39, .13);
      color: var(--text);
      text-align: left;
      text-decoration: none;
      transform: translate(-50%, -50%);
      cursor: pointer;
    }
    .search-map-pin::before {
      content: "";
      position: absolute;
      left: 10px;
      top: 15px;
      width: 11px;
      height: 11px;
      border: 3px solid #fff;
      border-radius: 50%;
      background: #0f766e;
      box-shadow: 0 0 0 2px #0f766e;
    }
    .search-map-pin:hover { border-color: #0f766e; background: #f6fbf9; }
    .search-map-pin:focus-visible {
      outline: 3px solid rgba(15, 118, 110, .22);
      outline-offset: 3px;
    }
    .search-map-pin strong,
    .search-map-pin span { min-width: 0; overflow-wrap: anywhere; }
    .search-map-pin strong { color: #035d53; font-size: 16px; line-height: 1.1; }
    .search-map-pin span { color: #425466; font-size: 12px; line-height: 1.25; }
    .search-map-pin-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 4px;
    }
    .search-map-pin-actions .btn,
    .search-map-pin-actions .ghost-btn {
      min-height: 28px;
      padding: 0 8px;
      font-size: 11px;
    }
    .search-map-empty {
      position: absolute;
      left: 50%;
      top: 50%;
      width: min(360px, calc(100% - 32px));
      transform: translate(-50%, -50%);
      padding: 16px;
      border: 1px dashed #cbd5e1;
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .94);
      color: #425466;
      text-align: center;
    }
    .search-map-empty strong,
    .search-map-empty span {
      display: block;
      min-width: 0;
      overflow-wrap: anywhere;
    }
    .search-map-empty strong {
      color: #172033;
      font-size: 15px;
      line-height: 1.2;
    }
    .search-map-empty span {
      margin-top: 5px;
      font-size: 13px;
      line-height: 1.35;
    }
    .search-map-empty-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      margin-top: 12px;
    }
    .search-map-empty-actions .btn,
    .search-map-empty-actions .ghost-btn {
      min-height: 34px;
      padding: 0 10px;
    }
    .search-map-note {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
    }
    .empty-result-card {
      grid-template-columns: 180px minmax(0, 1fr);
      align-items: center;
    }
    .empty-result-thumb {
      display: grid;
      place-items: center;
      min-height: 132px;
      color: #425466;
      background: #eef4f7;
      font-weight: 780;
    }
    .empty-filter-summary {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-top: 12px;
    }
    .empty-filter-summary span {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      min-height: 30px;
      padding: 5px 8px;
      border: 1px solid #d8e1ea;
      border-radius: var(--radius);
      background: #f8fafc;
      color: #344054;
      font-size: 12px;
      line-height: 1.25;
    }
    .empty-filter-summary strong {
      color: #172033;
      font-weight: 780;
    }
    .empty-similar {
      display: grid;
      gap: 10px;
      margin-top: 14px;
      padding: 12px;
      border: 1px solid #d8e1ea;
      border-radius: var(--radius);
      background: #fbfcfd;
    }
    .empty-similar-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
    }
    .empty-similar-head strong { font-size: 14px; line-height: 1.2; }
    .empty-similar-head span {
      max-width: 360px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.3;
      text-align: right;
    }
    .empty-similar-list {
      display: grid;
      gap: 8px;
    }
    .empty-similar-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto auto;
      align-items: center;
      gap: 10px;
      min-height: 50px;
      padding: 8px 10px;
      border: 1px solid #e2e8f0;
      border-radius: var(--radius);
      background: #fff;
    }
    .empty-similar-row strong,
    .empty-similar-row span {
      display: block;
      min-width: 0;
      overflow-wrap: anywhere;
    }
    .empty-similar-row strong { font-size: 14px; line-height: 1.18; }
    .empty-similar-row span {
      margin-top: 2px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.25;
    }
    .empty-similar-row b {
      color: #035d53;
      white-space: nowrap;
    }
    .empty-similar-row .ghost-btn {
      min-height: 34px;
      padding: 0 10px;
      font-size: 12px;
    }
    .empty-result-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }
    .empty-result-actions .btn,
    .empty-result-actions .ghost-btn {
      min-height: 38px;
      padding: 0 12px;
      font-size: 13px;
    }
    .results-panel.is-map-mode .result-list { display: none; }
    .price-calendar {
      display: grid;
      gap: 10px;
      margin: 0 0 14px;
      padding: 12px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
    }
    .price-calendar-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }
    .price-calendar-head strong { font-size: 15px; line-height: 1.2; }
    .price-calendar-head .muted { text-align: right; }
    .price-calendar-context {
      min-height: 28px;
      display: flex;
      align-items: center;
      width: fit-content;
      max-width: 100%;
      padding: 5px 9px;
      border: 1px solid #d6e7e3;
      border-radius: var(--radius);
      background: #f6fbf9;
      color: #075e54;
      font-size: 12px;
      font-weight: 760;
      line-height: 1.25;
      overflow-wrap: anywhere;
    }
    .price-calendar-context[data-calendar-filter-count="0"] {
      color: var(--muted);
      font-weight: 650;
    }
    .price-calendar-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 8px;
    }
    .price-calendar-day {
      min-width: 0;
      min-height: 70px;
      border: 1px solid #d7e0e8;
      border-radius: var(--radius);
      background: #fff;
      display: grid;
      gap: 3px;
      align-content: center;
      padding: 8px 10px;
      color: var(--text);
    }
    .price-calendar-day:hover { border-color: #b8d7d0; background: #f6fbf9; }
    .price-calendar-day.is-active { border-color: #9fd0c4; background: #edf7f4; }
    .price-calendar-day strong,
    .price-calendar-day span,
    .price-calendar-day small { min-width: 0; overflow-wrap: anywhere; }
    .price-calendar-day strong { font-size: 13px; line-height: 1.15; }
    .price-calendar-day span { color: #035d53; font-weight: 780; font-size: 14px; line-height: 1.15; }
    .price-calendar-day small { color: var(--muted); font-size: 11px; line-height: 1.2; }
    .search-progress {
      display: none;
      gap: 10px;
      margin: -4px 0 14px;
      padding: 13px 14px;
      border: 1px solid #bfdbd4;
      border-radius: var(--radius);
      background: #edf7f4;
      color: #053f38;
    }
    .search-progress.active { display: grid; }
    .search-progress.is-cold {
      margin: 0 0 14px;
      padding: 18px;
      border-color: #9fd0c4;
      background: linear-gradient(135deg, #e8f6f2, #f7fbf9);
      box-shadow: 0 12px 28px rgba(15, 118, 110, .08);
    }
    .search-progress-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 12px;
    }
    .search-progress-head > div { min-width: 0; }
    .search-progress strong { display: block; font-size: 15px; line-height: 1.2; overflow-wrap: anywhere; }
    .search-progress.is-cold strong { font-size: 20px; }
    .search-progress span { display: block; color: #47635f; font-size: 13px; line-height: 1.35; overflow-wrap: anywhere; }
    .search-progress-steps {
      display: none;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: flex-end;
    }
    .search-progress.is-cold .search-progress-steps { display: flex; }
    .search-progress-step {
      min-height: 30px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 9px;
      border: 1px solid #bfded7;
      border-radius: var(--radius);
      background: rgba(255,255,255,.78);
      color: #075e54;
      font-size: 12px;
      font-weight: 760;
      white-space: nowrap;
    }
    .search-progress-step::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #0f766e;
      box-shadow: 0 0 0 4px rgba(15,118,110,.11);
    }
    .search-progress-bar {
      height: 5px;
      overflow: hidden;
      border-radius: 999px;
      background: #c8ded9;
    }
    .search-progress-bar i {
      display: block;
      width: 42%;
      height: 100%;
      border-radius: inherit;
      background: #0f766e;
      animation: search-progress-slide 1.15s ease-in-out infinite;
    }
    .cold-search-skeleton {
      display: grid;
      gap: 12px;
    }
    .cold-search-card {
      min-height: 146px;
      display: grid;
      grid-template-columns: 136px minmax(0, 1fr) minmax(150px, 190px);
      gap: 16px;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
    }
    .cold-search-card > span,
    .cold-search-line {
      border-radius: var(--radius);
      background: linear-gradient(90deg, #eef3f7 0%, #f7fafc 45%, #eef3f7 100%);
      background-size: 220% 100%;
      animation: search-skeleton-pulse 1.35s ease-in-out infinite;
    }
    .cold-search-card > span { min-height: 118px; }
    .cold-search-lines {
      display: grid;
      align-content: center;
      gap: 10px;
    }
    .cold-search-line { height: 12px; }
    .cold-search-line.is-title { width: min(72%, 340px); height: 20px; }
    .cold-search-line.is-wide { width: min(92%, 520px); }
    .cold-search-line.is-mid { width: min(64%, 360px); }
    .cold-search-price {
      display: grid;
      align-content: center;
      gap: 10px;
    }
    @keyframes search-skeleton-pulse {
      0% { background-position: 180% 0; }
      100% { background-position: -60% 0; }
    }
    @keyframes search-progress-slide {
      0% { transform: translateX(-110%); }
      55% { transform: translateX(75%); }
      100% { transform: translateX(245%); }
    }
    .recent-strip {
      margin-top: 14px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 14px;
      background: #fff;
      display: grid;
      gap: 10px;
    }
    .recent-strip-head {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
    }
    .recent-searches {
      display: flex;
      flex-wrap: nowrap;
      gap: 8px;
      overflow-x: auto;
      padding-bottom: 2px;
      scrollbar-width: thin;
    }
    .recent-chip {
      min-height: 40px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--soft);
      color: #1b2635;
      padding: 8px 12px;
      display: inline-flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 3px;
      cursor: pointer;
      flex: 0 0 auto;
      max-width: min(340px, 82vw);
    }
    .recent-chip strong { font-size: 14px; }
    .recent-chip span, .recent-empty { color: var(--muted); font-size: 13px; }
    .recent-chip span {
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .recent-filter-summary {
      color: var(--accent) !important;
      font-weight: 800;
      max-width: 100%;
    }
    .popular-preset-strip {
      margin-top: 10px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 12px;
      background: #f8fbfa;
      display: grid;
      gap: 10px;
    }
    .popular-preset-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .popular-preset-rail {
      display: flex;
      flex-wrap: nowrap;
      gap: 8px;
      overflow-x: auto;
      padding-bottom: 2px;
      scrollbar-width: thin;
    }
    .popular-preset-chip {
      min-height: 42px;
      min-width: 156px;
      border: 1px solid #cfe4df;
      border-radius: var(--radius);
      background: #fff;
      color: #1b2635;
      padding: 8px 12px;
      display: inline-flex;
      flex-direction: column;
      justify-content: center;
      gap: 3px;
      text-decoration: none;
      flex: 0 0 auto;
    }
    .popular-preset-chip:hover,
    .popular-preset-chip:focus-visible {
      border-color: #0f766e;
      box-shadow: 0 0 0 3px rgba(15,118,110,.12);
      outline: 0;
    }
    .popular-preset-chip strong {
      font-size: 14px;
      line-height: 1.15;
    }
    .popular-preset-chip span {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.2;
      white-space: nowrap;
    }
    .result-list { display: grid; gap: 14px; }
    .result-card {
      display: grid;
      grid-template-columns: 250px minmax(0, 1fr) 190px;
      gap: 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      padding: 14px;
      min-height: 190px;
      box-shadow: 0 10px 30px rgba(17,24,39,.04);
    }
    .result-card.is-map-selected {
      border-color: #0f766e;
      box-shadow: 0 0 0 3px rgba(15, 118, 110, .16), 0 12px 26px rgba(17,24,39,.08);
      scroll-margin-top: 112px;
    }
    .thumb {
      border-radius: var(--radius);
      overflow: hidden;
      background: #e7eef1;
      border: 0;
      height: 176px;
      min-height: 0;
      display: grid;
      place-items: center;
      color: #607080;
      font-size: 13px;
      width: 100%;
      cursor: pointer;
      align-self: start;
      text-decoration: none;
      position: relative;
    }
    .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .card-main { min-width: 0; }
    .card-main h3 { margin: 2px 0 8px; font-size: 22px; line-height: 1.12; }
    .meta { color: var(--muted); font-size: 14px; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
    .description-line {
      color: #243142;
      font-size: 14px;
      line-height: 1.45;
      max-width: 680px;
      margin: -4px 0 10px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      overflow-wrap: anywhere;
    }
    .match-line {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 6px;
      margin: 8px 0 10px;
      color: #344054;
      font-size: 13px;
      line-height: 1.25;
    }
    .match-line strong {
      color: #172033;
      font-size: 12px;
      font-weight: 820;
      text-transform: uppercase;
      letter-spacing: .04em;
    }
    .match-line span {
      border: 1px solid #c8ded9;
      border-radius: var(--radius);
      background: #edf7f4;
      color: #035d53;
      min-height: 28px;
      padding: 5px 8px;
      font-weight: 760;
    }
    .included-line {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 6px;
      margin: 8px 0 2px;
    }
    .included-line strong {
      color: #172033;
      font-size: 13px;
      line-height: 1.2;
      margin-right: 2px;
    }
    .included-line span {
      border: 1px solid #d8e1ea;
      border-radius: var(--radius);
      background: #f8fafc;
      color: #344054;
      min-height: 28px;
      padding: 5px 8px;
      font-size: 12px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      overflow-wrap: anywhere;
    }
    .badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
    .badge { border: 1px solid #cfd9e4; border-radius: var(--radius); min-height: 28px; padding: 5px 8px; color: #243142; font-size: 13px; background: #fff; }
    .amenity-line { color: #344054; font-size: 14px; line-height: 1.45; max-width: 620px; }
    .offer-summary {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
      margin-top: 12px;
    }
    .offer-cell {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #f8fafc;
      padding: 9px 10px;
      min-height: 58px;
      display: grid;
      gap: 3px;
      align-content: start;
    }
    .offer-cell small {
      color: var(--muted);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .04em;
      font-weight: 780;
    }
    .offer-cell strong {
      color: #18202d;
      font-size: 14px;
      line-height: 1.18;
      overflow-wrap: anywhere;
    }
    .hotel-group-summary {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 8px;
      margin-top: 12px;
    }
    .hotel-group-cell {
      border: 1px solid #c8ded9;
      border-radius: var(--radius);
      background: #edf7f4;
      min-height: 54px;
      padding: 8px 10px;
      display: grid;
      gap: 3px;
      align-content: start;
    }
    .hotel-group-cell small {
      color: #47635f;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .04em;
      font-weight: 790;
    }
    .hotel-group-cell strong {
      color: #053f38;
      font-size: 14px;
      line-height: 1.25;
      overflow-wrap: break-word;
      word-break: normal;
      hyphens: auto;
    }
    .hotel-group-cell.is-wide {
      grid-column: 1 / -1;
      min-height: 0;
    }
    .tariff-section {
      margin-top: 12px;
      display: grid;
      gap: 8px;
    }
    .tariff-section-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      color: #172033;
      font-size: 13px;
      line-height: 1.2;
    }
    .tariff-section-head span {
      color: var(--muted);
      font-size: 12px;
      text-align: right;
    }
    .tariff-strip {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 8px;
    }
    .tariff-card {
      border: 1px solid #d8e1ea;
      border-radius: var(--radius);
      background: #f8fafc;
      padding: 10px;
      display: grid;
      gap: 6px;
      min-height: 104px;
      color: #243142;
      text-decoration: none;
    }
    .tariff-card strong {
      color: #172033;
      font-size: 14px;
      line-height: 1.2;
      overflow-wrap: anywhere;
    }
    .tariff-card b {
      color: #035d53;
      font-size: 16px;
      line-height: 1.1;
    }
    .tariff-card span {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.28;
    }
    .tariff-card em {
      align-self: end;
      color: #0f766e;
      font-style: normal;
      font-size: 12px;
      font-weight: 760;
    }
    .trust-line {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 10px;
    }
    .trust-line span {
      border: 1px solid #c8ded9;
      border-radius: var(--radius);
      background: #edf7f4;
      color: #035d53;
      padding: 5px 8px;
      font-size: 12px;
      font-weight: 740;
    }
    .offer-transparency { display: grid; gap: 7px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); color: #344054; font-size: 12px; line-height: 1.3; }
    .offer-transparency-summary { color: #172033; font-weight: 720; }
    .offer-transparency-list { display: flex; flex-wrap: wrap; gap: 6px; }
    .offer-transparency-list span { border: 1px solid #d8e1ea; border-radius: var(--radius); background: #f8fafc; padding: 4px 7px; }
    .offer-transparency-manager { color: var(--muted); }
    .selling-points { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 0; }
    .selling-point { border: 1px solid #c8ded9; border-radius: var(--radius); background: #edf7f4; color: #035d53; padding: 5px 8px; font-size: 12px; font-weight: 760; }
    .price-box {
      border-left: 1px solid var(--line);
      padding-left: 18px;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: flex-start;
      text-align: right;
      gap: 14px;
    }
    .price { font-size: 28px; font-weight: 820; line-height: 1; }
    .price-caption { color: var(--muted); font-size: 13px; margin-top: 6px; }
    .price-actions { display: grid; gap: 8px; width: 100%; }
    .mobile-price-inline { display: none; }
    .mobile-price-overlay { display: none; }
    .save-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 100%; }
    .save-row .ghost-btn { min-height: 38px; padding: 0 10px; font-size: 13px; }
    .load-more-row {
      display: none;
      justify-content: center;
      padding: 18px 0 4px;
    }
    .load-more-row.active { display: flex; }
    .load-more-row .ghost-btn {
      min-width: min(280px, 100%);
      min-height: 46px;
      font-weight: 820;
    }
    .lead-panel { display: none; position: fixed; inset: 0; z-index: 50; background: rgba(11,19,32,.42); place-items: center; padding: 18px; }
    .lead-panel.open { display: grid; }
    .lead-card { width: min(520px, 100%); background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: 0 26px 70px rgba(11,19,32,.28); }
    .lead-card h2 { margin: 0 0 16px; font-size: 26px; }
    .lead-card .field { margin-bottom: 10px; }
    .lead-summary { display: grid; gap: 8px; padding: 12px; margin-bottom: 12px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); color: #2d3646; font-size: 13px; }
    .lead-summary-row { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }
    .lead-summary-row span { color: var(--muted); }
    .lead-summary-row strong { text-align: right; line-height: 1.25; overflow-wrap: anywhere; }
    .lead-card textarea { width: 100%; min-height: 88px; resize: vertical; line-height: 1.35; }
    .lead-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 16px; }
    .status { min-height: 20px; color: var(--muted); font-size: 13px; margin-top: 8px; }
    @media (max-width: 1120px) {
      .nav { display: none; }
      .search-strip { grid-template-columns: 1fr 1fr; }
      .search-strip .btn { grid-column: span 2; }
      .children-ages { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .content { grid-template-columns: 1fr; }
      .filters { order: 1; position: static; max-height: none; }
      .results-panel { order: 2; }
      .result-card { grid-template-columns: 210px minmax(0,1fr); }
      .cold-search-card { grid-template-columns: 124px minmax(0, 1fr); }
      .cold-search-price { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
      .hotel-group-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .price-box { grid-column: 1 / -1; border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 14px; align-items: stretch; text-align: left; }
    }
    @media (max-width: 700px) {
      .topbar { min-height: 92px; padding: 10px 14px; flex-wrap: wrap; gap: 8px 10px; align-items: center; }
      .topbar .brand { flex: 1 0 100%; }
      .topbar .ghost-btn { flex: 1 1 auto; min-width: 0; }
      .page { padding: 12px 14px 32px; }
      .search-strip { grid-template-columns: minmax(0, 1fr); gap: 8px; padding: 10px; }
      .search-strip .field:first-child,
      .search-strip .field,
      .search-strip .btn,
      .children-ages { grid-column: 1 / -1; }
      .search-strip .field { min-height: 44px; }
      .children-ages { grid-template-columns: 1fr; }
      .recent-strip { display: none; }
      .popular-preset-strip { margin-top: 10px; padding: 10px; }
      .popular-preset-head strong, .popular-preset-head span { font-size: 13px; }
      .popular-preset-chip { min-width: 148px; min-height: 38px; padding: 7px 10px; }
      .recent-strip-head strong, .recent-strip-head span { font-size: 13px; }
      .recent-chip { min-height: 34px; padding: 0 10px; }
      .filter-section-label { margin-top: 12px; }
      .content { margin-top: 14px; }
      .mobile-filter-bar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px;
        position: sticky;
        top: 100px;
        z-index: 160;
        padding: 8px;
        margin-bottom: 10px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: rgba(255,255,255,.96);
        box-shadow: 0 10px 28px rgba(17,24,39,.08);
        backdrop-filter: blur(12px);
      }
      .mobile-filter-toggle {
        width: 100%;
        justify-content: space-between;
        min-width: 0;
      }
      .mobile-filter-toggle strong {
        min-width: 28px;
        min-height: 24px;
        display: inline-grid;
        place-items: center;
        padding: 2px 8px;
        border-radius: 999px;
        background: #edf7f4;
        color: #035d53;
        font-size: 13px;
        line-height: 1;
      }
      .mobile-filter-toggle.has-active-filters {
        border-color: #9fd0c4;
        background: #f6fbf9;
      }
      .mobile-filter-reset {
        min-height: 44px;
        padding: 0 12px;
        font-size: 13px;
      }
      .mobile-filter-backdrop {
        position: fixed;
        inset: 0;
        z-index: 230;
        background: rgba(11,19,32,.34);
      }
      .mobile-filter-backdrop[hidden] { display: none; }
      body.filter-sheet-open {
        overflow: hidden;
      }
      body.filter-sheet-open .mobile-filter-backdrop {
        display: block;
      }
      .filters {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        z-index: 240;
        max-height: min(82vh, 760px);
        padding: 16px;
        border-radius: var(--radius) var(--radius) 0 0;
        box-shadow: 0 -18px 44px rgba(11,19,32,.2);
        transform: translateY(110%);
        transition: transform .18s ease;
      }
      body.filter-sheet-open .filters {
        transform: translateY(0);
      }
      .filters-head {
        position: sticky;
        top: -16px;
        z-index: 1;
        margin: -16px -16px 14px;
        padding: 14px 16px 12px;
        border-bottom: 1px solid var(--line);
        background: #fff;
      }
      .mobile-filter-close {
        display: inline-flex;
        min-height: 36px;
        padding: 0 12px;
        font-size: 13px;
      }
      .filters-title { font-size: 22px; }
      .toolbar { align-items: center; flex-direction: row; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
      .toolbar h1 { font-size: 22px; }
      .sort { min-height: 38px; }
      .toolbar-compare { display: none; }
      .active-filters { min-height: 0; margin: -2px 0 10px; }
      .active-filter-empty { display: none; }
      .quick-filters {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 2px;
        margin: -2px 0 10px;
        scrollbar-width: thin;
      }
      .quick-filter-chip {
        flex: 0 0 auto;
        min-height: 36px;
        white-space: nowrap;
      }
      .view-switch { display: grid; grid-template-columns: 1fr 1fr; width: 100%; margin-bottom: 10px; }
      .view-switch-btn { min-width: 0; width: 100%; }
      .search-map-panel { margin-bottom: 10px; padding: 10px; }
      .search-map-head { align-items: flex-start; flex-direction: column; gap: 3px; }
      .search-map-head .muted { text-align: left; }
      .search-map-pins { min-height: 430px; background-size: 54px 54px; }
      .search-map-pins {
        display: grid;
        gap: 8px;
        min-height: 0;
        max-height: 520px;
        overflow-y: auto;
        padding: 8px;
        background-size: 54px 54px;
      }
      .search-map-pin {
        position: relative;
        left: auto !important;
        top: auto !important;
        width: 100%;
        min-width: 0;
        max-width: none;
        min-height: 0;
        padding: 10px 10px 10px 38px;
        transform: none;
      }
      .search-map-pin::before { top: 15px; }
      .search-map-pin-actions { margin-top: 6px; }
      .search-map-pin strong { font-size: 15px; }
      .search-map-pin span { font-size: 11px; }
      .empty-similar-head { flex-direction: column; gap: 4px; }
      .empty-similar-head span { max-width: none; text-align: left; }
      .empty-similar-row { grid-template-columns: 1fr; align-items: stretch; }
      .empty-similar-row b { white-space: normal; }
      .price-calendar { margin-bottom: 10px; padding: 10px; }
      .price-calendar-head { align-items: flex-start; flex-direction: column; gap: 3px; }
      .price-calendar-head .muted { text-align: left; }
      .price-calendar-grid {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 2px;
        scroll-snap-type: x proximity;
      }
      .price-calendar-day {
        flex: 0 0 132px;
        min-height: 68px;
        scroll-snap-align: start;
      }
      .search-progress-head { grid-template-columns: 1fr; }
      .search-progress-steps { justify-content: flex-start; }
      .search-progress.is-cold strong { font-size: 18px; }
      .cold-search-card { grid-template-columns: 1fr; min-height: 0; }
      .cold-search-card > span { min-height: 154px; }
      .cold-search-price { grid-column: auto; grid-template-columns: 1fr 1fr; }
      .result-card { grid-template-columns: 1fr; gap: 12px; padding: 12px; }
      .thumb { height: 200px; }
      .card-main h3 { font-size: 20px; line-height: 1.15; }
      .match-line { margin: 8px 0; gap: 5px; }
      .match-line span { min-height: 26px; padding: 4px 7px; font-size: 12px; }
      .included-line { gap: 5px; margin: 7px 0 2px; }
      .included-line strong { flex-basis: 100%; font-size: 12px; }
      .included-line span { min-height: 26px; padding: 4px 7px; font-size: 12px; max-width: 100%; }
      .offer-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .hotel-group-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .hotel-group-cell { min-height: 48px; padding: 7px 8px; }
      .hotel-group-cell small { font-size: 10px; }
      .hotel-group-cell strong { font-size: 13px; }
      .tariff-section-head { align-items: flex-start; flex-direction: column; gap: 4px; }
      .tariff-section-head span { text-align: left; }
      .tariff-strip { grid-template-columns: 1fr; }
      .tariff-strip .tariff-card:nth-child(n+3) { display: none; }
      .amenity-line, .offer-transparency, .trust-line { display: none; }
      .save-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 2px;
      }
      .save-row .ghost-btn {
        min-height: 42px;
        padding: 0 10px;
        font-size: 13px;
      }
      .result-card .badges .badge:nth-child(n+4), .selling-points .selling-point:nth-child(n+4) { display: none; }
      .price { font-size: 24px; }
      .mobile-price-overlay {
        display: grid;
        gap: 2px;
        position: absolute;
        left: 10px;
        bottom: 10px;
        max-width: calc(100% - 20px);
        padding: 8px 10px;
        border: 1px solid #c8ded9;
        border-radius: var(--radius);
        background: rgba(255, 255, 255, .94);
        box-shadow: 0 10px 26px rgba(17, 24, 39, .16);
        text-align: left;
        pointer-events: none;
      }
      .mobile-price-overlay .price { font-size: 22px; }
      .mobile-price-overlay .price-caption { margin-top: 0; color: #47635f; font-size: 12px; }
      .price-box > div:first-child { display: none; }
      .brand { min-width: 0; font-size: 21px; line-height: 1.05; white-space: normal; }
      .topbar .btn { min-width: 44px; padding: 0 12px; }
      .topbar .btn span { display: none; }
      .lead-summary-row { display: grid; gap: 2px; }
      .lead-summary-row strong { text-align: left; }
    }
    @media (max-width: 480px) {
      .search-strip { grid-template-columns: minmax(0, 1fr); }
      .search-strip .field,
      .search-strip .btn,
      .children-ages { grid-column: 1 / -1; }
    }
    @media (max-width: 380px) {
      .offer-summary { grid-template-columns: 1fr; }
      .hotel-group-summary { grid-template-columns: 1fr; }
    }
