:root {
  --ink: #13241d;
  --muted: #65736d;
  --brand: #e85d35;
  --brand-dark: #c84420;
  --soft: #f3f6f4;
  --line: #dfe6e2;
  --gold: #f6a700;
}
* {
  box-sizing: border-box;
}
body {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: #fff;
}
p {
  font-size: 15px !important;
}
.home-destination-card {
  background-image:
    linear-gradient(0deg, rgba(8, 28, 21, 0.8), rgba(8, 28, 21, 0.08)),
    var(--destination-image);
  background-size: cover;
  background-position: center;
}
.home-destination-card small {
  display: inline-flex;
  background: #ed5d36;
  color: #fff;
  border-radius: 50px;
  padding: 0.3rem 0.6rem;
  font-size: 0.62rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
}
.home-search-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.home-search-chips > a {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 210px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  text-decoration: none;
  background: #fff;
  box-shadow: 0 8px 25px rgba(18, 42, 33, 0.05);
  transition: 0.18s;
}
.home-search-chips > a:hover {
  transform: translateY(-2px);
  border-color: #ed9c83;
}
.home-search-chips i {
  color: var(--brand);
}
.home-search-chips span {
  display: flex;
  flex-direction: column;
}
.home-search-chips strong {
  font-size: 0.78rem;
}
.home-search-chips small {
  font-size: 0.65rem;
  color: var(--muted);
}
.home-search-chips em {
  margin-left: auto;
  font-style: normal;
  font-size: 0.57rem;
  color: var(--brand);
  font-weight: 800;
}
.home-hotel-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 340px);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px 18px;
}
.home-hotel-slider::-webkit-scrollbar {
  display: none;
}
.home-hotel-slider > .hotel-card {
  scroll-snap-align: start;
  color: var(--ink);
  text-decoration: none;
  background: #fff;
}
.home-slider-controls {
  display: flex;
  gap: 8px;
}
.home-slider-controls button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
}
.home-collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.home-collection-grid > a {
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  border-radius: 20px;
  overflow: hidden;
  padding: 22px;
  color: #fff;
  text-decoration: none;
  background:
    linear-gradient(0deg, rgba(5, 24, 17, 0.88), rgba(5, 24, 17, 0.08)),
    var(--collection-image), linear-gradient(135deg, #173c30, #315c4c);
  background-size: cover;
  background-position: center;
  transition: 0.2s;
}
.home-collection-grid > a:hover {
  transform: translateY(-3px);
}
.home-collection-grid span {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  border-radius: 50px;
  background: #ed5d36;
  font-size: 0.58rem;
  font-weight: 800;
}
.home-collection-grid h3 {
  font-size: 1.25rem;
  margin: 0.6rem 0 0.3rem;
}
.home-collection-grid p {
  font-size: 0.72rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}
@media (max-width: 991px) {
  .home-collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .home-collection-grid {
    grid-template-columns: 1fr;
  }
  .home-collection-grid > a {
    min-height: 220px;
  }
  .home-hotel-slider {
    grid-auto-columns: 82vw;
  }
  .home-search-chips > a {
    width: 100%;
  }
}
.eyebrow {
  color: var(--brand);
}
.ota-hero {
  min-height: 550px;
  background:
    linear-gradient(90deg, rgba(8, 24, 18, 0.9), rgba(8, 24, 18, 0.28)),
    var(--hero-image) center/cover;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero-content {
  padding-top: 75px;
  padding-bottom: 100px;
}
.ota-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 0.98;
  max-width: 780px;
  font-weight: 700;
  letter-spacing: -0.045em;
}
.ota-hero > div > p {
  font-size: 1.2rem;
  max-width: 620px;
  color: #e4ebe7;
  margin: 1.5rem 0 2rem;
}
.eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.17em;
    background: #ee643c;
    color: #fff;
    padding: 2px 5px 2px 5px;
    border-radius: 10px;
}
.ota-search-form {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.25fr auto;
  gap: 2px;
  background: #fff;
  padding: 7px;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  color: var(--ink);
  position: relative;
  z-index: 999 !important;
}
.search-field {
  position: relative;
  padding: 8px 14px;
  border-right: 1px solid var(--line);
  min-width: 0;
}
.search-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-left: 27px;
}
.field-control {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  width: 100%;
  min-height: 34px;
  color: var(--ink);
  text-align: left;
  padding: 0;
}
.field-control input {
  border: 0;
  outline: 0;
  width: 100%;
  font-weight: 650;
  color: var(--ink);
  background: transparent;
}
.field-control i {
  font-size: 1.05rem;
  color: var(--brand);
}
.btn-search {
  background: var(--brand);
  color: #fff;
  border: 0;
  border-radius: 12px;
  padding: 0 26px;
  font-weight: 750;
}
.btn-search:hover {
  background: var(--brand-dark);
  color: #fff;
}
.autocomplete-results,
.guest-menu {
  position: absolute;
  z-index: 50;
  left: 0;
  right: 0;
  top: calc(100% + 15px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.17);
  overflow: hidden;
  display: none;
}
.autocomplete-results.show,
.guest-menu.show {
  display: block;
}
.autocomplete-item {
  padding: 13px 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--line);
}
.autocomplete-item:hover {
  background: var(--soft);
}
.autocomplete-item strong,
.autocomplete-item small {
  display: block;
}
.guest-menu {
  padding: 16px;
  min-width: 260px;
}
.guest-menu > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 13px;
}
.guest-menu input {
  width: 80px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px;
}
.search-error {
  position: absolute;
  top: calc(100% + 8px);
  left: 8px;
  color: #fff;
  font-weight: 650;
}
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.trust-strip .col-md-4 {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  column-gap: 10px;
}
.trust-strip i {
  grid-row: span 2;
  font-size: 1.7rem;
  color: var(--brand);
}
.trust-strip small {
  color: var(--muted);
}
/* .section-space {
  padding-top: 90px;
  padding-bottom: 90px;
} */
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 28px;
}
.section-head h2,
section h2 {
  font-size: clamp(2rem, 4vw, 1.8rem 28.8px);
  font-weight: 700;
  letter-spacing: -0.055em;
}
.bg-soft {
  background: var(--soft);
}
.destination-card {
  height: 260px;
  border-radius: 22px;
  background:
    linear-gradient(0deg, rgba(8, 24, 18, 0.78), transparent),
    url("/img/airline/hotel-banner.jpg") center/cover;
  display: flex;
  align-items: end;
  padding: 26px;
  color: #fff;
  text-decoration: none;
  transition: 0.25s;
}
.destination-card:hover {
  transform: translateY(-4px);
  color: #fff;
}
.destination-card h3 {
  font-weight: 800;
  margin: 0;
}
.hotel-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.2s;
}
.hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 45px rgba(18, 35, 27, 0.1);
}
.hotel-card > img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.offer-card,
.quote-card {
  padding: 28px;
  border-radius: 20px;
  background: var(--soft);
  height: 100%;
}
.offer-card > span {
  color: var(--brand);
  font-weight: 800;
}
.quote-card {
  background: #21332b;
}
.ota-footer{background:#101815;color:#c9d1cd;padding:0;font-size:.9rem;overflow:hidden}
.ota-footer h3{margin:0 0 20px;color:#fff;font-size:.8rem;font-weight:850;letter-spacing:.08em;text-transform:uppercase}
.ota-footer a{color:#c9d1cd;text-decoration:none;transition:color .2s ease,transform .2s ease}
.ota-footer a:hover{color:#fff}
.footer-assistance{position:relative;background:linear-gradient(110deg,#fff8f4 0%,#f6f1ed 55%,#fff 100%);color:#10241d;border-top:1px solid #f0e9e5}
.footer-assistance:after{position:absolute;inset:0;background:radial-gradient(circle at 12% 50%,rgba(237,93,54,.12),transparent 24%);content:"";pointer-events:none}
.footer-assistance-inner{position:relative;z-index:1;display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:28px;min-height:205px}
.footer-agent{position:relative;display:grid;place-items:center;width:130px;height:130px}
.footer-agent-ring{position:absolute;inset:0;border:1px solid rgba(237,93,54,.22);border-radius:50%;box-shadow:0 18px 50px rgba(63,39,28,.13)}
.footer-agent-icon{display:grid;place-items:center;width:94px;height:94px;border-radius:50%;background:linear-gradient(145deg,#ed5d36,#ff805a);color:#fff;font-size:2.7rem;box-shadow:0 15px 35px rgba(237,93,54,.3)}
.footer-assistance-copy p{margin:0 0 5px;color:#64736d;font-size:1rem}
.footer-assistance-copy strong{display:block;color:#14271f;font-size:clamp(1.85rem,3vw,3.25rem);line-height:1.05;letter-spacing:-.035em}
.footer-assistance-copy strong span{color:#ed5d36}
.footer-call-link{display:flex!important;align-items:center;gap:14px;margin:0!important;padding:15px 20px;border:1px solid #e5ddd8;border-radius:18px;background:#fff!important;color:#14271f!important;box-shadow:0 14px 35px rgba(32,45,39,.1)}
.footer-call-link>span:first-child{display:grid;place-items:center;width:45px;height:45px;border-radius:14px;background:#14271f;color:#fff;font-size:1.1rem}
.footer-call-link>span:last-child{font-size:1.12rem;font-weight:800;white-space:nowrap}
.footer-call-link small{display:block;color:#ed5d36;font-size:.58rem;font-weight:850;letter-spacing:.12em}
.footer-call-link:hover{transform:translateY(-3px)}
.footer-main{background:#121a17}
.footer-navigation{display:grid;grid-template-columns:minmax(190px,1.2fr) repeat(2,minmax(125px,.7fr)) minmax(220px,1fr);gap:34px;padding:55px max(32px,calc((100vw - 1320px)/2)) 48px max(32px,calc((100vw - 1320px)/2))}
.footer-brand{display:inline-flex!important;align-items:center;gap:10px;margin:0 0 18px!important;color:#fff!important;font-size:1.2rem;font-weight:800}
.footer-brand-mark{display:grid;place-items:center;width:42px;height:42px;border-radius:12px;background:#ed5d36;color:#fff}
.footer-brand strong{color:#ed5d36}
.footer-brand small{display:block;color:#99a69f;font-size:.48rem;letter-spacing:.17em}
.footer-brand-block p{max-width:260px;color:#8f9d96;font-size:.78rem;line-height:1.7}
.footer-trust-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
.footer-trust-row span{padding:6px 9px;border:1px solid #2b3933;border-radius:8px;color:#aebbb5;font-size:.65rem}
.footer-trust-row i{color:#ed5d36}
.footer-link-column a{display:block;margin:0 0 4px}
.footer-link-column a:hover{transform:translateX(3px);color:#ed5d36}
.footer-contact-column>strong{display:block;margin-bottom:12px;color:#fff}
.footer-contact-column address,.footer-contact-column>a{display:flex;align-items:flex-start;gap:9px;margin:0 0 3px!important;font-style:normal;line-height:1.55}
.footer-contact-column i{flex:0 0 auto;color:#ed5d36}
.footer-contact-column small{display:block;margin-top:16px;color:#87958e;font-size:.67rem}
.footer-newsletter{display:flex;flex-direction:column;justify-content:center;padding:55px max(32px,calc((100vw - 1320px)/2)) 48px 45px;background:linear-gradient(135deg,#d94d28,#a83714);color:#fff}
.footer-newsletter-eyebrow{margin-bottom:12px;font-size:.67rem;font-weight:850;letter-spacing:.13em;text-transform:uppercase}
.footer-newsletter h3{margin-bottom:8px;font-size:1.75rem;letter-spacing:-.02em;text-transform:none}
.footer-newsletter p{max-width:540px;margin:0 0 20px;color:#fff2ed}
.footer-subscribe-control{display:flex;align-items:center;gap:12px;padding:7px 7px 7px 17px;border-radius:16px;background:#fff;box-shadow:0 13px 30px rgba(92,29,8,.2)}
.footer-subscribe-control>i{color:#ed5d36}
.footer-subscribe-control input{min-width:0;flex:1;border:0;outline:0;background:transparent;color:#15251f}
.footer-subscribe-control button{flex:0 0 auto;padding:12px 18px;border:0;border-radius:11px;background:#14271f;color:#fff;font-weight:750}
.footer-subscribe-control button:disabled{opacity:.65}
.footer-newsletter>small{margin-top:15px;color:#f6c9ba;line-height:1.6}
.footer-newsletter>small a{display:inline;margin:0;color:#fff;text-decoration:underline}
.footer-newsletter-message{min-height:21px;padding-top:7px;font-size:.75rem}.footer-newsletter-message.is-success{color:#d8ffe5}.footer-newsletter-message.is-error{color:#fff0a8}
.footer-legal{border-top:1px solid #28332f;background:#0e1512;padding:25px 0;color:#8f9a95;font-size:.68rem;line-height:1.65}
.footer-legal p{margin:0 0 7px}.footer-legal p:last-child{margin-bottom:0}.footer-legal strong{color:#bec8c3}
.footer-bottom{margin:0;padding:17px 0;border-top:1px solid #252e2a;background:#0b110f;color:#8f9a95;font-size:.72rem}
.footer-bottom .container{display:flex;justify-content:space-between;gap:20px}
@media(max-width:1199px){.footer-navigation{padding:48px max(24px,calc((100vw - 960px)/2));grid-template-columns:1.2fr repeat(3,1fr)}.footer-newsletter{padding:42px max(24px,calc((100vw - 960px)/2))}}
@media(max-width:991px){.footer-assistance-inner{grid-template-columns:auto 1fr;min-height:180px}.footer-call-link{grid-column:2;width:max-content}.footer-navigation{grid-template-columns:1.25fr repeat(2,1fr)}.footer-contact-column{grid-column:1/-1}.footer-agent{grid-row:1/3}}
@media(max-width:767px){.footer-assistance-inner{grid-template-columns:1fr;gap:18px;padding-top:35px;padding-bottom:35px;text-align:center}.footer-agent{grid-row:auto;margin:auto;width:96px;height:96px}.footer-agent-icon{width:72px;height:72px;font-size:2rem}.footer-call-link{grid-column:auto;justify-self:center}.footer-navigation{grid-template-columns:1fr 1fr;gap:34px 24px;padding:42px 20px}.footer-brand-block,.footer-contact-column{grid-column:1/-1}.footer-newsletter{padding:40px 20px}.footer-bottom .container{flex-direction:column;text-align:center;gap:5px}}
@media(max-width:480px){.footer-assistance-copy strong{font-size:1.75rem}.footer-call-link{width:100%;justify-content:center}.footer-navigation{grid-template-columns:1fr}.footer-brand-block,.footer-contact-column{grid-column:auto}.footer-subscribe-control{display:grid;grid-template-columns:auto 1fr}.footer-subscribe-control button{grid-column:1/-1;width:100%}.footer-newsletter h3{font-size:1.5rem}}

/* Keep below-the-fold homepage content out of the mobile rendering critical path. */
.featured-destinations-section,.popular-searches-section,.home-hotel-slider,.home-collection-grid{content-visibility:auto;contain-intrinsic-size:auto 520px}
@media(max-width:768px){.popular-searches-section{background-attachment:scroll!important}}
.listing-hero {
  background: var(--ink);
  color: #fff;
  padding: 38px 0 58px;
}
.listing-hero .ota-search-form {
  margin-top: 25px;
  background: #524a4a;
}
.listing-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  padding: 45px 15px 90px !important;
}
.filter-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  height: max-content;
  position: sticky;
  top: 20px;
}
.filter-group {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.filter-group:last-child {
  border: 0;
}
.result-card {
  display: grid;
  grid-template-columns: 280px 1fr 190px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #fff;
}
.result-image {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}
.result-main {
  padding: 22px;
}
.result-price {
  padding: 22px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: right;
}
.facility {
  font-size: 0.78rem;
  background: var(--soft);
  padding: 6px 9px;
  border-radius: 50px;
  display: inline-flex;
  margin: 3px;
}
.score {
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  padding: 6px 9px;
  font-weight: 800;
}
.discount {
  color: #087f5b;
  font-weight: 750;
}
.skeleton {
  height: 250px;
  border-radius: 18px;
  background: linear-gradient(90deg, #edf1ef, #f8faf9, #edf1ef);
  background-size: 200%;
  animation: load 1.2s infinite;
}
@keyframes load {
  to {
    background-position: -200% 0;
  }
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 230px 230px;
  gap: 8px;
  border-radius: 22px;
  overflow: hidden;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-grid img:first-child {
  grid-row: span 2;
}
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 45px;
}
.booking-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(18, 35, 27, 0.09);
  position: sticky;
  top: 20px;
}
.map-frame {
  width: 100%;
  height: 340px;
  border: 0;
  border-radius: 18px;
}
.review-card {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
@media (max-width: 991px) {
  .ota-search-form {
    grid-template-columns: 1fr 1fr;
  }
  .destination-field,
  .guest-field {
    grid-column: span 2;
  }
  .btn-search {
    min-height: 54px;
    grid-column: span 2;
  }
  .ota-hero {
    min-height: 760px;
  }
  .listing-layout {
    grid-template-columns: 1fr;
  }
  .filter-panel {
    position: static;
  }
  .result-card {
    grid-template-columns: 220px 1fr;
  }
  .result-price {
    grid-column: 2;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 14px;
  }
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-rows: 180px 180px;
  }
}
@media (max-width: 600px) {
  .hero-content {
    padding-top: 45px;
  }
  .ota-search-form {
    display: block;
    padding: 10px;
  }
  .search-field {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 12px;
  }
  .btn-search {
    width: 100%;
    height: 56px;
    margin-top: 8px;
  }
  .search-error {
    position: static;
    color: #ffddd3;
    padding: 8px;
  }
  .ota-hero {
    min-height: 800px;
  }
  .section-space {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .result-card {
    display: block;
  }
  .result-image {
    height: 210px;
    min-height: 0;
  }
  .result-price {
    border: 0;
    border-top: 1px solid var(--line);
    text-align: left;
  }
  .gallery-grid {
    display: flex;
    overflow-x: auto;
  }
  .gallery-grid img {
    min-width: 88%;
    height: 280px;
  }
  .listing-hero {
    padding-top: 25px;
  }
}

/* Hotel detail experience */
.hotel-detail-page {
  background: #fff;
  overflow-x: hidden;
}
.hotel-detail-page main {
  background: linear-gradient(180deg, #fbfcff 0, #fff 420px);
}
.hotel-detail-shell {
  padding-top: 22px;
  padding-bottom: 80px;
}
.hotel-detail-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.hotel-detail-topbar > nav {
  min-width: 0;
}
.hotel-breadcrumb {
  font-size: 0.78rem;
  white-space: nowrap;
  overflow: hidden;
}
.hotel-breadcrumb .breadcrumb-item {
  max-width: 210px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hotel-breadcrumb a {
  color: #1769d2;
  text-decoration: none;
}
.hotel-detail-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.hotel-icon-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: #24322c;
  padding: 7px 9px;
  border-radius: 9px;
  font-size: 0.84rem;
}
.hotel-icon-action:hover {
  background: #edf4ff;
  color: #075fc9;
}
.hotel-icon-action.active {
  color: #e34f3f;
}
.hotel-icon-action:disabled {
  opacity: 0.45;
}
.hotel-hero-layout {
  display: grid;
  grid-template-columns: minmax(440px, 1.18fr) minmax(320px, 1fr) 270px;
  gap: 22px;
  align-items: start;
}
.hotel-hero-layout > * {
  min-width: 0;
}
.hotel-gallery {
  height: 370px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(135px, 0.65fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 4px;
  border-radius: 12px;
  overflow: hidden;
  background: #e9eeeb;
}
.hotel-gallery-1 {
  display: block;
}
.hotel-gallery-item {
  border: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: #e9eeeb;
}
.hotel-gallery-item-1 {
  grid-row: 1/-1;
}
.hotel-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.hotel-gallery-item:hover img {
  transform: scale(1.025);
}
.hotel-photo-count,
.hotel-view-photos {
  position: absolute;
  left: 13px;
  bottom: 12px;
  background: rgba(13, 27, 21, 0.82);
  color: #fff;
  border-radius: 7px;
  padding: 7px 10px;
  font-size: 0.76rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.hotel-view-photos {
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  white-space: nowrap;
}
.hotel-gallery-2,
.hotel-gallery-3 {
  grid-template-rows: repeat(2, 1fr);
}
.hotel-gallery-2 .hotel-gallery-item-2,
.hotel-gallery-3 .hotel-gallery-item-3 {
  grid-row: auto;
}
.hotel-gallery-empty {
  height: 370px;
  border-radius: 12px;
  background: var(--soft);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  color: var(--muted);
}
.hotel-gallery-empty i {
  font-size: 3rem;
}
.hotel-summary {
  padding: 15px 0;
  min-width: 0;
}
.hotel-star-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffad00;
  font-size: 1rem;
}
.hotel-star-line small {
  color: var(--muted);
  font-size: 0.76rem;
}
.hotel-summary h1 {
  font-size: clamp(1.8rem, 2.5vw, 2.7rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  font-weight: 800;
  margin: 12px 0;
  overflow-wrap: anywhere;
}
.hotel-address {
  font-size: 0.84rem;
  color: #647069;
  margin: 0 0 3px;
  line-height: 1.55;
}
.hotel-map-link {
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}
.hotel-rating-summary,
.hotel-rate-rating,
.hotel-related-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hotel-rating-summary {
  margin-top: 25px;
}
.hotel-rating-score {
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  padding: 0 8px;
  background: #075aab;
  color: #fff;
  border-radius: 4px;
  font-weight: 800;
}
.hotel-rating-summary span:last-child,
.hotel-rate-rating span:last-child {
  display: flex;
  flex-direction: column;
}
.hotel-rating-summary small,
.hotel-rate-rating small {
  color: var(--muted);
  font-size: 0.73rem;
}
.hotel-benefits {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.hotel-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #edf7e9;
  color: #377332;
  border-radius: 5px;
  padding: 8px 11px;
  font-size: 0.75rem;
}
.hotel-rate-card {
  border: 1px solid #dbe3e9;
  border-radius: 10px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(25, 40, 70, 0.06);
  position: sticky;
  top: 18px;
  z-index: 5;
}
.hotel-rate-eyebrow {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hotel-rate-guarantee {
  color: #3e8238;
  font-size: 0.72rem;
  margin: 10px 0;
}
.hotel-rate-price {
  font-size: 1.75rem;
  line-height: 1.15;
  font-weight: 800;
  color: #14221c;
  margin-top: 12px;
}
.hotel-rate-price span {
  font-size: 0.85rem;
}
.hotel-rate-price small {
  font-size: 0.72rem;
  font-weight: 500;
  color: #58645e;
}
.hotel-rate-card > p {
  font-size: 0.72rem;
  color: var(--muted);
  margin: 7px 0;
}
.hotel-rate-unavailable {
  font-size: 0.86rem !important;
}
.hotel-rate-card hr {
  border-color: #dbe3e9;
  opacity: 1;
}
.hotel-rate-rating .hotel-rating-score {
  min-width: 38px;
  height: 38px;
}
.hotel-rate-benefits {
  list-style: none;
  padding: 14px 0 4px;
  margin: 0;
}
.hotel-rate-benefits li {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 0.76rem;
  margin-bottom: 10px;
}
.hotel-rate-benefits i {
  color: #42883d;
}
.hotel-availability-btn {
  display: block;
  width: 100%;
  padding: 11px;
  font-size: 0.82rem;
  font-weight: 750;
}
.hotel-secure-note {
  text-align: center;
  font-size: 0.73rem;
  color: #65716b;
  margin-top: 13px;
}
.hotel-secure-note small {
  display: block;
  margin-top: 8px;
  line-height: 1.4;
}
.hotel-section-nav {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  margin-top: 32px;
  overflow-x: auto;
  scrollbar-width: none;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 4;
}
.hotel-section-nav::-webkit-scrollbar {
  display: none;
}
.hotel-section-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #56615c;
  text-decoration: none;
  padding: 15px 18px 13px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  font-size: 0.8rem;
}
.hotel-section-nav a.active,
.hotel-section-nav a:hover {
  color: #0968da;
  border-color: #0968da;
}
.hotel-content-with-rate {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 22px;
}
.hotel-content-with-rate:after {
  content: "";
}
.hotel-overview-card {
  border: 1px solid var(--line);
  border-radius: 9px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 18px 0 0;
}
.hotel-overview-card > div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px;
  border-right: 1px solid var(--line);
  min-width: 0;
}
.hotel-overview-card > div:last-child {
  border: 0;
}
.hotel-overview-card i {
  font-size: 1.35rem;
}
.hotel-overview-card span {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.hotel-overview-card small {
  color: var(--muted);
  font-size: 0.67rem;
}
.hotel-overview-card strong {
  font-size: 0.72rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hotel-content-section {
  padding: 28px 14px 28px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 65px;
}
.hotel-content-section h2,
.hotel-related-section h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 6px 0 13px;
}
.hotel-description {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 920px;
  margin: 0;
}
.hotel-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}
.hotel-review-highlight {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
}
.hotel-review-highlight .hotel-rating-score {
  height: 38px;
  min-width: 38px;
}
.hotel-amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.hotel-amenity-grid > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 9px;
  background: #f7f9f8;
  font-size: 0.78rem;
}
.hotel-amenity-grid i {
  font-size: 1.2rem;
  color: #266c56;
}
.hotel-review-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.hotel-review-list article {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
}
.hotel-review-list article > div {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
}
.hotel-review-list article > div span {
  color: #075aab;
  font-weight: 800;
}
.hotel-review-list h3 {
  font-size: 0.9rem;
  font-weight: 750;
  margin: 13px 0 5px;
}
.hotel-review-list p {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}
.hotel-map-frame {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 10px;
  margin-top: 8px;
}
.hotel-nearby-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.hotel-nearby-grid > div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 9px;
  font-size: 0.77rem;
}
.hotel-nearby-grid span {
  color: var(--muted);
}
.hotel-policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.hotel-policy-grid > div {
  display: flex;
  gap: 12px;
  padding: 15px;
  background: #f7f9f8;
  border-radius: 9px;
}
.hotel-policy-grid i {
  font-size: 1.2rem;
  color: #1769d2;
}
.hotel-policy-grid span {
  display: flex;
  flex-direction: column;
}
.hotel-policy-grid strong {
  font-size: 0.79rem;
}
.hotel-policy-grid small {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 4px;
}
.hotel-related-section {
  padding: 35px 10px 0;
  border-top: 1px solid var(--line);
}
.hotel-related-section .hotel-section-heading > a {
  font-size: 0.8rem;
  text-decoration: none;
}
.hotel-related-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding: 2px 2px 15px;
  scroll-snap-type: x mandatory;
}
.hotel-related-card {
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow: hidden;
  background: #fff;
  scroll-snap-align: start;
}
.hotel-related-card > a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.hotel-related-card img,
.hotel-related-placeholder {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.hotel-related-placeholder {
  display: grid;
  place-items: center;
  background: var(--soft);
  font-size: 2rem;
  color: var(--muted);
}
.hotel-related-card > a > div {
  padding: 12px;
}
.hotel-related-card h3 {
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 0 5px;
}
.hotel-related-stars {
  color: #ffad00;
  font-size: 0.72rem;
}
.hotel-related-meta {
  font-size: 0.69rem;
  margin-top: 8px;
}
.hotel-related-meta .hotel-rating-score {
  min-width: 30px;
  height: 30px;
}
.hotel-related-price {
  display: block;
  text-align: right;
  font-size: 0.85rem;
  margin-top: 8px;
}
.hotel-related-price small {
  font-size: 0.65rem;
  font-weight: 500;
}
.hotel-gallery-modal {
  background: #101715;
  color: #fff;
}
.hotel-gallery-modal .modal-header {
  border-color: #34423c;
}
.hotel-gallery-modal .modal-body {
  display: grid;
  place-items: center;
  padding: 0;
}
.hotel-gallery-modal .carousel,
.hotel-gallery-modal .carousel-inner,
.hotel-gallery-modal .carousel-item {
  width: 100%;
  height: calc(100vh - 70px);
}
.hotel-gallery-modal .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hotel-mobile-bookbar {
  display: none;
}
.hotel-toast {
  background: #13241d;
  color: #fff;
}

@media (max-width: 1199px) {
  .hotel-hero-layout {
    grid-template-columns: minmax(380px, 1.15fr) minmax(280px, 1fr);
  }
  .hotel-hero-layout > .hotel-rate-card {
    display: none;
  }
  .hotel-content-with-rate {
    grid-template-columns: 1fr;
  }
  .hotel-content-with-rate:after {
    display: none;
  }
  .hotel-mobile-bookbar {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    z-index: 25;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 10px max(15px, calc((100vw - 960px) / 2));
    box-shadow: 0 -8px 25px rgba(20, 35, 28, 0.12);
  }
  .hotel-mobile-bookbar > div {
    display: flex;
    flex-direction: column;
  }
  .hotel-mobile-bookbar small {
    font-size: 0.65rem;
    color: var(--muted);
  }
  .hotel-mobile-bookbar strong {
    font-size: 0.9rem;
  }
  .hotel-mobile-bookbar .btn {
    font-size: 0.8rem;
    font-weight: 750;
  }
  .hotel-detail-page .ota-footer {
    padding-bottom: 80px;
  }
}
@media (max-width: 991px) {
  .hotel-hero-layout {
    grid-template-columns: 1fr;
  }
  .hotel-gallery {
    height: 440px;
  }
  .hotel-summary {
    padding: 4px 2px;
  }
  .hotel-overview-card {
    grid-template-columns: repeat(2, 1fr);
  }
  .hotel-overview-card > div:nth-child(2) {
    border-right: 0;
  }
  .hotel-overview-card > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .hotel-amenity-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .hotel-detail-shell {
    padding-top: 12px;
  }
  .hotel-detail-topbar {
    align-items: flex-start;
  }
  .hotel-breadcrumb .breadcrumb-item:not(:first-child):not(:last-child) {
    display: none;
  }
  .hotel-icon-action span {
    display: none;
  }
  .hotel-gallery {
    height: 310px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
  .hotel-gallery-item {
    display: none;
  }
  .hotel-gallery-item:first-child {
    display: block;
    grid-row: auto;
  }
  .hotel-view-photos {
    display: none;
  }
  .hotel-summary h1 {
    font-size: 1.75rem;
  }
  .hotel-rating-summary {
    margin-top: 18px;
  }
  .hotel-section-nav {
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 6px;
  }
  .hotel-section-nav a {
    padding: 13px 12px;
  }
  .hotel-overview-card {
    grid-template-columns: 1fr 1fr;
  }
  .hotel-overview-card > div {
    padding: 13px 10px;
    gap: 8px;
  }
  .hotel-overview-card i {
    font-size: 1.05rem;
  }
  .hotel-overview-card strong {
    font-size: 0.67rem;
  }
  .hotel-content-section {
    padding-left: 2px;
    padding-right: 2px;
  }
  .hotel-amenity-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .hotel-amenity-grid > div {
    padding: 11px;
    font-size: 0.72rem;
  }
  .hotel-review-list,
  .hotel-policy-grid,
  .hotel-nearby-grid {
    grid-template-columns: 1fr;
  }
  .hotel-related-section {
    padding-left: 0;
    padding-right: 0;
  }
  .hotel-related-track {
    grid-auto-columns: 78%;
  }
  .hotel-map-frame {
    height: 290px;
  }
}
@media (max-width: 420px) {
  .hotel-gallery {
    height: 260px;
  }
  .hotel-benefits span {
    padding: 7px 9px;
  }
  .hotel-overview-card {
    grid-template-columns: 1fr;
  }
  .hotel-overview-card > div {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }
  .hotel-overview-card > div:last-child {
    border-bottom: 0 !important;
  }
  .hotel-amenity-grid {
    grid-template-columns: 1fr;
  }
  .hotel-mobile-bookbar {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Affiliate booking information and Agoda handoff */
.affiliate-checkout-page {
  background: #f5f7f6;
}
.affiliate-checkout-page main {
  padding-bottom: 80px;
}
.affiliate-checkout-hero {
  background: linear-gradient(120deg, #10271f, #174534);
  color: #fff;
  padding: 48px 0 78px;
}
.affiliate-checkout-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  margin: 8px 0;
}
.affiliate-checkout-hero > div > p {
  color: #d6e3dd;
  max-width: 680px;
}
.booking-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  padding: 0;
  margin: 35px 0 0;
  max-width: 860px;
  position: relative;
}
.booking-progress:before {
  content: "";
  position: absolute;
  height: 2px;
  background: #527267;
  left: 22px;
  right: 22px;
  top: 22px;
}
.booking-progress li {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.booking-progress li:nth-child(2) {
  justify-content: center;
}
.booking-progress li:last-child {
  justify-content: flex-end;
}
.booking-progress li > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 2px solid #6e8c81;
  background: #17362b;
  border-radius: 50%;
  font-weight: 800;
  z-index: 1;
}
.booking-progress li.complete > span {
  background: #43a26e;
  border-color: #43a26e;
}
.booking-progress li.active > span {
  background: #fff;
  color: #153a2d;
  border-color: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
}
.booking-progress li > div {
  display: flex;
  flex-direction: column;
}
.booking-progress strong {
  font-size: 0.82rem;
}
.booking-progress small {
  font-size: 0.68rem;
  color: #abc0b7;
}
.affiliate-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
  margin-top: -42px;
}
.booking-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px;
  margin-bottom: 18px;
  box-shadow: 0 10px 30px rgba(18, 35, 27, 0.05);
}
.booking-trust-row > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 14px;
  border-right: 1px solid var(--line);
}
.booking-trust-row > div:last-child {
  border: 0;
}
.booking-trust-row i {
  font-size: 1.4rem;
  color: #27845e;
}
.booking-trust-row span {
  display: flex;
  flex-direction: column;
}
.booking-trust-row strong {
  font-size: 0.75rem;
}
.booking-trust-row small {
  font-size: 0.63rem;
  color: var(--muted);
}
.affiliate-form-error {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.affiliate-form-error > span {
  display: flex;
  flex-direction: column;
  font-size: 0.83rem;
}
.affiliate-contact-card,
.affiliate-hotel-summary,
.affiliate-support-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 45px rgba(18, 35, 27, 0.06);
}
.affiliate-contact-card {
  padding: 30px;
}
.affiliate-card-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.affiliate-card-heading > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #eaf6f0;
  color: #1c7754;
  font-size: 1.3rem;
}
.affiliate-card-heading h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0;
}
.affiliate-card-heading p {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 3px 0 0;
}
.affiliate-contact-card .form-label {
  font-size: 0.76rem;
  font-weight: 750;
}
.affiliate-contact-card .form-label > span {
  color: #d34b35;
}
.affiliate-contact-card .form-label small {
  font-weight: 500;
  color: var(--muted);
}
.affiliate-input {
  position: relative;
}
.affiliate-input > i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #718078;
  z-index: 1;
}
.affiliate-input .form-control {
  padding-left: 42px;
}
.affiliate-contact-card .form-control {
  min-height: 48px;
  border-color: #d9e1dd;
  border-radius: 9px;
  font-size: 0.85rem;
}
.affiliate-contact-card textarea.form-control {
  min-height: 95px;
}
.affiliate-contact-card .form-control:focus {
  border-color: #2c8a64;
  box-shadow: 0 0 0 0.2rem rgba(44, 138, 100, 0.12);
}
.affiliate-optional-fields {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 26px 0;
  padding: 18px 0;
}
.affiliate-optional-fields summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  list-style: none;
}
.affiliate-optional-fields summary::-webkit-details-marker {
  display: none;
}
.affiliate-optional-fields summary > span {
  font-size: 0.8rem;
  font-weight: 750;
}
.affiliate-optional-fields summary i {
  color: #21825d;
  margin-right: 6px;
}
.affiliate-optional-fields summary small {
  font-size: 0.68rem;
  color: var(--muted);
}
.affiliate-privacy-note {
  display: flex;
  gap: 10px;
  background: #f5f8f6;
  border-radius: 10px;
  padding: 13px;
  color: #5c6962;
}
.affiliate-privacy-note i {
  color: #27845e;
}
.affiliate-privacy-note p {
  font-size: 0.69rem;
  line-height: 1.55;
  margin: 0;
}
.affiliate-continue-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 18px;
  background: #ec6039;
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  font-weight: 800;
}
.affiliate-continue-btn:hover {
  background: #d94c25;
  color: #fff;
}
.affiliate-continue-btn:disabled {
  background: #afbab5;
}
.affiliate-redirect-note {
  text-align: center;
  font-size: 0.68rem;
  color: var(--muted);
  margin: 11px 0 0;
}
.affiliate-support-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  margin-top: 18px;
}
.affiliate-support-icon {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff0eb;
  color: #e5542e;
  font-size: 1.35rem;
}
.affiliate-support-card h2 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0;
}
.affiliate-support-card div:nth-child(2) {
  flex: 1;
}
.affiliate-support-card div:nth-child(2) > a {
  color: #1769d2;
  font-weight: 800;
  text-decoration: none;
}
.affiliate-support-card p {
  font-size: 0.7rem;
  color: var(--muted);
  margin: 2px 0 0;
}
.affiliate-support-card > .btn {
  white-space: nowrap;
  font-size: 0.76rem;
}
.affiliate-hotel-summary {
  overflow: hidden;
  position: sticky;
  top: 18px;
}
.affiliate-hotel-summary > img {
  width: 100%;
  height: 205px;
  object-fit: cover;
}
.affiliate-summary-body {
  padding: 22px;
}
.affiliate-summary-supplier {
  display: inline-block;
  background: #eaf6f0;
  color: #247352;
  border-radius: 50px;
  padding: 5px 9px;
  font-size: 0.62rem;
  font-weight: 750;
}
.affiliate-summary-body h2 {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 11px 0;
}
.affiliate-summary-score {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
}
.affiliate-summary-score strong {
  background: #075aab;
  color: #fff;
  padding: 7px;
  border-radius: 5px;
}
.affiliate-summary-body dl {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 17px 0;
  padding: 10px 0;
}
.affiliate-summary-body dl > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.72rem;
}
.affiliate-summary-body dt {
  font-weight: 600;
  color: #52615a;
}
.affiliate-summary-body dt i {
  margin-right: 6px;
}
.affiliate-summary-body dd {
  font-weight: 750;
  margin: 0;
  text-align: right;
}
.affiliate-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.affiliate-benefits h3 {
  width: 100%;
  font-size: 0.78rem;
  font-weight: 800;
}
.affiliate-benefits span {
  font-size: 0.65rem;
  background: #edf7e9;
  color: #34732f;
  padding: 6px 8px;
  border-radius: 5px;
}
.affiliate-benefits i {
  margin-right: 5px;
}
.affiliate-price-summary {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  margin-top: 16px;
  padding-top: 15px;
}
.affiliate-price-summary > span {
  font-size: 0.68rem;
  color: var(--muted);
}
.affiliate-price-summary > strong {
  font-size: 1.35rem;
}
.affiliate-price-summary > small {
  font-size: 0.62rem;
  color: var(--muted);
  line-height: 1.45;
}
.affiliate-related-section,
.affiliate-faq-section {
  margin-top: 70px;
}
.affiliate-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.affiliate-section-heading h2,
.affiliate-faq-section h2 {
  font-size: 1.7rem;
  font-weight: 850;
  letter-spacing: -0.03em;
  margin: 5px 0;
}
.affiliate-section-heading > a {
  font-size: 0.78rem;
}
.affiliate-related-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 2px 18px;
}
.affiliate-related-track article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
}
.affiliate-related-track article > a {
  color: inherit;
  text-decoration: none;
}
.affiliate-related-track img,
.affiliate-related-placeholder {
  width: 100%;
  height: 155px;
  object-fit: cover;
}
.affiliate-related-placeholder {
  display: grid;
  place-items: center;
  background: #e9eeeb;
  color: var(--muted);
  font-size: 2rem;
}
.affiliate-related-track article > a > div {
  padding: 13px;
}
.affiliate-related-track h3 {
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.affiliate-related-rating {
  display: block;
  color: #1769d2;
  font-size: 0.65rem;
}
.affiliate-related-track strong {
  display: block;
  text-align: right;
  margin-top: 9px;
  font-size: 0.85rem;
}
.affiliate-related-track strong small {
  font-size: 0.62rem;
  font-weight: 500;
}
.affiliate-faq-section {
  max-width: 900px;
}
.affiliate-faq-section > .text-center > p {
  font-size: 0.8rem;
  color: var(--muted);
}
.affiliate-faq-section .accordion {
  margin-top: 23px;
}
.affiliate-faq-section .accordion-item {
  border: 1px solid var(--line);
  border-radius: 10px !important;
  margin-bottom: 9px;
  overflow: hidden;
}
.affiliate-faq-section .accordion-button {
  font-size: 0.82rem;
  font-weight: 750;
  box-shadow: none;
}
.affiliate-faq-section .accordion-button:not(.collapsed) {
  background: #edf7f2;
  color: #175b41;
}
.affiliate-faq-section .accordion-body {
  font-size: 0.78rem;
  color: #59665f;
  line-height: 1.65;
}

@media (max-width: 991px) {
  .affiliate-checkout-layout {
    grid-template-columns: 1fr;
  }
  .affiliate-checkout-layout > aside {
    order: -1;
  }
  .affiliate-hotel-summary {
    position: static;
    display: grid;
    grid-template-columns: 240px 1fr;
  }
  .affiliate-hotel-summary > img {
    height: 100%;
    min-height: 260px;
  }
  .affiliate-summary-body {
    padding: 19px;
  }
  .affiliate-checkout-layout > aside {
    margin-bottom: -10px;
  }
}
@media (max-width: 767px) {
  .affiliate-checkout-hero {
    padding: 35px 0 68px;
  }
  .booking-progress li {
    display: block;
    text-align: center;
  }
  .booking-progress li:nth-child(2),
  .booking-progress li:last-child {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .booking-progress li:first-child {
    display: flex;
    flex-direction: column;
  }
  .booking-progress li > div {
    margin-top: 7px;
  }
  .booking-progress li > span {
    margin: auto;
  }
  .booking-progress small {
    display: none;
  }
  .booking-progress strong {
    font-size: 0.68rem;
  }
  .affiliate-checkout-layout {
    margin-top: -35px;
  }
  .booking-trust-row {
    padding: 9px;
  }
  .booking-trust-row > div {
    display: block;
    text-align: center;
    padding: 7px 4px;
  }
  .booking-trust-row i {
    font-size: 1.15rem;
  }
  .booking-trust-row span {
    margin-top: 5px;
  }
  .booking-trust-row small {
    display: none;
  }
  .booking-trust-row strong {
    font-size: 0.64rem;
  }
  .affiliate-contact-card {
    padding: 20px 16px;
  }
  .affiliate-optional-fields summary {
    align-items: flex-start;
    flex-direction: column;
  }
  .affiliate-support-card {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .affiliate-support-card > .btn {
    width: 100%;
  }
  .affiliate-hotel-summary {
    display: block;
  }
  .affiliate-hotel-summary > img {
    height: 190px;
    min-height: 0;
  }
  .affiliate-related-section,
  .affiliate-faq-section {
    margin-top: 50px;
  }
  .affiliate-related-track {
    grid-auto-columns: 78%;
  }
  .affiliate-section-heading {
    align-items: flex-start;
  }
  .affiliate-section-heading > a {
    margin-top: 8px;
  }
}

/* Shared premium hotel search */
.search-experience {
  position: relative;
  z-index: 20;
}
.ota-search-form {
  grid-template-columns:
    minmax(250px, 1.8fr) minmax(145px, 1fr) minmax(145px, 1fr)
    minmax(255px, 1.45fr) minmax(120px, 0.72fr);
  gap: 0;
  padding: 8px;
  border-radius: 20px;
  box-shadow: 0 22px 65px rgba(4, 20, 39, 0.28);
  isolation: isolate;
}
.ota-search-form .search-field {
  padding: 10px 10px;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}
/* .ota-search-form .search-field:hover,
.ota-search-form .search-field:focus-within {
  background: #f8faf9;
  box-shadow: inset 0 0 0 1px rgba(232, 93, 53, 0.18);
} */
.ota-search-form .search-field:first-child {
  border-radius: 13px 0 0 13px;
}
.ota-search-form .search-field label {
  margin: 0 0 3px 3px;
  color: #fff;
}
.ota-search-form .field-control {
  min-height: 36px;
  background: #fff;
  padding: 5px;
  border-radius: 10px;
}
.ota-search-form .field-control input {
  font-size: 0.8rem;
  text-overflow: ellipsis;
}
.ota-search-form .field-control input::placeholder {
  color: #7a8781;
  font-weight: 500;
}
.ota-search-form .field-control input[type="date"] {
  cursor: pointer;
}
.ota-search-form .field-confirmed .field-control > i:first-child {
  color: #138a61;
}
.night-summary {
  position: absolute;
  right: 14px;
  top: 9px;
  color: #138a61;
  font-size: 0.68rem;
  font-weight: 800;
}
.btn-search {
  margin-left: 8px;
  min-height: 46px;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(232, 93, 53, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.btn-search:hover {
  transform: translateY(-1px);
  box-shadow: 0 11px 25px rgba(232, 93, 53, 0.34);
}
.btn-search:disabled {
  opacity: 0.78;
  transform: none;
}
.autocomplete-results {
  left: -8px;
  right: auto;
  width: min(560px, calc(100vw - 32px));
  top: calc(100% + 13px);
  border: 1px solid #e7ece9;
  border-radius: 16px;
  max-height: 390px;
  overflow-y: auto;
  animation: searchDrop 0.18s ease;
}
.autocomplete-item {
  width: 100%;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 15px;
  background: #fff;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  transition: background 0.15s ease;
}
.autocomplete-item:hover,
.autocomplete-item.active {
  background: #f1f7f4;
}
.autocomplete-item strong,
.autocomplete-item small {
  display: block;
}
.autocomplete-item small {
  color: var(--muted);
  margin-top: 2px;
}
.autocomplete-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #edf7f2;
  color: #147453;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
}
.autocomplete-detail {
  color: var(--muted);
  font-size: 0.76rem;
  text-align: right;
}
.autocomplete-loading,
.autocomplete-empty {
  padding: 24px;
  color: var(--muted);
  display: flex;
  gap: 9px;
  align-items: center;
}
.autocomplete-empty {
  flex-direction: column;
  text-align: center;
}
.autocomplete-empty i {
  font-size: 1.6rem;
}
.guest-menu {
  left: auto;
  right: 0;
  width: 360px;
  min-width: 320px;
  padding: 20px;
  border: 1px solid #e7ece9;
  border-radius: 16px;
  overflow: visible;
  animation: searchDrop 0.18s ease;
}
.guest-menu > div {
  margin: 0;
}
.guest-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.guest-counter small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
}
.counter-control {
  display: grid;
  grid-template-columns: 36px 34px 36px;
  align-items: center;
  text-align: center;
}
.counter-btn {
  width: 34px;
  height: 34px;
  border: 1px solid #b9c8c1;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1;
  transition: 0.15s;
}
.counter-btn:hover:not(:disabled) {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.counter-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.counter-control output {
  font-weight: 800;
}
.child-ages-wrap {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px 0;
}
.child-age-title {
  grid-column: 1/-1;
  font-size: 0.78rem;
  font-weight: 800;
}
.child-age {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.78rem;
}
.child-age select {
  width: 75px;
}
.guest-preferences {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 0;
}
.guest-preferences label span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.guest-rule {
  padding: 7px 0 13px;
}
.search-error {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 8px;
  margin: 0;
  border: 0;
  padding: 8px 13px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.16);
  font-weight: 650;
  color: #842029;
  z-index: 60;
}
.search-error.show {
  display: block;
  animation: searchDrop 0.18s ease;
}
.ota-search-form .is-invalid {
  box-shadow: none;
}
.search-discovery {
  margin-top: 15px;
  display: grid;
  gap: 2px;
}
.suggestion-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.suggestion-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  /* min-width: 72px; */
}
.suggestion-chip {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: 50px;
  padding: 2px 7px;
  text-decoration: none;
  font-size: 0.6rem;
  line-height: 1;
  transition: 0.2s;
}
.suggestion-chip small {
  opacity: 0.72;
  margin-left: 4px;
}
.suggestion-chip:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-1px);
}
.listing-hero .search-discovery {
  display: none;
}
@keyframes searchDrop {
  from {
    opacity: 0;
    transform: translateY(-7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes searchShake {
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-3px);
  }
}
.search-shake {
  animation: searchShake 0.32s ease;
}
@media (max-width: 1199px) {
  .ota-search-form {
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr auto;
  }
  .ota-search-form .search-field {
    padding-left: 11px;
    padding-right: 11px;
  }
  .guest-menu {
    right: -75px;
  }
}
@media (max-width: 991px) {
  .ota-search-form {
    grid-template-columns: 1fr 1fr;
  }
  .ota-search-form .destination-field,
  .ota-search-form .guest-field {
    grid-column: span 2;
  }
  .ota-search-form .btn-search {
    grid-column: span 2;
    margin: 8px 0 0;
    min-height: 54px;
  }
  .ota-search-form .search-field:first-child {
    border-radius: 13px 13px 0 0;
  }
  .guest-menu {
    right: 0;
  }
  .search-discovery {
    margin-bottom: 25px;
  }
}
@media (max-width: 600px) {
  .ota-hero {
    min-height: 920px;
    align-items: flex-start;
  }
  .hero-content {
    padding-top: 55px;
  }
  .ota-hero h1 {
    font-size: 2.55rem;
  }
  .ota-search-form {
    display: grid;
    grid-template-columns: 1fr;
    padding: 9px;
    border-radius: 18px;
  }
  .ota-search-form .destination-field,
  .ota-search-form .guest-field,
  .ota-search-form .btn-search {
    grid-column: auto;
  }
  .ota-search-form .search-field {
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 13px 11px;
  }
  .ota-search-form .btn-search {
    margin-top: 9px;
  }
  .autocomplete-results {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 18%;
    width: auto;
    max-height: 62vh;
  }
  .guest-menu {
    position: fixed;
    left: 12px;
    right: 12px;
    top: auto;
    bottom: 12px;
    width: auto;
    min-width: 0;
    max-height: 80vh;
    overflow-y: auto;
  }
  .suggestion-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
  }
  .suggestion-label {
    position: sticky;
    left: 0;
    background: rgba(12, 34, 27, 0.82);
    padding: 7px;
    border-radius: 8px;
    z-index: 1;
  }
  .suggestion-chip {
    white-space: nowrap;
  }
  .suggestion-chip small {
    display: none;
  }
  .search-error {
    position: static;
    grid-column: 1;
    margin-top: 8px;
  }
  .night-summary {
    top: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ota-search-form *,
  .suggestion-chip {
    animation: none !important;
    transition: none !important;
  }
}
.search-experience,
.ota-search-form {
  width: 100%;
  max-width: 100%;
}
body {
  overflow-x: hidden;
}

/* Premium OTA homepage hero */
.ota-home-hero {
  position: relative;
  /* min-height: 720px; */
  overflow: visible;
  background:
    linear-gradient(
      90deg,
      rgba(5, 24, 18, 0.84) 0%,
      rgba(7, 29, 22, 0.55) 48%,
      rgba(7, 25, 20, 0.08) 100%
    ),
    var(--hero-image) center/cover;
}
.ota-home-hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(transparent, rgba(4, 19, 14, 0.22));
  pointer-events: none;
}
.ota-home-hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}
.hero-copy {
  max-width: 820px;
  animation: hero-rise 0.45s ease both;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50px;
  background: rgba(6, 30, 22, 0.24);
  backdrop-filter: blur(12px);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  color: #fff;
}
.hero-kicker i {
  color: #ff956d;
}
.ota-home-hero h1 {
  font-size: clamp(3rem, 6vw, 2rem);
  max-width: 920px;
  margin-top: 18px;
  color: #fff;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.18);
}
.ota-home-hero .hero-copy > p {
  font-size: 1.12rem;
  color: #edf4f1;
  margin: 18px 0 17px;
  max-width: 650px;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  color: #eff6f3;
  font-size: 0.66rem;
  font-weight: 650;
}
.hero-proof i {
  color: #75d1aa;
  margin-right: 4px;
}
.hero-search-card {
  position: relative;
  margin-top: 5px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(22px);
  animation: hero-rise 0.5s 0.06s ease both;
}
.hero-search-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 13px;
  color: #fff;
}
.hero-search-heading > div {
  display: flex;
  flex-direction: column;
}
.hero-search-heading span {
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  font-weight: 850;
  color: #ffc1aa;
}
.hero-search-heading strong {
  font-size: 0.93rem;
}
.hero-search-heading small {
  font-size: 0.62rem;
  color: #f0f5f3;
}
.hero-search-heading small i {
  color: #7bd0aa;
}
.hero-search-card .ota-search-form {
  box-shadow: 0 18px 52px rgba(5, 20, 15, 0.19);
  background: #524a4a;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.hero-orb-one {
  width: 280px;
  height: 280px;
  right: 5%;
  top: 12%;
  background: radial-gradient(circle, rgba(255, 122, 76, 0.2), transparent 68%);
}
.hero-orb-two {
  width: 220px;
  height: 220px;
  left: -80px;
  bottom: 4%;
  background: radial-gradient(
    circle,
    rgba(44, 172, 127, 0.17),
    transparent 70%
  );
}
@keyframes hero-rise {
  from {
    transform: translateY(12px);
  }
  to {
    transform: none;
  }
}
@media (max-width: 1199px) {
  .ota-home-hero {
    min-height: 760px;
  }
}
@media (max-width: 991px) {
  .ota-home-hero {
    min-height: 850px;
  }
  .ota-home-hero .hero-content {
    padding-top: 60px;
  }
  .hero-search-card {
    margin-top: 34px;
  }
}
@media (max-width: 767px) {
  .ota-home-hero {
    min-height: 980px;
    align-items: flex-start;
  }
  .ota-home-hero .hero-content {
    padding-top: 45px;
    padding-bottom: 40px;
  }
  .ota-home-hero h1 {
    font-size: 2.8rem;
  }
  .ota-home-hero .hero-copy > p {
    font-size: 0.9rem;
  }
  .hero-proof {
    gap: 9px 14px;
  }
  .hero-search-card {
    padding: 10px;
    border-radius: 20px;
    margin-top: 28px;
  }
  .hero-search-heading {
    padding: 5px 5px 11px;
  }
  .hero-search-heading small {
    display: none;
  }
  .hero-search-card .ota-search-form {
    border-radius: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-copy,
  .hero-search-card {
    animation: none;
  }
}
.suggestion-chip small:before {
  content: " · ";
}
.ota-hero > div > p {
  overflow-wrap: anywhere;
}
.destination-clear {
  display: none;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #87958e;
  padding: 0;
  border-radius: 50%;
}
.destination-clear.show {
  display: grid;
  place-items: center;
}
.destination-clear:hover,
.destination-clear:focus-visible {
  color: var(--ink);
  background: #e9efec;
}
.destination-clear i {
  color: inherit !important;
}
.field-error {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 4px);
  z-index: 65;
  max-width: 260px;
  color: #a51d2d;
  background: #fff4f5;
  border-radius: 7px;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.25;
  padding: 0;
}
.field-error:not(:empty) {
  padding: 5px 8px;
  box-shadow: 0 5px 16px rgba(70, 0, 10, 0.14);
}
.ota-search-form .search-field:has(.is-invalid) {
  box-shadow: inset 0 0 0 2px #dc3545;
  background: #fff7f8;
}
.guest-menu-header {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.guest-menu-header strong {
  font-size: 1rem;
}
.guest-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
}
.guest-close:hover,
.guest-close:focus-visible {
  background: var(--soft);
}
.counter-control {
  grid-template-columns: 44px 38px 44px;
}
/* .counter-btn {
  width: 44px;
  height: 44px;
} */
.search-backdrop {
  display: none;
}
.search-panel-open {
  overflow: hidden;
}
.ota-search-form input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.72;
  cursor: pointer;
}
.ota-search-form :focus-visible {
  outline: 3px solid rgba(232, 93, 53, 0.35);
  outline-offset: 2px;
}
@media (max-width: 600px) {
  .search-backdrop.show {
    display: block;
    position: fixed;
    z-index: 49;
    inset: 0;
    background: rgba(5, 18, 13, 0.56);
    backdrop-filter: blur(2px);
  }
  .guest-menu {
    z-index: 70;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px 20px 0 0;
    max-height: min(84vh, 680px);
    padding: 18px 18px calc(18px + env(safe-area-inset-bottom));
    animation: searchSheet 0.22s ease;
  }
  .autocomplete-results {
    z-index: 70;
  }
  .field-error {
    position: static;
    margin-top: 4px;
  }
  .search-error.show {
    display: none;
  }
  .autocomplete-detail {
    display: none;
  }
  .autocomplete-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }
}
@keyframes searchSheet {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .guest-menu {
    animation: none !important;
  }
  .ota-search-form.scroll-behavior {
    scroll-behavior: auto;
  }
}
.mobile-filter-toggle {
  margin-bottom: -12px;
}
.result-title-link {
  color: inherit;
  text-decoration: none;
}
.result-title-link:hover {
  text-decoration: underline;
}
.result-image-placeholder {
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--muted);
  font-size: 2.5rem;
}
.result-empty {
  border: 1px dashed #cbd6d0;
  border-radius: 18px;
  padding: 54px 24px;
  background: #fbfcfb;
}
.result-empty > i {
  display: block;
  font-size: 2.2rem;
  color: var(--brand);
  margin-bottom: 12px;
}
.result-error {
  border-radius: 16px;
  padding: 22px;
}
@media (max-width: 991px) {
  .listing-layout {
    padding-top: 28px;
  }
  .filter-panel.collapse:not(.show) {
    display: none;
  }
  .filter-panel.collapse.show {
    display: block;
  }
  .mobile-filter-toggle {
    justify-self: start;
  }
}
@media (min-width: 992px) {
  .filter-panel.collapse {
    display: block !important;
  }
}
.result-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
}
.result-grid-view {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.result-grid-view .result-card {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.result-grid-view .result-image {
  height: 220px;
  min-height: 220px;
}
.result-grid-view .result-price {
  border: 0;
  border-top: 1px solid var(--line);
  text-align: left;
}
.facility-positive {
  color: #087f5b;
  background: #e9f8f1;
}
.result-map-view {
  display: grid;
  grid-template-columns: minmax(260px, 36%) 1fr;
  gap: 18px;
  min-height: 620px;
}
.map-property-list {
  max-height: 620px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.map-property {
  display: flex;
  flex-direction: column;
  padding: 14px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.map-property:hover {
  background: var(--soft);
}
.map-property span {
  font-weight: 800;
  color: var(--brand);
}
.results-map-frame {
  width: 100%;
  height: 580px;
  border: 0;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .result-toolbar {
    width: 100%;
    justify-content: end !important;
    flex-wrap: wrap;
  }
  .result-grid-view {
    grid-template-columns: 1fr;
  }
  .result-map-view {
    grid-template-columns: 1fr;
  }
  .map-property-list {
    max-height: 300px;
  }
  .results-map-frame {
    height: 420px;
  }
}
@media (max-width: 600px) {
  .hero-content > .eyebrow,
  .ota-hero h1,
  .ota-hero > div > p {
    max-width: calc(100vw - 24px);
  }
  .search-experience {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }
}

/* Premium featured destinations carousel */
.featured-destinations-section {
  overflow: hidden;
  background: #fff;
}
.featured-destinations-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}
.featured-kicker {
  display: inline-block;
  color: #ed5d36;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}
.featured-kicker:after {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin-top: 10px;
  border-radius: 20px;
  background: #ed5d36;
}
.featured-destinations-head h2 {
  margin: 10px 0 6px;
  color: #10243b;
  font-size: clamp(2rem, 4vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.055em;
}
.featured-destinations-head p {
  margin: 0;
}
.featured-destination-navigation {
  display: flex;
  gap: 13px;
  padding-bottom: 8px;
}
.featured-destination-navigation button {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid #d8dfe8;
  border-radius: 50%;
  background: #fff;
  color: #193149;
  font-size: 1rem;
  box-shadow: 0 7px 20px rgba(17, 38, 61, 0.07);
  transition: 0.2s;
}
.featured-destination-navigation button:hover {
  transform: translateY(-2px);
  border-color: #ed5d36;
  color: #ed5d36;
  box-shadow: 0 10px 25px rgba(237, 93, 54, 0.14);
}
.featured-destination-navigation .featured-destination-next {
  border-color: #ed5d36;
  color: #ed5d36;
}
.featured-destinations-swiper {
  padding: 4px 3px 48px !important;
}
.featured-destinations-swiper .swiper-slide {
  height: auto;
}
.featured-destination-card {
  position: relative;
  display: block;
  height: 350px;
  overflow: hidden;
  border-radius: 10px;
  background: #173d32;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(16, 36, 59, 0.11);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}
.featured-destination-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.featured-destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 18, 30, 0.02) 34%,
    rgba(5, 17, 27, 0.28) 60%,
    rgba(4, 13, 21, 0.94) 100%
  );
}
.featured-destination-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 23px 45px rgba(16, 36, 59, 0.23);
  color: #fff;
}
.featured-destination-card:hover > img {
  transform: scale(1.055);
}
.featured-destination-badge {
  position: absolute;
  left: 17px;
  top: 17px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: calc(100% - 34px);
  padding: 8px 13px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.94);
  color: #4f6075;
  font-size: 0.65rem;
  font-weight: 750;
  box-shadow: 0 6px 18px rgba(8, 22, 38, 0.1);
  backdrop-filter: blur(9px);
}
.featured-destination-badge i {
  color: #ed5d36;
}
.featured-destination-content {
  position: absolute;
  left: 17px;
  right: 14px;
  bottom: 17px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.featured-location-icon {
  display: grid;
  place-items: center;
  width: 39px;
  height: 44px;
  flex: 0 0 39px;
  border-radius: 11px;
  background: #ed5d36;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(237, 93, 54, 0.28);
}
.featured-destination-copy {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  line-height: 1.15;
}
.featured-destination-copy strong {
  overflow: hidden;
  color: #fff;
  font-size: 1rem;
  font-weight: 820;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.featured-destination-copy small {
  overflow: hidden;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.7rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.featured-card-arrow {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  border-radius: 50%;
  background: #fff;
  color: #183149;
  transition: 0.2s;
}
.featured-destination-card:hover .featured-card-arrow {
  background: #ed5d36;
  color: #fff;
  transform: translateX(2px);
}
.featured-destination-pagination {
  bottom: 3px !important;
}
.featured-destination-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 7px;
  border-radius: 50px;
  background: #bdc6d3;
  opacity: 0.7;
  transition: 0.2s;
}
.featured-destination-pagination .swiper-pagination-bullet-active {
  width: 25px;
  background: #ed5d36;
  opacity: 1;
}
@media (max-width: 767px) {
  .featured-destinations-head {
    align-items: flex-start;
    margin-bottom: 23px;
  }
  .featured-destination-navigation {
    padding-top: 15px;
  }
  .featured-destination-navigation button {
    width: 43px;
    height: 43px;
  }
  .featured-destination-card {
    height: 440px;
  }
  .featured-destinations-head h2 {
    font-size: 2.2rem;
  }
}
@media (max-width: 480px) {
  .featured-destinations-head {
    display: block;
  }
  .featured-destination-navigation {
    justify-content: flex-end;
    margin-top: -46px;
  }
  .featured-destinations-head p {
    max-width: 75%;
    font-size: 0.78rem;
  }
  .featured-destination-card {
    height: 420px;
    border-radius: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .featured-destination-card,
  .featured-destination-card > img,
  .featured-card-arrow,
  .featured-destination-navigation button {
    transition: none !important;
  }
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  text-align: center !important;
}

.package-section {
  background: #fff;
}

.info-box {
  background: #6c6c6c;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.info-box:hover {
  background: #5a5a5a;
}

.info-box .icon i {
  font-size: 2rem;
  color: #fff;
}

.call-box {
  background: #ff751f;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.call-box .call-img {
  width: 80px;
  height: auto;
  /* border-radius: 50%; */
  right: 0;
  bottom: 0;
}

.call-box:hover {
  background: #a00000;
}

.br-10 {
  border-radius: 10px;
}
.fs-14 {
  font-size: 14px !important;
}
