/* Lightweight “Booking-like” styling (static mock) */

:root{
  --bg: #f5f7fb;
  --card: #ffffff;
  --text: #0b1320;
  --muted: #5b6474;
  --line: #e6eaf2;
  --brand: #003b95;
  --brand2:#febb02;
  --shadow: 0 12px 28px rgba(11, 19, 32, .10);
  --shadow2: 0 2px 8px rgba(11, 19, 32, .08);
  --radius: 14px;
  --radius2: 10px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color:var(--text);
  background:#f5f5f5;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.survey-shell{
  min-height:100vh;
  padding:24px 16px 48px;
  display:flex;
  justify-content:center;
  align-items:flex-start;
}
.survey-card{
  width:min(860px, 100%);
  background:#fff;
  border:1px solid #d1d5db;
  border-radius:8px;
  box-shadow:0 2px 8px rgba(0,0,0,.08);
  padding:24px;
}
.survey-card--scenario{
  border-left:6px solid #15506f;
  background:#f7f8fb;
}
.survey-card--matrix{
  width:min(1160px, 100%);
  box-shadow:none;
}
.survey-card--reveal{
  width:min(980px, 100%);
}
.survey-progress{
  display:grid;
  grid-template-columns:auto minmax(160px, 1fr);
  gap:14px;
  align-items:center;
  margin-bottom:22px;
  color:#003b95;
  font-size:13px;
  font-weight:900;
}
.survey-progress[hidden]{display:none}
.survey-progress__bar{
  height:8px;
  border-radius:999px;
  background:#e6eefb;
  overflow:hidden;
}
.survey-progress__bar span{
  display:block;
  height:100%;
  width:0;
  border-radius:999px;
  background:#0071c2;
  transition:width .2s ease;
}
.survey-disclaimer{
  margin:0 0 22px;
  border-left:4px solid #b42318;
  border-radius:4px;
  background:#fff1f0;
  color:#7a271a;
  padding:12px 14px;
  font-size:15px;
  line-height:1.45;
}
.bot-detection-text{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  margin:0 !important;
  overflow:hidden !important;
  clip-path:inset(50%) !important;
  white-space:nowrap !important;
  pointer-events:none !important;
  color:#fff !important;
  background:#fff !important;
  font-size:1px !important;
}
.bot-detection-text input{
  width:1px !important;
  height:1px !important;
  border:0 !important;
  background:#fff !important;
  color:#fff !important;
  padding:0 !important;
}
.survey-form{
  display:grid;
  gap:20px;
}
.survey-profile-tools{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:8px;
  margin-bottom:10px;
}
.survey-notice{
  margin:0 0 16px;
  padding:10px 12px;
  border:1px solid #d9e5ff;
  border-radius:6px;
  background:#f7faff;
  color:#1e2f4d;
  font-size:13px;
  line-height:1.45;
  font-weight:750;
}
.survey-notice--browse{
  margin:0 0 14px;
}
.survey-title{
  margin:0;
  color:#1a1a1a;
  font-size:26px;
  line-height:1.2;
  letter-spacing:0;
}
.survey-title--scenario{
  color:#15506f;
}
.survey-title--matrix{
  color:#555;
  font-size:22px;
  font-weight:650;
}
.survey-hotel-name{
  margin:0 0 6px;
  color:#0b3d82;
  font-size:16px;
  line-height:1.4;
}
.survey-copy{
  margin:10px 0 0;
  color:#1f2937;
  font-size:15px;
  line-height:1.55;
}
.survey-field{
  margin-top:18px;
  display:grid;
  gap:8px;
}
.survey-field span{
  color:#1f2937;
  font-size:13px;
  font-weight:850;
}
.survey-field input,
.survey-field textarea{
  width:100%;
  border:1px solid #b8cef8;
  border-radius:6px;
  background:#fff;
  color:#0b1320;
  font:inherit;
  font-size:15px;
  line-height:1.5;
  padding:10px 12px;
}
.survey-field textarea{
  min-height:138px;
  resize:vertical;
}
.survey-field--short{
  max-width:620px;
}
.survey-field input[readonly]{
  background:#f7faff;
  color:#243757;
}
.survey-field input:focus,
.survey-field textarea:focus{
  outline:2px solid #0071c2;
  outline-offset:2px;
}
.survey-divider{
  margin:22px 0;
  border-top:2px solid #d6d9de;
}
.survey-profile{
  margin-top:28px;
  border:0;
  border-radius:0;
  background:transparent;
  padding:0;
}
.survey-profile h2{
  margin:0;
  color:#1a1a1a;
  font-size:22px;
  line-height:1.3;
}
.survey-profile p{
  margin:10px 0 20px;
  color:#5b6474;
  font-size:14px;
  line-height:1.55;
}
.survey-scenario-summary{
  padding:2px 0 26px;
  border-bottom:1px solid #d9dee7;
}
.survey-scenario-summary .survey-title{
  color:#15506f;
  font-size:28px;
}
.survey-scenario-summary .survey-copy{
  max-width:760px;
  margin-top:14px;
  font-size:16px;
  line-height:1.7;
}
.preference-table{
  border:0;
  border-radius:0;
  overflow:visible;
  background:transparent;
}
.preference-row{
  display:grid;
  grid-template-columns:minmax(220px, .85fr) minmax(260px, 1.15fr);
  gap:24px;
  border-top:1px solid #e3e7ee;
}
.preference-row:first-child{border-top:0}
.preference-row > div{
  padding:12px 0;
  color:#1f2937;
  font-size:15px;
  line-height:1.45;
}
.preference-row > div + div{
  border-left:0;
}
.preference-row.is-top > div{
  background:transparent;
  color:#103f68;
}
.survey-matrix-wrap{
  margin-top:28px;
  overflow-x:auto;
  padding-bottom:4px;
}
.survey-combined-matrices .survey-hotel-matrix + .survey-hotel-matrix{
  margin-top:28px;
  padding-top:28px;
  border-top:1px solid #e2e8f0;
}
.survey-combined-matrices .survey-matrix-wrap{
  margin-top:16px;
}
.survey-matrix-hotel-name{
  display:block;
  box-sizing:border-box;
  width:100%;
  max-width:220px;
  padding:12px 16px;
  color:#171717;
  font-size:24px;
  font-weight:500;
  line-height:1.25;
}
.survey-matrix{
  width:100%;
  min-width:820px;
  border-collapse:collapse;
  color:#555;
}
.survey-matrix th,
.survey-matrix td{
  padding:10px 16px;
  vertical-align:middle;
}
.survey-matrix thead th{
  border-bottom:1px solid #d8d8d8;
  font-size:16px;
  line-height:1.35;
  font-weight:650;
  text-align:center;
}
.survey-matrix thead th:first-child{
  width:260px;
  text-align:left;
}
.survey-matrix thead th:nth-child(2),
.survey-matrix tbody td:first-of-type{
  border-left:1px solid #d8d8d8;
}
.survey-matrix tbody th{
  width:260px;
  font-size:16px;
  line-height:1.35;
  font-weight:650;
  text-align:left;
}
.survey-matrix tbody td{
  text-align:center;
}
.survey-radio{
  display:inline-grid;
  place-items:center;
  min-width:34px;
  min-height:34px;
  cursor:pointer;
}
.survey-radio input{
  width:18px;
  height:18px;
  margin:0;
  accent-color:#0071c2;
}
.survey-radio span{
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  white-space:nowrap;
}
.survey-check{
  margin-top:16px;
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#1f2937;
  font-size:14px;
  line-height:1.4;
}
.survey-check input{
  width:18px;
  height:18px;
  margin:1px 0 0;
  accent-color:#0071c2;
}
.survey-option-list{
  margin-top:24px;
  display:grid;
  gap:14px;
}
.survey-multiselect{
  margin:22px 0 0;
  border:0;
  padding:0;
}
.survey-multiselect legend{
  color:#1f2937;
  font-size:14px;
  font-weight:800;
}
.survey-option-list--compact{
  margin-top:12px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  column-gap:28px;
}
.survey-option{
  display:flex;
  align-items:center;
  gap:12px;
  color:#555;
  font-size:18px;
  line-height:1.35;
  cursor:pointer;
}
.survey-option input{
  width:20px;
  height:20px;
  margin:0;
  accent-color:#0071c2;
}
.survey-error{
  margin:12px 0 0;
  color:#b42318;
  font-size:14px;
  font-weight:700;
}
.survey-reveal{
  border-left:7px solid #f59e0b;
  border-radius:8px;
  background:#fff8e6;
  padding:24px;
}
.survey-reveal .survey-title{
  color:#7c3f10;
}
.survey-experience-notes{
  margin:12px 0 0;
  padding-left:24px;
  font-size:16px;
  line-height:1.5;
}
.survey-experience-notes li + li{
  margin-top:6px;
}
.actual-attr-table{
  margin-top:18px;
  display:grid;
  border:1px solid #ead8a6;
  border-radius:8px;
  overflow:hidden;
  background:#fff;
}
.actual-attr-row{
  display:grid;
  grid-template-columns:minmax(180px, 1fr) minmax(180px, 1fr) minmax(150px, 200px);
  border-top:1px solid #f0e2ba;
}
.actual-attr-row:first-child{
  border-top:0;
}
.actual-attr-row > div{
  padding:10px 12px;
  color:#1f2937;
  font-size:14px;
}
.actual-attr-row > div + div{
  border-left:1px solid #f0e2ba;
}
.actual-attr-row--head{
  background:#fff3cf;
  font-weight:850;
}
.survey-five-scale-list{
  margin-top:28px;
  display:grid;
  gap:24px;
}
.survey-five-scale{
  min-width:0;
  margin:24px 0 0;
  padding:0;
  border:0;
}
.survey-five-scale-list .survey-five-scale{margin-top:0}
.survey-five-scale legend{
  width:100%;
  margin:0 0 10px;
  color:#1f2937;
  font-size:16px;
  font-weight:800;
  line-height:1.4;
}
.survey-five-scale__options{
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:8px;
}
.survey-five-scale__choice{
  position:relative;
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
  min-height:58px;
  padding:10px;
  border:1px solid #cbd5e1;
  border-radius:6px;
  background:#fff;
  color:#374151;
  cursor:pointer;
}
.survey-five-scale__choice:hover{
  border-color:#0071c2;
  background:#f7fbff;
}
.survey-five-scale__choice:has(input:checked){
  border-color:#0071c2;
  background:#eaf4ff;
  box-shadow:inset 0 0 0 1px #0071c2;
  color:#003b6f;
}
.survey-five-scale__choice input{
  flex:0 0 auto;
  width:18px;
  height:18px;
  margin:0;
  accent-color:#0071c2;
}
.survey-five-scale__choice span{
  min-width:0;
  font-size:13px;
  font-weight:700;
  line-height:1.35;
}
.survey-complete{
  text-align:center;
  padding:36px 0 24px;
}
.survey-debrief{
  max-width:680px;
  margin:24px auto 0;
  padding:20px 24px;
  border:1px solid #d7dee8;
  border-radius:6px;
  background:#f7f9fc;
  color:#334155;
  text-align:left;
}
.survey-debrief h2{
  margin:0;
  color:#1f2937;
  font-size:20px;
  line-height:1.35;
}
.survey-debrief p{
  margin:8px 0 0;
  font-size:16px;
  line-height:1.55;
}
.survey-complete__instruction{
  max-width:680px;
  margin:28px auto 0;
  padding:20px 24px;
  border:2px solid #0071c2;
  border-left-width:6px;
  border-radius:6px;
  background:#eef7ff;
  color:#1f2937;
  text-align:left;
}
.survey-complete__instruction strong{
  display:block;
  color:#003b6f;
  font-size:20px;
  line-height:1.35;
}
.survey-complete__instruction p{
  margin:8px 0 0;
  font-size:17px;
  line-height:1.55;
}
.survey-actions{
  border-top:1px solid #e6eaf2;
  padding-top:16px;
  display:flex;
  justify-content:flex-end;
  gap:10px;
}
.survey-actions .btn,
.survey-actions .btn2{
  min-width:116px;
}
.search-hero{
  background:#f5f5f5;
  padding:20px 16px 18px;
}
.search-box{
  max-width:1128px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr auto;
  gap:4px;
  background:var(--brand2);
  border:4px solid var(--brand2);
  border-radius:8px;
  box-shadow:0 2px 8px rgba(0,0,0,.16);
}
.search-field{
  background:#fff;
  min-height:58px;
  border-radius:4px;
  padding:10px 12px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.search-field span{
  color:#595959;
  font-size:12px;
}
.search-field strong{
  margin-top:2px;
  color:#1a1a1a;
  font-size:15px;
}
.search-submit{
  border:0;
  border-radius:4px;
  background:#0071c2;
  color:#fff;
  padding:0 24px;
  font-size:18px;
  font-weight:800;
  cursor:pointer;
}

.topbar{
  position:sticky;
  top:0;
  z-index:5;
  background:var(--brand);
  color:#fff;
  box-shadow: 0 2px 0 rgba(0,0,0,.08);
}
.topbar__inner{
  max-width:1160px;
  margin:0 auto;
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.brand{display:flex; align-items:center; gap:10px}
.brand__logo{
  width:34px; height:34px;
  display:grid; place-items:center;
  border-radius:9px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  font-weight:800;
}
.brand__name{font-weight:800; letter-spacing:.2px}
.brand__tag{font-size:12px; opacity:.88}

.pill-row{display:flex; align-items:center; gap:8px; flex-wrap:wrap; justify-content:flex-end}
.pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.20);
  font-size:12px;
  white-space:nowrap;
}
.pill-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border-radius:999px;
  padding:7px 10px;
  background:#fff;
  border:1px solid rgba(255,255,255,.35);
  color:var(--brand);
  font-weight:700;
  font-size:12px;
  cursor:pointer;
}
.pill-btn--ghost{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.30);
}
.pill-btn:hover{filter:brightness(.98)}
.pill-btn--ghost:hover{background:rgba(255,255,255,.10)}
.pill-btn:focus-visible{outline:2px solid var(--brand2); outline-offset:2px}
.version-link.is-active{
  background:#fff;
  color:var(--brand);
  border-color:#fff;
}

.app{max-width:1128px; margin:0 auto; padding:0 16px 42px}
.layout{display:grid; grid-template-columns:minmax(0,1fr); gap:16px}
.scenario-card{
  border:1px solid #d9e5ff;
  border-radius:12px;
  background:#f7faff;
  padding:12px;
  margin-bottom:10px;
}
.scenario-card__eyebrow{
  color:#214a9a;
  font-size:11px;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.scenario-card__title{
  margin-top:4px;
  font-size:15px;
  font-weight:900;
  color:#12203a;
}
.scenario-card__text{
  margin:6px 0 10px;
  color:#2a3b5a;
  font-size:12px;
  line-height:1.4;
}
.preference-profile{
  display:flex;
  flex-direction:column;
  gap:7px;
}
.pref-row{
  display:grid;
  grid-template-columns:minmax(104px, 1fr) 78px 18px;
  align-items:center;
  gap:8px;
  font-size:11px;
  color:#1e2f4d;
}
.pref-row strong{
  font-variant-numeric:tabular-nums;
  text-align:right;
}
.pref-track{
  height:7px;
  overflow:hidden;
  border-radius:999px;
  background:#dfe7f6;
}
.pref-fill{
  height:100%;
  border-radius:999px;
  background:var(--brand);
}
.callout{
  margin-top:10px;
  border-radius:12px;
  border:1px dashed #cbd6f1;
  background:#f3f7ff;
  padding:10px;
}
.callout__title{font-weight:800; font-size:12px; color:#214a9a}
.callout__text{font-size:12px; color:#2a3b5a; line-height:1.35; margin-top:4px}

.content__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:12px;
}
.h1{margin:0; font-size:24px; letter-spacing:0; color:#1a1a1a}
.sort{display:flex; align-items:center; gap:8px}
.sort__label{font-size:12px; color:var(--muted)}
.sort__select{
  border:1px solid #d1d5db;
  border-radius:4px;
  padding:8px 10px;
  min-height:36px;
  background:#fff;
  color:var(--text);
  cursor:pointer;
}
.sort__select:focus-visible{outline:2px solid var(--brand); outline-offset:2px}

.study-flow{
  margin:16px 0 0;
  padding:12px;
  border:1px solid #d9e5ff;
  border-radius:8px;
  background:#f7faff;
  color:#1e2f4d;
  font-size:13px;
  line-height:1.45;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.study-flow strong{
  color:#003b95;
}
.study-flow--status{
  margin:16px 0;
}
.study-flow--status.is-locked{
  padding:18px 20px;
  border:1px solid #e6a119;
  border-left:6px solid #d97706;
  background:#fff4ce;
  color:#5d3900;
  font-size:16px;
  line-height:1.5;
}
.study-flow--status.is-locked strong{
  display:block;
  margin-bottom:4px;
  color:#713f12;
  font-size:18px;
}
.study-flow--status.is-locked .study-flow__note{
  margin-top:10px;
  color:#713f12;
  font-size:16px;
}
.study-flow--actions{
  justify-content:flex-end;
  border:0;
  background:transparent;
  padding:12px 0;
}
.study-flow__btn{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.study-flow__note{
  margin-top:6px;
  color:#5b6474;
  font-weight:750;
}

.results{display:flex; flex-direction:column; gap:16px}
.card{
  background:var(--card);
  border:1px solid #d1d5db;
  border-radius:8px;
  box-shadow:none;
  overflow:hidden;
  display:grid;
  grid-template-columns: 1fr;
  align-items:stretch;
}
.card--text{display:block}
.thumb{
  background: linear-gradient(145deg, #d8e4ff 0%, #eef3ff 45%, #fff8e8 100%);
  position:relative;
  min-height:188px;
}
.thumb::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(11,19,32,.06) 100%);
}
.thumb__badge{
  position:absolute;
  left:10px;
  top:10px;
  z-index:2;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(0,0,0,.06);
  padding:6px 9px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
}
.thumb__img{
  width:100%;
  height:100%;
  min-height:188px;
  object-fit:cover;
  display:block;
  position:relative;
  z-index:0;
}
.card__body{padding:16px; display:grid; grid-template-columns: minmax(0,1fr) 226px; gap:16px}
.card__body > div:first-of-type{min-width:0}
.hotel-title{margin:0; font-size:22px; line-height:1.2; letter-spacing:0; color:#006ce4}
.hotel-title__link{
  border:0;
  padding:0;
  background:transparent;
  color:inherit;
  font:inherit;
  text-align:left;
  cursor:pointer;
}
.hotel-title__link:hover:not(:disabled){text-decoration:underline}
.hotel-title__link:focus-visible{outline:2px solid var(--brand);outline-offset:4px}
.hotel-title__link:disabled{cursor:default;color:#666}
.sub{margin-top:6px; color:var(--muted); font-size:12px; line-height:1.4}
.map-link{
  appearance:none;
  border:0;
  background:transparent;
  color:#006ce4;
  font:inherit;
  font-weight:800;
  text-decoration:underline;
  padding:0;
  cursor:pointer;
}
.map-link:hover{color:#003b95}
.map-link:focus-visible{outline:2px solid var(--brand); outline-offset:2px;border-radius:3px}
.listing-meta{
  margin-top:6px;
  color:#1f2937;
  font-size:13px;
  line-height:1.4;
  font-weight:750;
}
.booking-roomline{margin-top:10px;color:#008234;font-size:13px;font-weight:800}
.card__brand{
  margin-top:4px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:#6b7280;
}
.stars{margin-top:8px; display:flex; gap:2px; color:#f6b100}
.pill2{
  display:inline-flex;
  padding:5px 8px;
  border-radius:4px;
  border:1px solid #dbeafe;
  background:#e7f4ff;
  font-size:12px;
  color:#003b95;
  font-weight:750;
  margin-right:6px;
  margin-top:8px;
  line-height:1.25;
}
.amenities{margin-top:10px; display:flex; flex-wrap:wrap; gap:8px}
.amenity{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:5px 8px;
  border-radius:4px;
  background:#f8fbff;
  border:1px solid #dbeafe;
  font-size:12px;
  color:#1f2937;
  line-height:1.25;
  cursor:default;
}
.amenity__dot{
  width:10px; height:10px; border-radius:50%;
  background:#7da2ff;
}
.amenity__ico{
  font-size:14px;
  line-height:1;
  flex-shrink:0;
}
.rating-line{
  margin-top:10px;
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  color:#1e2f4d;
  font-size:12px;
}
.rating-line strong{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:52px;
  padding:4px 8px;
  border-radius:8px;
  color:#fff;
  background:var(--brand);
  font-variant-numeric:tabular-nums;
}
.modal-banner{
  margin:-4px 0 12px;
  padding:10px 12px;
  border-radius:12px;
  border:1px dashed #cbd6f1;
  background:#f3f7ff;
  font-size:12px;
  color:#2a3b5a;
  line-height:1.4;
}
.modal-banner strong{color:#214a9a}

.priceBox{
  border-left:1px solid #e5e7eb;
  padding-left:16px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:10px;
  min-width:0;
  text-align:right;
}
.priceBox--text{justify-content:center}
.price{
  font-size:20px;
  font-weight:900;
  font-variant-numeric:tabular-nums;
  letter-spacing:-0.02em;
  color:#0b1320;
}
.price--words{
  font-size:16px;
  line-height:1.25;
}
.per{font-size:12px; color:var(--muted); margin-top:2px}
.stay-total{
  margin-top:5px;
  color:#26364d;
  font-size:12px;
  font-weight:800;
  line-height:1.3;
}
.browse-countdown{
  position:sticky;
  top:12px;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin:12px 0 16px;
  padding:11px 14px;
  border:2px solid #147d64;
  border-radius:6px;
  background:#ecfbf6;
  color:#12483c;
  box-shadow:0 5px 14px rgba(18,72,60,.12);
  font-size:14px;
  font-weight:750;
}
.browse-countdown strong{
  min-width:58px;
  color:#0c5f4d;
  font-size:22px;
  font-variant-numeric:tabular-nums;
  text-align:right;
}
.popup-countdown{
  position:static;
  flex-shrink:0;
  margin:8px 16px;
  box-shadow:none;
}
.browse-countdown.is-urgent{
  border-color:#c2410c;
  background:#fff4e6;
  color:#7a2e00;
}
.browse-countdown.is-urgent strong{color:#9a3412}
.browse-countdown.is-expired{
  border-color:#b42318;
  background:#fff1f0;
  color:#7a271a;
}
.booking-scoreline{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:8px;
  margin-bottom:2px;
}
.booking-scoreword{font-weight:900;color:#003b95;font-size:14px}
.booking-reviewcount{font-size:12px;color:#595959;margin-top:2px}
.booking-reviewcount--standalone{
  margin:0 0 2px;
  font-weight:750;
  text-align:right;
}
.booking-score{
  min-width:42px;
  padding:8px 9px;
  border-radius:6px 6px 6px 0;
  background:#003b95;
  color:#fff;
  font-weight:900;
  font-variant-numeric:tabular-nums;
  text-align:center;
}
.booking-no-score{
  margin-bottom:2px;
  display:flex;
  flex-direction:column;
  gap:2px;
  color:#1f2937;
  font-size:12px;
}
.booking-no-score strong{color:#003b95}
.cta{
  display:flex;
  flex-direction:column;
  gap:8px;
  align-items:stretch;
}
.btn{
  background:#0071c2;
  color:#fff;
  border:0;
  padding:10px 12px;
  border-radius:4px;
  font-weight:800;
  cursor:pointer;
  font-size:14px;
  text-align:center;
  text-decoration:none;
}
.btn:hover{filter:brightness(1.05)}
.btn:focus-visible{outline:2px solid var(--brand2); outline-offset:2px}
.btn.is-selected{
  background:#008234;
}
.btn:disabled{
  cursor:not-allowed;
  opacity:.62;
  color:#5b6474;
  background:#f3f5f8;
  border-color:#d8dde7;
  filter:none;
}
.btn2{
  background:#fff;
  color:#006ce4;
  border:1px solid #bad4f7;
  padding:10px 12px;
  border-radius:4px;
  font-weight:800;
  cursor:pointer;
  text-align:center;
  text-decoration:none;
}
.btn2:hover{background:#f8faff}
.btn2:focus-visible{outline:2px solid var(--brand); outline-offset:2px}
.btn2.is-saved{
  background:#e7f4ff;
  border-color:#0071c2;
  color:#003b95;
}
.btn2:disabled{
  cursor:not-allowed;
  opacity:.62;
  color:#5b6474;
  background:#f3f5f8;
  border-color:#d8dde7;
}
.action-status{
  min-height:18px;
  color:#008234;
  font-size:12px;
  line-height:1.35;
  font-weight:750;
  text-align:left;
}

.modal-root{position:fixed; inset:0; display:none; z-index:20}
.modal-root.is-open{display:block}
.shopper-profile-modal-root,
.hotel-order-modal-root,
.revealed-attributes-modal-root{z-index:40}
.modal-backdrop{position:absolute; inset:0; background:rgba(11, 19, 32, .55)}
.modal{
  position:relative;
  width:min(1180px, calc(100vw - 32px));
  max-height:calc(100vh - 52px);
  margin:26px auto;
  background:#fff;
  border-radius:8px;
  box-shadow:var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  border:1px solid rgba(0,0,0,.10);
}
.modal__top{
  padding:16px 18px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
  border-bottom:1px solid var(--line);
  flex-shrink:0;
}
.modal__top-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
}
.shopper-profile-button,
.hotel-order-button,
.revealed-attributes-button{
  min-height:38px;
  padding:8px 12px;
}
.survey-context-note{
  margin:0 0 24px;
  padding:14px 16px;
  border-left:4px solid #006ce4;
  background:#eef6ff;
  color:#1f3b5d;
  font-size:15px;
  line-height:1.5;
}
.revealed-attributes-modal{
  width:min(860px, calc(100vw - 32px));
  max-height:min(88vh, 900px);
  border-color:#cbd5e1;
}
.revealed-attributes-modal__header{
  padding:18px 22px;
  align-items:flex-start;
  background:#fff;
}
.revealed-attributes-modal__heading{
  min-width:0;
}
.revealed-attributes-modal__heading .modal__eyebrow{
  margin:0 0 4px;
  color:#5b6474;
  font-size:12px;
  line-height:1.3;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.revealed-attributes-modal__heading .modal__title{
  margin:0;
  color:#1f2937;
  font-size:24px;
  line-height:1.2;
}
.revealed-attributes-modal__hotel{
  margin:6px 0 0;
  color:#006ce4;
  font-size:15px;
  line-height:1.35;
  font-weight:800;
}
.revealed-attributes-modal__body{
  padding:20px 22px 24px;
  overflow:auto;
  background:#f7f9fc;
}
.revealed-attributes-modal__intro{
  margin:0 0 18px;
  padding:12px 14px;
  border-left:4px solid #006ce4;
  border-radius:4px;
  background:#eef6ff;
  color:#334155;
  line-height:1.5;
}
.revealed-attributes-modal__table-wrap{
  overflow-x:auto;
  border-radius:8px;
}
.revealed-attributes-modal .actual-attr-table{
  min-width:680px;
  margin-top:0;
  border-color:#d7dee8;
  box-shadow:0 1px 2px rgba(15, 23, 42, .04);
}
.revealed-attributes-modal .actual-attr-row{
  grid-template-columns:minmax(190px, 1.05fr) minmax(220px, 1.25fr) minmax(130px, .7fr);
  border-top-color:#e3e8ef;
}
.revealed-attributes-modal .actual-attr-row > div{
  padding:11px 14px;
}
.revealed-attributes-modal .actual-attr-row > div + div{
  border-left-color:#e3e8ef;
}
.revealed-attributes-modal .actual-attr-row--head{
  background:#eef3f9;
}
.revealed-attributes-modal .actual-attr-row:not(.actual-attr-row--head):nth-child(odd){
  background:#fafbfd;
}
.revealed-attributes-modal .actual-attr-row > div:last-child{
  white-space:nowrap;
}
.shopper-profile-modal{
  width:min(760px, calc(100vw - 32px));
}
.shopper-profile-modal__body{
  overflow-y:auto;
  padding:20px;
}
.shopper-scenario h3,
.shopper-preferences h3{
  margin:0 0 8px;
  color:#1a1a1a;
  font-size:18px;
}
.shopper-scenario p,
.shopper-preferences > p,
.shopper-profile-unavailable{
  margin:0;
  color:#4b5563;
  font-size:14px;
  line-height:1.55;
}
.shopper-preferences{
  margin-top:20px;
  padding-top:18px;
  border-top:1px solid var(--line);
}
.shopper-profile-table{
  margin-top:14px;
  border-top:1px solid var(--line);
}
.shopper-profile-row{
  display:grid;
  grid-template-columns:minmax(180px, .8fr) minmax(220px, 1.2fr);
  gap:16px;
  padding:10px 0;
  border-bottom:1px solid var(--line);
  color:#374151;
  font-size:14px;
  line-height:1.4;
}
.shopper-profile-row.is-top{
  color:#1f2937;
  font-weight:800;
}
.hotel-order-modal{
  width:min(820px, calc(100vw - 32px));
}
.hotel-order-modal__body{
  overflow-y:auto;
  padding:20px;
}
.hotel-order-modal__body > p{
  margin:0 0 14px;
  color:#4b5563;
  font-size:14px;
  line-height:1.55;
}
.hotel-order-preview{
  overflow:hidden;
  border:1px solid #cbd5e1;
  border-radius:6px;
  background:#f5f7fa;
  box-shadow:0 8px 24px rgba(25, 42, 70, .12);
}
.hotel-order-preview__search{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr auto;
  gap:2px;
  padding:8px;
  background:#edf1f5;
}
.hotel-order-preview__search > span{
  display:grid;
  gap:2px;
  min-width:0;
  padding:7px 9px;
  background:#fff;
}
.hotel-order-preview__search small,
.hotel-order-preview__card small{
  display:block;
  color:#64748b;
  font-size:10px;
  line-height:1.3;
}
.hotel-order-preview__search strong{
  overflow:hidden;
  color:#1f2937;
  font-size:11px;
  line-height:1.3;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.hotel-order-preview__search > b{
  display:grid;
  place-items:center;
  padding:0 16px;
  border-radius:4px;
  background:#0071c2;
  color:#fff;
  font-size:11px;
}
.hotel-order-preview__results{padding:14px}
.hotel-order-preview__heading{
  display:block;
  margin:0 0 10px;
  color:#1f2937;
  font-size:13px;
}
.hotel-order-preview__card{
  display:grid;
  grid-template-columns:28px 74px minmax(120px, 1fr) 72px 76px;
  align-items:center;
  gap:10px;
  min-height:72px;
  margin-top:8px;
  padding:8px;
  border:1px solid #d7dee8;
  border-radius:5px;
  background:#fff;
}
.hotel-order-preview__position{
  display:grid;
  place-items:center;
  width:24px;
  height:24px;
  border-radius:50%;
  background:#eaf2ff;
  color:#064b9b;
  font-size:12px;
  font-weight:850;
}
.hotel-order-preview__photo{
  width:74px;
  height:52px;
  border-radius:3px;
  background:linear-gradient(135deg, #c7d8e7, #7c9eb9);
}
.hotel-order-preview__name,
.hotel-order-preview__price{min-width:0}
.hotel-order-preview__name strong,
.hotel-order-preview__price strong{
  display:block;
  color:#123f72;
  font-size:12px;
  line-height:1.35;
}
.hotel-order-preview__price{text-align:right}
.hotel-order-preview__price small{
  display:block;
  color:#64748b;
  font-size:9px;
  line-height:1.35;
}
.hotel-order-preview__button{
  padding:8px 7px;
  border-radius:4px;
  background:#0071c2;
  color:#fff;
  font-size:10px;
  font-weight:800;
  text-align:center;
}
.modal-warning{
  margin:0 18px 12px;
  padding:12px 14px;
  border:2px solid #e8590c;
  border-left:6px solid #e8590c;
  border-radius:8px;
  background:#fff4e6;
  color:#7a2e00;
  box-shadow:0 8px 20px rgba(232, 89, 12, .14);
  font-size:13px;
  line-height:1.45;
  font-weight:900;
}
.modal__title{
  margin:0;
  font-size:24px;
  line-height:1.15;
  color:#1a1a1a;
}
.map-modal{max-width:900px}
.map-modal__body{padding:16px}
.map-frame{
  width:100%;
  height:min(62vh,520px);
  min-height:360px;
  border:1px solid #d1d5db;
  border-radius:8px;
  background:#f3f4f6;
  display:block;
}
.map-address{
  margin-top:10px;
  border:1px solid #e5e7eb;
  border-radius:6px;
  background:#f8fbff;
  padding:10px 12px;
  display:flex;
  flex-direction:column;
  gap:4px;
  font-size:13px;
  color:#1f2937;
}
.map-address strong{color:#003b95}
.map-actions{
  margin-top:12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.map-actions .btn,.map-actions .btn2{display:inline-flex;align-items:center;justify-content:center}
.brand-pill{
  display:inline-block;
  margin-top:6px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--muted);
}
.modal__scroll{
  overflow-y:auto;
  overflow-x:hidden;
  flex:1;
  min-height:0;
  -webkit-overflow-scrolling:touch;
}
.xbtn{
  border:1px solid var(--line);
  background:#fff;
  border-radius:50%;
  width:36px;
  height:36px;
  padding:0;
  font-weight:900;
  cursor:pointer;
  line-height:1;
}
.xbtn:focus-visible{outline:2px solid var(--brand); outline-offset:2px}
.modal__grid{display:grid; grid-template-columns:minmax(0,1.45fr) minmax(310px,.65fr); gap:0}
.modal__grid--single{grid-template-columns:1fr}
.modal__left{padding:18px; border-right:1px solid var(--line)}
.modal__grid--single .modal__left{border-right:0}
.modal__right{
  padding:18px;
  background:#f5f7fb;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.gallery{
  display:grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 100px;
  gap:10px;
  margin-bottom:14px;
}
.gitem{
  position:relative;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.06);
  background:#eef3ff;
}
.gitem--hero{grid-row: span 2}
.gitem--wide{grid-column: span 1}
.gallery__row{
  grid-column: 1 / -1;
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:10px;
}
@media (max-width: 980px){
  .survey-option-list--compact{grid-template-columns:1fr}
  .gallery__row{grid-template-columns: repeat(3, 1fr)}
}
.gimg{width:100%; height:100%; object-fit:cover; display:block; cursor:pointer}
.gcaption{
  position:absolute;
  left:8px; bottom:8px;
  max-width:calc(100% - 16px);
  font-size:10px;
  font-weight:800;
  color:#fff;
  text-shadow:0 1px 3px rgba(0,0,0,.55);
  pointer-events:none;
}
.gallery__row .gitem{min-height:76px}

.section{margin-top:14px}
.section:first-of-type{margin-top:0}
.section--flush{margin-top:0}
.modal__right .section{margin-top:0}
.section--availability{
  border:1px solid #d8e8ff;
  border-radius:8px;
  background:#fff;
  padding:14px;
  box-shadow:0 1px 2px rgba(0,0,0,.04);
}
.section--availability h3{
  font-size:16px;
  color:#1a1a1a;
}
.section--availability .price{
  margin-top:4px;
}
.availability-actions{
  margin-top:12px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
}
.availability-actions .btn,
.availability-actions .btn2{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  width:100%;
}
.availability-actions .action-status{
  grid-column:1 / -1;
}
.section--ratings{
  border-top:1px solid var(--line);
  padding-top:14px;
}
.room-types-details{margin-top:10px;border:1px solid var(--line);border-radius:12px;padding:0 12px 10px;background:#fbfcff}
.room-types-details__summary{cursor:pointer;font-weight:800;font-size:13px;padding:10px 0;list-style-position:outside}
.room-types-details .kv{margin-top:0}
.track-slice{margin-top:0}
.section h3{margin:0 0 8px; font-size:14px}
.kv{display:grid; grid-template-columns: 150px 1fr; gap:10px; font-size:12px; color:#1c2a40; line-height:1.35}
.k{color:var(--muted)}
.property-summary__kv{margin-bottom:12px}
.property-pill-row{display:flex;flex-wrap:wrap;gap:10px;align-items:center;margin:10px 0 12px}
.property-pill{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  border-radius:6px;
  background:#eef5ff;
  color:#003b95;
  padding:4px 8px;
  font-size:13px;
  font-weight:750;
}
.property-map-pill{
  color:#006ce4;
  font-weight:800;
  font-size:13px;
}
.about-card-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}
.about-card{
  border:1px solid #e5e7eb;
  border-radius:8px;
  background:#fff;
  padding:10px 12px;
}
.about-card h4{
  margin:0 0 5px;
  font-size:13px;
  color:#1f2937;
}
.about-card p{
  margin:0;
  color:#1f2937;
  font-size:12px;
  line-height:1.45;
}
.property-detail-notes{
  margin-top:14px;
}
.property-detail-notes p{
  margin:0 0 10px;
  font-size:14px;
  line-height:1.55;
  color:#1a1a1a;
}
.property-detail-notes p:last-child{margin-bottom:0}
.property-detail-notes .is-muted{
  color:#5b6474;
  font-size:12px;
}
.property-category-section{
  margin-top:16px;
}
.category-bars{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px 22px;
}
.category-bar__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:6px;
  font-size:13px;
  font-weight:850;
  color:#1a1a1a;
}
.category-bar__head strong{
  font-variant-numeric:tabular-nums;
}
.category-bar__track{
  height:7px;
  border-radius:999px;
  background:#eef0f4;
  overflow:hidden;
}
.category-bar__track span{
  display:block;
  height:100%;
  border-radius:999px;
  background:#003b95;
}
.source-link{
  color:var(--brand);
  font-weight:800;
  text-decoration:none;
}
.source-link:hover{text-decoration:underline}
.fact-list{
  margin:0;
  padding-left:18px;
  color:#1c2a40;
  font-size:12px;
  line-height:1.45;
}
.fact-list li{margin:6px 0}
.hotel-area-section{
  border-top:1px solid var(--line);
  padding:18px 16px 20px;
  background:#fff;
}
.hotel-area-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
}
.hotel-area-head h3{
  margin:0;
  font-size:24px;
  line-height:1.2;
  color:#1a1a1a;
}
.hotel-area-cta{
  flex:0 0 auto;
  min-width:140px;
}
.area-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px 34px;
}
.area-card h4{
  margin:0 0 12px;
  font-size:17px;
  line-height:1.25;
  color:#1a1a1a;
}
.area-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.area-row{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:14px;
  align-items:baseline;
  color:#1f2937;
  font-size:14px;
  line-height:1.3;
}
.area-row strong{
  color:#595959;
  font-weight:650;
  white-space:nowrap;
}

.amenity-details-section{
  border-top:1px solid var(--line);
  padding:18px 16px 20px;
  background:#fff;
}
.amenity-details-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.amenity-details-head h3{
  margin:0;
  font-size:24px;
  line-height:1.2;
  color:#1a1a1a;
}
.amenity-score-line{
  margin-top:4px;
  color:#595959;
  font-size:15px;
  font-weight:650;
}
.amenity-detail-popular{
  margin-bottom:18px;
}
.amenity-detail-popular h4,
.amenity-detail-card h4{
  margin:0 0 10px;
  font-size:16px;
  line-height:1.25;
  color:#1a1a1a;
}
.amenity-detail-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px 28px;
}
.amenity-detail-card p{
  margin:0 0 8px;
  color:#595959;
  font-size:13px;
  line-height:1.4;
}
.amenity-detail-card ul{
  list-style:none;
  margin:0;
  padding:0;
  color:#1f2937;
  font-size:14px;
  line-height:1.35;
}
.amenity-detail-card li{
  position:relative;
  padding-left:20px;
  margin:8px 0;
}
.amenity-detail-card li::before{
  content:"";
  position:absolute;
  left:0;
  top:.55em;
  width:9px;
  height:5px;
  border-left:2px solid #008234;
  border-bottom:2px solid #008234;
  transform:rotate(-45deg);
}

.map{
  height:180px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.08);
  background: radial-gradient(circle at 30% 30%, #d7f2ff 0%, #f4f7ff 44%, #fff 100%);
  position:relative;
  overflow:hidden;
  cursor:crosshair;
}
.map__landmarks{
  margin-top:10px;
  font-size:12px;
  color:#1e2f4d;
  line-height:1.45;
}
.map__landmarks dt{
  float:left;
  clear:left;
  width:52%;
  margin:0;
  padding:4px 0;
  color:var(--muted);
}
.map__landmarks dd{
  margin:0;
  padding:4px 0 4px 8px;
  overflow:hidden;
  font-weight:650;
}
.pin{
  width:14px; height:14px; border-radius:50%;
  background:#ff3b3b;
  position:absolute;
  left:55%;
  top:52%;
  transform:translate(-50%,-50%);
  box-shadow: 0 10px 18px rgba(255,59,59,.35);
}
.map__hint{
  position:absolute;
  left:10px; bottom:10px;
  background:rgba(255,255,255,.9);
  border:1px solid rgba(0,0,0,.08);
  padding:6px 8px;
  border-radius:12px;
  font-size:12px;
  color:#2a3b5a;
}

.summary{
  border:1px solid #d9e5ff;
  background:#f2f7ff;
  border-radius:14px;
  padding:12px;
}
.summary__head{display:flex; align-items:center; justify-content:space-between; gap:10px}
.summary__title{font-weight:900; font-size:13px; color:#214a9a}
.tag{
  font-size:11px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  padding:4px 7px;
  border-radius:999px;
  color:#2a3b5a;
  white-space:nowrap;
}
.summary__text{font-size:12px; margin-top:8px; color:#1e2f4d; line-height:1.45}
.summary__bullets{margin:8px 0 0 16px; padding:0; font-size:12px; color:#1e2f4d}
.summary__bullets li{margin:4px 0}

.scorecard{
  display:flex;
  align-items:center;
  gap:14px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid #d9e5ff;
  background:#f7faff;
  margin-bottom:10px;
}
.scorecard__big{
  font-size:34px;
  font-weight:900;
  font-variant-numeric:tabular-nums;
  line-height:1;
  color:var(--brand);
}
.scorecard__denom{font-size:14px; font-weight:800; color:var(--muted)}
.scorecard__count{font-size:11px; color:var(--muted); margin-top:4px; max-width:220px; line-height:1.35}
.breakdown{
  border:1px solid var(--line);
  border-radius:12px;
  overflow:hidden;
  font-size:12px;
}
.breakdown__row{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:8px 12px;
  border-top:1px solid var(--line);
}
.breakdown__row:first-child{border-top:0}
.breakdown__k{color:var(--muted)}
.breakdown__v{font-weight:800; font-variant-numeric:tabular-nums}
.reviews__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.review__score{font-weight:800; color:var(--brand)}
.review-proto-note{
  margin:14px 0 0;
  padding:10px 12px;
  border-radius:12px;
  background:#fafbfc;
  border:1px solid var(--line);
  font-size:11px;
  line-height:1.45;
  color:var(--muted);
}
.review-proto-note strong{color:#1e2f4d}

.ai-review-summary{
  margin:16px 16px 8px;
  padding:18px 20px;
  border:1px solid #cbd9e6;
  border-left:4px solid #155b84;
  border-radius:6px;
  background:#f4f7fa;
  color:#1d2733;
}
.ai-review-summary__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
}
.ai-review-summary__label{
  color:#155b84;
  font-size:12px;
  font-weight:800;
  line-height:1.4;
  letter-spacing:0;
  text-transform:uppercase;
}
.ai-review-summary h3{
  margin:4px 0 0;
  font-size:19px;
  line-height:1.3;
  letter-spacing:0;
}
.ai-review-summary__count{
  flex:0 0 auto;
  color:#4d5b68;
  font-size:12px;
  font-weight:700;
  line-height:1.4;
}
.ai-review-summary__overview{
  margin:14px 0 16px;
  font-size:14px;
  line-height:1.55;
}
.ai-review-summary__grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px;
}
.ai-review-summary__section h4{
  margin:0 0 8px;
  font-size:14px;
  line-height:1.4;
  letter-spacing:0;
}
.ai-review-summary__section ul{
  margin:0;
  padding-left:18px;
}
.ai-review-summary__section li{
  margin:0 0 7px;
  font-size:13px;
  line-height:1.5;
}
.ai-review-summary__section li:last-child{margin-bottom:0}
.ai-review-summary__note{
  margin:16px 0 0;
  padding-top:12px;
  border-top:1px solid #d6e0e8;
  color:#586674;
  font-size:12px;
  line-height:1.45;
}

.reviews{
  margin-top:12px;
  border-top:1px solid var(--line);
  padding-top:12px;
}
.modal__scroll > .reviews{
  margin-top:0;
  border-top:0;
  padding:8px 16px 20px;
  background:#fff;
}
.modal__scroll > .reviews .reviews__head h3{
  font-size:20px;
  line-height:1.2;
  color:#1a1a1a;
}
.reviews__tools{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  border:1px solid #d9e5ff;
  background:#f7faff;
  border-radius:10px;
  padding:8px;
  margin-bottom:10px;
}
.reviews__count{
  color:#1e2f4d;
  font-size:12px;
  font-weight:800;
  line-height:1.3;
}
.reviews__actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:6px;
  flex-wrap:wrap;
}
.review-action{
  border:1px solid #b8cef8;
  background:#fff;
  color:var(--brand);
  border-radius:6px;
  min-height:32px;
  padding:6px 10px;
  font-size:12px;
  font-weight:800;
  cursor:pointer;
}
.review-action:hover{background:#eef5ff}
.review-action:focus-visible{outline:2px solid var(--brand2); outline-offset:2px}
.review-action--quiet{
  color:#1e2f4d;
  border-color:var(--line);
}
.reviews__list{
  display:flex;
  flex-direction:column;
  gap:0;
  max-height:none;
  overflow:visible;
  padding-right:0;
}
.review{
  border:0;
  border-bottom:1px solid var(--line);
  border-radius:0;
  padding:24px 4px;
  background:#fff;
  margin-top:0;
  display:grid;
  grid-template-columns:minmax(120px, 170px) minmax(0, 1fr);
  gap:28px;
  position:relative;
}
.reviews__list .review{margin-top:0}
.review:first-of-type{margin-top:0}
.review__meta{display:flex; align-items:center; justify-content:space-between; gap:10px; font-size:12px; color:var(--muted)}
.review__quote{margin-top:8px; font-size:12px; color:#1c2a40; line-height:1.45; white-space:pre-line}
.review__guest{font-size:13px; color:#1a1a1a; padding-top:4px}
.review__guestTop{display:flex; align-items:flex-start; gap:10px}
.review__avatar{
  width:32px;
  height:32px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#35aee2;
  color:#fff;
  font-size:16px;
  font-weight:800;
  flex:0 0 auto;
}
.review__name{
  font-size:15px;
  line-height:1.2;
  font-weight:900;
  color:#1a1a1a;
}
.review__since{
  margin-top:3px;
  color:#5a5f68;
  font-size:12px;
}
.review__country{
  margin-top:5px;
  display:flex;
  align-items:center;
  gap:6px;
  color:#4f5560;
  font-size:12px;
}
.review__flag{
  width:14px;
  height:8px;
  display:inline-block;
  background:#e30613;
  box-shadow:0 -4px 0 #fff inset;
}
.review__guestDetails{
  margin-top:18px;
  display:grid;
  gap:8px;
}
.review__detail{
  color:#202124;
  line-height:1.45;
}
.review__body{min-width:0}
.review__topline{
  min-height:28px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
}
.review__date{
  color:#5a5f68;
  font-size:13px;
  line-height:1.4;
}
.review__title{
  margin:6px 0 12px;
  color:#1a1a1a;
  font-size:17px;
  line-height:1.35;
  font-weight:800;
  letter-spacing:0;
}
.review__copy{
  display:grid;
  gap:14px;
  color:#1a1a1a;
  max-width:780px;
}
.review__textBlock{
  display:block;
}
.review__textBlock p{
  margin:0;
  font-size:14px;
  line-height:1.65;
  white-space:pre-line;
}
.chipRow{display:flex; flex-wrap:wrap; gap:6px; margin-top:8px}
.chip{
  font-size:11px;
  background:#fbfcff;
  border:1px solid #e2e8ff;
  color:#2a3b5a;
  padding:4px 7px;
  border-radius:999px;
}

@media (max-width: 980px){
  .survey-shell{padding:16px 12px 32px}
  .survey-card{padding:18px}
  .survey-card--scenario{border-left-width:5px}
  .survey-card--matrix{width:100%}
  .survey-progress{grid-template-columns:1fr;gap:8px}
  .survey-title{font-size:23px}
  .survey-title--matrix{font-size:20px}
  .survey-reveal{padding:18px}
  .actual-attr-row{grid-template-columns:1fr}
  .actual-attr-row > div + div{
    border-left:0;
    border-top:1px solid #f0e2ba;
  }
  .survey-five-scale__options{grid-template-columns:1fr}
  .preference-row{grid-template-columns:1fr}
  .preference-row > div + div{
    border-left:0;
    border-top:0;
    padding-top:0;
    color:#5b6474;
  }
  .preference-row.is-top > div + div{color:#1f2937}
  .hotel-order-preview__search{grid-template-columns:1fr 1fr}
  .hotel-order-preview__search > b{min-height:34px}
  .hotel-order-preview__card{grid-template-columns:28px 58px minmax(0, 1fr)}
  .hotel-order-preview__photo{width:58px;height:46px}
  .hotel-order-preview__price,
  .hotel-order-preview__button{display:none}
  .survey-actions{justify-content:stretch}
  .survey-actions .btn,
  .survey-actions .btn2{flex:1}
  .search-box{grid-template-columns:1fr}
  .search-submit{min-height:48px}
  .layout{grid-template-columns:1fr}
  .card{grid-template-columns:1fr}
  .card__body{grid-template-columns:1fr}
  .priceBox{border-left:0; padding-left:0; border-top:1px solid var(--line); padding-top:10px; text-align:left}
  .booking-scoreline{justify-content:flex-start}
  .modal{width:100%; margin:0; min-height:100%; max-height:100vh; border-radius:0}
  .shopper-profile-modal{width:100%}
  .modal__top-actions{align-items:flex-end;flex-direction:column-reverse}
  .shopper-profile-row{grid-template-columns:1fr;gap:3px}
  .modal__grid{grid-template-columns:1fr}
  .modal__left{border-right:0; border-bottom:1px solid var(--line)}
  .about-card-grid{grid-template-columns:1fr}
  .category-bars{grid-template-columns:1fr}
  .hotel-area-head{flex-direction:column}
  .area-grid{grid-template-columns:1fr}
  .amenity-details-head{flex-direction:column}
  .amenity-detail-grid{grid-template-columns:1fr}
  .study-flow{align-items:stretch;flex-direction:column}
  .reviews__tools{align-items:flex-start; flex-direction:column}
  .reviews__actions{justify-content:flex-start}
  .reviews__list{max-height:none}
  .ai-review-summary{
    margin:12px 12px 6px;
    padding:16px;
  }
  .ai-review-summary__head{display:block}
  .ai-review-summary__count{margin-top:6px}
  .ai-review-summary__grid{grid-template-columns:1fr;gap:16px}
  .review{
    grid-template-columns:1fr;
    gap:16px;
  }
  .review__guestDetails{margin-top:14px}
  .review__title{font-size:17px}
  .review__textBlock p{font-size:14px}
}

@media (max-width: 680px){
  .revealed-attributes-modal__header{
    padding:16px;
  }
  .revealed-attributes-modal__heading .modal__title{
    font-size:21px;
  }
  .revealed-attributes-modal__body{
    padding:16px;
  }
  .revealed-attributes-modal__table-wrap{
    overflow:visible;
  }
  .revealed-attributes-modal .actual-attr-table{
    min-width:0;
    gap:10px;
    border:0;
    border-radius:0;
    overflow:visible;
    background:transparent;
    box-shadow:none;
  }
  .revealed-attributes-modal .actual-attr-row--head{
    display:none;
  }
  .revealed-attributes-modal .actual-attr-row:not(.actual-attr-row--head){
    grid-template-columns:1fr 1fr;
    border:1px solid #d7dee8;
    border-radius:8px;
    overflow:hidden;
    background:#fff;
  }
  .revealed-attributes-modal .actual-attr-row:not(.actual-attr-row--head) > div{
    border:0;
    padding:10px 12px;
  }
  .revealed-attributes-modal .actual-attr-row:not(.actual-attr-row--head) > div:first-child{
    grid-column:1 / -1;
    border-bottom:1px solid #e3e8ef;
    background:#eef3f9;
    font-weight:800;
  }
  .revealed-attributes-modal .actual-attr-row:not(.actual-attr-row--head) > div:nth-child(2),
  .revealed-attributes-modal .actual-attr-row:not(.actual-attr-row--head) > div:nth-child(3){
    display:grid;
    gap:4px;
  }
  .revealed-attributes-modal .actual-attr-row:not(.actual-attr-row--head) > div:nth-child(2){
    border-right:1px solid #e3e8ef;
  }
  .revealed-attributes-modal .actual-attr-row:not(.actual-attr-row--head) > div:nth-child(2)::before{
    content:"Your choice";
  }
  .revealed-attributes-modal .actual-attr-row:not(.actual-attr-row--head) > div:nth-child(3)::before{
    content:"Actual value";
  }
  .revealed-attributes-modal .actual-attr-row:not(.actual-attr-row--head) > div:nth-child(2)::before,
  .revealed-attributes-modal .actual-attr-row:not(.actual-attr-row--head) > div:nth-child(3)::before{
    color:#64748b;
    font-size:11px;
    line-height:1.2;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.03em;
  }
}
