/* =================================================================
   pages.css — Extracted inline styles, namespaced by body class
   ================================================================= */

/* -----------------------------------------------------------------
   0) SHARED TOKENS
   Used by: success, cancel, terms, policy
   ----------------------------------------------------------------- */
:root {
  --ink: #0f172a;
  --muted: #5a6375;
  --ok: #12a150;
  --bad: #d93025;
  --line: #e6e9ef;
  --chip: #eef2f7;
  --accent: #2a6ebb;
}

/* -----------------------------------------------------------------
   1) SHARED CARD-PAGE PATTERN
   Used by: success, cancel, terms, policy
   ----------------------------------------------------------------- */
.page-success,
.page-cancel,
.page-terms,
.page-policy { color: var(--ink); font-family: Manrope, system-ui, Segoe UI, Roboto, Arial, sans-serif; }

.page-success .wrap,
.page-cancel .wrap,
.page-terms .wrap,
.page-policy .wrap { max-width: 1100px; margin: 0 auto; padding: clamp(16px, 2.2vw, 28px); }

.page-success .crumbs,
.page-cancel .crumbs,
.page-terms .crumbs,
.page-policy .crumbs { margin: 8px 0 20px; font-size: 14px; color: var(--muted); }

.page-success .crumbs a,
.page-cancel .crumbs a,
.page-terms .crumbs a,
.page-policy .crumbs a { color: var(--accent); text-decoration: none; }

.page-success .crumbs span,
.page-cancel .crumbs span,
.page-terms .crumbs span,
.page-policy .crumbs span { margin: 0 .35rem; }

.page-success .card,
.page-cancel .card,
.page-terms .card,
.page-policy .card { border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 16px 40px rgba(15,23,42,.06); overflow: hidden; }

.page-success .head,
.page-cancel .head,
.page-terms .head,
.page-policy .head { display: flex; align-items: center; gap: 14px; padding: clamp(18px, 2.5vw, 28px); border-bottom: 1px solid var(--line); }

.page-success .head .icon,
.page-cancel .head .icon,
.page-terms .head .icon,
.page-policy .head .icon { width: 48px; height: 48px; border-radius: 999px; display: grid; place-items: center; font-weight: 900; }

.page-success .head .title,
.page-cancel .head .title,
.page-terms .head .title,
.page-policy .head .title { font-size: clamp(22px, 2.8vw, 30px); font-weight: 800; letter-spacing: .2px; }

.page-success .body,
.page-cancel .body,
.page-terms .body,
.page-policy .body { padding: clamp(18px, 2.6vw, 30px); }

/* Shared KV table */
.page-success .kv,
.page-cancel .kv,
.page-policy .kv { width: 100%; border-collapse: separate; border-spacing: 0 10px; font-size: clamp(16px, 1.6vw, 18px); }

.page-success .kv th,
.page-cancel .kv th,
.page-policy .kv th { text-align: left; color: #1f2937; font-weight: 800; padding: 12px 14px; background: #f7f9fc; border: 1px solid var(--line); border-right: none; border-radius: 12px 0 0 12px; width: 36%; }

.page-success .kv td,
.page-cancel .kv td,
.page-policy .kv td { text-align: right; padding: 12px 14px; background: #fff; border: 1px solid var(--line); border-left: none; border-radius: 0 12px 12px 0; font-weight: 700; }

/* Shared typography for terms & policy */
.page-terms h2,
.page-policy h2 { font-size: clamp(18px, 1.8vw, 22px); margin: 18px 0 8px; font-weight: 800; }

.page-terms p,
.page-terms li,
.page-policy p,
.page-policy li { color: #1f2937; line-height: 1.65; }

.page-terms ul,
.page-policy ul { padding-left: 1.1rem; margin: 0.25rem 0 1rem; }

/* Shared buttons */
.page-success .actions,
.page-cancel .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

.page-success .btn,
.page-cancel .btn { display: inline-block; padding: .9rem 1.15rem; border-radius: 12px; text-decoration: none; font-weight: 800; }

.page-success .btn-primary,
.page-cancel .btn-primary { background: #2a6ebb; color: #fff; }

.page-success .btn-ghost,
.page-cancel .btn-ghost { background: #f3f6fb; color: #1e2a44; border: 1px solid var(--line); }

/* Shared prop block */
.page-success .prop,
.page-cancel .prop { display: flex; gap: 16px; align-items: center; margin-bottom: 18px; }

.page-success .prop img,
.page-cancel .prop img { width: 88px; height: 88px; object-fit: cover; border-radius: 14px; border: 1px solid var(--line); }


/* -----------------------------------------------------------------
   2) SUCCESS — page-specific additions
   ----------------------------------------------------------------- */
.page-success .head.ok  { color: #065f46; }
.page-success .head.bad { color: #7f1d1d; }
.page-success .head.ok .icon  { background: rgba(18,161,80,.12); }
.page-success .head.bad .icon { background: rgba(217,48,37,.12); }
.page-success .subtag { padding: 0 0 clamp(18px, 2.4vw, 26px) clamp(18px, 2.5vw, 28px); color: var(--muted); font-size: clamp(15px, 1.4vw, 17px); }
.page-success .tagline { margin-top: 6px; font-weight: 700; color: #334155; }
.page-success .kv .muted { color: var(--muted); font-weight: 600; }
.page-success .chip { display: inline-flex; align-items: center; gap: .45rem; background: var(--chip); border-radius: 999px; padding: .35rem .7rem; font-weight: 800; color: #0f5132; text-transform: uppercase; font-size: .9em; }
.page-success .alerts { margin-top: 18px; }
.page-success .log { background: #0b1220; color: #cfe2ff; border-radius: 12px; padding: 12px; max-height: 260px; overflow: auto; font-size: 13px; }

@media (max-width: 640px) {
  .page-success .prop img { width: 72px; height: 72px; }
  .page-success .kv th { width: 44%; }
  .page-success .btn { width: 100%; text-align: center; }
}


/* -----------------------------------------------------------------
   3) CANCEL — page-specific additions
   ----------------------------------------------------------------- */
.page-cancel .head { color: #7f1d1d; }
.page-cancel .head .icon { background: rgba(217,48,37,.12); }
.page-cancel .subtag { padding: 0 0 clamp(18px, 2.4vw, 26px) clamp(18px, 2.5vw, 28px); color: var(--muted); font-size: clamp(15px, 1.4vw, 17px); }
.page-cancel .alert { border-radius: 12px; padding: 12px; margin: 10px 0; }
.page-cancel .alert-ok { background: #f1fbf5; border: 1px solid #cce7d8; color: #0f5132; }
.page-cancel .alert-err { background: #fff2f2; border: 1px solid #f2c7c7; color: #7f1d1d; }


/* -----------------------------------------------------------------
   4) TERMS — page-specific additions
   ----------------------------------------------------------------- */
.page-terms .head .icon { background: rgba(42,110,187,.12); color: #1e3a8a; }
.page-terms .banner { border: 1px solid #f5c2c7; background: #fff5f6; color: #7f1d1d; padding: 12px 14px; border-radius: 12px; font-weight: 800; }


/* -----------------------------------------------------------------
   5) POLICY — page-specific additions
   ----------------------------------------------------------------- */
.page-policy .head .icon { background: rgba(42,110,187,.12); color: #1e3a8a; }
.page-policy .kv { border-spacing: 0 8px; margin-top: 10px; }
.page-policy .kv th { width: 38%; }
.page-policy .kv td { text-align: left; }


/* -----------------------------------------------------------------
   6) CONTACT
   ----------------------------------------------------------------- */
.page-contact .contact-wrap { display: grid; grid-template-columns: 1fr 360px; gap: 24px; }
@media (max-width: 1024px) { .page-contact .contact-wrap { grid-template-columns: 1fr; } }
.page-contact .page-head { margin-bottom: 14px; }
.page-contact .page-lead { color: #667085; }
.page-contact .form-card { padding: 16px; }
.page-contact .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.page-contact .form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .page-contact .form-grid { grid-template-columns: 1fr; } }
.page-contact .hv-input { display: block; width: 100%; padding: 12px 14px; border: 1px solid #E6E8EC; border-radius: 12px; background: #fff; }
.page-contact .hv-textarea { min-height: 140px; resize: vertical; }
.page-contact .label { display: block; margin: 6px 0 6px; font-weight: 600; }
.page-contact .alert { padding: 12px 14px; border-radius: 12px; margin-bottom: 12px; }
.page-contact .alert--ok { background: #ECFDF5; border: 1px solid #A7F3D0; color: #065F46; }
.page-contact .alert--err { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; }
.page-contact .sidebar .block { margin-bottom: 22px; }
.page-contact .apt-mini { display: flex; gap: 10px; align-items: center; }
.page-contact .apt-mini img { width: 84px; height: 58px; object-fit: cover; border-radius: 8px; }
.page-contact .map-box { aspect-ratio: 4/3; border: 1px solid #E6E8EC; border-radius: 12px; overflow: hidden; }
.page-contact .apt-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.page-contact .apt-chip { display: inline-block; padding: 6px 10px; border: 1px solid #E6E8EC; border-radius: 999px; background: #fff; font-size: .9rem; white-space: nowrap; }
.page-contact .apt-chip:hover { border-color: #cdd3db; }
.page-contact .lang-switch { display: flex; gap: 6px; margin-top: 8px; }
.page-contact .lang-switch a { font-size: .9rem; text-decoration: underline; color: inherit; }


/* -----------------------------------------------------------------
   7) RESTAURANTS
   ----------------------------------------------------------------- */
.page-restaurants .rest-wrap { display: grid; grid-template-columns: 1fr 360px; grid-template-areas: "main sidebar"; gap: 24px; }
.page-restaurants .sidebar { grid-area: sidebar; }
.page-restaurants main { grid-area: main; }
@media (max-width: 1024px) { .page-restaurants .rest-wrap { grid-template-columns: 1fr; grid-template-areas: "main" "sidebar"; } }

.page-restaurants .rest-list { display: flex; flex-direction: column; gap: 14px; }
.page-restaurants .rest-card { display: flex; gap: 14px; padding: 12px; border: 1px solid #E6E8EC; border-radius: 12px; background: #fff; }
.page-restaurants .rest-card .photo { flex: 0 0 260px; max-width: 260px; border-radius: 12px; overflow: hidden; }
.page-restaurants .rest-card .photo img { width: 100%; height: 170px; object-fit: cover; display: block; }
.page-restaurants .rest-card .body { flex: 1; min-width: 0; }
.page-restaurants .rest-card .meta { font-size: .92rem; color: #5d6473; margin: 6px 0 8px; }
.page-restaurants .rest-card .actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.page-restaurants .rest-card .src a { font-size: .85rem; color: #5d6473; text-decoration: underline; }
.page-restaurants .rest-card .gmaps { font-size: .85rem; }
@media (max-width: 640px) {
  .page-restaurants .rest-card { flex-direction: column; }
  .page-restaurants .rest-card .photo { max-width: 100%; flex: 0 0 auto; }
  .page-restaurants .rest-card .photo img { height: 200px; }
}

.page-restaurants .map-box { height: 400px; border-radius: 12px; overflow: hidden; border: 1px solid #E6E8EC; }
.page-restaurants .sidebar .block { margin-bottom: 22px; }
.page-restaurants .apt-mini { display: flex; gap: 10px; align-items: center; }
.page-restaurants .apt-mini img { width: 84px; height: 58px; object-fit: cover; border-radius: 8px; }

/* Weekend deals */
.page-restaurants .wgrid { display: grid; gap: 12px; padding: 10px 12px 14px; }
.page-restaurants .deal-card { display: grid; grid-template-columns: 116px 1fr; gap: 12px; align-items: start; padding: 8px; border: 1px solid #E6E8EC; border-radius: 12px; background: #fafbfc; }
.page-restaurants .deal-left img { width: 116px; height: 80px; object-fit: cover; border-radius: 8px; display: block; }
.page-restaurants .deal-title { font-weight: 700; line-height: 1.2; font-size: .96rem; margin-bottom: 4px; }
.page-restaurants .pill { display: inline-block; padding: 3px 10px; border-radius: 999px; background: #EEF2FF; color: #3730A3; font-weight: 600; font-size: .78rem; margin-bottom: 6px; }
.page-restaurants .when { font-size: .88rem; color: #475569; line-height: 1.25; margin-bottom: 6px; white-space: normal; word-break: break-word; }
.page-restaurants .when .cal { margin-right: 6px; }
.page-restaurants .deal-footer { display: flex; justify-content: space-between; align-items: center; gap: 8px; flex-wrap: wrap; }
.page-restaurants .deal-price { font-weight: 800; font-size: 1.02rem; }
.page-restaurants .deal-footer .hv-btn--primary { padding: 7px 12px; font-size: .88rem; }


/* -----------------------------------------------------------------
   8) SKI RENTAL
   ----------------------------------------------------------------- */
.page-ski-rental .sr-wrap { padding: 18px 0 36px; }
.page-ski-rental .sr-lead { color: #3a3f51; margin: 6px 0 16px; }

.page-ski-rental .sr-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.page-ski-rental .sr-col { grid-column: span 3; display: flex; }
@media (max-width: 1200px) { .page-ski-rental .sr-col { grid-column: span 4; } }
@media (max-width: 900px)  { .page-ski-rental .sr-col { grid-column: span 6; } }
@media (max-width: 600px)  { .page-ski-rental .sr-col { grid-column: span 12; } }

.page-ski-rental .sr-card {
  display: flex; flex-direction: column; width: 100%; height: 100%;
  border: 1px solid #eef2f7; border-radius: 12px; overflow: hidden; background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.05); transition: transform .2s ease, box-shadow .2s ease;
}
.page-ski-rental .sr-card:hover { transform: translateY(-3px); box-shadow: 0 5px 12px rgba(0,0,0,.1); }
.page-ski-rental .sr-card figure { margin: 0; width: 100%; aspect-ratio: 4/3; overflow: hidden; flex-shrink: 0; }
.page-ski-rental .sr-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

.page-ski-rental .sr-body {
  display: flex; flex-direction: column; justify-content: space-between; flex-grow: 1;
  padding: 12px 14px 14px;
}
.page-ski-rental .sr-title {
  margin: 0 0 6px; font-size: 0.95rem; font-weight: 700; color: #111217; line-height: 1.3;
  min-height: 36px; text-align: center;
}
.page-ski-rental .sr-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin: 4px 0 8px; }
.page-ski-rental .sr-tag {
  display: inline-flex; align-items: center; gap: 4px; padding: .25rem .5rem; border-radius: 999px;
  background: #f3f4f6; border: 1px solid #e5e7eb; font-size: .78rem; color: #374151;
}
.page-ski-rental .sr-meta {
  display: flex; flex-direction: column; align-items: center; gap: 4px; color: #6b7280;
  font-size: .82rem; margin-top: auto; text-align: center;
}
.page-ski-rental .sr-meta b { color: #374151; }
.page-ski-rental .sr-actions { margin-top: 10px; display: flex; justify-content: center; }
.page-ski-rental a.sr-link {
  display: inline-flex; align-items: center; gap: 6px; padding: .45rem .75rem; border-radius: 8px;
  background: #003580; color: #fff !important; text-decoration: none; font-weight: 600; font-size: .9rem;
  transition: background .2s ease, transform .15s ease;
}
.page-ski-rental a.sr-link:hover { background: #012b66; transform: translateY(-1px); text-decoration: none; }
.page-ski-rental .sr-note { margin-top: 22px; color: #6b7280; font-size: .88rem; text-align: center; }


/* -----------------------------------------------------------------
   9) BOOKING SUMMARY
   ----------------------------------------------------------------- */
.page-booking .bs-top { padding: 18px 0 10px; }
.page-booking .bs-lead { max-width: 760px; }
.page-booking .bs-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 18px; }
@media (max-width: 980px) { .page-booking .bs-grid { grid-template-columns: 1fr; } }
.page-booking .bs-prop { display: flex; gap: 14px; align-items: center; }
.page-booking .bs-prop__img {
  width: 92px; height: 92px; border-radius: 14px; object-fit: cover;
  border: 1px solid var(--line); background: #fff; flex: 0 0 auto;
}
.page-booking .bs-kv { display: grid; gap: 10px; margin-top: 14px; }
.page-booking .bs-kv__row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 14px; background: #fff;
}
.page-booking .bs-kv__k { font-weight: 800; color: rgba(15,23,42,.86); }
.page-booking .bs-kv__v { font-weight: 900; }
.page-booking details.bs-details summary { cursor: pointer; font-weight: 900; padding: 10px 0; user-select: none; }
.page-booking table.bs-nights { width: 100%; border-collapse: separate; border-spacing: 0 8px; font-size: 14px; }
.page-booking table.bs-nights th,
.page-booking table.bs-nights td { border: 1px solid var(--line); padding: 10px 12px; background: #fff; }
.page-booking table.bs-nights th { background: rgba(15,23,42,.04); font-weight: 900; }
.page-booking table.bs-nights th:last-child,
.page-booking table.bs-nights td:last-child { text-align: right; }


/* -----------------------------------------------------------------
   10) RENTAL LIST
   ----------------------------------------------------------------- */
.page-rental-list .gq-searchbar { margin-top: 18px; }
.page-rental-list .gq-searchbar .form-control { height: 52px; }
.page-rental-list .gq-searchbar .btn { height: 52px; }
.page-rental-list .gq-locs { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 8px; }
.page-rental-list .gq-locs a { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(0,0,0,.08); }
.page-rental-list .gq-locs a.active { border-color: #F1913D; box-shadow: 0 0 0 3px rgba(241,145,61,.15); }

/* Datepicker */
.page-rental-list .datepicker { position: relative; }
.page-rental-list .datepicker [data-datepicker] { position: absolute; top: 58px; left: 0; z-index: 50; width: min(360px, 92vw); background: #fff; border: 1px solid rgba(0,0,0,.12); border-radius: 14px; box-shadow: 0 18px 60px rgba(0,0,0,.12); padding: 12px; display: none; }
.page-rental-list .datepicker [data-datepicker].is-open { display: block; }
.page-rental-list .dp-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 6px 4px 10px; }
.page-rental-list .dp-nav { border: 1px solid rgba(0,0,0,.10); background: #fff; border-radius: 10px; width: 40px; height: 40px; }
.page-rental-list .dp-month { font-weight: 700; }
.page-rental-list .dp-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; font-size: 12px; opacity: .7; padding: 0 2px 6px; }
.page-rental-list .dp-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.page-rental-list .dp-cell { border: 1px solid rgba(0,0,0,.08); background: #fff; border-radius: 10px; height: 40px; }
.page-rental-list .dp-cell.is-empty { border: none; background: transparent; }
.page-rental-list .dp-cell.is-disabled { opacity: .35; cursor: not-allowed; }
.page-rental-list .dp-cell.is-today { border-color: #F1913D; }
.page-rental-list .dp-cell.is-inrange { background: rgba(241,145,61,.12); border-color: rgba(241,145,61,.20); }
.page-rental-list .dp-cell.is-start,
.page-rental-list .dp-cell.is-end { background: #F1913D; color: #fff; border-color: #F1913D; }
.page-rental-list .dp-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 10px; }
.page-rental-list .dp-actions { display: flex; gap: 8px; }
.page-rental-list .dp-link { background: transparent; border: none; color: #222; text-decoration: underline; }
.page-rental-list .dp-done { background: #111; color: #fff; border: none; border-radius: 10px; padding: 10px 12px; }


/* -----------------------------------------------------------------
   11) PROPERTY DETAILS
   ----------------------------------------------------------------- */
/* Gallery */
.page-property-details .gqGallery { margin-top: 6px; }
.page-property-details .gqGallery__main {
  display: block; border-radius: 16px; overflow: hidden;
  background: rgba(0,0,0,.03); border: 1px solid rgba(0,0,0,.06);
}
.page-property-details .gqGallery__main img {
  width: 100%; height: clamp(260px, 42vw, 520px); object-fit: cover; display: block;
}
.page-property-details .gqGallery__thumbs {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 10px; margin-top: 12px;
}
@media (max-width: 992px) { .page-property-details .gqGallery__thumbs { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 576px) { .page-property-details .gqGallery__thumbs { grid-template-columns: repeat(4, 1fr); } }
.page-property-details .gqThumbBtn {
  border: 0; padding: 0; background: transparent; border-radius: 12px; overflow: hidden;
  outline: none; cursor: pointer; box-shadow: none;
}
.page-property-details .gqThumbBtn img {
  width: 100%; height: 64px; object-fit: cover; display: block; border-radius: 12px;
  border: 1px solid rgba(0,0,0,.06); background: rgba(0,0,0,.03);
}
.page-property-details .gqThumbBtn.is-active img { outline: 2px solid rgba(255,100,0,.55); }

/* Calendar */
.page-property-details .nhCal__head { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; background: rgba(0,0,0,.02); }
.page-property-details .nhCal__title { font-weight: 900; color: #111; font-size: 14px; letter-spacing: .2px; }
.page-property-details .nhCal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; padding: 12px; }
.page-property-details .nhCal__dow { font-size: 11px; color: rgba(0,0,0,.55); text-align: center; padding: 2px 0; }
.page-property-details .nhDay {
  position: relative; min-height: 44px; border-radius: 10px; background: rgba(0,0,0,.03);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 6px 4px; user-select: none;
}
.page-property-details .nhDay.is-pad { opacity: .28; }
.page-property-details .nhDay .d { font-weight: 900; font-size: 12px; color: #111; line-height: 1; }
.page-property-details .nhDay .p { margin-top: 4px; font-size: 10px; color: rgba(0,0,0,.6); line-height: 1; }

/* Availability calendars: no frame */
.page-property-details .nhCal.nhCal--avail { border: 0 !important; background: transparent; box-shadow: none; }
.page-property-details .nhCal.nhCal--avail .nhCal__head { background: transparent; padding: 0 0 10px 0; }
.page-property-details .nhCal.nhCal--avail .nhCal__grid { padding: 0; }

/* Availability states */
.page-property-details .nhDay.is-free { background: rgba(0,0,0,.03); }
.page-property-details .nhDay.is-busy { background: #ff6400; }
.page-property-details .nhDay.is-busy .d,
.page-property-details .nhDay.is-busy .p { color: #fff; }

/* 45deg split styles */
.page-property-details .nhDay.is-checkin  { background: linear-gradient(135deg, #fff 0 49%, #fff 49% 51%, #ff6400 51% 100%); border: 1px solid rgba(0,0,0,.06); }
.page-property-details .nhDay.is-checkout { background: linear-gradient(135deg, #ff6400 0 49%, #fff 49% 51%, #fff 51% 100%); border: 1px solid rgba(0,0,0,.06); }
.page-property-details .nhDay.is-turnover { background: linear-gradient(135deg, #ff6400 0 49%, #fff 49% 51%, #ff6400 51% 100%); border: 1px solid rgba(0,0,0,.06); }

.page-property-details .nhLegend { display: flex; gap: 10px; flex-wrap: wrap; padding: 10px 12px; border-top: 1px solid rgba(0,0,0,.06); background: rgba(0,0,0,.015); }
.page-property-details .nhLeg { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(0,0,0,.7); }
.page-property-details .nhSw { width: 14px; height: 14px; border-radius: 4px; background: rgba(0,0,0,.03); border: 1px solid rgba(0,0,0,.08); }
.page-property-details .nhSw.busy { background: #ff6400; border-color: #ff6400; }
.page-property-details .nhSw.ci { background: linear-gradient(135deg, #fff 0 49%, #fff 49% 51%, #ff6400 51% 100%); }
.page-property-details .nhSw.co { background: linear-gradient(135deg, #ff6400 0 49%, #fff 49% 51%, #fff 51% 100%); }
.page-property-details .nhSw.to { background: linear-gradient(135deg, #ff6400 0 49%, #fff 49% 51%, #ff6400 51% 100%); }

/* Month nav */
.page-property-details .nhNavRow { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.page-property-details .nhNavBtns { display: flex; gap: 8px; }
.page-property-details .nhBtn {
  border: 1px solid rgba(0,0,0,.10); background: rgba(255,255,255,.9); border-radius: 12px;
  padding: 8px 10px; line-height: 1; display: inline-flex; align-items: center; gap: 8px;
  font-weight: 900; font-size: 12px; cursor: pointer;
}
.page-property-details .nhBtn:hover { background: #fff; }
.page-property-details .nhBtn i { font-size: 14px; opacity: .85; }

/* Booking range UI */
.page-property-details .nhDay.is-disabled { opacity: .35; pointer-events: none; filter: grayscale(1); }
.page-property-details .nhDay.is-start,
.page-property-details .nhDay.is-end { outline: 2px solid rgba(0,0,0,.22); box-shadow: 0 6px 18px rgba(0,0,0,.08); }
.page-property-details .nhDay.is-range { background: rgba(255,100,0,.14); }
.page-property-details .nhDay.is-range .d { color: #111; }
.page-property-details .nhDay.is-start,
.page-property-details .nhDay.is-end { background: linear-gradient(180deg, rgba(255,100,0,.18), rgba(255,100,0,.10)); }
.page-property-details .bookingTotal { font-weight: 950; }
.page-property-details .mutedSmall { font-size: 12px; color: rgba(0,0,0,.55); }

/* Guests select */
.page-property-details .gqSelect {
  width: 100%; border-radius: 12px; border: 1px solid rgba(0,0,0,.10); background: #fff;
  padding: 12px; font-weight: 900; font-size: 14px; outline: none;
  appearance: none; -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(0,0,0,.55) 50%),
    linear-gradient(135deg, rgba(0,0,0,.55) 50%, transparent 50%);
  background-position:
    calc(100% - 16px) calc(50% - 3px),
    calc(100% - 11px) calc(50% - 3px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.page-property-details .gqSelect:focus { border-color: rgba(255,100,0,.45); box-shadow: 0 0 0 .2rem rgba(255,100,0,.12); }

/* Facts chips */
.page-property-details .gqFacts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.page-property-details .gqFact {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 10px;
  border-radius: 999px; border: 1px solid rgba(0,0,0,.08); background: rgba(255,255,255,.8);
  font-weight: 900; font-size: 12px; color: rgba(0,0,0,.75);
}
.page-property-details .gqFact i { font-size: 14px; opacity: .85; }


/* -----------------------------------------------------------------
   12) SALE FILTERS — Modern filter bar
   ----------------------------------------------------------------- */
.sale-filters {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 8px 32px rgba(0, 0, 0, 0.06);
}

.sale-filters__grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 20px;
  align-items: end;
}

@media (max-width: 767px) {
  .sale-filters {
    padding: 20px;
    border-radius: 16px;
  }
  .sale-filters__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.sale-filters__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #6b7280;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sale-filters__input-wrap {
  position: relative;
}

.sale-filters__icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 0.85rem;
  pointer-events: none;
  z-index: 1;
  transition: color 0.2s;
}

.sale-filters__input-wrap:focus-within .sale-filters__icon {
  color: #F1913D;
}

.sale-filters__input {
  width: 100%;
  height: 52px;
  padding: 0 16px 0 44px;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1f2937;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

.sale-filters__input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.sale-filters__input:hover {
  border-color: #d1d5db;
}

.sale-filters__input:focus {
  border-color: #F1913D;
  box-shadow: 0 0 0 4px rgba(241, 145, 61, 0.08);
}

.sale-filters__select {
  cursor: pointer;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%239ca3af' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
}

.sale-filters__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

@media (max-width: 767px) {
  .sale-filters__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.sale-filters__btn-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 32px;
  background: linear-gradient(135deg, #F1913D 0%, #e07b25 100%);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.sale-filters__btn-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(241, 145, 61, 0.35);
}

.sale-filters__btn-search:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(241, 145, 61, 0.25);
}

.sale-filters__btn-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 24px;
  background: transparent;
  color: #6b7280;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.sale-filters__btn-reset:hover {
  border-color: #d1d5db;
  color: #374151;
  background: #f9fafb;
}

/* Location chips */
.sale-filters__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.sale-filters__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  color: #4b5563;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.sale-filters__chip:hover {
  border-color: #F1913D;
  color: #c2410c;
  background: rgba(241, 145, 61, 0.04);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(241, 145, 61, 0.1);
}

.sale-filters__chip.active {
  border-color: #F1913D;
  background: rgba(241, 145, 61, 0.08);
  color: #c2410c;
  box-shadow: 0 0 0 3px rgba(241, 145, 61, 0.1);
}

.sale-filters__chip i {
  font-size: 0.7rem;
  opacity: 0.7;
}
