:root {
  --color-primary: #0261ab;
  --color-primary-ink: #15406b;
  --color-accent: #ff7d15;
  --color-surface: #ffffff;
  --color-bg: #fff;
  --color-text: #2b3540;
  --color-muted: #68788a;
  --border-soft: #d8e3ef;
  --shadow-soft: 0 8px 24px rgba(8, 53, 95, 0.12);
  --shadow-card: 0 5px 16px rgba(20, 52, 84, 0.14);
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --container-width: 1244px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Heebo", "Segoe UI", Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font-family: inherit;
}

.container {
  width: min(var(--container-width), calc(100% - 34px));
  margin-inline: auto;
}

.main-shell {
  min-height: 72vh;
}

/* ── Site Header (flying.co.il style) ── */
.site-header {
  background: #fff;
  border-bottom: 1px solid #ebf0f6;
  position: relative;
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 0;
}

/* Logo – absolute positioned on the right */
.site-logo {
  display: block;
  flex-shrink: 0;
  line-height: 1;
  z-index: 2;
}
.site-logo img {
  width: 150px;
  height: auto;
  display: block;
}

/* Content area – top bar + nav, fills remaining space */
.site-header__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* Top bar row */
.site-header__top {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 10px;
  font-size: 14px;
  color: #4a6280;
}
.site-header__links {
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-header__top-text {
  color: #4a6280;
}
.site-header__top-link {
  color: #4a6280;
  transition: color 0.2s;
}
.site-header__top-link:hover {
  color: var(--color-primary);
}

/* Social links */
.site-header__social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.site-header__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #4a6280;
  transition: color 0.2s, background 0.2s;
}
.site-header__social-link:hover {
  color: var(--color-primary);
  background: #eef5fb;
}

/* Divider */
.site-header__divider {
  width: 1px;
  height: 14px;
  background: #cad7e5;
}

/* Phone */
.site-header__center-text { font-weight: 600; color: #2f4f6b; white-space: nowrap; }
.site-header__phone-wrap { display: flex; align-items: center; gap: 16px; }
.site-header__phone-wrap--mobile { display: none; position: relative; }
.site-header__phone {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--color-primary); font-weight: 700; font-size: 15px; text-decoration: none;
}
.site-header__phone-label { font-size: 13px; font-weight: 400; color: #4a6a8a; }
.site-header__phone-label::after { content: ": "; }
.site-header__phone-icon { display: flex; align-items: center; justify-content: center; color: var(--color-primary); }
/* Mobile phone button & panel */
.site-header__phone-btn {
  background: var(--color-primary); color: #fff; border: 0; border-radius: 20px;
  padding: 8px 16px; display: flex; align-items: center; gap: 6px; cursor: pointer;
  font-size: 13px; font-weight: 600; font-family: inherit;
  box-shadow: 0 2px 8px rgba(2,97,171,.3); transition: transform .15s;
}
.site-header__phone-btn:active { transform: scale(.95); }
.site-header__phone-panel {
  display: none; position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  z-index: 100; padding: 10px; flex-direction: column; gap: 8px;
  background: #fff; border-radius: 14px; box-shadow: 0 12px 32px rgba(0,0,0,.18);
}
.site-header__phone-wrap--mobile.is-open .site-header__phone-panel { display: flex; width: 300px; z-index: 999; }
.site-header__phone-call-btn {
  display: flex; align-items: center; gap: 10px; padding: 14px 16px;
  background: var(--color-primary); color: #fff; border-radius: 10px;
  text-decoration: none; font-size: 15px; font-weight: 500;
  transition: background .2s;
}
.site-header__phone-call-btn:active { background: var(--color-primary-ink); }
.site-header__phone-call-btn svg { flex-shrink: 0; }
.site-header__phone-call-btn strong { font-weight: 700; direction: ltr; }
.site-header__phone-call-btn--abroad {
  background: #fff; color: var(--color-primary); border: 2px solid var(--color-primary);
}
.site-header__phone-call-btn--abroad:active { background: #f0f7ff; }

/* Navigation row */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  padding: 6px 0 10px;
}
.site-nav__item {
  padding: 8px 14px;
  border-radius: 6px;
  color: #3f556f;
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
}
.site-nav__item:hover {
  background: #eef5fb;
  color: var(--color-primary);
}
.site-nav__item--active {
  background: rgba(109, 174, 225, 0.42);
  color: var(--color-primary);
  font-weight: 700;
}

/* Responsive header */
@media (max-width: 991px) {
  .site-header {
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
    border-bottom: none;
  }
  .site-header__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 10px 16px;
  }
  .site-logo {
    order: 2;
  }
  .site-logo img {
    width: 120px;
  }
  .site-header__content {
    order: 1;
    flex: 0 0 auto;
  }
  .site-header__top {
    gap: 0;
    padding-bottom: 0;
  }
  .site-header__links,
  .site-header__social,
  .site-header__divider,
  .site-header__center-text {
    display: none;
  }
  .site-header__phone-wrap--desktop { display: none; }
  .site-header__phone-wrap--mobile { display: flex; }
  .site-nav {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .site-logo img {
    width: 105px;
  }
  .site-nav__item {
    font-size: 13px;
    padding: 6px 10px;
  }
  .site-footer__columns {
    grid-template-columns: 1fr;
  }
  .site-footer__col ul {
    columns: 2;
  }
}

.hero {
  padding: 2px 0 8px;
}

.hero__frame {
  position: relative;
}

.hero__cover {
  position: relative;
  min-height: 752px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(114deg, rgba(6, 54, 97, 0.3) 0%, rgba(6, 54, 97, 0.15) 50%, rgba(6, 54, 97, 0.42) 100%),
    url("https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=2200&q=80") center/cover no-repeat;
  padding: 52px 64px;
}

.hero__promo {
  width: min(610px, 100%);
  margin-right: auto;
  margin-left: 0;
  text-align: right;
  position: absolute;
  right: 64px;
  top: 100px;
}

.hero__abroad-btn {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 22px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.hero__abroad-btn:hover {
  background: #fff;
  color: var(--color-primary);
}

.hero__promo h1 {
  margin: 18px 0 14px;
  color: #fff;
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.08;
}

.hero__promo p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 22px;
  max-width: 560px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-accent);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(255, 125, 21, 0.28);
}

.hero__search-floating {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: min(1240px, calc(100% - 40px));
  z-index: 1200;
}

.hero-search {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.hero-search h2 {
  margin: 0 0 12px;
  color: var(--color-primary-ink);
  font-size: 24px;
}

.hero-search__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.hero-search label {
  display: block;
  margin-bottom: 6px;
  color: #4f6883;
  font-size: 13px;
}

.hero-search input,
.hero-search select {
  width: 100%;
  height: 45px;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  background: #fff;
  font-size: 15px;
  padding: 0 12px;
}

.hero-search__actions > button {
  margin-top: 12px;
  width: 100%;
  height: 46px;
  border: 0;
  border-radius: 10px;
  background: var(--color-primary);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}

.hero-search__summary {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.discover {
  margin-top: 18px;
}

.discover__tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e4edf6;
}

.discover__tab {
  min-height: 52px;
  border: 0;
  background: #fff;
  color: #324f6d;
  font-size: 20px;
  cursor: pointer;
}

.discover__tab + .discover__tab {
  border-right: 1px solid #ecf2f8;
}

.discover__tab--active {
  background: #e7f1fa;
  color: var(--color-primary);
  font-weight: 700;
}

.discover__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.discover__chip {
  border: 1px solid #ffc7ad;
  background: #fff;
  color: #394f66;
  border-radius: 999px;
  font-size: 15px;
  padding: 6px 12px;
  cursor: pointer;
}

.deals-area {
  padding: 20px 0 50px;
}

.deal-section {
  margin-top: 18px;
}

.deal-section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.deal-section__header h2 {
  margin: 0;
  font-size: 34px;
  color: #1e3d5f;
}

.deal-section__header a {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 700;
}

.deal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.hotel-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hotel-card img {
  width: 100%;
  height: 204px;
  object-fit: cover;
  display: block;
}

.hotel-card__body {
  padding: 12px;
}

.hotel-card__badge {
  display: inline-block;
  border-radius: 999px;
  background: rgba(255, 125, 21, 0.14);
  color: #a35413;
  padding: 4px 8px;
  font-size: 12px;
}

.hotel-card h3 {
  margin: 9px 0 7px;
  color: #1d3753;
  font-size: 22px;
}

.hotel-card p {
  margin: 0;
  color: #63798e;
  font-size: 14px;
}

.hotel-card__price {
  margin-top: 10px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 16px;
}

.site-footer {
  margin-top: 24px;
  background: #0a2f53;
  color: #e5edf5;
  padding: 0;
}

.site-footer__top {
  padding: 40px 0 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.site-footer__col ul {
  columns: 2;
  column-gap: 12px;
}

.site-footer__col li {
  break-inside: avoid;
  margin-bottom: 6px;
}

.site-footer__col a {
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  transition: color .2s;
}

.site-footer__col a:hover {
  color: #fff;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 0;
}

.site-footer__contact h4 {
  margin-bottom: 8px;
}

.site-footer__copyright {
  background: rgba(0,0,0,.15);
  text-align: center;
  padding: 14px 0;
  font-size: 13px;
  color: #8ba4be;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 12px;
  color: #fff;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: #b9cce0;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__logo {
  width: 180px;
  height: auto;
  display: block;
  margin-bottom: 16px;
}
.site-footer__social {
  display: flex;
  gap: 12px;
}
.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  transition: background .2s;
}
.site-footer__social a:hover {
  background: rgba(255,255,255,.25);
}

/* ═══ Hotels Page (chain / city listing) ═══ */
.hotels-page { padding: 32px 0 56px; }

.hotels-page__breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: #64748b; margin-bottom: 16px;
}
.hotels-page__breadcrumb a { color: var(--color-primary); text-decoration: none; }
.hotels-page__breadcrumb a:hover { text-decoration: underline; }
.hotels-page__breadcrumb-sep { color: #cbd5e1; }

.hotels-page__heading {
  font-size: 32px; font-weight: 800; color: var(--color-text);
  margin: 0 0 4px;
}
.hotels-page__count {
  font-size: 15px; color: #64748b; margin: 0 0 28px;
}

.hp-destinations {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 28px; padding: 16px 0;
  border-bottom: 1px solid #e2e8f0;
}
.hp-dest-link {
  display: inline-block; padding: 8px 18px;
  background: #f1f5f9; color: var(--color-primary);
  border-radius: 999px; font-size: 14px; font-weight: 600;
  text-decoration: none; transition: background .2s, color .2s;
}
.hp-dest-link:hover { background: var(--color-primary); color: #fff; }

.hp-dest-section { margin-bottom: 36px; scroll-margin-top: 80px; }
.hp-dest-title {
  display: flex; align-items: center; gap: 6px;
  font-size: 22px; font-weight: 700; margin: 0 0 16px;
  padding-bottom: 8px; border-bottom: 2px solid var(--color-primary);
}
.hp-dest-title a { color: var(--color-text); text-decoration: none; }
.hp-dest-title a:hover { color: var(--color-primary); }

.hotels-page__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hp-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
}

.hp-card__media-link { display: block; overflow: hidden; }
.hp-card__media-link img {
  width: 100%; height: 220px; object-fit: cover; display: block;
  transition: transform .3s;
}
.hp-card:hover .hp-card__media-link img { transform: scale(1.04); }

.hp-card__body {
  padding: 16px; display: flex; flex-direction: column; flex: 1;
}

.hp-card__name {
  font-size: 20px; font-weight: 700;
  margin: 0 0 8px; text-align: center;
}
.hp-card__name a {
  color: var(--color-primary); text-decoration: none;
}
.hp-card__name a:hover { text-decoration: underline; }

.hp-card__location {
  display: flex; align-items: center; justify-content: center; gap: 4px;
  font-size: 14px; color: #64748b; margin: 0 0 8px;
}
.hp-card__location svg { flex-shrink: 0; }

.hp-card__desc-wrap { margin: 0 0 12px; flex: 1; }
.hp-card__desc {
  font-size: 13px; color: #64748b; line-height: 1.6; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.hp-card__desc-wrap.is-open .hp-card__desc {
  display: block; -webkit-line-clamp: unset;
}
.hp-card__desc-toggle {
  background: none; border: none; color: var(--color-primary); cursor: pointer;
  font-size: 13px; font-weight: 600; padding: 4px 0 0; display: block;
}
.hp-card__desc-wrap.is-open .hp-card__desc-toggle::after { content: "סגור"; }
.hp-card__desc-wrap:not(.is-open) .hp-card__desc-toggle::after { content: ""; }
.hp-card__desc-wrap.is-open .hp-card__desc-toggle { color: #64748b; }

.hp-card__chain {
  display: inline-block;
  font-size: 12px; padding: 3px 10px;
  background: rgba(2, 97, 171, .08); color: var(--color-primary);
  border-radius: 999px; margin-bottom: 12px; align-self: center;
}

.hp-card__actions { display: flex; justify-content: center; margin-top: auto; }

.hp-card__cta {
  display: inline-block; padding: 10px 28px;
  background: var(--color-primary); color: #fff;
  border-radius: 10px; font-size: 14px; font-weight: 600;
  text-decoration: none; transition: background .2s;
}
.hp-card__cta:hover { background: #014f8a; }

.hotels-page__empty {
  text-align: center; padding: 60px 20px;
  color: #64748b; font-size: 16px;
}
.hotels-page__empty .hotels-page__cta {
  display: inline-block; margin-top: 16px;
  padding: 10px 28px; background: var(--color-primary);
  color: #fff; border-radius: 10px; text-decoration: none;
  font-weight: 600;
}

/* ═══ Hotel Info Page ═══ */
.hotel-info-page { padding: 32px 0 56px; }

.hi__header { margin-bottom: 24px; }
.hi__header h1 { font-size: 32px; font-weight: 800; color: var(--color-text); margin: 0 0 8px; }
.hi__meta { display: flex; align-items: center; gap: 16px; color: #64748b; font-size: 15px; }
.hi__location { display: flex; align-items: center; gap: 4px; }
.hi__chain { background: rgba(2,97,171,.08); color: var(--color-primary); padding: 3px 12px; border-radius: 999px; font-size: 13px; }

.hi__gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  margin-bottom: 32px; border-radius: 16px; overflow: hidden;
}
.hi__gallery img { width: 100%; height: 200px; object-fit: cover; display: block; cursor: pointer; transition: opacity .2s; }
.hi__gallery img:hover { opacity: .85; }
.hi__gallery img:first-child { grid-column: span 2; grid-row: span 2; height: 100%; }
.hi__gallery-more {
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.06); border: none; cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--color-primary);
}
.hi__gallery-more:hover { background: rgba(0,0,0,.1); }

.hi-lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.85); align-items: center; justify-content: center;
}
.hi-lightbox__close {
  position: fixed; top: 16px; left: 16px; z-index: 10000;
  background: rgba(255,255,255,.15); border: none; color: #fff;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 28px; cursor: pointer; transition: background .2s;
}
.hi-lightbox__close:hover { background: rgba(255,255,255,.3); }
.hi-lightbox__scroll {
  max-height: 100vh; overflow-y: auto; padding: 40px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  -webkit-overflow-scrolling: touch;
}
.hi-lightbox__scroll img {
  max-width: 900px; width: 100%; border-radius: 10px; display: block;
}

.hi__content { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }

.hi__desc h2, .hi__facilities h2 { font-size: 22px; font-weight: 700; color: var(--color-text); margin: 0 0 12px; }
.hi__desc p { font-size: 15px; line-height: 1.75; color: #374151; white-space: pre-line; }

.hi__facilities { margin-top: 28px; }
.hi__facilities ul { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 16px; }
.hi__facilities li {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; color: #374151; padding: 4px 0; break-inside: avoid;
}

.hi__book-box {
  background: #fff; border-radius: 16px; padding: 24px;
  box-shadow: var(--shadow-card); text-align: center; position: sticky; top: 24px;
}
.hi__book-box h3 { margin: 0 0 8px; font-size: 20px; color: var(--color-text); }
.hi__book-box p { margin: 0 0 16px; font-size: 14px; color: #64748b; }
.hi__cta {
  display: block; padding: 12px 24px;
  background: var(--color-primary); color: #fff; border-radius: 10px;
  font-size: 16px; font-weight: 600; text-decoration: none; transition: background .2s;
}
.hi__cta:hover { background: #014f8a; }

@media (max-width: 900px) {
  .hi__content { grid-template-columns: 1fr; }
  .hi__gallery { grid-template-columns: repeat(2, 1fr); }
  .hi__gallery img:first-child { grid-column: span 2; height: 240px; }
  .hi__facilities ul { columns: 1; }
}
@media (max-width: 576px) {
  .hi__header h1 { font-size: 24px; }
  .hi__gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1200px) {
  .hotels-page__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .hotels-page__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .hotels-page__heading { font-size: 24px; }
  .hotels-page__grid { grid-template-columns: 1fr; }
}

.page-shell {
  padding: 30px 0 60px;
}

.hotels-search-page {
  padding: 32px 0 56px;
}

.search-hero {
  position: relative;
  z-index: 30;
  margin-bottom: 18px;
  border-radius: 22px;
  overflow: visible;
  background:
    linear-gradient(110deg, rgba(8, 52, 92, 0.58), rgba(11, 81, 133, 0.4)),
    url("https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?auto=format&fit=crop&w=2200&q=80") center/cover no-repeat;
}

.search-hero__overlay {
  padding: 24px 22px 20px;
}

.search-head h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
}

.search-head p {
  margin: 8px 0 20px;
  color: rgba(255, 255, 255, 0.92);
}

.search-quickbar {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #d0e3f5;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(24, 63, 96, 0.08);
  padding: 14px;
}

.search-quickbar--hero {
  margin-bottom: 0;
}

.search-quickbar__grid {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 1fr 1fr 0.7fr auto;
  gap: 10px;
  align-items: end;
}

.search-quickbar label {
  display: block;
  margin: 0 0 6px;
  color: #36516c;
  font-size: 13px;
}

.search-quickbar input,
.search-quickbar select {
  width: 100%;
  border: 1px solid #d3deed;
  border-radius: 10px;
  font-size: 14px;
  padding: 10px;
}

.search-quickbar button {
  border: 0;
  border-radius: 12px;
  background: var(--color-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  min-width: 110px;
  padding: 11px 16px;
  cursor: pointer;
}

.search-quickbar button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.search-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  grid-template-areas: "filters results";
  gap: 20px;
  align-items: start;
}

.search-results {
  grid-area: results;
  min-width: 0;
}

.search-filters--modern {
  grid-area: filters;
}

.search-filters {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 16px;
  position: sticky;
  top: 12px;
  width: 100%;
  max-width: 300px;
  align-self: start;
}

.search-filters h2 {
  margin: 0 0 12px;
  color: var(--color-primary);
  font-size: 20px;
}

.search-filters__group {
  margin-bottom: 14px;
  border-bottom: 1px solid #e8eff7;
  padding-bottom: 12px;
}

.search-filters__group h3 {
  margin: 0 0 8px;
  color: #153d61;
  font-size: 15px;
}

.search-filters input {
  width: 100%;
  border: 1px solid #d2e1ef;
  border-radius: 9px;
  font-size: 14px;
  padding: 8px 9px;
}

.search-filters__checklist {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 180px;
  overflow: auto;
  padding-left: 2px;
}

.search-filters__checkitem {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #274a68;
  cursor: pointer;
}

.search-filters__checkitem input {
  width: 16px;
  height: 16px;
  margin: 0;
}

.price-slider {
  margin-top: 6px;
}

.price-slider__values {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.price-slider__values span {
  background: var(--color-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 8px;
  min-width: 60px;
  text-align: center;
}

.price-slider__track-wrapper {
  position: relative;
  height: 32px;
}

.price-slider__track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 6px;
  background: #dfe7f1;
  border-radius: 999px;
  transform: translateY(-50%);
}

.price-slider__fill {
  position: absolute;
  top: 50%;
  height: 6px;
  background: var(--color-primary);
  border-radius: 999px;
  transform: translateY(-50%);
  pointer-events: none;
}

.price-slider input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  pointer-events: none;
  margin: 0;
}

.price-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--color-primary);
  box-shadow: 0 2px 6px rgba(11, 120, 191, 0.35);
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.price-slider input[type="range"]::-moz-range-thumb {
  pointer-events: all;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--color-primary);
  box-shadow: 0 2px 6px rgba(11, 120, 191, 0.35);
  cursor: pointer;
}

.price-slider input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: transparent;
}

.price-slider input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: transparent;
}

.price-slider__bounds {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--color-muted);
  margin-top: 2px;
}

.search-filters__count {
  color: var(--color-muted);
  font-size: 12px;
  margin-right: auto;
}

.search-filters button {
  margin-top: 12px;
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: var(--color-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 12px;
  cursor: pointer;
}

.search-filters button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.search-error {
  color: #a71818;
  margin-top: 10px;
  font-size: 14px;
}

.search-results__grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.search-results__status {
  margin: 0 0 12px;
  color: #2e5b82;
  background: #edf6ff;
  border: 1px solid #cee2f6;
  border-radius: 12px;
  padding: 14px 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
}

.search-results__status p {
  margin: 0;
}

.search-countdown {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.search-countdown__circle {
  width: 100%;
  height: 100%;
  display: block;
}

.search-countdown__circle circle:last-child {
  transition: stroke-dashoffset 0.9s linear;
}

.search-countdown__number {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
}

.search-results__done {
  margin: 0 0 12px;
  padding: 10px 18px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 12px;
  color: #2e7d32;
  font-weight: 700;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.search-results__dots {
  display: inline-flex;
  margin-left: 8px;
}

.search-results__dots span {
  opacity: 0.2;
  animation: dots 1s infinite;
  margin-left: 2px;
}

.search-results__dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.search-results__dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dots {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
}

.search-results__empty {
  margin: 0;
  border: 1px dashed #c7d9ec;
  border-radius: 14px;
  background: #f9fcff;
  color: #4a6a87;
  text-align: center;
  padding: 24px;
}

.loading-skeleton {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
}

.loading-skeleton__card {
  display: grid;
  grid-template-columns: 280px 1fr;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d6e5f3;
  box-shadow: 0 8px 20px rgba(25, 62, 98, 0.08);
}

.loading-skeleton__media,
.loading-skeleton__line {
  position: relative;
  overflow: hidden;
  background: #e7eff8;
}

.loading-skeleton__media {
  min-height: 208px;
}

.loading-skeleton__content {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.loading-skeleton__line {
  height: 14px;
  border-radius: 8px;
}

.loading-skeleton__line--title {
  height: 22px;
  width: 48%;
}

.loading-skeleton__line--short {
  width: 30%;
}

.loading-skeleton__media::after,
.loading-skeleton__line::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.65) 50%, transparent 100%);
  animation: skeleton-shimmer 1.25s infinite;
}

@keyframes skeleton-shimmer {
  100% {
    transform: translateX(100%);
  }
}

.search-result-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #d6e5f3;
  box-shadow: 0 8px 20px rgba(25, 62, 98, 0.1);
}

.search-result-card__media {
  position: relative;
  height: 100%;
}

.search-result-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.search-result-card__gallery-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: rgba(15, 47, 79, 0.72);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(8, 25, 41, 0.28);
}

.search-result-card__gallery-btn:hover {
  background: rgba(15, 47, 79, 0.9);
}

.search-result-card__gallery-btn svg {
  width: 19px;
  height: 19px;
  color: #fff;
}

.search-result-card__content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
}

.search-result-card__details {
  flex: 1 1 auto;
  min-width: 0;
}

.search-result-card__header {
  display: block;
  margin-bottom: 10px;
}

.search-result-card__header h3 {
  margin: 0;
  font-size: 24px;
  color: #0f3554;
}

.search-result-card__approval {
  font-size: 13px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 12px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}
.search-result-card__approval--instant {
  background: #e6f9ed;
  color: #1a7a3a;
}
.search-result-card__approval--request {
  background: #fdeaea;
  color: #c0392b;
}

.search-result-card__facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.search-result-card__fact {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #294966;
  font-size: 14px;
  line-height: 1.45;
}

.search-result-card__fact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0a68b0;
  flex: 0 0 auto;
}

.search-result-card__fact-icon svg {
  width: 18px;
  height: 18px;
}

.search-result-card__footer {
  margin-top: 0;
  width: 170px;
  min-width: 140px;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.search-result-card__rooms {
  grid-column: 1 / -1;
  border-top: 1px solid #e4edf6;
  padding: 12px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-room-row {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) auto auto;
  align-items: center;
  gap: 10px;
  border: 1px solid #dce8f4;
  border-radius: 10px;
  padding: 8px 10px;
  background: #f8fbff;
}

.search-room-row__selectors {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.search-room-row__selectors select {
  width: 100%;
  border: 1px solid #cfdeed;
  border-radius: 8px;
  background: #fff;
  color: #173f63;
  font-size: 13px;
  padding: 8px;
}

.search-room-row__selectors select:disabled {
  background: #f3f7fb;
  color: #6d8298;
}

.search-room-row__main {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}

.search-room-row__main strong {
  color: #143d60;
}

.search-room-row__main span {
  color: #355775;
  font-size: 13px;
}

.search-room-row__main small {
  width: 100%;
  color: #5f7d97;
  font-size: 12px;
}

.search-remark {
  border: 0;
  background: none;
  padding: 0;
  color: inherit;
  font: inherit;
  text-align: right;
  cursor: pointer;
  display: inline;
  white-space: normal;
  word-break: break-word;
  position: relative;
}

.search-remark.is-expanded {
  white-space: normal;
}

.search-remark--static {
  cursor: default;
}

.search-remark::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  max-width: 320px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #0f2f4f;
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  white-space: pre-line;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  box-shadow: 0 10px 18px rgba(8, 25, 41, 0.18);
  pointer-events: none;
  z-index: 20;
}

.search-remark::before {
  content: "";
  position: absolute;
  right: 14px;
  bottom: calc(100% + 2px);
  width: 8px;
  height: 8px;
  background: #0f2f4f;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.15s ease, transform 0.15s ease;
  pointer-events: none;
  z-index: 19;
}

.search-remark:hover::after,
.search-remark:focus-visible::after,
.search-remark:hover::before,
.search-remark:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}

.search-room-row__action {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-room-row__price {
  text-align: left;
  white-space: nowrap;
}

.search-room-row__price strong {
  display: block;
  color: #0b76bd;
  font-size: 18px;
  line-height: 1;
}

.search-room-row__price small {
  color: #5f7d97;
  font-size: 12px;
}

.search-room-row__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #0a78be;
  color: #fff;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
  text-decoration: none;
  white-space: nowrap;
}

.search-room-row__cta:hover {
  color: #fff;
  background: #095f97;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
}

.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 26, 43, 0.65);
  backdrop-filter: blur(2px);
}

.gallery-modal__panel {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100vw - 40px));
  max-height: min(80vh, 720px);
  overflow: auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(8, 25, 41, 0.28);
  padding: 16px;
}

.gallery-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.gallery-modal__header h3 {
  margin: 0;
  font-size: 20px;
  color: #0f3554;
}

.gallery-modal__close {
  border: 0;
  border-radius: 10px;
  width: 34px;
  height: 34px;
  background: #eef3f8;
  color: #1f3a55;
  font-size: 20px;
  cursor: pointer;
}

.gallery-modal__close:hover {
  background: #e2e9f1;
}

.gallery-modal__status {
  margin: 0 0 12px;
  color: #4a6a87;
  font-size: 14px;
}

.gallery-modal__status--error {
  color: #a71818;
}

.gallery-modal__viewer {
  display: grid;
  gap: 10px;
}

.gallery-modal__main-image {
  width: 100%;
  height: clamp(240px, 48vh, 460px);
  object-fit: cover;
  border-radius: 12px;
  background: #f1f5f9;
}

.gallery-modal__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px;
}

.gallery-modal__thumb {
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
}

.gallery-modal__thumb.is-active {
  border-color: #0a78be;
  box-shadow: 0 6px 14px rgba(10, 120, 190, 0.28);
}

.gallery-modal__thumb img {
  width: 100%;
  height: 78px;
  object-fit: cover;
  display: block;
  background: #f1f5f9;
}

@media (max-width: 760px) {
  .gallery-modal__panel {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 24px);
    padding: 12px;
  }

  .gallery-modal__main-image {
    height: clamp(200px, 34vh, 320px);
  }

  .gallery-modal__thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.search-result-card__price small {
  display: block;
  color: #6e8aa3;
  font-size: 13px;
}

.search-result-card__price strong {
  font-size: 30px;
  line-height: 1;
  color: #0b78bf;
}

.search-result-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #0a78be;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 16px;
  text-decoration: none;
}

.search-result-card__cta:hover {
  color: #fff;
  background: #095f97;
}

.search-result-card__actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: stretch;
}

.search-result-card__info-icon {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none; border: none; padding: 2px 8px; margin-right: 6px;
  color: var(--color-primary); cursor: pointer;
  vertical-align: middle; transition: color .2s;
  font-size: 13px; font-weight: 500;
  border-radius: 6px;
}
.search-result-card__info-icon:hover { color: #014f8a; background: rgba(2,97,171,.06); }

.search-result-card__info-link {
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.search-result-card__info-link:hover {
  background: var(--color-primary);
  color: #fff;
  cursor: pointer;
}

/* ── Hotel info modal ── */
.hotel-info-modal {
  width: min(780px, calc(100vw - 40px));
  max-height: min(85vh, 800px);
}

.hotel-info-modal__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 48px 0;
  color: var(--color-muted);
}

.hotel-info-modal__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border-soft);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hotel-info-modal__body {
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hotel-info-modal__gallery {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.hotel-info-modal__gallery img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.hotel-info-modal__section h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary-ink);
  margin: 0 0 8px;
}

.hotel-info-modal__section p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
}

.hotel-info-modal__facilities {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hotel-info-modal__facilities li {
  background: #edf3fa;
  color: var(--color-primary-ink);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
}

.hotel-info-modal__rooms {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hotel-info-modal__room {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #f8fafc;
  border-radius: 10px;
  padding: 10px;
}

.hotel-info-modal__room img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.hotel-info-modal__room strong {
  font-size: 14px;
  color: var(--color-primary-ink);
}

.hotel-info-modal__room p {
  font-size: 13px;
  color: var(--color-muted);
  margin: 4px 0 0;
}

@media (max-width: 600px) {
  .hotel-info-modal {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 24px);
  }

  .hotel-info-modal__gallery img {
    width: 140px;
    height: 95px;
  }
}

.search-result-card__discount {
  color: #d32f2f;
  font-weight: 700;
}

.search-hero__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 12px 32px;
  border: none;
  border-radius: var(--radius-md);
  background: var(--color-accent);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}

.search-hero__submit:hover {
  background: #e06a0a;
}

.search-hero__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.search-results__toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 12px;
  padding: 0 4px;
}

.search-results__sort {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--color-text);
}

.search-results__sort select {
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 14px;
  background: #fff;
  color: var(--color-text);
}

.search-result-card__admin-remark,
.search-result-card__special-remark {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.4;
}

.search-result-card__special-remark {
  color: #c62828;
}

.search-room-row__remarks {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  align-self: center;
}

.search-room-row__terms {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--color-primary);
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
}

.search-room-row__terms:hover {
  text-decoration: underline;
}

.search-room-row__terms-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.search-room-row__tooltip {
  position: fixed;
  z-index: 9999;
  min-width: 260px;
  max-width: 360px;
  background: #1a3550;
  color: #fff;
  font-size: 13px;
  line-height: 1.55;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  white-space: pre-line;
  text-align: right;
  pointer-events: none;
  animation: tooltipFadeIn 0.15s ease;
}

@keyframes tooltipFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.search-room-row__special-remark {
  font-size: 12px;
  color: #c62828;
  line-height: 1.3;
}

.search-room-row__original-price {
  color: var(--color-muted);
  font-size: 12px;
}

.search-pagination {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.search-pagination button {
  border: 1px solid #c7d7ea;
  background: #fff;
  color: #1a3c63;
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
}

.search-pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.hotel-details-page {
  padding-top: 28px;
}

.hotel-details__header span {
  display: inline-block;
  background: rgba(2, 97, 171, 0.12);
  color: #0a4f87;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 13px;
}

.hotel-details__header h1 {
  margin: 10px 0 8px;
  font-size: clamp(30px, 4vw, 46px);
  color: #123a63;
}

.hotel-details__header p {
  color: var(--color-muted);
  margin: 0 0 16px;
}

.hotel-details__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
  align-items: start;
}

.hotel-details__gallery {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  padding: 10px;
}

.hotel-details__hero {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
}

.hotel-details__thumbs {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.hotel-details__thumbs button {
  border: 1px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  background: #fff;
  cursor: pointer;
}

.hotel-details__thumbs button.is-active {
  border-color: var(--color-primary);
}

.hotel-details__thumbs img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  display: block;
}

.hotel-details__booking-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 16px;
  position: sticky;
  top: 100px;
}

.hotel-details__booking-box strong {
  display: block;
  color: var(--color-primary);
  font-size: 24px;
}

.hotel-details__booking-box p {
  color: var(--color-muted);
  font-size: 14px;
}

.hotel-details__booking-box button {
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: var(--color-accent);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 12px;
  cursor: pointer;
}

.hotel-details__content {
  margin-top: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

.hotel-details__content h2,
.hotel-details__content h3 {
  margin: 0 0 10px;
}

.hotel-details__content p {
  margin: 0 0 14px;
  color: #2f4961;
}

.hotel-details__content ul {
  margin: 0;
  padding-right: 18px;
}

.hotel-details__content li {
  margin-bottom: 6px;
}

@media (max-width: 1180px) {
  .hero__cover {
    min-height: 680px;
  }

  .hero__search-floating {
    width: calc(100% - 26px);
  }

  .hero-search__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .deal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 1024px) {
  .search-quickbar__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-quickbar button {
    width: 100%;
  }

  .search-layout {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .search-filters {
    top: 8px;
  }

  .hotel-details__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .search-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "results"
      "filters";
  }

  .search-filters,
  .hotel-details__booking-box {
    position: static;
  }
}

@media (max-width: 760px) {

  .hero {
    padding-top: 8px;
  }

  .hero__cover {
    min-height: auto;
    padding: 14px;
  }

  .hero__promo {
    position: static;
    width: 100%;
    margin-bottom: 10px;
  }

  .hero__promo h1 {
    font-size: 22px;
    margin-bottom: 4px;
  }

  .hero__promo p {
    font-size: 14px;
    margin-bottom: 0;
  }

  .hero__search-floating {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 8px;
  }

  .discover__tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .deal-grid {
    grid-template-columns: 1fr;
  }

  .search-result-card {
    grid-template-columns: 1fr;
  }

  .loading-skeleton__card {
    grid-template-columns: 1fr;
  }

  .loading-skeleton__media {
    min-height: 180px;
  }

  .search-result-card__media {
    min-height: 200px;
  }

  .search-result-card__meta {
    grid-template-columns: 1fr;
  }

  .search-result-card__content {
    flex-direction: column;
  }

  .search-result-card__footer {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .search-room-row {
    grid-template-columns: 1fr;
    text-align: right;
  }

  .search-room-row__selectors {
    grid-template-columns: repeat(3, 1fr);
  }

  .search-room-row__selectors select {
    font-size: 13px;
    padding: 6px 4px;
  }

  .search-room-row__action {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
  }

  .search-room-row__price {
    text-align: right;
  }

  .search-room-row__cta {
    padding: 10px 20px;
  }

  .site-footer__columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 20px;
  }

  .hotel-details__hero {
    height: 250px;
  }
}

/* Home alignment to reference look */
.discover {
  display: none;
}

.hero__cover {
  min-height: 760px;
  border-radius: 52px;
}

.hero__promo {
  right: 80px;
  top: 150px;
}

.hero__promo h1 {
  font-size: clamp(42px, 4.8vw, 66px);
  max-width: 840px;
}

.hero__promo p {
  font-size: 22px;
}

.hero__cta {
  min-width: 132px;
  height: 50px;
  background: #496fd8;
}

.hero__search-floating {
  bottom: 24px;
}

.hero-search {
  background: #fff;
  border: 1px solid #d4dbe4;
  backdrop-filter: none;
  padding: 18px 20px;
}

.hero-search__grid--single-row {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1.7fr 1fr 0.8fr;
  gap: 10px;
  align-items: end;
}

.hero-search__field label {
  font-weight: 500;
  color: #3f5e7c;
}

.hero-search__field input,
.hero-search__field select {
  height: 52px;
  border-radius: 18px;
  border: 1px solid #cedcec;
  background: #fff;
}

.destination-dropdown {
  position: relative;
}

.destination-dropdown__trigger {
  width: 100%;
  height: 52px;
  border-radius: 18px;
  border: 1px solid #aeb6bf;
  background: linear-gradient(180deg, #f4f4f4 0%, #ececec 100%);
  color: #4d5258;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  font-size: 16px;
  font-weight: 500;
  text-align: right;
  margin-top: 0;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.destination-dropdown__trigger:hover {
  border-color: #8d9fad;
}

.destination-dropdown__trigger:focus,
.destination-dropdown__trigger:focus-visible,
.destination-dropdown__trigger.is-open {
  outline: 0;
  border-color: #0f69b1;
  box-shadow: 0 0 0 3px rgba(15, 105, 177, 0.2);
}

.destination-dropdown__chevron,
.destination-dropdown__pin {
  color: #0261ab;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.destination-dropdown__value {
  flex: 1 1 auto;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.destination-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 2500;
  background: #f3f3f3;
  border: 1px solid #b8bec5;
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(23, 49, 74, 0.2);
  padding: 8px;
  max-height: 260px;
  overflow-y: auto;
}

.destination-dropdown__option {
  width: 100%;
  border: 0;
  border-radius: 14px;
  background: transparent;
  padding: 12px 14px;
  text-align: right;
  color: #4d5258;
  font-size: 16px;
  line-height: 1.25;
  cursor: pointer;
}

.destination-dropdown__option:hover {
  background: #e9eef3;
}

.destination-dropdown__option.is-selected {
  color: #0261ab;
  font-weight: 700;
}

.hero-search .destination-dropdown__option {
  margin-top: 0;
  height: auto;
  border: 0;
  background: transparent;
  color: #4d5258;
  font-weight: 500;
}

.hero-search .destination-dropdown__option:hover {
  background: #e9eef3;
}

.hero-search .destination-dropdown__option.is-selected {
  color: #0261ab;
  font-weight: 700;
}

.destination-dropdown__hint {
  margin: 8px 6px;
  color: #5c6470;
  font-size: 13px;
}

.destination-dropdown__hint--error {
  color: #a71818;
}

.guest-dropdown {
  position: relative;
}

.guest-dropdown__trigger {
  width: 100%;
  height: 52px;
  border-radius: 18px;
  border: 1px solid #aeb6bf;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  font-size: 16px;
  color: #36405b;
  cursor: pointer;
}

.guest-dropdown__value {
  font-weight: 600;
}

.guest-dropdown__icon {
  color: #1c4f83;
}

.guest-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 2500;
  background: #fff;
  border: 1px solid #cfd7e3;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 14px 28px rgba(23, 49, 74, 0.2);
}

.guest-dropdown__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.guest-dropdown__label {
  font-weight: 600;
  color: #1b3e68;
}

.guest-dropdown__controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.guest-dropdown__controls button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #0e4d8b;
  color: #fff;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.guest-dropdown__controls button:disabled {
  background: #cfd7e3;
  cursor: not-allowed;
}

.guest-dropdown__actions {
  text-align: right;
}

.guest-dropdown__action {
  background: none;
  border: none;
  color: #0e4d8b;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 760px) {
  .destination-dropdown__trigger {
    height: 52px;
    font-size: 15px;
    border-radius: 16px;
  }

  .destination-dropdown__option {
    font-size: 15px;
  }
}

.hero-search__field--dates .hero-search__date-range {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 6px;
  align-items: center;
}

.hero-search__field--dates .hero-search__date-range span {
  color: #587694;
  font-weight: 700;
}

.hero-search__actions button {
  width: 100%;
  height: 52px;
  border-radius: 18px;
  background: #2b8bd6;
  border: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

.hero-search__summary {
  margin: 8px 0 0;
  color: #506c87;
}

@media (max-width: 1180px) {
  .hero-search__grid--single-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-search__actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .hero__cover {
    min-height: auto;
    border-radius: 22px;
  }

  .hero__promo {
    position: static;
    margin-bottom: 14px;
  }

  .hero-search__grid--single-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-search__field {
    position: relative;
    z-index: auto;
  }

  /* Stack fields so earlier ones sit above later ones – dropdowns won't hide behind the next field */
  .hero-search__grid--single-row > .hero-search__field:nth-child(1) { z-index: 40; }
  .hero-search__grid--single-row > .hero-search__field:nth-child(2) { z-index: 30; }
  .hero-search__grid--single-row > .hero-search__field:nth-child(3) { z-index: 20; }
  .hero-search__grid--single-row > .hero-search__field:nth-child(4) { z-index: 10; }
}

.date-range {
  position: relative;
}

.date-range__trigger {
  width: 100%;
  height: 52px;
  border-radius: 18px;
  border: 1px solid #cedcec;
  background: #fff;
  color: #3b5a76;
  font-size: 15px;
  text-align: right;
  padding: 0 14px;
  cursor: pointer;
}

.date-range__popover {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 820px;
  max-width: min(92vw, 820px);
  background: #f5f6f8;
  border: 1px solid #c9d9ea;
  border-radius: 14px;
  box-shadow: 0 18px 32px rgba(20, 52, 84, 0.18);
  padding: 14px;
  z-index: 70;
}

.date-range__nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.date-range__nav button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: #e2ebf5;
  color: #365b79;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.date-range__months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.date-range__month h4 {
  margin: 0 0 8px;
  text-align: center;
  color: #2d3f50;
  font-size: 34px;
}

.date-range__weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-bottom: 6px;
}

.date-range__weekdays span {
  text-align: center;
  color: #778899;
  font-size: 14px;
  font-weight: 700;
}

.date-range__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.date-range__empty {
  display: block;
  height: 42px;
}

.date-range__day {
  position: relative;
  width: 42px;
  height: 42px;
  margin: 0 auto;
  border: 0;
  border-radius: 50%;
  background: #dfe9f3;
  color: var(--color-text);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.date-range__day.is-other-month {
  opacity: 0.45;
}

.date-range__day:hover {
  background: #c2d6ea;
}

.date-range__day.is-in-range {
  background: #b8d4ef;
  color: var(--color-primary-ink);
}

.date-range__day.is-selected {
  background: var(--color-primary);
  color: #fff;
}

.date-range__holiday-corner {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 18px 0 0;
  border-color: #0172df transparent transparent transparent;
  pointer-events: none;
}

.date-range__holiday-corner span {
  position: absolute;
  top: -16px;
  left: 3px;
  font-size: 7px;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  pointer-events: none;
  transform: rotate(-45deg);
  transform-origin: center;
}

.date-range__day.is-selected .date-range__holiday-corner {
  border-color: #fff transparent transparent transparent;
}

.date-range__day.is-selected .date-range__holiday-corner span {
  color: #0172df;
}

.date-range__legend {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding: 0 4px;
  font-size: 13px;
  color: var(--color-muted);
}

.date-range__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.date-range__holiday-corner--legend {
  position: static;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 0;
  border-color: #0172df transparent transparent transparent;
}

.date-range__actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.date-range__actions button {
  border: 0;
  border-radius: 10px;
  background: #e6ebf0;
  color: #2e4155;
  padding: 10px 14px;
  font-size: 16px;
  cursor: pointer;
}

.date-range__actions button.is-primary {
  background: var(--color-primary);
  color: #fff;
}

.date-range__actions button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 980px) {
  .date-range__popover {
    width: min(92vw, 680px);
    right: auto;
    left: 0;
  }

  .date-range__months {
    grid-template-columns: 1fr;
  }
}

/* Date picker visibility fix */
.hero__search-floating,
.hero-search,
.hero-search__field,
.date-range {
  overflow: visible;
}

.date-range {
  z-index: 120;
}

.date-range__popover {
  top: auto;
  bottom: calc(100% + 10px);
  z-index: 999;
}

@media (max-width: 980px) {
  .date-range__popover {
    top: calc(100% + 10px);
    bottom: auto;
  }
}

/* Date picker visual tuning to reference */
.date-range__popover {
  background: #f1f1f1;
  border: 1px solid #d8dce3;
  border-radius: 12px;
  padding: 12px;
}

.date-range__month h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #343a40;
}

.date-range__weekdays span {
  font-size: 12px;
  color: #7b7f86;
}

.date-range__empty {
  height: 34px;
}

.date-range__day {
  width: 34px;
  height: 34px;
  font-size: 12px;
  font-weight: 500;
  background: #b9f1d7;
  color: #2d3f49;
}

.date-range__day.is-in-range {
  background: #e2e4e7;
  border-radius: 6px;
}

.date-range__day.is-selected {
  background: #0d66b3;
  color: #fff;
  border-radius: 8px;
}

.date-range__actions {
  margin-top: 12px;
  gap: 6px;
}

.date-range__actions button {
  padding: 8px 10px;
  font-size: 12px;
  border-radius: 6px;
}

.date-range__actions button.is-primary {
  background: #b9f1d7;
  color: #1f3a36;
}

.date-range__actions button:nth-child(1) {
  background: #f0dfd8;
}

.date-range__actions button:nth-child(2) {
  background: #d6d8dd;
}

/* Requested tuning */
.hero .container.hero__frame {
  width: min(1820px, calc(100vw - 20px));
}

.hero__cover {
  min-height: 820px;
  background-size: cover;
  background-position: center center;
}

.date-range__popover {
  padding: 10px;
}

.date-range__months {
  gap: 10px;
}

.date-range__weekdays {
  margin-bottom: 4px;
}

.date-range__grid {
  gap: 3px;
}

.date-range__empty {
  height: 30px;
}

.date-range__day {
  width: 30px;
  height: 30px;
  font-size: 11px;
  padding: 0;
  background: #C2F9DC;
}

.date-range__day.is-in-range {
  border-radius: 5px;
}

.date-range__month h4 {
  font-size: 13px;
  margin-bottom: 4px;
}

.date-range__actions {
  margin-top: 10px;
}

.date-range__actions button {
  padding: 6px 9px;
  font-size: 11px;
}

@media (max-width: 760px) {
  .hero__cover {
    min-height: auto;
  }
}

/* Date range colors to match provided style */
.date-range__day {
  background: #c2f9dc;
  color: #2f474d;
}

.date-range__day.is-in-range {
  background: #d9dce1;
  color: #2f343a;
}

.date-range__day.is-selected {
  background: #0b63b3;
  color: #ffffff;
}

/* Force override for date picker colors */
.date-range .date-range__grid .date-range__day {
  background: #C2F9DC !important;
  color: #2f474d !important;
}

.date-range .date-range__grid .date-range__day.is-in-range {
  background: #D9DCE1 !important;
  color: #2f343a !important;
}

.date-range .date-range__grid .date-range__day.is-selected {
  background: #0B63B3 !important;
  color: #ffffff !important;
}

/* Remove blue background from date trigger */
.date-range__trigger {
  background: #ffffff !important;
  color: #3b5a76 !important;
  border: 1px solid #cedcec !important;
}

/* Open date picker below trigger */
.date-range__popover {
  top: calc(100% + 10px) !important;
  bottom: auto !important;
}

/* Ensure date picker stays above all layers */
.date-range,
.date-range__popover {
  z-index: 99999 !important;
}

/* Calendar clipping fix */
.hero,
.hero__frame,
.hero__cover,
.hero__search-floating,
.hero-search,
.hero-search__field,
.date-range {
  overflow: visible !important;
}

.date-range__popover {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  bottom: auto !important;
  z-index: 99999 !important;
}

.date-range__months,
.date-range__month,
.date-range__grid,
.date-range__weekdays {
  display: grid !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.hero__top-banner {
  display: flex;
  flex-direction: column;
  margin: 0;
  max-width: none;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  width: 100%;
  flex: 0 0 100%;
  position: relative;
}

.hero__top-banner img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.hero__top-banner span {
  position: absolute;
  right: 50%;
  bottom: 12px;
  transform: translateX(50%);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(4px);
  font-size: 12px;
  font-weight: 600;
  color: #194268;
  text-align: center;
  white-space: nowrap;
}

.prices-of-flight {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  display: flex;
  transition: transform 0.45s ease;
  --items-visible: 1;
  --carousel-gap: 6px;
  gap: var(--carousel-gap);
}

.deals-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.feathers-slider-wrap {
  margin-top: 8px;
  margin-bottom: 20px;
}

.hero-offers-title {
  margin: 0 0 12px;
  color: #1a4972;
  font-size: clamp(26px, 3vw, 40px);
}

.offers-title {
  margin: 16px 0 12px;
  color: #1a4972;
  font-size: 30px;
}

.feathers-slider {
  position: relative;
  width: 100%;
  min-height: 250px;
  display: flex;
  transition: transform 0.45s ease;
  --items-visible: 1;
  --carousel-gap: 6px;
  gap: var(--carousel-gap);
}

.feathers-slide {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(12, 45, 78, 0.14);
  flex: 0 0 calc((100% - (var(--items-visible) - 1) * var(--carousel-gap)) / var(--items-visible));
  max-width: calc((100% - (var(--items-visible) - 1) * var(--carousel-gap)) / var(--items-visible));
  height: 100%;
}

.feathers-slide img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.feathers-slide__body {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 206px;
}

.feathers-slide__title {
  display: block;
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  color: #163f64;
}

.feathers-slide__meta {
  display: grid;
  gap: 2px;
  font-size: 11px;
  line-height: 1.25;
  color: #415d79;
}

.feathers-slide__price {
  color: #1c4f85;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.2;
}

.feathers-slide__room {
  font-size: 11px;
  line-height: 1.3;
  color: #2a445d;
}

.feathers-slide__description {
  margin: 0;
  font-size: 10px;
  line-height: 1.35;
  color: #4f6780;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.feathers-slide__cta {
  display: block;
  margin-top: auto;
  padding: 8px 0;
  background: var(--color-primary, #0261ab);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

.text-center {
  text-align: center;
}

.prices-of-flight .hero__top-banner {
  flex: 0 0 calc((100% - (var(--items-visible) - 1) * var(--carousel-gap)) / var(--items-visible));
  max-width: calc((100% - (var(--items-visible) - 1) * var(--carousel-gap)) / var(--items-visible));
}

.carousel-shell {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #1e4f7e;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(8, 41, 73, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s;
}
.carousel-nav:hover {
  background: #fff;
  box-shadow: 0 8px 24px rgba(8, 41, 73, 0.3);
}

.carousel-nav--prev {
  right: 8px;
}

.carousel-nav--next {
  left: 8px;
}

.deals-tabs__button {
  border: 1px solid #c8d9ea;
  background: #fff;
  color: #2f4f6b;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.deals-tabs__button.is-active {
  border-color: #2e77c5;
  color: #0f4f91;
  background: #eef6ff;
}

.deals-tab-panel {
  display: none;
}

.deals-tab-panel.is-active {
  display: block;
}

.deal-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(12, 45, 78, 0.14);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.deal-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 10px;
}

.deal-card__badge--gold {
  background: #c6942f;
}

.deal-card__badge--red {
  background: #d94848;
}

.deal-card__discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e85d2a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  z-index: 2;
  line-height: 1.4;
}

.deal-card__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.deal-card__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.deal-card__body h3 {
  margin: 0 0 6px;
  font-size: 21px;
}

.deal-card__meta {
  margin: 0 0 8px;
  color: #4d6986;
}

.deal-card__line {
  margin: 2px 0;
  font-size: 14px;
}

.deal-card__line--small {
  color: #4d6986;
}

.deal-card__cta {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 10px;
  background: #286fbd;
  color: #fff;
  font-weight: 700;
  width: 100%;
}

.deal-card__footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.deal-card__price {
  text-align: left;
}

.deal-card__price strong {
  display: block;
  color: #194d86;
  font-size: 21px;
}

.deal-card__price span {
  font-size: 12px;
  color: #516f8b;
}

/* User request: white calendar background + smaller size within search area */
.date-range__popover {
  background: #ffffff !important;
  width: min(640px, calc(100vw - 120px)) !important;
  max-width: 100% !important;
  padding: 8px !important;
  border: 1px solid #d9e1ea !important;
  border-radius: 10px !important;
}

.date-range__months {
  gap: 8px !important;
}

.date-range__month h4 {
  font-size: 12px !important;
  margin-bottom: 4px !important;
}

.date-range__weekdays span {
  font-size: 11px !important;
}

.date-range__grid {
  gap: 2px !important;
}

.date-range__empty {
  height: 28px !important;
}

.date-range__day {
  width: 28px !important;
  height: 28px !important;
  font-size: 10px !important;
}

.date-range__actions {
  margin-top: 8px !important;
}

.date-range__actions button {
  padding: 5px 8px !important;
  font-size: 10px !important;
}

@media (max-width: 900px) {
  .date-range__popover {
    width: min(520px, calc(100vw - 40px)) !important;
  }
}

/* Anchor calendar to full hero-search-root bar */
#hero-search-root .hero-search {
  position: relative !important;
}

@media (min-width: 761px) {
  #hero-search-root .hero-search__field--dates,
  #hero-search-root .hero-search__field--dates .date-range {
    position: static !important;
  }

  #hero-search-root .hero-search__field--dates .date-range__popover {
    left: 0 !important;
    right: 0 !important;
    top: calc(100% + 10px) !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

#hero-search-root .hero-search__field--dates .date-range__months {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

@media (max-width: 980px) {
  #hero-search-root .hero-search__field--dates .date-range__months {
    grid-template-columns: 1fr !important;
  }
}

/* Final calendar style alignment to reference screenshot */
#hero-search-root .hero-search__field--dates .date-range__popover {
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  top: calc(100% + 8px) !important;
  width: min(820px, calc(100vw - 56px)) !important;
  max-width: min(820px, calc(100vw - 56px)) !important;
  background: #f3f3f3 !important;
  border: 1px solid #d7dce3 !important;
  border-radius: 12px !important;
  box-shadow: 0 14px 28px rgba(23, 49, 74, 0.2) !important;
  padding: 16px 18px !important;
}

#hero-search-root .hero-search__field--dates .date-range__months {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

#hero-search-root .hero-search__field--dates .date-range__month h4 {
  font-size: 36px !important;
  margin-bottom: 8px !important;
  color: #2f3338 !important;
  font-weight: 700 !important;
}

#hero-search-root .hero-search__field--dates .date-range__weekdays span {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #7f858d !important;
}

#hero-search-root .hero-search__field--dates .date-range__day {
  width: 40px !important;
  height: 40px !important;
  font-size: 30px !important;
  font-weight: 500 !important;
  background: #c2f9dc !important;
  color: #2f343a !important;
  border-radius: 999px !important;
}

#hero-search-root .hero-search__field--dates .date-range__day.is-in-range {
  background: #d9dce1 !important;
  color: #2e3339 !important;
  border-radius: 6px !important;
}

#hero-search-root .hero-search__field--dates .date-range__day.is-selected {
  background: #0b63b3 !important;
  color: #fff !important;
  border-radius: 8px !important;
}

#hero-search-root .hero-search__field--dates .date-range__actions {
  margin-top: 14px !important;
}

#hero-search-root .hero-search__field--dates .date-range__actions button {
  padding: 9px 14px !important;
  font-size: 30px !important;
  border-radius: 7px !important;
}

#hero-search-root .hero-search__field--dates .date-range__actions button:nth-child(1) {
  background: #efddd6 !important;
}

#hero-search-root .hero-search__field--dates .date-range__actions button:nth-child(2) {
  background: #d7d9de !important;
}

#hero-search-root .hero-search__field--dates .date-range__actions button.is-primary {
  background: #b8f0d5 !important;
  color: #233c37 !important;
}

@media (max-width: 980px) {
  #hero-search-root .hero-search__field--dates .date-range__popover {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: min(620px, calc(100vw - 24px)) !important;
    max-width: min(620px, calc(100vw - 24px)) !important;
  }

  #hero-search-root .hero-search__field--dates .date-range__month h4 {
    font-size: 16px !important;
  }

  #hero-search-root .hero-search__field--dates .date-range__day {
    width: 34px !important;
    height: 34px !important;
    font-size: 14px !important;
  }

  #hero-search-root .hero-search__field--dates .date-range__actions button {
    font-size: 12px !important;
  }
}

/* Corrected sizing after style alignment */
#hero-search-root .hero-search__field--dates .date-range__day {
  font-size: 16px !important;
}

#hero-search-root .hero-search__field--dates .date-range__actions button {
  font-size: 18px !important;
}

@media (max-width: 980px) {
  #hero-search-root .hero-search__field--dates .date-range__actions button {
    font-size: 12px !important;
  }
}

/* Calendar position + month title sizing tweaks */
#hero-search-root .hero-search__field--dates {
  position: relative !important;
}

#hero-search-root .hero-search__field--dates .date-range__popover {
  position: absolute !important;
}

#hero-search-root .hero-search__field--dates .date-range {
  position: absolute !important;
  inset: auto 0 0 0 !important;
}

@media (max-width: 760px) {
  #hero-search-root .hero-search__field--dates {
    position: relative !important;
  }
  #hero-search-root .hero-search__field--dates .date-range {
    position: static !important;
    inset: auto !important;
  }
}

#hero-search-root .hero-search__field--dates .date-range__popover {
  top: calc(100% + 2px) !important;
  right: 0 !important;
  left: auto !important;
  transform: none !important;
  width: min(760px, calc(100vw - 40px)) !important;
  max-width: min(760px, calc(100vw - 40px)) !important;
}

#hero-search-root .hero-search__field--dates .date-range__month h4 {
  font-size: 24px !important;
  margin-bottom: 6px !important;
}

@media (max-width: 980px) {
  #hero-search-root .hero-search__field--dates .date-range__popover {
    right: 50% !important;
    left: auto !important;
    transform: translateX(50%) !important;
    width: min(620px, calc(100vw - 24px)) !important;
    max-width: min(620px, calc(100vw - 24px)) !important;
  }

  #hero-search-root .hero-search__field--dates .date-range__month h4 {
    font-size: 16px !important;
  }
}

/* Search page calendar readability */
:is(.hotels-search-page, #hero-search-root) .hero-search__field--dates .date-range__popover {
  width: min(640px, calc(100vw - 56px)) !important;
  max-width: min(640px, calc(100vw - 56px)) !important;
  padding: 12px 14px !important;
  background: #ffffff !important;
  border: 1px solid #d9e1ea !important;
  border-radius: 10px !important;
  box-shadow: 0 14px 28px rgba(23, 49, 74, 0.2) !important;
}

:is(.hotels-search-page, #hero-search-root) .hero-search__field--dates .date-range__months {
  gap: 10px !important;
}

:is(.hotels-search-page, #hero-search-root) .hero-search__field--dates .date-range__month h4 {
  font-size: 18px !important;
  margin-bottom: 6px !important;
}

:is(.hotels-search-page, #hero-search-root) .hero-search__field--dates .date-range__weekdays span {
  font-size: 12px !important;
}

:is(.hotels-search-page, #hero-search-root) .hero-search__field--dates .date-range__grid {
  gap: 1px !important;
}

:is(.hotels-search-page, #hero-search-root) .hero-search__field--dates .date-range__day {
  width: 34px !important;
  height: 34px !important;
  font-size: 14px !important;
}

:is(.hotels-search-page, #hero-search-root) .hero-search__field--dates .date-range__actions button {
  font-size: 13px !important;
  padding: 7px 10px !important;
}

@media (max-width: 900px) {
  :is(.hotels-search-page, #hero-search-root) .hero-search__field--dates .date-range__popover {
    width: min(620px, calc(100vw - 24px)) !important;
    max-width: min(620px, calc(100vw - 24px)) !important;
  }

  :is(.hotels-search-page, #hero-search-root) .hero-search__field--dates .date-range__day {
    width: 30px !important;
    height: 30px !important;
    font-size: 12px !important;
  }
}

/* Tight day spacing in calendar (edge-to-edge cells) */
:is(.hotels-search-page, #hero-search-root) .hero-search__field--dates .date-range__grid {
  gap: 0 !important;
}

:is(.hotels-search-page, #hero-search-root) .hero-search__field--dates .date-range__day {
  width: 100% !important;
  margin: 0 !important;
}

/* Carousel: drag/swipe support */
.carousel-shell {
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.carousel-shell.is-dragging {
  cursor: grabbing;
}
.carousel-shell.is-dragging a,
.carousel-shell.is-dragging img {
  pointer-events: none;
}

/* Carousel fix: prevent empty slots by rendering only visible items */
.prices-of-flight,
.feathers-slider {
  display: grid !important;
  grid-template-columns: repeat(var(--items-grid, var(--items-visible, 1)), minmax(0, 1fr));
  gap: 6px;
  align-items: stretch;
}

.prices-of-flight .agile__slide,
.feathers-slider .agile__slide {
  display: none !important;
  width: auto !important;
  max-width: none !important;
  flex: 0 0 auto !important;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.prices-of-flight .agile__slide.is-visible,
.feathers-slider .agile__slide.is-visible {
  opacity: 1;
  display: block !important;
}

/* ==================== Product Page (pp) – Flying Carpet Design ==================== */
/* Legacy pp styles kept for backward compatibility */
.pp { font-family: "Heebo", sans-serif; color: #1f1f1f; }

/* ── Breadcrumb ── */
.pp__breadcrumb { background: #f5f7fa; padding: 14px 0; font-size: 13px; color: #636363; border-bottom: 1px solid #e8edf3; }
.pp__breadcrumb .container { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.pp__breadcrumb a { color: var(--color-primary); text-decoration: none; font-weight: 500; }
.pp__breadcrumb a:hover { text-decoration: underline; }
.pp__breadcrumb-sep { margin: 0 8px; color: #bbb; font-size: 14px; }
.pp__breadcrumb-current { font-weight: 600; color: #1f1f1f; }

/* ── Gallery ── */
.pp__gallery-section { background: #f0f2f5; }
.pp__gallery-wrap { max-width: 1100px; margin: 0 auto; padding: 0; }
.pp__gallery-main-wrap { position: relative; overflow: hidden; }
.pp__gallery-img { width: 100%; height: 480px; object-fit: cover; display: block; }
.pp__gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: var(--color-primary); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.25); transition: background 0.2s, transform 0.15s; z-index: 2; }
.pp__gallery-arrow:hover { background: #014c8a; transform: translateY(-50%) scale(1.08); }
.pp__gallery-arrow--right { right: 16px; }
.pp__gallery-arrow--left { left: 16px; }
.pp__gallery-badge { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); background: rgba(0,0,0,0.55); color: #fff; padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 500; letter-spacing: 0.5px; }
.pp__gallery-thumbs { display: flex; gap: 6px; padding: 12px 16px; overflow-x: auto; background: #fff; }
.pp__gallery-thumb { flex-shrink: 0; padding: 0; border: 2px solid transparent; border-radius: 6px; overflow: hidden; cursor: pointer; opacity: 0.55; transition: opacity 0.2s, border-color 0.2s, box-shadow 0.2s; background: none; }
.pp__gallery-thumb img { display: block; width: 100px; height: 66px; object-fit: cover; }
.pp__gallery-thumb:hover { opacity: 0.85; }
.pp__gallery-thumb.is-active { opacity: 1; border-color: var(--color-primary); box-shadow: 0 0 0 2px rgba(2,97,171,0.25); }

/* ── Layout ── */
.pp__layout { display: grid; grid-template-columns: 1fr 300px; gap: 32px; margin: 32px 0 48px; }

/* ── Hotel Header ── */
.pp__hotel-header { margin-bottom: 20px; }
.pp__hotel-name { font-size: 26px; font-weight: 700; color: #1f1f1f; margin: 0 0 6px; line-height: 1.3; }
.pp__hotel-meta { display: flex; align-items: center; gap: 16px; }
.pp__stars { color: #ffce5e; font-size: 18px; letter-spacing: 2px; }
.pp__location { display: flex; align-items: center; gap: 5px; color: var(--color-primary); font-size: 14px; font-weight: 500; }

/* ── Trip strip ── */
.pp__trip-strip { display: flex; gap: 0; border: 1px solid #d9dee6; border-radius: 14px; overflow: hidden; margin-bottom: 24px; background: #fff; }
.pp__trip-cell { flex: 1; display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-left: 1px solid #e8edf3; }
.pp__trip-cell:last-child { border-left: none; }
.pp__trip-cell svg { flex-shrink: 0; }
.pp__trip-cell small { display: block; font-size: 11px; color: #9aa2af; margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.3px; }
.pp__trip-cell strong { display: block; font-size: 14px; font-weight: 600; color: #1f1f1f; }
.pp__trip-nights { display: inline-block; margin-right: 6px; background: rgba(2,97,171,0.1); color: var(--color-primary); padding: 2px 8px; border-radius: 10px; font-size: 12px; font-weight: 600; }

/* ── Description ── */
.pp__desc-block { margin-bottom: 24px; padding: 20px 24px; background: #fafbfc; border-radius: 12px; border: 1px solid #eef1f5; line-height: 1.75; font-size: 14px; color: #444; }

/* ── Facilities ── */
.pp__facilities { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.pp__fac-chip { background: #e8f0fe; color: var(--color-primary); padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 500; }

/* ── Accordion ── */
.pp__accordion { margin-bottom: 28px; }
.pp__acc-item { border: 1px solid #e5e8ed; border-radius: 12px; margin-bottom: 8px; overflow: hidden; transition: box-shadow 0.2s; }
.pp__acc-item.is-open { box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.pp__acc-trigger { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 14px 20px; background: #fafbfc; border: none; cursor: pointer; font-size: 15px; font-weight: 600; color: var(--color-primary-ink); text-align: right; font-family: inherit; transition: background 0.15s; }
.pp__acc-trigger:hover { background: #f0f4f9; }
.pp__acc-chevron { transition: transform 0.25s ease; }
.pp__acc-item.is-open .pp__acc-chevron { transform: rotate(180deg); }
.pp__acc-body { padding: 20px 24px; line-height: 1.75; font-size: 14px; color: #444; border-top: 1px solid #e5e8ed; }
.pp__fac-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.pp__fac-item { background: #f5f6f8; padding: 8px 16px; border-radius: 8px; font-size: 13px; color: #333; }
.pp__rc-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 16px; }
.pp__rc-row:last-child { margin-bottom: 0; }
.pp__rc-img { width: 140px; height: 96px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.pp__rc-row p { margin: 4px 0 0; font-size: 13px; color: #666; }

/* ── Pricing Section ── */
.pp__pricing-section { margin-top: 8px; border-radius: 15px; overflow: hidden; box-shadow: 0 0 10px rgba(0,0,0,0.1); position: relative; }
.pp__pricing-section::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: #00aeef; }
.pp__pricing-header { background: #1884c7; padding: 14px 24px; }
.pp__pricing-header h3 { margin: 0; font-size: 20px; font-weight: 600; color: #fff; }
.pp__pricing-body { padding: 28px 24px; background: #fff; }
.pp__pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* Room config column */
.pp__rooms-col {}
.pp__rooms-date-bar { font-size: 14px; font-weight: 600; color: #1884c7; margin-bottom: 16px; padding: 10px 16px; background: rgba(24,132,199,0.07); border-radius: 10px; text-align: center; }
.pp__room-card { background: #fff; border: 1px solid #d9dee6; border-radius: 14px; padding: 18px; margin-bottom: 12px; transition: box-shadow 0.2s; }
.pp__room-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.pp__room-title { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 16px; color: var(--color-primary-ink); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid #eef1f5; }
.pp__room-del { background: none; border: none; color: #d93025; cursor: pointer; font-size: 16px; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
.pp__room-del:hover { background: #fce8e6; }
.pp__room-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.pp__field label { display: block; font-size: 12px; color: #9aa2af; margin-bottom: 6px; font-weight: 500; }
.pp__field select { width: 100%; padding: 10px 14px; border: 1px solid #d9dee6; border-radius: 10px; font-size: 14px; font-family: inherit; direction: rtl; background: #fff; appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239aa2af' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: 14px center; transition: border-color 0.15s; }
.pp__field select:focus { border-color: var(--color-primary); outline: none; box-shadow: 0 0 0 3px rgba(2,97,171,0.12); }
.pp__room-meta { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #636363; }
.pp__room-stock { color: #1b8a2d; font-weight: 600; font-size: 12px; }
.pp__room-note { margin-top: 10px; padding: 10px 14px; background: #fff8e1; border-radius: 8px; font-size: 13px; color: #795548; border: 1px solid #ffe082; }
.pp__add-room-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 12px; margin-top: 4px; background: transparent; border: 2px dashed var(--color-primary); color: var(--color-primary); border-radius: 12px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; transition: background 0.2s; }
.pp__add-room-btn:hover { background: rgba(2,97,171,0.06); }
.pp__add-room-btn:disabled { opacity: 0.35; cursor: default; }
.pp__remark-note { margin-top: 14px; padding: 12px 16px; background: #fce4ec; border-radius: 10px; font-size: 13px; color: #b71c1c; border: 1px solid #f8bbd0; }

/* Price summary column */
.pp__price-col { background: #f8f9fc; border: 1px solid #e8edf3; border-radius: 14px; padding: 24px; height: fit-content; }
.pp__price-col h4 { font-size: 16px; font-weight: 700; color: var(--color-primary-ink); margin: 0 0 20px; }
.pp__price-line { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid #e5e8ed; }
.pp__price-line:last-of-type { border-bottom: none; }
.pp__price-line-info {}
.pp__price-line-room { font-size: 14px; font-weight: 600; color: #1f1f1f; }
.pp__price-line-detail { display: block; font-size: 12px; color: #9aa2af; margin-top: 2px; }
.pp__price-line-val { text-align: left; }
.pp__price-was { display: block; font-size: 12px; color: #999; text-decoration: line-through; opacity: 0.7; }
.pp__price-now { font-size: 18px; font-weight: 700; color: var(--color-primary-ink); }
.pp__total-bar { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; padding-top: 16px; border-top: 2px solid var(--color-primary); }
.pp__total-label { font-size: 14px; color: #636363; }
.pp__total-was { display: block; font-size: 12px; color: #999; text-decoration: line-through; }
.pp__total-amount { font-size: 28px; font-weight: 800; color: var(--color-primary); }
.pp__book-btn { display: block; width: 100%; margin-top: 20px; padding: 14px; background: #ff7a00; color: #fff; border: none; border-radius: 12px; font-size: 18px; font-weight: 800; cursor: pointer; font-family: inherit; transition: background 0.2s, transform 0.15s; box-shadow: 0 4px 12px rgba(255,122,0,0.3); }
.pp__book-btn:hover { background: #e56d00; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(255,122,0,0.35); }
.pp__book-btn:disabled { opacity: 0.4; cursor: default; transform: none; box-shadow: none; }

/* ── Sidebar ── */
.pp__sidebar {}
.pp__sidebar-card { background: #fff; border: 1px solid #d9dee6; border-radius: 15px; padding: 24px; position: sticky; top: 20px; box-shadow: 0 0 15px rgba(0,0,0,0.05); }
.pp__sidebar-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 4px; }
.pp__sidebar-header h3 { font-size: 18px; font-weight: 700; color: #1f1f1f; margin: 0; }
.pp__sidebar-location { display: flex; align-items: center; gap: 6px; font-size: 14px; color: var(--color-primary); font-weight: 500; margin-bottom: 16px; }
.pp__sidebar-divider { height: 1px; background: #e8edf3; margin: 16px 0; }
.pp__sidebar-info { display: flex; flex-direction: column; gap: 12px; }
.pp__sidebar-row { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #444; }
.pp__sidebar-row svg { color: var(--color-primary); flex-shrink: 0; }
.pp__sidebar-remarks { }
.pp__sidebar-remarks h4 { font-size: 14px; font-weight: 600; color: #1f1f1f; margin: 0 0 8px; }
.pp__sidebar-remarks p { font-size: 13px; line-height: 1.7; color: #6c757d; margin: 0; padding: 16px; border: 1px solid #00aeef; border-radius: 12px; }

/* ── Loading & Error ── */
.pp__loading { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 480px; gap: 20px; color: #636363; }
.pp__spinner { width: 48px; height: 48px; border: 4px solid #e5e8ed; border-top-color: var(--color-primary); border-radius: 50%; animation: pp-spin 0.75s linear infinite; }
@keyframes pp-spin { to { transform: rotate(360deg); } }
.pp__error { text-align: center; padding: 80px 20px; }
.pp__error-icon { width: 64px; height: 64px; margin: 0 auto 20px; background: #fce4ec; color: #d93025; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; font-weight: 700; }
.pp__error h2 { font-size: 22px; font-weight: 700; color: #1f1f1f; margin: 0 0 8px; }
.pp__error p { font-size: 14px; color: #636363; margin: 0 0 24px; }
.pp__back-btn { display: inline-block; padding: 12px 32px; background: var(--color-primary); color: #fff; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 14px; transition: background 0.2s; }
.pp__back-btn:hover { background: #014c8a; }

/* ── Responsive ── */
@media (max-width: 992px) {
  .pp__layout { grid-template-columns: 1fr; gap: 24px; }
  .pp__sidebar-card { position: static; }
}
@media (max-width: 768px) {
  .pp__gallery-img { height: 260px; }
  .pp__gallery-thumb img { width: 72px; height: 48px; }
  .pp__trip-strip { flex-direction: column; }
  .pp__trip-cell { border-left: none; border-bottom: 1px solid #e8edf3; }
  .pp__trip-cell:last-child { border-bottom: none; }
  .pp__pricing-grid { grid-template-columns: 1fr; }
  .pp__room-fields { grid-template-columns: 1fr; }
  .pp__hotel-name { font-size: 20px; }
  .pp__total-amount { font-size: 22px; }
}


/* ═══════════════════════════════════════════════════════════════════
   Deals Product Page (dp__*) – Two-Column Layout Matching Old Flow
   ═══════════════════════════════════════════════════════════════════ */

.dp {
  font-family: "Heebo", "Segoe UI", Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
}

/* ── Loading & Error ── */
.dp__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  gap: 20px;
  color: var(--color-muted);
}
.dp__spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #e5e8ed;
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: dp-spin 0.75s linear infinite;
}
@keyframes dp-spin { to { transform: rotate(360deg); } }

/* ── Skeleton Loading ── */
@keyframes dp-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.dp__skel {
  background: linear-gradient(90deg, #e9ecf1 25%, #f4f6f9 37%, #e9ecf1 63%);
  background-size: 200% 100%;
  animation: dp-shimmer 1.6s ease infinite;
  border-radius: 14px;
}
.dp__skel-header { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.dp__skel--stars { width: 120px; height: 18px; border-radius: 8px; }
.dp__skel--title { width: 260px; height: 28px; border-radius: 10px; }
.dp__skel--thumb { width: 100%; height: 90px; }
.dp__skel--main-img { width: 100%; height: 100%; min-height: 400px; }
.dp__skel--box { height: 140px; margin-bottom: 20px; }
.dp__skel--section { height: 200px; margin-bottom: 20px; }
.dp__skel--section-short { height: 120px; }
.dp__skel--sidebar { height: 420px; }

.dp__error-box {
  text-align: center;
  padding: 80px 20px;
}
.dp__error-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: #fce4ec;
  color: #d93025;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
}
.dp__error-box h2 { font-size: 22px; margin: 0 0 8px; }
.dp__error-box p { font-size: 14px; color: var(--color-muted); margin: 0 0 24px; }
.dp__back-link {
  display: inline-block;
  padding: 12px 32px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
}

/* ── Sticky Deal Bar ── */
.dp__deal-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
}
.dp__deal-card {
  width: 100%;
  background: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.dp__deal-bar-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 24px;
}
.dp__deal-bar-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  font-size: 14px;
  color: #333;
  flex-wrap: wrap;
}
.dp__deal-bar-info svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #555;
}
.dp__deal-bar-name {
  font-weight: 700;
  color: #1a3a5c;
}
.dp__deal-bar-sep {
  color: #ccc;
  margin: 0 2px;
}
.dp__deal-bar-price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.dp__deal-bar-price-label {
  font-size: 12px;
  color: #666;
}
.dp__deal-bar-price-val {
  font-size: 22px;
  font-weight: 800;
  color: #1a3a5c;
  line-height: 1;
}
.dp__deal-cta {
  padding: 8px 32px;
  background: #ff7d15;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 3px 10px rgba(255,125,21,0.3);
  transition: background 0.2s;
  flex-shrink: 0;
}
.dp__deal-cta:hover { background: #e56d00; }

/* ── Gallery Section ── */
.dp__gallery-section {
  background: #fff;
  padding: 28px 0 32px;
  border-bottom: 1px solid #e8edf3;
}
.dp__gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.dp__gallery-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}
.dp__gallery-stars {
  display: flex;
  gap: 2px;
}
.dp__hotel-title {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  color: #1a3a5c;
}
.dp__hotel-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 500;
}
.dp__gallery-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e3f2fd;
  color: var(--color-primary);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}
.dp__gallery-grid {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 10px;
  height: 400px;
  border-radius: var(--radius-lg);
}
.dp__gallery-images {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 10px;
  min-height: 0;
}
.dp__gallery-main {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}
.dp__gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dp__gallery-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dp__gallery-side-img {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.dp__gallery-side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dp__gallery-more { position: relative; }
.dp__gallery-more-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  gap: 4px;
}
.dp__gallery-map {
  border-radius: 14px;
  overflow: hidden;
  min-height: 0;
}
.dp__gallery-map {
  position: relative;
}
.dp__gallery-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.dp__gallery-map-expand {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #fff;
  color: var(--color-primary);
  border: 1px solid #c5dfef;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  white-space: nowrap;
  z-index: 2;
}
.dp__gallery-map-expand:hover { background: #e8f4fd; }
.dp__map-modal { width: min(900px, 95vw); max-height: 95vh !important; height: 90vh; }
.dp__map-modal-body { flex: 1; min-height: 0;
  object-fit: cover;
  display: block;
}

/* ═══ Two-Column Content Layout ═══ */
.dp__content-layout {
  padding: 32px 0;
}
.dp__two-col {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

/* ── Main Content Column ── */
.dp__main-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

/* Hotel Details Box */
.dp__hotel-details-box {
  background: #E2F8FC;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 24px;
}
.dp__hotel-details-box h2 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: #1a3a5c;
}
.dp__hotel-details-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: #444;
}
.dp__hotel-details-row span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.dp__hotel-details-row svg {
  width: 15px;
  height: 15px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.dp__hotel-details-remark {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--color-muted);
}
.dp__deal-remark {
  margin: 12px 0 0;
  padding: 12px 16px;
  background: linear-gradient(135deg, #fff8f0 0%, #fef3e8 100%);
  border: 1px solid #f0d9b5;
  border-radius: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.dp__deal-remark-icon {
  font-size: 22px;
  flex-shrink: 0;
}
.dp__deal-remark p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #5a3e1b;
}

/* Content Sections (inside main col) */
.dp__content-section {
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}
.dp__content-section-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a3a5c;
  margin: 0 0 16px;
  text-align: right;
}

/* About */
/* About section – collapsible */
.dp__about-section .dp__about-text {
  max-height: 300px;
  overflow: hidden;
  position: relative;
}
.dp__about-section.is-expanded .dp__about-text {
  max-height: none;
}
.dp__about-section:not(.is-expanded) .dp__about-text::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(transparent, #fff);
  pointer-events: none;
}
.dp__about-toggle {
  display: block; margin: 8px auto 0; padding: 6px 20px;
  background: none; border: none; color: var(--color-primary);
  font-size: 14px; font-weight: 600; cursor: pointer;
}
.dp__about-section.is-expanded .dp__about-toggle::after { content: "סגור"; }
.dp__about-section:not(.is-expanded) .dp__about-toggle::after { content: ""; }
.dp__about-section.is-expanded .dp__about-toggle { color: #64748b; }
.dp__amenities-section.is-expanded .dp__amenities-toggle { color: #64748b; }
.dp__amenities-toggle { display: none; }
@media (max-width: 991px) {
  .dp__amenities-toggle { display: block; }
}

.dp__about-text {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  text-align: right;
}
.dp__about-text p { margin: 0; }

/* Amenities */
.dp__amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dp__amenity-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0f4f8;
  color: #2b3540;
  padding: 7px 14px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #dce5ee;
}
.dp__amenity-chip svg { color: var(--color-primary); flex-shrink: 0; }

/* Reviews */
.dp__reviews-carousel {
  position: relative;
}
.dp__reviews-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.dp__reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: #fff;
  color: #1a3a5c;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dp__reviews-nav--prev { right: -18px; }
.dp__reviews-nav--next { left: -18px; }
.dp__reviews-nav:hover { background: #f5f8fc; }
.dp__reviews-disclaimer { text-align: center; font-size: 12px; color: #94a3b8; margin-top: 12px; }
.dp__review-card {
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dp__review-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dp__review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.dp__review-meta {
  display: flex;
  flex-direction: column;
}
.dp__review-meta strong {
  font-size: 14px;
  color: #1a3a5c;
}
.dp__review-meta span {
  font-size: 12px;
  color: var(--color-muted);
}
.dp__review-cats {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.dp__review-cat {
  display: grid;
  grid-template-columns: 50px 1fr 30px;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}
.dp__review-cat-name {
  color: var(--color-muted);
  text-align: right;
}
.dp__review-cat-bar {
  height: 5px;
  background: #e8edf3;
  border-radius: 3px;
  overflow: hidden;
}
.dp__review-cat-fill {
  height: 100%;
  background: var(--color-primary);
  border-radius: 3px;
}
.dp__review-cat-score {
  font-weight: 700;
  color: #1a3a5c;
  text-align: left;
}
.dp__review-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #444;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dp__review-more {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 600;
}
.dp__review-more:hover { text-decoration: underline; }

/* ═══ Sidebar Column ═══ */
.dp__sidebar-col {
  position: sticky;
  top: 70px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Price / Booking Box ── */
.dp__price-box {
  background: #fff;
  border: 1px solid #d8e3ef;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(8,53,95,0.1);
}
.dp__price-box-title {
  margin: 0;
  padding: 14px 20px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: var(--color-primary);
  text-align: center;
}
.dp__price-box-dates {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 13px;
  color: #444;
  border-bottom: 1px solid #eef2f7;
  background: #f9fbfd;
}
.dp__price-box-dates svg {
  width: 15px;
  height: 15px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.dp__price-box-nights {
  margin-right: auto;
  font-weight: 600;
  color: var(--color-primary);
}

/* Room Config */
.dp__room-config {
  padding: 14px 20px;
  border-bottom: 1px solid #eef2f7;
}
.dp__room-config-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.dp__room-config-header strong {
  font-size: 14px;
  color: #1a3a5c;
}
.dp__room-config-remove {
  width: 24px;
  height: 24px;
  border: none;
  background: #fce4ec;
  color: #d93025;
  border-radius: 50%;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  transition: background 0.2s;
}
.dp__room-config-remove:hover { background: #f8bbd0; }

.dp__room-config-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 8px;
}
.dp__room-config-table th {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-muted);
  text-align: right;
  padding: 4px 4px 6px;
}
.dp__room-config-table td {
  padding: 2px 4px;
}
.dp__room-select {
  width: 100%;
  padding: 7px 8px;
  border: 1px solid #d8e3ef;
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  background: #fff;
  color: var(--color-text);
  cursor: pointer;
  appearance: auto;
  direction: rtl;
}
.dp__room-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(2,97,171,0.12);
}

.dp__room-config-price {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  padding-top: 4px;
}
.dp__room-config-no-rooms {
  font-size: 14px;
  font-weight: 600;
  color: #c62828;
}
.dp__book-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.dp__room-config-price-current {
  font-size: 18px;
  font-weight: 800;
  color: #1a3a5c;
}
.dp__room-config-price-old {
  font-size: 14px;
  color: #999;
  opacity: 0.7;
}

/* Occupancy row */
.dp__room-occupancy {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.dp__room-occupancy-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dp__room-occupancy-field label {
  font-size: 11px;
  color: var(--color-muted);
  margin-bottom: 3px;
}
.dp__room-select--small {
  padding: 5px 6px;
  font-size: 13px;
}
.dp__room-config--loading .dp__room-config-table {
  opacity: 0.5;
  pointer-events: none;
}
.dp__room-config-loading-text {
  font-size: 14px;
  font-style: italic;
  color: var(--color-muted);
}

/* Add Room Button */
.dp__add-room-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px;
  border: none;
  background: none;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  border-bottom: 1px solid #eef2f7;
  transition: background 0.2s;
}
.dp__add-room-btn:hover {
  background: #f0f7fd;
}
.dp__add-room-btn span {
  font-size: 18px;
  font-weight: 700;
}

/* Price Box Footer */
.dp__price-box-footer {
  padding: 16px 20px;
  background: #f9fbfd;
}
.dp__price-box-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.dp__price-box-total-row > span {
  font-size: 14px;
  color: #444;
}
.dp__price-box-total-val {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dp__price-box-total-val strong {
  font-size: 24px;
  font-weight: 800;
  color: #1a3a5c;
}
.dp__price-box-total-val s {
  font-size: 15px;
  color: #999;
  opacity: 0.6;
}
.dp__price-box-remark {
  margin: 0 0 10px;
  font-size: 12px;
  color: var(--color-muted);
}
.dp__book-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 3px 12px rgba(255,125,21,0.3);
  transition: background 0.2s;
}
.dp__book-btn:hover { background: #e56d00; }

/* ── Phone CTA ── */
.dp__phone-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #1993C8;
  border-radius: 12px;
  padding: 18px 20px;
}
.dp__phone-cta-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transform: rotate(-45deg);
}
.dp__phone-cta-body {
  flex: 1;
}
.dp__phone-cta-body p {
  margin: 0 0 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}
.dp__phone-cta-body a {
  display: block;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  direction: ltr;
  text-align: right;
  transition: color 0.2s;
}
.dp__phone-cta-body a:hover { color: #000; }

/* ── Newsletter ── */
.dp__newsletter {
  background: linear-gradient(135deg, #0a4a85, #1884c7);
  padding: 40px 0;
  text-align: center;
}
.dp__newsletter-title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 20px;
}
.dp__newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}
.dp__newsletter-input {
  flex: 1;
  padding: 12px 18px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  direction: rtl;
}
.dp__newsletter-input::placeholder { color: #aab4be; }
.dp__newsletter-btn {
  padding: 12px 28px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.dp__newsletter-btn:hover { background: #e56d00; }

/* ── Footer ── */
.dp__footer {
  background: #0a2f53;
  color: #c9d8e8;
  padding: 44px 0 0;
}
.dp__footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
}
.dp__footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin: 0 0 14px;
}
.dp__footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dp__footer-col li {
  margin-bottom: 8px;
}
.dp__footer-col a {
  color: #a8c0d8;
  font-size: 14px;
}
.dp__footer-col a:hover { color: #fff; }
.dp__footer-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}
.dp__footer-brand strong {
  color: #fff;
  font-size: 20px;
}
.dp__footer-brand span {
  font-size: 12px;
  color: #7a9ab8;
  letter-spacing: 1px;
}
.dp__footer-social {
  display: flex;
  gap: 12px;
}
.dp__footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}
.dp__footer-social a:hover { background: rgba(255,255,255,0.2); }
.dp__footer-bottom {
  text-align: center;
  padding: 20px 0;
  margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: #6a8ba8;
}
.dp__footer-bottom strong { color: #a8c0d8; }

/* ═══ Responsive ═══ */
@media (max-width: 1199px) {
  .dp__two-col {
    grid-template-columns: 1fr 320px;
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .dp__two-col {
    grid-template-columns: 1fr;
  }
  .dp__main-col { display: contents; }
  .dp__hotel-details-box { order: 1; }
  .dp__about-section { order: 2; }
  .dp__amenities-section { order: 3; }
  .dp__sidebar-col { position: static; order: 4; }
  .dp__content-section:not(.dp__about-section):not(.dp__amenities-section) { order: 5; }

  .dp__amenities-section:not(.is-expanded) .dp__amenities-grid {
    max-height: 160px; overflow: hidden; position: relative;
  }
  .dp__amenities-section.is-expanded .dp__amenities-grid {
    max-height: none;
  }
  .dp__amenities-section:not(.is-expanded) .dp__amenities-grid::after {
    content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
    background: linear-gradient(transparent, #fff); pointer-events: none;
  }
}
@media (max-width: 768px) {
  .dp__deal-bar-row { flex-wrap: wrap; padding: 8px 12px; gap: 8px; }
  .dp__deal-bar-price { width: 100%; justify-content: center; }
  .dp__deal-cta { width: 100%; }
  .dp__gallery-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .dp__gallery-images {
    grid-template-columns: 1fr;
  }
  .dp__gallery-side {
    flex-direction: row;
    height: 140px;
  }
  .dp__gallery-main-img { min-height: 240px; }
  .dp__gallery-map { height: 200px; }
  .dp__reviews-track { grid-template-columns: 1fr; }
  .dp__reviews-nav--prev { right: 4px; }
  .dp__reviews-nav--next { left: 4px; }
  .dp__newsletter-form { flex-direction: column; }
  .dp__footer-grid { grid-template-columns: 1fr; }
  .dp__hotel-title { font-size: 22px; }
  .dp__hotel-details-row { gap: 8px; font-size: 13px; }
  .dp__content-section { padding: 16px; }
}

/* ════════════════════════════════════════════════════════════════
   Checkout Page
   ════════════════════════════════════════════════════════════════ */
.ck { padding: 32px 0 80px; background: var(--color-bg); }

/* ── Step Indicator ── */
.ck__steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 8px; }
.ck__step { display: flex; align-items: center; gap: 8px; padding: 8px 14px; }
.ck__step-num {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  background: #e0e6ed; color: var(--color-muted);
  transition: background .2s, color .2s;
}
.ck__step--active .ck__step-num { background: var(--color-primary); color: #fff; }
.ck__step--done .ck__step-num { background: #34a853; color: #fff; }
.ck__step-label { font-size: 14px; color: var(--color-muted); white-space: nowrap; }
.ck__step--active .ck__step-label { color: var(--color-primary); font-weight: 600; }
.ck__step--done .ck__step-label { color: #34a853; }
.ck__step-line { width: 48px; height: 2px; background: #d8e3ef; flex-shrink: 0; }

.ck__page-title {
  text-align: center; font-size: 22px; font-weight: 700;
  color: var(--color-primary-ink); margin: 0 0 24px;
}

/* ── Gallery Grid ── */
.ck__gallery-grid {
  display: grid; grid-template-columns: 1fr 1fr 2fr; gap: 8px;
  border-radius: 20px; overflow: hidden; margin-bottom: 24px; height: 320px;
}
.ck__gallery-main { display: block; overflow: hidden; cursor: pointer; border: none; padding: 0; background: none; }
.ck__gallery-main img { width: 100%; height: 320px; object-fit: cover; display: block; transition: transform .3s; }
.ck__gallery-main:hover img { transform: scale(1.03); }
.ck__gallery-stack { display: flex; flex-direction: column; gap: 8px; }
.ck__gallery-thumb { display: block; overflow: hidden; cursor: pointer; border: none; padding: 0; background: none; position: relative; flex: 1; }
.ck__gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.ck__gallery-thumb:hover img { transform: scale(1.03); }
.ck__gallery-all-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.5);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; font-weight: 600; gap: 6px;
}
.ck__gallery-map { position: relative; overflow: hidden; border-radius: 0; }
.ck__gallery-map-iframe { width: 100%; height: 100%; border: none; display: block; pointer-events: none; }
.ck__gallery-map-btn {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: #ff7a00; color: #fff; border: none; border-radius: 20px;
  padding: 8px 20px; font-size: 13px; font-weight: 700; cursor: pointer;
  white-space: nowrap; text-decoration: none;
}
.ck__gallery-map-btn:hover { background: #e56d00; }

/* ── Gallery Modal ── */
.ck__modal-overlay {
  position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.7);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.ck__modal {
  background: #fff; border-radius: 16px; width: min(1280px, 95vw);
  max-height: 90vh; overflow: hidden; display: flex; flex-direction: column;
  direction: rtl;
}
.ck__modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; border-bottom: 1px solid #eef2f7;
}
.ck__modal-close { background: none; border: none; font-size: 26px; cursor: pointer; color: var(--color-text); padding: 4px 8px; line-height: 1; }
.ck__modal-title { font-size: 22px; font-weight: 700; color: var(--color-primary); }
.ck__modal-body { display: flex; flex: 1; overflow: hidden; min-height: 0; direction: rtl; }
.ck__modal-thumbs {
  width: 300px; flex-shrink: 0; overflow-y: auto; padding: 12px;
  display: grid; grid-template-columns: 1fr 1fr;
  row-gap: 12px; column-gap: 12px; align-content: start;
}
.ck__modal-thumb {
  border: 2px solid transparent; border-radius: 14px;
  cursor: pointer; padding: 0; background: none; aspect-ratio: 4/3;
  margin: 0;
}
.ck__modal-thumb.is-active { border-color: var(--color-primary); }
.ck__modal-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 12px; }
.ck__modal-preview {
  flex: 1; display: flex; align-items: center; justify-content: center;
  position: relative; background: #fff; padding: 20px;
}
.ck__modal-preview img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.ck__modal-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%; background: #fff;
  border: none; box-shadow: 0 2px 10px rgba(0,0,0,.18);
  font-size: 24px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--color-text); z-index: 2;
}
.ck__modal-nav:hover { background: #f0f0f0; }
.ck__modal-nav--prev { left: 36px; }
.ck__modal-nav--next { right: 36px; }

/* ── Layout ── */
.ck__layout { display: flex; flex-direction: row-reverse; gap: 28px; align-items: flex-start; }
.ck__main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 20px; }
.ck__sidebar { width: 340px; flex-shrink: 0; position: sticky; top: 24px; }

/* ── Sidebar ── */
.ck__sidebar-box {
  background: #fff; border-radius: 24px;
  box-shadow: var(--shadow-soft); overflow: hidden;
}
.ck__sidebar-header {
  background: #f0f8ff; color: var(--color-primary);
  padding: 15px 15px; display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 15px; border-radius: 24px 24px 0 0;
}
button.ck__sidebar-toggle { width: 100%; border: none; cursor: pointer; justify-content: flex-start; }
button.ck__sidebar-toggle:hover { background: #e4f0fb; }
.ck__sidebar-arrow { margin-right: auto; margin-left: 0; transition: transform 0.2s; font-size: 12px; }
.ck__sidebar-arrow.is-open { transform: rotate(180deg); }
.ck__sidebar-section { padding: 14px 20px; border-bottom: 1px solid #eef2f7; }
.ck__sidebar-section h4 { margin: 0 0 6px; font-size: 13px; color: var(--color-muted); font-weight: 600; }
.ck__sidebar-section p { margin: 2px 0; font-size: 14px; }
.ck__sidebar-stars { display: flex; gap: 2px; margin-bottom: 4px; }
.ck__sidebar-hotel-name { font-weight: 700; font-size: 15px; color: var(--color-primary-ink); }
.ck__sidebar-region { color: var(--color-muted); font-size: 13px; }
.ck__sidebar-basis { color: var(--color-primary); font-size: 13px; font-weight: 600; }
.ck__sidebar-date { display: flex; align-items: center; gap: 8px; font-size: 14px; margin-bottom: 4px; }
.ck__sidebar-nights { margin: 6px 0 0; font-size: 13px; color: var(--color-muted); }

.ck__sidebar-price { padding: 16px 20px; }
.ck__sidebar-price-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; margin-bottom: 6px; }
.ck__sidebar-price-row--total { font-size: 18px; margin-top: 8px; padding-top: 10px; border-top: 1px solid #eef2f7; }
.ck__sidebar-price-row--total strong { color: var(--color-primary); font-size: 22px; }
.ck__sidebar-price-note { margin: 8px 0 0; font-size: 11px; color: var(--color-muted); }

/* ── Form sections ── */
.ck__form-section {
  background: #fff; border-radius: 24px;
  box-shadow: var(--shadow-soft); overflow: hidden;
}
.ck__form-header {
  padding: 15px 15px; display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 15px; color: var(--color-primary);
  background: #f0f8ff; border-radius: 24px 24px 0 0;
}
.ck__form-body { padding: 20px 24px; }

.ck__guest-block { margin-bottom: 16px; }
.ck__guest-title { margin: 0 0 10px; font-size: 14px; font-weight: 600; color: var(--color-primary-ink); }

.ck__form-row { display: flex; gap: 16px; margin-bottom: 14px; }
.ck__form-row--3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.ck__field { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.ck__field--full { width: 100%; }
.ck__field label { font-size: 13px; font-weight: 600; color: var(--color-text); }
.ck__field input,
.ck__field select {
  width: 100%; padding: 10px 14px; border: 1px solid var(--border-soft);
  border-radius: 8px; font-size: 14px; background: #fff;
  transition: border-color .2s;
}
.ck__field input:focus,
.ck__field select:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(2,97,171,.12); }
.ck__field-hint { font-weight: 400; font-size: 11px; color: #e85d2a; }
.ck__input--error { border-color: #e53e3e !important; background: #fff5f5 !important; }

/* ── Coupon ── */
.ck__coupon { margin: 20px 0 16px; padding: 16px; background: #f8fafc; border-radius: 10px; border: 1px solid var(--border-soft); }
.ck__coupon-label { display: block; font-size: 14px; font-weight: 600; color: var(--text-main); margin-bottom: 8px; }
.ck__coupon-row { display: flex; gap: 8px; }
.ck__coupon-row .ck__input { flex: 1; }
.ck__coupon-btn {
  padding: 8px 20px; background: var(--color-primary); color: #fff; border: none;
  border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; white-space: nowrap;
}
.ck__coupon-btn:disabled { opacity: .5; cursor: not-allowed; }
.ck__coupon-btn:hover:not(:disabled) { background: var(--color-primary-hover, #1d4ed8); }
.ck__coupon-msg { margin-top: 8px; font-size: 13px; }
.ck__coupon-msg--ok { color: #16a34a; }
.ck__coupon-msg--err { color: #dc2626; }

/* ── Terms ── */
.ck__terms { margin: 16px 0 12px; }
.ck__checkbox-label {
  display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px;
}
.ck__checkbox-label input { display: none; }
.ck__checkbox-box {
  width: 22px; height: 22px; border: 2px solid var(--border-soft);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  background: #fff; transition: background .2s, border-color .2s; flex-shrink: 0;
}
.ck__checkbox-label input:checked + .ck__checkbox-box { background: var(--color-primary); border-color: var(--color-primary); }
.ck__terms-link { color: var(--color-primary); text-decoration: underline; }

/* ── Buttons ── */
.ck__continue-btn {
  display: block; width: 100%; padding: 14px; margin-top: 8px;
  background: var(--color-primary); color: #fff; border: none;
  border-radius: 10px; font-size: 16px; font-weight: 700;
  cursor: pointer; transition: background .2s;
}
.ck__continue-btn:hover { background: #024d8a; }
.ck__continue-btn:disabled { background: #b8c7d8; cursor: not-allowed; }

/* ── Card Payment ── */
.ck__payment-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; margin-bottom: 12px; border-bottom: 1px solid #eef2f7;
  font-size: 16px;
}
.ck__payment-total strong { font-size: 22px; color: var(--color-primary); }

/* ── Accordion collapsed state ── */
.ck__accordion-closed .ck__form-header {
  border-radius: 16px;
  background: #f0f6fc;
}
.ck__accordion-summary {
  margin-right: auto;
  font-size: 13px; font-weight: 400; color: #64748b;
  display: flex; align-items: center; gap: 8px;
}
.ck__accordion-edit {
  color: var(--color-primary); font-weight: 600; font-size: 13px;
}

/* ── Sticky price footer ── */
.ck__sticky-footer {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: #0a2f53; color: #fff;
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}
.ck__sticky-footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; gap: 12px;
}
.ck__sticky-footer-info {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: #b9cce0; flex-wrap: wrap;
}
.ck__sticky-footer-hotel { font-weight: 700; color: #fff; }
.ck__sticky-footer-sep { color: rgba(255,255,255,.3); }
.ck__sticky-footer-price {
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.ck__sticky-footer-price span { font-size: 13px; color: #b9cce0; }
.ck__sticky-footer-price strong { font-size: 22px; font-weight: 800; color: #fff; }

@media (max-width: 768px) {
  .ck__sticky-footer-info { display: none; }
  .ck__sticky-footer-inner { justify-content: center; }
  .ck__sticky-footer-price strong { font-size: 20px; }
}
.ck__card-secure {
  display: flex; align-items: center; gap: 6px;
  color: #34a853; font-size: 13px; font-weight: 600; margin-bottom: 16px;
}
.ck__cancellation-notice {
  margin: 12px 0; padding: 12px 16px; background: #f8fafc;
  border: 1px solid #e2e8f0; border-radius: 8px;
}
.ck__cancellation-notice h4 { margin: 0 0 4px; font-size: 13px; color: #334155; }
.ck__cancellation-notice p { margin: 0; font-size: 12px; color: #64748b; line-height: 1.6; }
.ck__card-form { display: flex; flex-direction: column; gap: 14px; }

/* ── Sidebar info boxes ── */
.ck__sidebar-info-box { margin-top: 16px; }
.ck__hotel-desc { font-size: 14px; line-height: 1.65; color: var(--color-text); }
.ck__hotel-desc p { margin: 0 0 8px; }
.ck__facilities { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.ck__facility-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--color-text); white-space: nowrap; }

/* ── Pelecard iframe ── */
.ck__iframe-wrap { width: 100%; min-height: 670px; }
.ck__pelecard-iframe { width: 100%; height: 670px; border: none; }
.ck__iframe-loading { text-align: center; padding: 32px 0; }
.ck__spinner { width: 36px; height: 36px; border: 3px solid #e0e6ed; border-top-color: var(--color-primary); border-radius: 50%; animation: ck-spin .7s linear infinite; margin: 0 auto 12px; }
@keyframes ck-spin { to { transform: rotate(360deg); } }

/* ── Error message ── */
.ck__error-msg { background: #fef2f2; border: 1px solid #fca5a5; color: #b91c1c; padding: 10px 16px; border-radius: 8px; font-size: 14px; margin: 12px 0; }

/* ── Confirmation ── */
.ck__confirmation { text-align: center; padding: 60px 20px; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); max-width: 600px; margin: 40px auto; }
.ck__confirmation h2 { margin: 20px 0 12px; font-size: 24px; }
.ck__confirmation p { color: var(--color-muted); font-size: 15px; margin: 6px 0; }
.ck__confirmation-pnr { font-size: 18px !important; color: var(--color-text) !important; }
.ck__confirmation-pnr strong { color: var(--color-primary); font-size: 22px; }
.ck__confirmation-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto; font-size: 32px; font-weight: 700; color: #fff; }
.ck__confirmation-icon--ok { background: #34a853; }
.ck__confirmation-icon--err { background: var(--color-accent); }
.ck__confirmation { max-width: 700px; }
.ck__confirmation-details { text-align: right; margin-top: 32px; border-top: 1px solid #e8e8e8; padding-top: 24px; }
.ck__confirmation-section { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid #f0f0f0; }
.ck__confirmation-section h3 { font-size: 16px; color: var(--color-primary); margin: 0 0 10px; }
.ck__confirmation-section p { text-align: right; margin: 4px 0; font-size: 14px; }
.ck__confirmation-section svg { vertical-align: middle; margin-left: 6px; }
.ck__confirmation-hotel-name { font-size: 18px !important; font-weight: 600; color: var(--color-text) !important; }
.ck__confirmation-room { background: #f8fafc; border-radius: 8px; padding: 12px 16px; margin-bottom: 8px; }
.ck__confirmation-room p { margin: 4px 0; }
.ck__confirmation-total { display: flex; justify-content: space-between; align-items: center; background: var(--color-primary); color: #fff; padding: 16px 20px; border-radius: 10px; margin-top: 20px; font-size: 18px; }
.ck__confirmation-total strong { font-size: 22px; }
.ck__confirmation-downloads { display: flex; gap: 12px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.ck__download-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: #fff; color: var(--color-primary); border: 2px solid var(--color-primary); border-radius: 10px; font-weight: 600; font-size: 14px; text-decoration: none; transition: all 0.2s; }
.ck__download-btn:hover { background: var(--color-primary); color: #fff; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .ck__layout {
    display: flex !important;
    flex-direction: column !important;
  }
  .ck__main { order: 1 !important; width: 100%; }
  .ck__sidebar { width: 100% !important; position: static !important; order: 2 !important; }
  .ck__gallery-grid { display: none !important; }
  .ck__gallery-map { display: none; }
  .ck__modal-body { flex-direction: column-reverse; }
  .ck__modal-thumbs { width: 100%; max-height: 140px; grid-template-columns: repeat(4, 1fr); }
  .ck__modal-preview img { height: auto; max-height: 50vh; object-fit: contain; }
}
@media (max-width: 600px) {
  .ck { padding: 16px 0 40px; }
  .ck__steps { flex-wrap: wrap; gap: 4px; }
  .ck__step { padding: 6px 8px; }
  .ck__step-label { font-size: 12px; }
  .ck__step-line { width: 24px; }
  .ck__form-row { flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .ck__form-row .ck__field { flex: 1 1 45%; min-width: 0; }
  .ck__form-row--3 { grid-template-columns: 1fr 1fr 1fr; }
  .ck__form-body { padding: 16px; }
  .ck__sidebar-price-row--total strong { font-size: 18px; }
  .ck__gallery-grid { grid-template-columns: 1fr; height: auto; }
  .ck__gallery-main img { height: 200px; }
  .ck__gallery-stack { flex-direction: row; height: 120px; }
  .ck__modal-thumbs { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════════════════════
   Checkout – Domestic Hotel Enhancements
   ══════════════════════════════════════════════ */

/* Location row in sidebar */
.ck__sidebar-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 4px;
  flex-wrap: wrap;
}
.ck__sidebar-map-link {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
  margin-right: 4px;
}
.ck__sidebar-map-link:hover { opacity: 0.8; }

/* Board basis detail */
.ck__sidebar-basis-detail {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 2px;
}
.ck__sidebar-basis-detail svg { flex-shrink: 0; margin-top: 2px; color: var(--color-primary); }
.ck__sidebar-basis-desc {
  display: block;
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 2px;
}

/* Check-in / Check-out times */
.ck__sidebar-times-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}
.ck__sidebar-time-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.ck__sidebar-time-item svg { flex-shrink: 0; margin-top: 3px; color: var(--color-primary); }
.ck__sidebar-time-label {
  display: block;
  font-size: 11px;
  color: var(--color-muted);
}
.ck__sidebar-time-val {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary-ink);
}
.ck__sidebar-times-note {
  margin: 8px 0 0;
  font-size: 11px;
  color: var(--color-muted);
  line-height: 1.4;
}

/* VAT note */
.ck__sidebar-vat-note {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--color-muted);
  margin: 6px 0 0;
}
.ck__sidebar-vat-note svg { color: var(--color-muted); }

/* Cancellation policy */
.ck__cancellation-policy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}
.ck__cancellation-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.4;
  border-radius: 8px;
  padding: 8px 10px;
}
.ck__cancellation-item svg { flex-shrink: 0; margin-top: 1px; }
.ck__cancellation-item--ok {
  background: #f0faf5;
  color: #1a7c4b;
}
.ck__cancellation-item--ok svg { stroke: #1a7c4b; }
.ck__cancellation-item--warn {
  background: #fff8f0;
  color: #8a4e0a;
}
.ck__cancellation-item--warn svg { stroke: #8a4e0a; }
.ck__cancellation-note {
  font-size: 11px;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.45;
}

/* Check-in info banner in Step 1 */
.ck__checkin-banner {
  display: flex;
  align-items: center;
  background: #f0f7ff;
  border: 1px solid #d4e7f9;
  border-radius: 10px;
  padding: 10px 16px;
  margin: 4px 0 16px;
  flex-wrap: wrap;
  gap: 10px;
}
.ck__checkin-banner-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #2a4d6e;
}
.ck__checkin-banner-item svg { color: var(--color-primary); flex-shrink: 0; }
.ck__checkin-banner-divider {
  width: 1px;
  height: 16px;
  background: #b6cfe4;
}

/* Special requests textarea */
.ck__special-requests {
  margin-bottom: 6px;
}
.ck__textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  resize: vertical;
  min-height: 76px;
  transition: border-color 0.2s;
  color: var(--color-text);
}
.ck__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(2,97,171,.12);
}
.ck__field-optional {
  font-size: 11px;
  color: var(--color-muted);
  font-weight: 400;
  margin-right: 4px;
}
.ck__field-hint {
  font-size: 11px;
  color: var(--color-muted);
  margin: 4px 0 0;
  line-height: 1.4;
}

/* Confirmation page additions */
.ck__confirmation-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: var(--color-muted);
  margin: 4px 0 !important;
}
.ck__confirmation-location svg { color: var(--color-primary); }
.ck__confirmation-basis {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 600;
  margin: 4px 0 !important;
}
.ck__confirmation-basis svg { color: var(--color-primary); }
.ck__confirmation-times-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 8px 0;
}
.ck__confirmation-time-item {
  background: #f5f8fc;
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ck__confirmation-time-label {
  font-size: 11px;
  color: var(--color-muted);
}
.ck__confirmation-time-item strong {
  font-size: 14px;
  color: var(--color-primary-ink);
}
.ck__confirmation-time-note {
  font-size: 11px;
  color: var(--color-muted);
}
.ck__confirmation-nights {
  font-size: 13px;
  color: var(--color-muted);
  margin: 4px 0 0 !important;
}
.ck__confirmation-requests-note {
  font-size: 12px;
  color: var(--color-muted);
  font-style: italic;
}

/* ── Content page ── */
.content-page {
  padding: 40px 20px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.content-page__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary-ink);
  margin-bottom: 24px;
  border-bottom: 2px solid var(--border-soft);
  padding-bottom: 12px;
}

.content-page__body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
}

.content-page__body h2,
.content-page__body h3 {
  color: var(--color-primary-ink);
  margin-top: 24px;
  margin-bottom: 8px;
}

.content-page__body p {
  margin-bottom: 12px;
}

.content-page__body a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Cookie consent banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 3px solid #005ca3;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  direction: rtl;
  animation: cookieSlideUp 0.4s ease-out;
}
.cookie-consent-container {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.cookie-consent-content {
  flex: 1;
  min-width: 300px;
}
.cookie-message {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}
.cookie-link {
  color: #005ca3;
  text-decoration: underline;
  font-weight: 500;
}
.cookie-link:hover {
  color: #004080;
}
.cookie-close-btn {
  position: absolute;
  left: 1rem;
  top: 1rem;
  background: transparent;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  z-index: 1;
}
.cookie-close-btn:hover {
  background: rgba(0, 92, 163, 0.1);
  color: #005ca3;
  transform: scale(1.1);
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@media (max-width: 768px) {
  .cookie-consent-banner {
    padding: 1rem;
    padding-left: 3rem;
  }
  .cookie-consent-content {
    min-width: 100%;
  }
  .cookie-message {
    font-size: 0.9rem;
  }
  .cookie-close-btn {
    left: 0.5rem;
    top: 0.5rem;
  }
}

/* Privacy policy modal */
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.privacy-modal__panel {
  position: relative;
  background: #fff;
  border-radius: 12px;
  width: min(900px, calc(100vw - 32px));
  height: min(80vh, calc(100vh - 60px));
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  overflow: hidden;
}
.privacy-modal__close {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #f0f0f0;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.privacy-modal__close:hover {
  background: #ddd;
}
.privacy-modal__iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Booking Confirmation Page ── */
.bc { padding: 30px 0 60px; background: #f4f6f9; min-height: 80vh; }
.bc__container { max-width: 720px; margin: 0 auto; }

/* Header */
.bc__header {
  text-align: center;
  padding: 40px 20px 30px;
}
.bc__header-icon { margin-bottom: 16px; }
.bc__title {
  font-size: 28px;
  color: #1a2a3a;
  margin: 0 0 10px;
}
.bc__pnr {
  font-size: 16px;
  color: #5a6a7a;
  margin: 0 0 6px;
}
.bc__pnr strong {
  color: var(--color-primary);
  font-size: 20px;
}
.bc__subtitle {
  font-size: 14px;
  color: #7a8a9a;
  margin: 0;
}
.bc__subtitle strong { color: #4a5a6a; }

/* Cards */
.bc__card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 24px;
  margin-bottom: 16px;
}
.bc__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a2a3a;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f2f5;
}
.bc__card-title svg { color: var(--color-primary); }

/* Info rows */
.bc__info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.bc__info-row {
  display: contents;
}
.bc__info-label {
  color: #7a8a9a;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
}
.bc__info-label svg { width: 16px; height: 16px; color: var(--color-primary); flex-shrink: 0; }
.bc__info-value {
  font-size: 14px;
  font-weight: 600;
  color: #1a2a3a;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
  text-align: right;
}
.bc__info-row:last-child .bc__info-label,
.bc__info-row:last-child .bc__info-value { border-bottom: none; }

/* Stay grid */
.bc__stay-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}
.bc__stay-item {
  text-align: center;
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px 12px;
}
.bc__stay-label {
  display: block;
  font-size: 12px;
  color: #7a8a9a;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bc__stay-item strong {
  display: block;
  font-size: 14px;
  color: #1a2a3a;
  margin-bottom: 4px;
}
.bc__stay-time {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
}
.bc__stay-separator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.bc__stay-nights {
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 600;
  white-space: nowrap;
}
.bc__stay-arrow { color: var(--color-primary); }

/* Hotel */
.bc__hotel {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.bc__hotel-image {
  flex-shrink: 0;
  width: 180px;
  height: 130px;
  border-radius: 12px;
  overflow: hidden;
}
.bc__hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bc__hotel-info { flex: 1; }
.bc__hotel-stars { margin-bottom: 6px; display: flex; gap: 2px; }
.bc__hotel-name {
  font-size: 20px;
  font-weight: 700;
  color: #1a2a3a;
  margin: 0 0 8px;
}
.bc__hotel-location,
.bc__hotel-basis,
.bc__hotel-room {
  font-size: 14px;
  color: #5a6a7a;
  margin: 4px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.bc__hotel-location svg,
.bc__hotel-room svg { color: var(--color-primary); }
.bc__hotel-basis strong { color: #1a2a3a; }

/* Total */
.bc__card--total {
  background: linear-gradient(135deg, #0261ab 0%, #0480d6 100%);
  color: #fff;
}
.bc__total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}
.bc__total-row strong {
  font-size: 26px;
}

/* Downloads */
.bc__downloads {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 24px;
  margin-bottom: 16px;
}
.bc__downloads-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Buttons */
.bc__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.bc__btn--primary {
  background: var(--color-primary);
  color: #fff;
  border: none;
}
.bc__btn--primary:hover { background: var(--color-primary-ink); }
.bc__btn--outline {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.bc__btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
}
.bc__btn--outline svg { width: 18px; height: 18px; }

/* Mobile */
@media (max-width: 640px) {
  .bc { padding: 16px 0 40px; }
  .bc__header { padding: 24px 16px 20px; }
  .bc__title { font-size: 22px; }
  .bc__card { padding: 18px 16px; border-radius: 12px; }
  .bc__stay-grid { grid-template-columns: 1fr; gap: 10px; }
  .bc__stay-separator { flex-direction: row; }
  .bc__stay-arrow svg { transform: rotate(90deg); }
  .bc__hotel { flex-direction: column; }
  .bc__hotel-image { width: 100%; height: 180px; }
  .bc__total-row { flex-direction: column; gap: 8px; text-align: center; }
  .bc__downloads-grid { flex-direction: column; }
  .bc__btn { width: 100%; justify-content: center; }
}
