/* ============================================================
   Amar — Design System
   Pine #1F4D3D · Rust #C9622B · Cream #FAF7F2 · Sand #D9C4A3
   ============================================================ */

:root {
  --pine: #1F4D3D;
  --pine-dark: #163A2E;
  --pine-soft: #E8F0EC;
  --rust: #C9622B;
  --rust-dark: #A94F20;
  --cream: #FAF7F2;
  --sand: #D9C4A3;
  --line: #E8E3D9;
  --ink: #1F2421;
  --muted: #6B7069;
  --white: #FFFFFF;
  --danger: #C0392B;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(31, 77, 61, .08);
  --shadow-lg: 0 12px 40px rgba(31, 77, 61, .14);
  --font-display: 'Fraunces', 'Noto Sans Armenian', serif;
  --font-body: 'Inter', 'Noto Sans Armenian', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: env(safe-area-inset-bottom);
}
img { max-width: 100%; display: block; }
a { color: var(--pine); text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); color: var(--pine); line-height: 1.2; margin: 0 0 .5em; font-weight: 600; }
h1 { font-size: clamp(28px, 5vw, 44px); }
h2 { font-size: clamp(22px, 3.5vw, 32px); }
h3 { font-size: 19px; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 18px; }
.section { padding: 48px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.section-head .eyebrow { color: var(--rust); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px; }
.section-head h2 { margin: 0; }
.see-all { font-weight: 600; font-size: 14px; white-space: nowrap; display: inline-flex; align-items: center; gap: 4px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 11px 22px;
  border: 0; border-radius: 12px; cursor: pointer;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--pine); color: var(--white); }
.btn-primary:hover { background: var(--pine-dark); box-shadow: var(--shadow); }
.btn-rust { background: var(--rust); color: var(--white); }
.btn-rust:hover { background: var(--rust-dark); }
.btn-outline { background: transparent; color: var(--pine); border: 1.5px solid var(--pine); }
.btn-outline:hover { background: var(--pine-soft); }
.btn-ghost { background: var(--pine-soft); color: var(--pine); }
.btn-block { width: 100%; }
.btn-sm { min-height: 38px; padding: 7px 14px; font-size: 14px; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250, 247, 242, .92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--pine); }
.brand img { height: 38px; width: auto; }
.main-nav { display: none; gap: 4px; margin-left: 8px; }
.main-nav a {
  padding: 9px 14px; border-radius: 10px; font-size: 14.5px; font-weight: 500; color: var(--ink);
}
.main-nav a:hover { background: var(--pine-soft); color: var(--pine); }
.main-nav a.active { background: var(--pine); color: var(--white); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }

/* Language switcher */
.lang-switch { display: flex; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--white); }
.lang-switch a { padding: 7px 11px; font-size: 13px; font-weight: 600; color: var(--muted); min-height: 36px; display: flex; align-items: center; }
.lang-switch a.active { background: var(--pine); color: var(--white); }

@media (min-width: 900px) {
  .main-nav { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--pine) 0%, var(--pine-dark) 100%);
  color: var(--white);
  padding: 56px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset-inline: 0; bottom: -1px; height: 90px;
  background: var(--cream);
  clip-path: polygon(0 100%, 100% 100%, 100% 55%, 78% 20%, 62% 62%, 46% 8%, 30% 58%, 14% 28%, 0 70%);
}
.hero h1 { color: var(--white); max-width: 640px; }
.hero p.lead { font-size: 17px; color: var(--sand); max-width: 520px; margin: 0 0 28px; }

/* Hero search card */
.search-card {
  position: relative; z-index: 2;
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 18px; display: grid; gap: 12px;
}
.search-card .field label { display: block; font-size: 12.5px; font-weight: 700; color: var(--pine); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .04em; }
.search-card select, .search-card input {
  width: 100%; min-height: 46px; padding: 10px 13px;
  border: 1.5px solid var(--line); border-radius: 11px;
  font-family: var(--font-body); font-size: 15px; color: var(--ink); background: var(--white);
}
.search-tabs { display: flex; gap: 6px; margin-bottom: 4px; }
.search-tabs button {
  flex: 1; min-height: 42px; border: 1.5px solid var(--line); background: var(--white);
  border-radius: 10px; font-size: 14px; font-weight: 600; color: var(--muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.search-tabs button.active { background: var(--pine); border-color: var(--pine); color: var(--white); }
@media (min-width: 760px) {
  .search-card { grid-template-columns: repeat(3, 1fr) auto; align-items: end; }
  .search-card .search-tabs { grid-column: 1 / -1; }
}

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 20px; }
.grid-listings { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-listings { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .grid-listings { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-media { position: relative; aspect-ratio: 16 / 10; background: var(--pine-soft); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--rust); color: var(--white);
  font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 999px;
}
.card-badge.badge-type { background: var(--pine); }
.card-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--pine); margin: 0; }
.card-meta { display: flex; flex-wrap: wrap; gap: 10px 14px; font-size: 13.5px; color: var(--muted); }
.card-meta span { display: inline-flex; align-items: center; gap: 5px; }
.card-meta i { font-size: 16px; color: var(--sand); }
.card-foot { margin-top: auto; padding-top: 12px; border-top: 1px dashed var(--line); display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--rust); }
.price small { font-family: var(--font-body); font-size: 12.5px; font-weight: 500; color: var(--muted); }

/* ---------- Filters ---------- */
.browse-layout { display: grid; gap: 24px; }
@media (min-width: 900px) { .browse-layout { grid-template-columns: 260px 1fr; align-items: start; } }
.filters {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 18px;
}
.filters h3 { font-size: 16px; margin-bottom: 14px; }
.filter-group { margin-bottom: 16px; }
.filter-group label.title { display: block; font-size: 13px; font-weight: 700; color: var(--pine); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .04em; }
.filters select, .filters input {
  width: 100%; min-height: 44px; padding: 9px 12px;
  border: 1.5px solid var(--line); border-radius: 10px; font-size: 14.5px; background: var(--white);
}
.check-row { display: flex; align-items: center; gap: 9px; padding: 7px 0; font-size: 14.5px; min-height: 34px; }
.check-row input { width: 18px; height: 18px; min-height: 0; accent-color: var(--pine); }

/* ---------- Listing detail ---------- */
.gallery { display: grid; gap: 10px; grid-template-columns: 1fr; }
@media (min-width: 760px) {
  .gallery { grid-template-columns: 2fr 1fr; }
  .gallery .main { grid-row: span 2; }
}
.gallery a { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; background: var(--pine-soft); }
.gallery img { width: 100%; height: 100%; object-fit: cover; }

.detail-layout { display: grid; gap: 28px; margin-top: 28px; }
@media (min-width: 900px) { .detail-layout { grid-template-columns: 1fr 360px; align-items: start; } }

.spec-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; margin: 18px 0; }
.spec {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 12px 14px; display: flex; align-items: center; gap: 10px; font-size: 14px;
}
.spec i { font-size: 22px; color: var(--rust); }
.spec b { display: block; font-size: 14.5px; color: var(--ink); }
.spec small { color: var(--muted); font-size: 12.5px; }

.amenities { display: flex; flex-wrap: wrap; gap: 8px; }
.amenity {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 14px; font-size: 13.5px;
}
.amenity i { color: var(--pine); font-size: 17px; }

.book-panel {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 20px; box-shadow: var(--shadow); position: sticky; top: 84px;
}
.book-panel .price { font-size: 26px; }

.map-box { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); height: 320px; background: var(--pine-soft); margin-top: 18px; }
#ymap { width: 100%; height: 100%; }

.room-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.room-table th { background: var(--pine-soft); color: var(--pine); font-size: 13px; text-transform: uppercase; letter-spacing: .04em; text-align: left; padding: 12px 14px; }
.room-table td { padding: 14px; border-top: 1px solid var(--line); font-size: 14.5px; vertical-align: middle; }

/* ---------- Locations ---------- */
.loc-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .loc-grid { grid-template-columns: repeat(4, 1fr); } }
.loc-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; background: var(--pine); display: flex; align-items: flex-end;
}
.loc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .82; }
.loc-card .loc-name {
  position: relative; z-index: 1; width: 100%;
  padding: 40px 16px 16px; color: var(--white);
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  background: linear-gradient(transparent, rgba(22, 58, 46, .9));
}

/* ---------- How it works / features ---------- */
.steps { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; }
.step i { font-size: 34px; color: var(--rust); }
.step h3 { margin: 12px 0 6px; font-size: 17px; }
.step p { margin: 0; font-size: 14.5px; color: var(--muted); }

/* ---------- Forms ---------- */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; max-width: 640px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--pine); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; min-height: 46px; padding: 11px 14px;
  border: 1.5px solid var(--line); border-radius: 11px;
  font-family: var(--font-body); font-size: 15px; background: var(--white);
}
.form-row textarea { min-height: 110px; resize: vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus, .search-card input:focus, .search-card select:focus {
  outline: none; border-color: var(--pine); box-shadow: 0 0 0 3px rgba(31, 77, 61, .12);
}
.form-err { color: var(--danger); font-size: 13px; margin-top: 4px; }
.flash { border-radius: var(--radius); padding: 13px 16px; margin-bottom: 18px; font-size: 14.5px; }
.flash-success { background: var(--pine-soft); color: var(--pine); border: 1px solid #C7DED2; }
.flash-error { background: #FBEAE7; color: var(--danger); border: 1px solid #F0C6BE; }

/* ---------- FAQ ---------- */
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-item summary {
  padding: 16px 18px; cursor: pointer; font-weight: 600; font-size: 15px; color: var(--pine);
  display: flex; justify-content: space-between; align-items: center; list-style: none; min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; color: var(--rust); }
.faq-item[open] summary::after { content: '–'; }
.faq-item .faq-body { padding: 0 18px 16px; color: var(--muted); font-size: 14.5px; }

/* ---------- CTA ---------- */
.cta {
  background: linear-gradient(140deg, var(--rust) 0%, var(--rust-dark) 100%);
  border-radius: var(--radius-lg); color: var(--white);
  padding: 40px 28px; text-align: center;
}
.cta h2 { color: var(--white); }
.cta .btn { background: var(--white); color: var(--rust); }

/* ---------- Footer ---------- */
.site-footer { background: var(--pine-dark); color: var(--sand); margin-top: 56px; padding: 48px 0 96px; }
.footer-grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.site-footer h4 { color: var(--white); font-family: var(--font-display); font-size: 16px; margin: 0 0 12px; }
.site-footer a { color: var(--sand); display: block; padding: 5px 0; font-size: 14px; }
.site-footer a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(217, 196, 163, .2); margin-top: 32px; padding-top: 20px; font-size: 13px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }

/* ---------- Mobile bottom nav ---------- */
.bottom-nav {
  position: fixed; bottom: 0; inset-inline: 0; z-index: 70;
  background: var(--white); border-top: 1px solid var(--line);
  display: flex; justify-content: space-around; align-items: center;
  padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
}
.bottom-nav a {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  min-width: 56px; min-height: 48px; justify-content: center;
  font-size: 10.5px; font-weight: 600; color: var(--muted); border-radius: 12px;
  -webkit-tap-highlight-color: transparent;
}
.bottom-nav a i { font-size: 22px; }
.bottom-nav a.active { color: var(--pine); }
.bottom-nav a:active { transform: scale(.94); }
.bottom-nav .fab {
  background: var(--rust); color: var(--white); border-radius: 999px;
  width: 54px; height: 54px; min-width: 54px; margin-top: -22px;
  box-shadow: 0 6px 18px rgba(201, 98, 43, .4);
  justify-content: center;
}
.bottom-nav .fab i { font-size: 26px; }
@media (min-width: 900px) { .bottom-nav { display: none; } body { padding-bottom: 0; } .site-footer { padding-bottom: 48px; } }

/* ---------- Page transitions & touch ---------- */
@media (prefers-reduced-motion: no-preference) {
  main { animation: pageIn .32s ease both; }
  @keyframes pageIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
}
.card, .btn, .bottom-nav a { touch-action: manipulation; }

/* ---------- Utilities ---------- */
.muted { color: var(--muted); }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.prose p { margin: 0 0 1em; }
.empty-state { text-align: center; padding: 56px 20px; color: var(--muted); }
.empty-state i { font-size: 48px; color: var(--sand); }

/* ---------- Booking calendar ---------- */
.cal-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 18px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cal-title { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--pine); }
.cal-nav {
  width: 40px; height: 40px; border: 1.5px solid var(--line); background: var(--white);
  border-radius: 10px; cursor: pointer; color: var(--pine); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.cal-nav:hover:not([disabled]) { background: var(--pine-soft); }
.cal-nav[disabled] { opacity: .35; cursor: default; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-dow { text-align: center; font-size: 11.5px; font-weight: 700; color: var(--muted); text-transform: uppercase; padding: 6px 0; }
.cal-day {
  aspect-ratio: 1; min-height: 40px; border: 0; border-radius: 10px;
  background: transparent; font-family: var(--font-body); font-size: 14.5px; font-weight: 500;
  color: var(--ink); cursor: pointer; transition: background .12s;
  display: flex; align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.cal-day:hover:not([disabled]) { background: var(--pine-soft); }
.cal-day.past { color: #C9C4BA; cursor: default; }
.cal-day.busy { color: #C9C4BA; text-decoration: line-through; cursor: default; background: repeating-linear-gradient(45deg, transparent, transparent 4px, rgba(201, 98, 43, .07) 4px, rgba(201, 98, 43, .07) 8px); }
.cal-day.in-range { background: var(--pine-soft); border-radius: 0; }
.cal-day.sel-start, .cal-day.sel-end { background: var(--pine); color: var(--white); font-weight: 700; }
.cal-day.sel-start { border-radius: 10px 0 0 10px; }
.cal-day.sel-end { border-radius: 0 10px 10px 0; }
.cal-day.sel-start.sel-end { border-radius: 10px; }
.cal-msg { margin-top: 10px; background: #FBEAE7; color: var(--danger); font-size: 13.5px; padding: 9px 12px; border-radius: 10px; }

/* Booking summary */
.bk-line { display: flex; justify-content: space-between; gap: 10px; padding: 7px 0; font-size: 14.5px; border-bottom: 1px dashed var(--line); }
.bk-line:last-child { border-bottom: 0; }
.bk-total { font-size: 17px; padding-top: 12px; }
.bk-total b { color: var(--rust); font-family: var(--font-display); font-size: 20px; }

/* Payment methods */
.pay-option {
  display: flex; align-items: center; gap: 12px;
  border: 1.5px solid var(--line); border-radius: var(--radius); padding: 14px 16px;
  cursor: pointer; margin-bottom: 10px; background: var(--white); transition: border-color .15s;
}
.pay-option:has(input:checked) { border-color: var(--pine); background: var(--pine-soft); }
.pay-option input { width: 18px; height: 18px; accent-color: var(--pine); }
.pay-option i { font-size: 24px; color: var(--rust); }
.pay-option .pay-name { font-weight: 600; font-size: 15px; }
.pay-option .pay-note { font-size: 12.5px; color: var(--muted); }
.pay-option.disabled { opacity: .55; cursor: default; }
.pay-soon { background: var(--sand); color: var(--pine-dark); font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; }

/* Crypto pay page */
.wallet-card { background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 14px; }
.wallet-card.active { border-color: var(--pine); }
.wallet-addr {
  font-family: monospace; font-size: 13px; background: var(--cream); border: 1px dashed var(--sand);
  padding: 10px 12px; border-radius: 10px; word-break: break-all; margin: 10px 0;
}
.qr-box { display: flex; justify-content: center; padding: 10px; }
.qr-box img { border-radius: 12px; border: 1px solid var(--line); }

/* Booking success */
.success-icon { width: 72px; height: 72px; border-radius: 999px; background: var(--pine-soft); color: var(--pine); display: flex; align-items: center; justify-content: center; font-size: 38px; margin: 0 auto 16px; }
.booking-code { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--rust); letter-spacing: .04em; }
.status-chip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 13px; border-radius: 999px; font-size: 13px; font-weight: 700; }
.status-pending { background: #FFF3E4; color: #B26A1D; }
.status-confirmed { background: var(--pine-soft); color: var(--pine); }
.status-awaiting_verification { background: #EDE9FB; color: #5B4A9E; }
.status-paid { background: var(--pine-soft); color: var(--pine); }

/* ---------- Booking page v2 ---------- */
.bk-step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 18px; }
.bk-step-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.bk-step-num {
  width: 34px; height: 34px; min-width: 34px; border-radius: 999px;
  background: var(--pine); color: var(--white); font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.bk-step-head h2 { margin: 0; font-size: 19px; }
.cal-legend { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 12px; font-size: 12.5px; color: var(--muted); }
.cal-legend span { display: inline-flex; align-items: center; gap: 6px; }
.leg-dot { width: 14px; height: 14px; border-radius: 5px; display: inline-block; }
.leg-free { background: var(--pine-soft); border: 1px solid var(--line); }
.leg-busy { background: repeating-linear-gradient(45deg, #fff, #fff 3px, rgba(201,98,43,.25) 3px, rgba(201,98,43,.25) 6px); border: 1px solid var(--line); }
.leg-sel { background: var(--pine); }
.bk-dates-chips { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px; margin-top: 14px; }
.bk-chip { background: var(--cream); border: 1.5px solid var(--line); border-radius: 12px; padding: 9px 12px; text-align: center; }
.bk-chip small { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.bk-chip b { font-size: 14.5px; color: var(--pine); }
.bk-chip.filled { border-color: var(--pine); background: var(--pine-soft); }
.bk-arrow { color: var(--sand); font-size: 20px; text-align: center; }
.bk-nights-badge { text-align: center; margin-top: 10px; font-size: 13.5px; color: var(--rust); font-weight: 700; display: none; }
.bk-listing-mini { display: flex; gap: 12px; align-items: center; padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 12px; }
.bk-listing-mini img { width: 74px; height: 56px; object-fit: cover; border-radius: 10px; }
.bk-listing-mini .t { font-family: var(--font-display); font-weight: 600; font-size: 15.5px; color: var(--pine); line-height: 1.3; }
.bk-listing-mini .l { font-size: 12.5px; color: var(--muted); }
@media (max-width: 899px) {
  .book-panel { position: static; }
  .bk-summary-sticky {
    position: fixed; bottom: calc(64px + env(safe-area-inset-bottom)); inset-inline: 0; z-index: 65;
    background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(31,77,61,.1);
    padding: 10px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  }
  .bk-summary-sticky .tot { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--rust); }
}
@media (min-width: 900px) { .bk-summary-sticky { display: none; } }
