
    .site-nav {
      padding: 20px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid #e4e2de;
    }
    .nav-brand {
      display: flex;
      align-items: center;
      text-decoration: none;
    }
    .nav-brand img {
      height: 32px;
      width: auto;
    }
    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }
    .nav-links a {
      font-size: 13px;
      color: #64645f;
      text-decoration: none;
      font-weight: 400;
      transition: color 0.15s;
    }
    .nav-links a:hover,
    .nav-links a.active {
      color: var(--accent);
    }
    .currency-dropdown {
      position: relative;
      margin-left: 16px;
    }
    .currency-selected {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 5px 10px;
      border: 1px solid #e4e2de;
      border-radius: 6px;
      background: white;
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      color: #52524e;
      cursor: pointer;
      transition: border-color 0.15s;
      user-select: none;
    }
    .currency-selected:hover { border-color: #ccc; }
    .currency-selected svg { width: 10px; height: 10px; color: #b0ada8; transition: transform 0.15s; }
    .currency-dropdown.open .currency-selected { border-color: var(--accent); }
    .currency-dropdown.open .currency-selected svg { transform: rotate(180deg); }
    .currency-options {
      display: none;
      position: absolute;
      top: calc(100% + 4px);
      right: 0;
      min-width: 100%;
      background: white;
      border: 1px solid #e4e2de;
      border-radius: 6px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      overflow: hidden;
      z-index: 200;
    }
    .currency-dropdown.open .currency-options { display: block; }
    .currency-option {
      display: block;
      width: 100%;
      padding: 7px 12px;
      border: none;
      background: none;
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      color: #52524e;
      cursor: pointer;
      text-align: left;
      white-space: nowrap;
      transition: background 0.1s;
    }
    .currency-option:hover { background: var(--paper); }
    .currency-option.active { color: var(--accent); font-weight: 600; }
    .nav-menu {
      display: flex;
      align-items: center;
      gap: 0;
    }
    .nav-burger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      width: 28px;
      flex-direction: column;
      gap: 5px;
    }
    .nav-burger span {
      display: block;
      height: 2px;
      width: 100%;
      background: var(--ink);
      border-radius: 2px;
      transition: all 0.25s;
    }
    .nav-burger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .nav-burger.open span:nth-child(2) {
      opacity: 0;
    }
    .nav-burger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    @media (max-width: 768px) {
      .site-nav { padding: 14px 20px; position: relative; }
      .nav-burger { display: flex; }
      .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: white;
        border-bottom: 1px solid #e4e2de;
        padding: 20px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        z-index: 100;
        box-shadow: 0 4px 16px rgba(0,0,0,0.06);
      }
      .nav-menu.open { display: flex; }
      .nav-links { flex-direction: column; gap: 16px; }
      .nav-links a { font-size: 16px; }
      .currency-dropdown { margin-left: 0; }
      .site-footer { padding: 32px 20px; }
    }
    .site-footer {
      border-top: 1px solid #e4e2de;
      padding: 48px 40px 32px;
      font-size: 12px;
      color: #8b8b85;
    }
    .site-footer a {
      color: #64645f;
      text-decoration: none;
      transition: color 0.15s;
    }
    .site-footer a:hover { color: var(--accent); }
    .footer-inner {
      max-width: 960px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 32px;
    }
    .footer-logo {
      height: 40px;
      width: auto;
      margin-bottom: 12px;
      opacity: 0.7;
    }
    .footer-tagline {
      font-size: 13px;
      line-height: 1.5;
      color: #8b8b85;
    }
    .footer-heading {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #64645f;
      margin-bottom: 12px;
    }
    .footer-nav {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .footer-nav a {
      font-size: 13px;
    }
    .footer-bottom {
      max-width: 960px;
      margin: 32px auto 0;
      padding-top: 20px;
      border-top: 1px solid #e4e2de;
      text-align: center;
      font-size: 12px;
      color: #b0ada8;
    }
    @media (max-width: 640px) {
      .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
      }
      .site-footer { padding: 32px 20px 24px; }
    }
    @media (max-width: 380px) {
      .footer-inner { grid-template-columns: 1fr; }
    }
    .site-main {
      min-height: calc(100vh - 140px);
    }

    /* Lightbox */
    .room-hero img, .room-gallery img, .cw-gallery img, .cw-gallery img { cursor: pointer; }
    .lightbox {
      position: fixed; inset: 0; z-index: 1000;
      background: rgba(0,0,0,0.92);
      display: none; align-items: center; justify-content: center;
      padding: 20px;
    }
    .lightbox.open { display: flex; }
    .lightbox img {
      max-width: 90vw; max-height: 85vh;
      border-radius: 8px;
      object-fit: contain;
    }
    .lb-close {
      position: absolute; top: 16px; right: 20px;
      color: white; font-size: 32px; cursor: pointer;
      background: none; border: none; line-height: 1;
      opacity: 0.7; transition: opacity 0.15s;
    }
    .lb-close:hover { opacity: 1; }
    .lb-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      color: white; font-size: 28px; cursor: pointer;
      background: rgba(255,255,255,0.1); border: none;
      width: 44px; height: 44px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      opacity: 0.7; transition: opacity 0.15s;
    }
    .lb-nav:hover { opacity: 1; background: rgba(255,255,255,0.2); }
    .lb-prev { left: 16px; }
    .lb-next { right: 16px; }
    .lb-counter {
      position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
      color: rgba(255,255,255,0.6); font-size: 12px;
      font-family: 'JetBrains Mono', monospace;
    }
  


    /* Pricing Calculator Widget */
    .room-price-calc {
      background: var(--paper);
      border: 1px solid #e4e2de;
      border-radius: 12px;
      padding: 20px 20px 16px;
      margin-bottom: 20px;
    }
    .rpc-title {
      font-size: 13px;
      font-family: 'JetBrains Mono', monospace;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #8b8b85;
      margin-bottom: 12px;
    }
    .rpc-dates {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-bottom: 12px;
    }
    .rpc-date-label {
      display: block;
      font-size: 10px;
      font-family: 'JetBrains Mono', monospace;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #8b8b85;
      margin-bottom: 4px;
    }
    .rpc-date-input {
      width: 100%;
      padding: 9px 10px;
      border: 1px solid #e4e2de;
      border-radius: 6px;
      font-size: 13px;
      font-family: inherit;
      background: white;
      cursor: pointer;
      outline: none;
      box-sizing: border-box;
      transition: border-color 0.15s;
      color: var(--ink);
    }
    .rpc-date-input:focus, .rpc-date-input:hover { border-color: var(--accent); }
    .rpc-nights {
      font-size: 12px;
      color: #8b8b85;
      text-align: center;
      margin-bottom: 10px;
      font-family: 'JetBrains Mono', monospace;
      min-height: 18px;
    }
    .rpc-breakdown {
      background: white;
      border: 1px solid #e4e2de;
      border-radius: 8px;
      padding: 12px 14px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      display: none;
    }
    .rpc-breakdown.visible { display: block; }
    .rpc-row {
      display: flex;
      justify-content: space-between;
      padding: 4px 0;
      color: #52524e;
    }
    .rpc-discount-row { color: var(--accent); }
    .rpc-divider { height: 1px; background: #eeecea; margin: 6px 0; }
    .rpc-total-row {
      display: flex;
      justify-content: space-between;
      padding: 4px 0 0;
      font-size: 14px;
      font-weight: 700;
      color: var(--ink);
    }
    .rpc-cta {
      display: block;
      width: 100%;
      padding: 11px 20px;
      background: var(--accent);
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      font-family: 'Bricolage Grotesque', sans-serif;
      cursor: pointer;
      margin-top: 12px;
      transition: background 0.15s;
    }
    .rpc-cta:hover { background: #245a3b; }
    .rpc-cta:disabled { background: #c5c3be; cursor: not-allowed; }
    @media (max-width: 480px) {
      .rpc-dates { grid-template-columns: 1fr; }
    }

    /* CTA Button */
    .avail-cta {
      display: block; width: 100%; padding: 16px 24px;
      background: var(--accent); color: white; border: none; border-radius: 10px;
      font-size: 15px; font-weight: 600; font-family: 'Bricolage Grotesque', sans-serif;
      cursor: pointer; transition: all 0.2s; margin-bottom: 32px;
      letter-spacing: 0.01em;
    }
    .avail-cta:hover { background: #245a3b; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(44,110,73,0.25); }
    .avail-cta:active { transform: translateY(0); }

    .booking-overlay {
      position: fixed; inset: 0; z-index: 1100;
      background: rgba(0,0,0,0.5);
      display: none; align-items: flex-start; justify-content: center;
      padding: 20px; overflow-y: auto;
    }
    .booking-overlay.open { display: flex; }
    .booking-modal {
      background: white; border-radius: 12px;
      width: 100%; max-width: 440px;
      padding: 32px; position: relative;
      margin: auto 0;
    }
    .bm-close {
      position: absolute; top: 12px; right: 16px;
      background: none; border: none; font-size: 24px;
      color: #8b8b85; cursor: pointer; line-height: 1;
    }
    .bm-close:hover { color: var(--ink); }
    .bm-title { font-weight: 600; font-size: 20px; margin-bottom: 4px; }
    .bm-room { font-size: 13px; color: var(--accent); font-family: 'JetBrains Mono', monospace; margin-bottom: 16px; }
    .bm-label { display: block; font-size: 11px; font-family: 'JetBrains Mono', monospace; text-transform: uppercase; letter-spacing: 0.06em; color: #8b8b85; margin-bottom: 4px; }
    .bm-input {
      width: 100%; padding: 10px 12px; border: 1px solid #e4e2de; border-radius: 6px;
      font-size: 14px; font-family: inherit; background: var(--paper);
      outline: none; transition: border-color 0.15s;
    }
    .bm-input:focus { border-color: var(--accent); }

    /* Calendar container */
    .bm-calendar-wrap {
      margin-bottom: 12px;
      display: flex; flex-direction: column; align-items: center;
    }
    .bm-calendar-wrap .flatpickr-calendar {
      box-shadow: none !important; border: 1px solid #e4e2de; border-radius: 10px;
      width: 100% !important; max-width: 100%; font-family: 'Bricolage Grotesque', sans-serif;
    }

    /* Month/year header */
    .bm-calendar-wrap .flatpickr-months {
      border-radius: 10px 10px 0 0; padding: 8px 4px;
      background: var(--paper); border-bottom: 1px solid #eeecea;
    }
    .bm-calendar-wrap .flatpickr-months .flatpickr-month {
      height: 32px;
    }
    .bm-calendar-wrap .flatpickr-current-month {
      font-size: 14px; font-weight: 600; font-family: 'Bricolage Grotesque', sans-serif;
      color: var(--ink); padding-top: 4px;
    }
    /* Style the month dropdown */
    .bm-calendar-wrap .flatpickr-current-month .flatpickr-monthDropdown-months {
      appearance: none; -webkit-appearance: none;
      background: transparent; border: none;
      font-size: 14px; font-weight: 600; font-family: 'Bricolage Grotesque', sans-serif;
      color: var(--ink); cursor: pointer;
      padding: 2px 4px; margin: 0;
    }
    .bm-calendar-wrap .flatpickr-current-month .flatpickr-monthDropdown-months:hover {
      color: var(--accent);
    }
    /* Style the year input */
    .bm-calendar-wrap .flatpickr-current-month .numInputWrapper {
      display: inline-block;
    }
    .bm-calendar-wrap .flatpickr-current-month .numInputWrapper input.cur-year {
      font-size: 14px; font-weight: 600; font-family: 'Bricolage Grotesque', sans-serif;
      color: var(--ink); background: transparent; border: none;
      padding: 0 2px;
    }
    .bm-calendar-wrap .flatpickr-current-month .numInputWrapper span {
      border: none; opacity: 0.4;
    }
    .bm-calendar-wrap .flatpickr-current-month .numInputWrapper span:hover {
      background: transparent; opacity: 0.8;
    }
    .bm-calendar-wrap .flatpickr-current-month .numInputWrapper span::after {
      border-top-color: var(--ink); border-bottom-color: var(--ink);
    }
    /* Prev/next arrows */
    .bm-calendar-wrap .flatpickr-prev-month,
    .bm-calendar-wrap .flatpickr-next-month {
      padding: 6px 10px; border-radius: 6px; top: 8px;
      transition: background 0.15s;
    }
    .bm-calendar-wrap .flatpickr-prev-month:hover,
    .bm-calendar-wrap .flatpickr-next-month:hover {
      background: #eeecea;
    }
    .bm-calendar-wrap .flatpickr-prev-month svg,
    .bm-calendar-wrap .flatpickr-next-month svg {
      fill: var(--ink) !important;
    }
    /* Weekday headers */
    .bm-calendar-wrap .flatpickr-weekdays {
      background: transparent; padding: 4px 0;
    }
    .bm-calendar-wrap span.flatpickr-weekday {
      color: #8b8b85; font-size: 11px; font-weight: 500;
      font-family: 'JetBrains Mono', monospace; text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    /* Day cells */
    .bm-calendar-wrap .flatpickr-day {
      border-radius: 6px; font-size: 13px; max-width: 40px; height: 36px; line-height: 36px;
      color: var(--ink); font-weight: 400;
      transition: background 0.1s, color 0.1s;
    }
    .bm-calendar-wrap .flatpickr-day:hover:not(.flatpickr-disabled):not(.selected):not(.startRange):not(.endRange) {
      background: #eeecea; border-color: #eeecea;
    }
    .bm-calendar-wrap .flatpickr-day.selected,
    .bm-calendar-wrap .flatpickr-day.startRange,
    .bm-calendar-wrap .flatpickr-day.endRange {
      background: var(--accent) !important; border-color: var(--accent) !important;
      font-weight: 600;
    }
    .bm-calendar-wrap .flatpickr-day.inRange {
      background: #d4ede3 !important; border-color: #d4ede3 !important;
      box-shadow: -5px 0 0 #d4ede3, 5px 0 0 #d4ede3 !important;
    }
    .bm-calendar-wrap .flatpickr-day.flatpickr-disabled {
      color: #c5c3be !important; text-decoration: line-through;
      background: #f5f4f2 !important;
    }
    .bm-calendar-wrap .flatpickr-day.today:not(.selected):not(.startRange):not(.endRange) {
      border-color: var(--accent);
    }
    /* Inner container padding */
    .bm-calendar-wrap .flatpickr-innerContainer {
      padding: 0 4px 4px;
    }

    /* Calendar legend */
    .bm-legend {
      display: flex; gap: 16px; justify-content: center;
      margin-top: 8px; margin-bottom: 8px;
    }
    .bm-legend-item {
      display: flex; align-items: center; gap: 5px;
      font-size: 11px; color: #8b8b85; font-family: 'JetBrains Mono', monospace;
    }
    .bm-legend-dot {
      width: 10px; height: 10px; border-radius: 3px;
    }
    .bm-legend-dot.available { background: var(--accent); }
    .bm-legend-dot.booked { background: #e4e2de; }

    /* Loading spinner */
    .bm-loading {
      display: flex; align-items: center; justify-content: center;
      padding: 48px 0; color: #8b8b85;
      font-size: 13px; font-family: 'JetBrains Mono', monospace;
    }
    .bm-loading-spinner {
      width: 20px; height: 20px; border: 2px solid #e4e2de;
      border-top-color: var(--accent); border-radius: 50%;
      animation: bm-spin 0.6s linear infinite; margin-right: 10px;
    }
    @keyframes bm-spin { to { transform: rotate(360deg); } }

    /* Date range error */
    .bm-range-error {
      text-align: center; font-size: 12px; color: #c0392b;
      font-family: 'JetBrains Mono', monospace;
      margin-bottom: 8px; display: none;
    }
    .bm-range-error.visible { display: block; }

    .bm-nights { font-size: 12px; color: #8b8b85; text-align: center; margin-bottom: 6px; font-family: 'JetBrains Mono', monospace; }
    .bm-pricing { margin-bottom: 20px; font-family: 'JetBrains Mono', monospace; }
    .bm-pricing:empty { margin-bottom: 16px; }
    .bm-price-card {
      background: var(--paper); border: 1px solid #e4e2de; border-radius: 10px;
      padding: 16px 20px;
    }
    .bm-calc-row {
      display: flex; justify-content: space-between; align-items: center;
      padding: 6px 0; font-size: 13px; color: #52524e;
    }
    .bm-calc-row .bm-calc-label { display: flex; align-items: center; gap: 6px; }
    .bm-calc-row .bm-calc-value { font-weight: 500; color: var(--ink); }
    .bm-calc-discount .bm-calc-value { color: var(--accent); }
    .bm-discount-pill {
      font-size: 9px; background: #d4ede3; color: #1a5c38;
      padding: 2px 7px; border-radius: 10px; font-weight: 700;
      letter-spacing: 0.02em;
    }
    .bm-divider { height: 1px; background: #e4e2de; margin: 8px 0; }
    .bm-total-row {
      display: flex; justify-content: space-between; align-items: baseline;
      padding: 4px 0 0;
    }
    .bm-total-label { font-size: 13px; color: var(--ink); font-weight: 600; }
    .bm-total { font-size: 20px; font-weight: 700; color: var(--ink); }
    .bm-name-field { margin-bottom: 12px; }
    .bm-whatsapp-field { margin-bottom: 12px; }
    .bm-wa-combo { display: flex; gap: 0; }
    .bm-wa-code {
      width: 100px; flex-shrink: 0; padding: 10px 8px; border: 1px solid #e4e2de;
      border-radius: 6px 0 0 6px; border-right: none; font-size: 13px; font-family: inherit;
      background: var(--warm); color: var(--ink); outline: none; cursor: pointer;
      -webkit-appearance: none; appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%238b8b85'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 8px center;
    }
    .bm-wa-code:focus { border-color: var(--accent); }
    .bm-wa-num { border-radius: 0 6px 6px 0 !important; }
    .bm-wa-hint { display: none; font-size: 11px; color: #b0603a; margin-top: 4px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.02em; }
    .bm-msg-field { margin-bottom: 20px; }
    .bm-msg-field textarea { resize: vertical; min-height: 60px; }
    .bm-actions { display: flex; gap: 10px; }
    .bm-wa {
      flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
      padding: 12px 20px; background: #25d366; color: white; border: none;
      border-radius: 6px; font-size: 14px; font-weight: 500; font-family: inherit; cursor: pointer;
      transition: background 0.15s;
    }
    .bm-wa:hover { background: #1fb855; }
    .bm-wa:disabled { background: #b0b0a8; cursor: not-allowed; }
    .bm-airbnb {
      padding: 12px 20px; background: white; color: var(--ink); border: 1px solid #e4e2de;
      border-radius: 6px; font-size: 14px; font-weight: 500; cursor: pointer;
      text-decoration: none; transition: border-color 0.15s;
    }
    .bm-airbnb:hover { border-color: #ccc; }

    .bm-promo-toggle {
      display: inline-block; font-size: 12px; color: #8b8b85;
      text-decoration: none; margin-bottom: 12px;
      transition: color 0.15s;
    }
    .bm-promo-toggle:hover { color: var(--accent); }
    .bm-promo-row { display: flex; gap: 8px; margin-bottom: 12px; }
    .bm-promo-row input { flex: 1; padding: 9px 12px; border: 1px solid #e4e2de; border-radius: 6px; font-family: 'JetBrains Mono', monospace; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; outline: none; }
    .bm-promo-row input:focus { border-color: var(--accent); }
    .bm-promo-apply { padding: 9px 16px; border: 1px solid #e4e2de; border-radius: 6px; background: white; font-size: 12px; font-weight: 500; cursor: pointer; transition: all 0.15s; color: var(--ink); }
    .bm-promo-apply:hover { border-color: var(--accent); color: var(--accent); }
    .bm-promo-status { font-size: 12px; margin-bottom: 12px; }
    .bm-promo-ok { color: #1a5c38; }
    .bm-promo-err { color: #b5342a; }

    .bm-confirm {
      display: none;
      position: absolute; inset: 0;
      background: white; border-radius: 16px;
      padding: 32px 28px;
      flex-direction: column; justify-content: center;
      z-index: 10;
    }
    .bm-confirm.visible { display: flex; }
    .bm-confirm-title {
      font-weight: 600; font-size: 18px; margin-bottom: 20px; text-align: center;
    }
    .bm-confirm-body {
      font-size: 14px; line-height: 1.8; margin-bottom: 24px;
    }
    .bm-confirm-row {
      display: flex; justify-content: space-between; padding: 6px 0;
      border-bottom: 1px solid #f0eeeb;
    }
    .bm-confirm-row:last-child { border-bottom: none; }
    .bm-confirm-label { color: #8b8b85; }
    .bm-confirm-value { font-weight: 500; }
    .bm-confirm-total { font-weight: 600; color: var(--accent); font-family: 'JetBrains Mono', monospace; }
    .bm-confirm-actions {
      display: flex; gap: 10px;
    }
    .bm-confirm-back {
      flex: 1; padding: 12px; border: 1px solid #e4e2de; border-radius: 8px;
      background: white; font-size: 13px; font-weight: 500; cursor: pointer;
      transition: all 0.15s; color: var(--ink);
    }
    .bm-confirm-back:hover { border-color: #ccc; }
    .bm-confirm-send {
      flex: 1; padding: 12px; border: none; border-radius: 8px;
      background: #25d366; color: white; font-size: 13px; font-weight: 500;
      cursor: pointer; transition: background 0.15s;
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .bm-confirm-send:hover { background: #1da851; }

    /* Mobile content overrides */
    @media (max-width: 768px) {
      .room-page { padding: 40px 20px !important; }
      .room-page h1 { font-size: 28px !important; }
      .room-hero { height: 240px !important; }
      .room-gallery { grid-template-columns: repeat(2, 1fr) !important; }
      .room-gallery img { height: 120px !important; }
      .room-features { grid-template-columns: 1fr !important; }
      .room-desc { font-size: 14px !important; }
      .room-rate { font-size: 13px !important; }

      .rooms-page { padding: 40px 20px !important; }
      .rooms-page h1 { font-size: 28px !important; }

      .contact-page { padding: 40px 20px !important; }
      .contact-page h1 { font-size: 28px !important; }

      .location-page { padding: 40px 20px !important; }
      .location-page h1 { font-size: 28px !important; }
      .location-map { height: 260px !important; }

      .rooms-preview { padding: 40px 20px !important; }
      .about-text { padding: 32px 20px !important; }
      .amenities-section { padding: 40px 20px !important; }
      .gallery-section { padding: 40px 20px !important; }
      .hero-content { padding: 24px 20px !important; }
      .hero-title { font-size: 32px !important; }
      .hero-sub { font-size: 15px !important; }

      .booking-modal { padding: 24px 20px !important; max-height: none; }
      .bm-title { font-size: 18px !important; }
      .bm-calendar-wrap .flatpickr-day { max-width: 36px; height: 32px; line-height: 32px; font-size: 12px; }
    }
  


    .chat-bubble {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--accent);
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(44,110,73,0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 900;
      transition: transform 0.2s, box-shadow 0.2s, background 0.15s;
    }
    .chat-bubble:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(44,110,73,0.4); }
    .chat-bubble svg { transition: transform 0.2s; }
    .chat-bubble.open svg.icon-chat { display: none; }
    .chat-bubble.open svg.icon-close { display: block !important; }
    .chat-panel {
      position: fixed;
      bottom: 86px;
      right: 20px;
      width: 360px;
      max-width: calc(100vw - 28px);
      height: 480px;
      max-height: calc(100vh - 110px);
      background: white;
      border-radius: 16px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.15);
      display: none;
      flex-direction: column;
      z-index: 899;
      overflow: hidden;
    }
    .chat-panel.open { display: flex; }
    .chat-panel-header {
      padding: 14px 16px;
      background: var(--accent);
      color: white;
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }
    .chat-panel-avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .chat-panel-title { font-weight: 600; font-size: 14px; line-height: 1.2; }
    .chat-panel-subtitle { font-size: 11px; opacity: 0.8; }
    .chat-panel-clear {
      margin-left: auto;
      background: none;
      border: none;
      color: rgba(255,255,255,0.7);
      cursor: pointer;
      font-size: 11px;
      padding: 4px 6px;
      border-radius: 4px;
      transition: color 0.1s, background 0.1s;
    }
    .chat-panel-clear:hover { color: white; background: rgba(255,255,255,0.15); }
    .chat-messages {
      flex: 1;
      overflow-y: auto;
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      scroll-behavior: smooth;
    }
    .chat-msg {
      max-width: 84%;
      padding: 9px 13px;
      border-radius: 12px;
      font-size: 13px;
      line-height: 1.5;
      word-wrap: break-word;
    }
    .chat-msg-bot {
      background: #f3f2ef;
      color: var(--ink);
      border-radius: 12px 12px 12px 3px;
      align-self: flex-start;
    }
    .chat-msg-user {
      background: var(--accent);
      color: white;
      border-radius: 12px 12px 3px 12px;
      align-self: flex-end;
    }
    .chat-msg-typing {
      background: #f3f2ef;
      border-radius: 12px 12px 12px 3px;
      align-self: flex-start;
      padding: 12px 16px;
    }
    .chat-typing-dots { display: flex; gap: 4px; align-items: center; }
    .chat-typing-dots span {
      width: 7px; height: 7px; border-radius: 50%;
      background: #aaa; animation: chat-bounce 1.2s infinite;
    }
    .chat-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
    .chat-typing-dots span:nth-child(3) { animation-delay: 0.4s; }
    @keyframes chat-bounce {
      0%, 60%, 100% { transform: translateY(0); }
      30% { transform: translateY(-5px); }
    }
    .chat-input-row {
      display: flex;
      gap: 8px;
      padding: 12px;
      border-top: 1px solid #f0eeeb;
      flex-shrink: 0;
    }
    .chat-input {
      flex: 1;
      border: 1px solid #e4e2de;
      border-radius: 8px;
      padding: 8px 12px;
      font-size: 13px;
      font-family: inherit;
      outline: none;
      resize: none;
      max-height: 80px;
      overflow-y: auto;
      line-height: 1.5;
      background: var(--paper);
    }
    .chat-input:focus { border-color: var(--accent); }
    .chat-send {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: var(--accent);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      align-self: flex-end;
      transition: background 0.15s;
    }
    .chat-send:hover { background: #225539; }
    .chat-send:disabled { background: #c5c3be; cursor: not-allowed; }
    .chat-welcome {
      text-align: center;
      padding: 20px 16px 8px;
    }
    .chat-welcome-icon {
      width: 48px; height: 48px; border-radius: 50%;
      background: #e8f5ed; display: inline-flex;
      align-items: center; justify-content: center;
      margin-bottom: 10px;
    }
    .chat-welcome-title { font-weight: 600; font-size: 15px; margin-bottom: 4px; color: var(--ink); }
    .chat-welcome-text { font-size: 12px; color: #8b8b85; line-height: 1.5; }
    .chat-footer {
      text-align: center;
      font-size: 10px;
      color: #b0ada8;
      padding: 0 12px 10px;
      flex-shrink: 0;
    }
    @media (max-width: 480px) {
      .chat-bubble { bottom: 16px; right: 16px; }
      .chat-panel { bottom: 78px; right: 8px; width: calc(100vw - 16px); height: 420px; }
    }
  