/* page-index.css - CSS cho trang chủ (index.j2) */
/* Tách từ inline <style> blocks - 1923 sections */

    :root {
      --font-luxury: Arial, sans-serif;
    }

    body,
    p,
    span,
    small,
    a,
    li,
    label,
    input,
    button,
    select,
    textarea {
      font-family: var(--font-luxury) !important;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .title,
    .room-title,
    header,
    header a,
    header li,
    footer,
    footer a,
    footer li,
    .fslightbox-container,
    .fslightbox-container *,
    .daterangepicker,
    .daterangepicker *,
    .checkin-date,
    .checkin-date .title,
    .selected-date,
    .booking-btn,
    .summary,
    .summary *,
    .coupon-input {
      font-family: var(--font-luxury) !important;
    }


/* ==================== */

    /* ===== TÁCH BIỆT HEADER VÀ HERO VIDEO ===== */
    header {
      background-color: #000000 !important;
    }

    /* Prevent mobile header list items wrapping and ensure vertical alignment */
    header nav ul {
      white-space: nowrap !important;
      display: flex !important;
      align-items: center !important;
      justify-content: flex-end !important;
      list-style: none !important;
      margin: 0 !important;
      padding: 0 !important;
    }

    header nav ul li {
      display: flex !important;
      align-items: center !important;
      margin-left: clamp(8px, 2vw, 20px) !important;
    }

    .hamburger_2 {
      top: 0 !important;
      display: flex !important;
      align-items: center !important;
    }

    /* Hide off-screen mobile nav panel completely to prevent horizontal leakage */
    .nav_panel {
      visibility: hidden !important;
      transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.5s !important;
    }

    .nav_panel.show {
      visibility: visible !important;
    }

    /* Narrow down red-highlighted gap below room filter tabs */
    .rooms-slider {
      padding-top: 0px !important;
    }

    .rooms-viewport {
      padding-top: 0px !important;
    }

    .rooms-slider.is-filtered {
      padding-top: 0px !important;
    }

    /* Fix hero container positioning and z-index overlap issues */
    .hero {
      position: relative !important;
    }

    @media (max-width: 991px) {
      .hero.home-search {
        z-index: 1 !important;
      }
    }

    .pattern_2 {
      position: relative !important;
      z-index: 9 !important;
      background: #fff !important;
    }

    /* Responsive auto-fitting tab bar */
    .section-tabs {
      display: flex !important;
      justify-content: center !important;
      align-items: center !important;
      gap: clamp(10px, 4vw, 50px) !important;
      border-bottom: 1px solid #e0e0e0 !important;
      width: 100% !important;
      max-width: 800px !important;
      margin: 0 auto !important;
      flex-wrap: wrap !important;
    }

    .section-tabs button {
      background: none !important;
      border: none !important;
      padding: 12px clamp(5px, 2vw, 15px) !important;
      font-size: clamp(14px, 2.5vw, 18px) !important;
      cursor: pointer !important;
      color: #333 !important;
      position: relative !important;
      white-space: nowrap !important;
    }

    /* Spacing fixes - reduce large empty spaces between sections */
    .margin_120_95 {
      padding-top: 60px !important;
      padding-bottom: 50px !important;
    }

    .add_bottom_90 {
      padding-bottom: 45px !important;
    }

    @media (max-width: 767px) {
      .margin_120_95 {
        padding-top: 40px !important;
        padding-bottom: 30px !important;
      }

      .add_bottom_90 {
        padding-bottom: 30px !important;
      }
    }

    #section3 {
      margin-top: 20px !important;
      margin-bottom: 20px !important;
    }

    .loop-item img {
      object-fit: contain !important;
      background-color: transparent !important;
    }

    .room-carousel img {
      object-fit: contain !important;
      background-color: #eee !important;
    }

    #section3 h2 {
      font-size: 28px !important;
    }

    .paragraph,
    .chat-title,
    .ccchat-toggle-text,
    .chat-header,
    .chat-close-btn,
    .nice-select,
    .nice-select *,
    .flatpickr-calendar,
    .flatpickr-calendar *,
    .flatpickr-weekday,
    .flatpickr-day,
    .flatpickr-current-month,
    .flatpickr-monthDropdown-months,
    .flatpickr-weekdays,
    .guest-info,
    .guest-info strong,
    .guests,
    .hotel-name,
    .hotel-address {
      font-family: var(--font-luxury) !important;
    }


/* ==================== */

    .fslightbox-absoluted {
      position: absolute;
      top: 0;
      left: 0;
    }

    .fslightbox-fade-in {
      animation: fslightbox-fade-in 0.3s cubic-bezier(0, 0, 0.7, 1);
    }

    .fslightbox-fade-out {
      animation: fslightbox-fade-out 0.3s ease;
    }

    .fslightbox-fade-in-strong {
      animation: fslightbox-fade-in-strong 0.3s cubic-bezier(0, 0, 0.7, 1);
    }

    .fslightbox-fade-out-strong {
      animation: fslightbox-fade-out-strong 0.3s ease;
    }

    @keyframes fslightbox-fade-in {
      from {
        opacity: 0.65;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes fslightbox-fade-out {
      from {
        opacity: 0.35;
      }

      to {
        opacity: 0;
      }
    }

    @keyframes fslightbox-fade-in-strong {
      from {
        opacity: 0.3;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes fslightbox-fade-out-strong {
      from {
        opacity: 1;
      }

      to {
        opacity: 0;
      }
    }

    .fslightbox-cursor-grabbing {
      cursor: grabbing;
    }

    .fslightbox-full-dimension {
      width: 100%;
      height: 100%;
    }

    .fslightbox-open {
      overflow: hidden;
      height: 100%;
    }

    .fslightbox-flex-centered {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .fslightbox-opacity-0 {
      opacity: 0 !important;
    }

    .fslightbox-opacity-1 {
      opacity: 1 !important;
    }

    .fslightbox-scrollbarfix {
      padding-right: 17px;
    }

    .fslightbox-transform-transition {
      transition: transform 0.3s;
    }

    .fslightbox-container {
      font-family: Arial, sans-serif;
      position: fixed;
      top: 0;
      left: 0;
      background: linear-gradient(rgba(30, 30, 30, 0.9), #000 1810%);
      touch-action: pinch-zoom;
      z-index: 1000000000;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      -webkit-tap-highlight-color: transparent;
    }

    .fslightbox-container * {
      box-sizing: border-box;
    }

    .fslightbox-svg-path {
      transition: fill 0.15s ease;
      fill: #ddd;
    }

    .fslightbox-nav {
      height: 45px;
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
    }

    .fslightbox-slide-number-container {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      height: 100%;
      font-size: 15px;
      color: #d7d7d7;
      z-index: 0;
      max-width: 55px;
      text-align: left;
    }

    .fslightbox-slide-number-container .fslightbox-flex-centered {
      height: 100%;
    }

    .fslightbox-slash {
      display: block;
      margin: 0 5px;
      width: 1px;
      height: 12px;
      transform: rotate(15deg);
      background: #fff;
    }

    .fslightbox-toolbar {
      position: absolute;
      z-index: 3;
      right: 0;
      top: 0;
      height: 100%;
      display: flex;
      background: rgba(35, 35, 35, 0.65);
    }

    .fslightbox-toolbar-button {
      height: 100%;
      width: 45px;
      cursor: pointer;
    }

    .fslightbox-toolbar-button:hover .fslightbox-svg-path {
      fill: #fff;
    }

    .fslightbox-slide-btn-container {
      display: flex;
      align-items: center;
      padding: 12px 12px 12px 6px;
      position: absolute;
      top: 50%;
      cursor: pointer;
      z-index: 3;
      transform: translateY(-50%);
    }

    @media (min-width: 476px) {
      .fslightbox-slide-btn-container {
        padding: 22px 22px 22px 6px;
      }
    }

    @media (min-width: 768px) {
      .fslightbox-slide-btn-container {
        padding: 30px 30px 30px 6px;
      }
    }

    .fslightbox-slide-btn-container:hover .fslightbox-svg-path {
      fill: #f1f1f1;
    }

    .fslightbox-slide-btn {
      padding: 9px;
      font-size: 26px;
      background: rgba(35, 35, 35, 0.65);
    }

    @media (min-width: 768px) {
      .fslightbox-slide-btn {
        padding: 10px;
      }
    }

    @media (min-width: 1600px) {
      .fslightbox-slide-btn {
        padding: 11px;
      }
    }

    .fslightbox-slide-btn-container-previous {
      left: 0;
    }

    @media (max-width: 475.99px) {
      .fslightbox-slide-btn-container-previous {
        padding-left: 3px;
      }
    }

    .fslightbox-slide-btn-container-next {
      right: 0;
      padding-left: 12px;
      padding-right: 3px;
    }

    @media (min-width: 476px) {
      .fslightbox-slide-btn-container-next {
        padding-left: 22px;
      }
    }

    @media (min-width: 768px) {
      .fslightbox-slide-btn-container-next {
        padding-left: 30px;
      }
    }

    @media (min-width: 476px) {
      .fslightbox-slide-btn-container-next {
        padding-right: 6px;
      }
    }

    .fslightbox-down-event-detector {
      position: absolute;
      z-index: 1;
    }

    .fslightbox-slide-swiping-hoverer {
      z-index: 4;
    }

    .fslightbox-invalid-file-wrapper {
      font-size: 22px;
      color: #eaebeb;
      margin: auto;
    }

    .fslightbox-video {
      object-fit: cover;
    }

    .fslightbox-youtube-iframe {
      border: 0;
    }

    .fslightbox-loader {
      display: block;
      margin: auto;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 67px;
      height: 67px;
    }

    .fslightbox-loader div {
      box-sizing: border-box;
      display: block;
      position: absolute;
      width: 54px;
      height: 54px;
      margin: 6px;
      border: 5px solid;
      border-color: #999 transparent transparent transparent;
      border-radius: 50%;
      animation: fslightbox-loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    }

    .fslightbox-loader div:nth-child(1) {
      animation-delay: -0.45s;
    }

    .fslightbox-loader div:nth-child(2) {
      animation-delay: -0.3s;
    }

    .fslightbox-loader div:nth-child(3) {
      animation-delay: -0.15s;
    }

    @keyframes fslightbox-loader {
      0% {
        transform: rotate(0);
      }

      100% {
        transform: rotate(360deg);
      }
    }

    .fslightbox-source {
      position: relative;
      z-index: 2;
      opacity: 0;
    }

    @media (max-width: 768px) {

      .hero iframe,
      .hero video {
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        object-fit: cover !important;
      }

      .hero.full-height {
        min-height: 300px;
        height: 50vh !important;
      }
    }


/* ==================== */

    .theiaStickySidebar:after {
      content: "";
      display: table;
      clear: both;
    }

    /* CSS cho Dropdown Ngôn ngữ */
    .lang-selector {
      position: relative;
      display: inline-block;
      margin-right: 15px;
      vertical-align: middle;
    }

    .dropdown-lang {
      position: relative;
      display: inline-block;
    }

    .dropbtn-lang {
      background-color: transparent;
      color: #fff;
      padding: 6px 12px;
      font-size: 14px;
      border: 1px solid rgba(255, 255, 255, 0.4);
      border-radius: 4px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      text-transform: uppercase;
      font-family: inherit;
      font-weight: 600;
      transition: all 0.2s;
    }

    .dropbtn-lang:hover {
      background-color: rgba(255, 255, 255, 0.15);
    }

    .dropbtn-lang i {
      font-size: 10px;
      transition: transform 0.2s;
      display: inline-block;
    }

    .dropdown-content-lang {
      display: none;
      position: absolute;
      background-color: #fff;
      min-width: 50px;
      box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12);
      z-index: 9999;
      border-radius: 8px;
      right: 50%;
      transform: translateX(50%);
      top: 100%;
      margin-top: 5px;
      border: 1px solid rgba(0, 0, 0, 0.08);
      padding: 8px 0;
    }

    .dropdown-content-lang.show {
      display: block;
    }

    .dropdown-content-lang a {
      padding: 6px 12px;
      text-decoration: none;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: background-color 0.2s;
    }

    .dropdown-content-lang a:hover {
      background-color: rgba(0, 0, 0, 0.05);
    }

    .flag-img {
      width: 24px;
      height: 18px;
      object-fit: cover;
      border-radius: 2px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    }

    /* ===== TÁCH BIỆT HEADER VÀ HERO VIDEO ===== */
    header {
      background-color: #000000 !important;
    }


/* ==================== */

          .section-tabs {
            display: flex;
            gap: 60px;
            border-bottom: 1px solid #e0e0e0;
          }

          .section-tabs button {
            background: none;
            border: none;
            padding: 12px 0;
            font-size: 20px;
            cursor: pointer;
            color: #333;
            position: relative;
          }

          .section-tabs button::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -1px;
            width: 0;
            height: 3px;
            background: #7a2d00;
            /* màu cam nâu như hình */
            transition: width 0.3s ease;
          }

          .section-tabs button.active {
            color: #7a2d00;
          }

          .section-tabs button.active::after {
            width: 100%;
          }


/* ==================== */

        .loop-carousel {
          position: relative;
          max-width: 1030px;
          margin: auto;
          display: flex;
          align-items: center;
        }

        .loop-viewport {
          overflow: hidden;
          width: 100%;
          height: 390px;
          display: flex;
          align-items: center;
        }

        .loop-track {
          display: flex;
          gap: 20px;
          transition: transform 0.6s ease;
        }

        .loop-item {
          flex: 0 0 300px;
          height: 320px;
          transition: all 0.6s ease;
        }

        .loop-item img {
          width: 100%;
          height: 100%;
          object-fit: contain;
          border-radius: 20px;
        }

        .loop-item.active {
          flex: 0 0 380px;
          height: 380px;
        }

        .loop-arrow.prev {
          left: -10px;
        }

        .loop-arrow.next {
          right: -10px;
        }

        .loop-arrow {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          background: #000;
          color: #fff;
          border: none;
          width: 42px;
          height: 42px;
          border-radius: 50%;
          cursor: pointer;
          z-index: 5;

          opacity: 0;
          pointer-events: none;
          transition: opacity 0.3s ease;
        }

        @media (min-width: 769px) {
          .loop-carousel:hover .loop-arrow {
            opacity: 0.8;
            pointer-events: auto;
          }
        }

        @media (max-width: 768px) {

          .loop-carousel {
            max-width: 100%;
            padding: 0 16px;
          }

          .loop-viewport {
            height: 270px;
          }

          .loop-track {
            gap: 0;
          }

          .loop-item {
            flex: 0 0 100%;
            height: 260px;
          }

          .loop-item.active {
            flex: 0 0 100%;
            height: 260px;
          }

          .loop-item img {
            border-radius: 16px;
          }

          .loop-arrow {
            opacity: 0.7;
            pointer-events: auto;
            width: 36px;
            height: 36px;
          }

          .loop-arrow.prev {
            left: 5px;
          }

          .loop-arrow.next {
            right: 5px;
          }
        }


/* ==================== */

        .slider-viewport {
          overflow: hidden;
          width: 100%;
          min-height: 650px;
          padding: 20px 0 60px 0;
          position: relative;
          display: flex;
          align-items: center;
        }

        #sliderTrack {
          display: flex;
          align-items: center;
          width: max-content;
          transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
          will-change: transform;
        }

        /* Slide */

        .slide {
          width: 750px;
          height: 480px;
          flex-shrink: 0;
          position: relative;
          margin: 0 25px;
          border-radius: 20px;
          overflow: hidden;
          cursor: pointer;
          /* Trạng thái chưa active */
          transform: scale(0.85);
          opacity: 0.6;
          filter: grayscale(20%);
          transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* Active Slide */

        .slide.active {
          transform: scale(1.1);
          opacity: 1;
          filter: grayscale(0%);
          box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
          z-index: 10;
        }

        .slide-bg {
          position: absolute;
          inset: 0;
          background-size: cover;
          background-position: center;
        }

        /* Lớp phủ Gradient */

        .slide-overlay {
          position: absolute;
          inset: 0;
          background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%,
              /* Tối nhẹ ở trên để nổi icon */
              rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.8) 100%);
          /* Tối đậm ở dưới để nổi tên phòng */
        }

        /* Container nội dung */

        .slide-content {
          position: absolute;
          inset: 0;
          padding: 30px;
          color: #fff;
          opacity: 0;
          transition: opacity 0.4s ease;
        }

        .slide.active .slide-content {
          opacity: 1;
        }

        /* --- KHU VỰC TIỆN ÍCH (GÓC TRÊN PHẢI) --- */

        .info-top-right {
          position: absolute;
          top: 30px;
          right: 30px;
          /* Để căn thẳng hàng, ta không dùng text-align: right nữa */
          text-align: left;
        }

        .room-details {
          list-style: none;
          padding: 0;
          margin: 0;
          display: flex;
          flex-direction: column;
          /* Căn tất cả sang trái (flex-start) thay vì sang phải */
          align-items: flex-start;
          gap: 12px;
          /* Khoảng cách giữa các dòng */
        }

        .room-details li {
          font-size: 16px;
          font-weight: 500;
          text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
          display: flex;
          align-items: center;
          gap: 12px;
          /* Thêm nền mờ nhẹ hình viên thuốc để chữ cực kỳ dễ đọc và đều nhau */
          background-color: rgba(0, 0, 0, 0.4);
          padding: 8px 16px;
          border-radius: 20px;
          backdrop-filter: blur(2px);
        }

        .room-details li i {
          font-size: 18px;
          color: #fff;
          /* Icon màu vàng */
          /* QUAN TRỌNG: Cố định chiều rộng Icon để các dòng chữ thẳng hàng */
          width: 20px;
          text-align: center;
          flex-shrink: 0;
        }

        /* --- KHU VỰC DƯỚI (GÓC TRÁI & PHẢI) --- */

        .info-bottom {
          position: absolute;
          bottom: 30px;
          left: 30px;
          right: 30px;
          display: flex;
          justify-content: space-between;
          align-items: flex-end;
        }

        /* Góc trái: Tên & Giá */

        .bottom-left h3 {
          margin: 0 0 5px 0;
          font-size: 38px;
          font-weight: 700;
          color: #fff;
          text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
          line-height: 1.1;
        }

        .price-tag {
          font-size: 26px;
          font-weight: 400;
          color: #fff;
          display: block;
          text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
        }

        /* Góc phải: Nút Đặt phòng */

        .bottom-right .btn-book-now {
          display: inline-block;
          padding: 12px 30px;
          background-color: #000;
          color: #fff;
          text-decoration: none;
          border-radius: 50px;
          font-weight: 600;
          font-size: 16px;
          border: 1px solid rgba(255, 255, 255, 0.3);
          transition: 0.3s;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .bottom-right .btn-book-now:hover {
          background-color: #fff;
          color: #000;
          transform: translateY(-2px);
        }

        /* Responsive Mobile */

        @media (max-width: 768px) {
          .slide {
            width: 85vw;
            height: 110vw;
            margin: 0 10px;
          }

          .info-top-right {
            top: 20px;
            right: 20px;
            left: auto;
          }

          .room-details li {
            font-size: 13px;
            padding: 6px 12px;
          }

          .info-bottom {
            bottom: 20px;
            left: 20px;
            right: 20px;
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
          }

          .bottom-right {
            width: 100%;
          }

          .bottom-right .btn-book-now {
            width: 100%;
            text-align: center;
          }

          .bottom-left h3 {
            font-size: 28px;
          }
        }

        /* Nút điều hướng */

        .nav-btn {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          width: 56px;
          height: 56px;
          border-radius: 50%;
          border: none;
          background: white;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
          font-size: 24px;
          cursor: pointer;
          z-index: 20;
          transition: 0.2s;
          display: flex;
          align-items: center;
          justify-content: center;
        }

        .nav-btn:hover {
          background: #f8f8f8;
          transform: translateY(-50%) scale(1.1);
        }

        .prev-btn {
          left: 30px;
        }

        .next-btn {
          right: 30px;
        }


/* ==================== */

      /* Filter Tabs Styling */
      .room-filter-container {
        display: flex;
        justify-content: flex-start;
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 20px;
        padding-bottom: 0px;
      }

      .room-filter-tabs {
        display: flex;
        gap: 30px;
      }

      .room-filter-tabs button {
        background: none;
        border: none;
        padding: 10px 0;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        color: #777;
        position: relative;
        transition: color 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }

      .room-filter-tabs button::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 0;
        height: 3px;
        background: #978667;
        transition: width 0.3s ease;
      }

      .room-filter-tabs button.active {
        color: #978667;
      }

      .room-filter-tabs button.active::after {
        width: 100%;
      }

      .room-filter-tabs button:hover {
        color: #978667;
      }

      @media (max-width: 768px) {
        .room-filter-container {
          margin-left: 10px;
          margin-right: 10px;
        }

        .room-filter-tabs {
          gap: 20px;
          width: 100%;
          overflow-x: auto;
          white-space: nowrap;
          padding-bottom: 5px;
        }

        .room-filter-tabs button {
          font-size: 14px;
          padding: 8px 0;
        }
      }

      .rooms-slider {
        --rooms-card-width: 360px;
        position: relative;
        padding: 24px 56px 48px;
      }

      .rooms-viewport {
        overflow: hidden;
        width: 100%;
        padding: 28px 6px 40px;
      }

      .room-list-wrapper.rooms-track {
        display: flex;
        align-items: stretch;
        gap: 28px;
        width: max-content;
        margin: 0;
        transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: transform;
      }

      .rooms-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 46px;
        height: 46px;
        border: none;
        border-radius: 50%;
        background: rgba(39, 39, 39, 0.88);
        color: #fff;
        font-size: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 8;
        transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
      }

      .rooms-nav.prev {
        left: 0;
      }

      .rooms-nav.next {
        right: 0;
      }

      .rooms-nav:hover:not(:disabled) {
        background: #000;
        transform: translateY(-50%) scale(1.05);
      }

      .rooms-nav:disabled {
        opacity: 0.35;
        cursor: default;
      }

      .rooms-track .room-card {
        background: #fff;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
        display: flex;
        flex-direction: column;
        width: var(--rooms-card-width);
        max-width: none;
        min-width: 0;
        flex: 0 0 var(--rooms-card-width);
        transition: box-shadow 0.28s ease, transform 0.28s ease, opacity 0.28s ease, filter 0.28s ease;
        position: relative;
        transform: scale(0.92);
        transform-origin: center center;
        opacity: 0.72;
        filter: saturate(0.9);
        z-index: 1;
      }

      .rooms-track .room-card.is-active {
        transform: scale(1.08);
        opacity: 1;
        filter: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
        z-index: 3;
      }

      .rooms-track .room-card:hover {
        transform: translateY(-6px) scale(0.95);
        box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
        opacity: 0.92;
      }

      .rooms-track .room-card.is-active:hover {
        transform: translateY(-6px) scale(1.1);
        box-shadow: 0 24px 44px rgba(0, 0, 0, 0.3);
      }

      /* Filtered Grid Mode styles */
      .rooms-slider.is-filtered {
        padding: 24px 0 48px;
      }

      .rooms-slider.is-filtered .rooms-viewport {
        overflow: visible;
      }

      .rooms-slider.is-filtered .room-list-wrapper.rooms-track {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 28px;
        width: 100% !important;
        margin: 0 auto;
        transform: none !important;
        transition: none !important;
      }

      .rooms-slider.is-filtered .rooms-nav {
        display: none !important;
      }

      .rooms-slider.is-filtered .rooms-track .room-card {
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
        max-width: 100%;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
        z-index: 1;
      }

      .rooms-slider.is-filtered .rooms-track .room-card:hover {
        transform: translateY(-6px) !important;
        box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24) !important;
        opacity: 1 !important;
      }

      @media (max-width: 768px) {
        .rooms-slider {
          padding: 16px 34px 34px;
        }

        .rooms-viewport {
          padding: 18px 0 24px;
        }

        .rooms-nav {
          width: 38px;
          height: 38px;
          font-size: 20px;
        }

        .rooms-track .room-card {
          max-width: calc(100vw - 96px);
          transform: scale(0.98);
          opacity: 0.88;
        }

        .rooms-track .room-card.is-active {
          transform: scale(1);
        }

        .rooms-track .room-card:hover,
        .rooms-track .room-card.is-active:hover {
          transform: scale(1);
        }

        /* Filtered Grid Mode styles for mobile */
        .rooms-slider.is-filtered {
          padding: 24px 10px 48px;
        }

        .rooms-slider.is-filtered .rooms-track .room-card {
          max-width: 100%;
        }
      }

      .room-image {
        position: relative;
        height: 280px;
        width: 100%;
        overflow: hidden;
        background: #eee;
      }

      .room-carousel img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 0.4s ease;
      }

      .room-carousel img.active {
        opacity: 1;
      }

      .room-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.45);
        color: #fff;
        border: none;
        width: 36px;
        height: 36px;
        font-size: 22px;
        cursor: pointer;
        z-index: 5;
      }

      .room-arrow.prev {
        left: 8px;
      }

      .room-arrow.next {
        right: 8px;
      }

      .room-arrow:hover {
        background: rgba(0, 0, 0, 0.65);
      }

      .room-dots {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 6px;
        z-index: 6;
      }

      .room-dots span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.6);
        cursor: pointer;
      }

      .room-dots span.active {
        background: #fff;
      }

      .room-carousel {
        user-select: none;
        cursor: grab;
      }

      .room-carousel:active {
        cursor: grabbing;
      }

      .room-info {
        padding: 20px 18px 18px 18px;
        display: flex;
        flex-direction: column;
        flex: 1;
      }

      .room-meta {
        display: flex;
        gap: 16px;
        font-size: 15px;
        color: #bdbdbd;
        margin-bottom: 10px;
      }

      .room-meta span {
        display: flex;
        align-items: center;
        gap: 6px;
      }

      .room-meta i {
        font-size: 18px;
        color: #fff;
      }

      .room-title {
        font-size: 20px;
        font-weight: 600;
        color: #978667;
        margin-bottom: 18px;
      }

      .room-bottom {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
      }

      .room-price {
        color: #ff6a00;
        font-size: 17px;
        font-weight: 500;
        display: flex;
        flex-direction: column;
      }

      .room-price .price-line {
        display: flex;
        align-items: baseline;
        gap: 6px;
      }

      .room-price strong {
        font-size: 22px;
        color: #ff6a00;
        font-weight: 700;
      }

      .room-price .unit {
        font-size: 14px;
        color: #ff6a00;
      }


      .room-btn {
        background: #978667;
        color: #fff;
        border: 1px solid #fff;
        border-radius: 24px;
        padding: 8px 22px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        transition: background 0.2s, color 0.2s;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
      }

      .room-btn:hover {
        background: #4b514d;
        color: #fff;
      }

      .room-action {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 6px;
      }

      .room-badge {
        margin-right: 24px;
        font-size: 14px;
        font-weight: 600;
        color: #ff3b3b;
      }

      @media (max-width: 768px) {
        .rooms-slider {
          padding: 16px 34px 34px;
        }

        .rooms-viewport {
          padding: 18px 0 24px;
        }

        .rooms-nav {
          width: 38px;
          height: 38px;
          font-size: 20px;
        }

        .rooms-track .room-card {
          max-width: calc(100vw - 96px);
          transform: scale(0.98);
          opacity: 0.88;
        }

        .rooms-track .room-card.is-active {
          transform: scale(1);
        }

        .rooms-track .room-card:hover,
        .rooms-track .room-card.is-active:hover {
          transform: scale(1);
        }

        /* Prevent text/button wrapping in room footer on mobile */
        .room-bottom {
          flex-direction: row !important;
          align-items: flex-end !important;
          justify-content: space-between !important;
        }

        .room-price strong {
          font-size: 18px !important;
        }

        .room-price .unit {
          font-size: 11px !important;
        }

        .room-price .price-line {
          flex-wrap: nowrap !important;
        }

        .room-badge {
          font-size: 11px !important;
          margin-right: 0 !important;
        }

        .room-btn {
          padding: 6px 14px !important;
          font-size: 13px !important;
          white-space: nowrap !important;
        }
      }


/* ==================== */

                .location-list li {
                  padding: 8px 0;
                  border-bottom: 1px dashed #eee;
                  font-size: 13.5px;
                }

                .location-list li:last-child {
                  border-bottom: none;
                }

                .location-list .loc-num {
                  width: 20px;
                  height: 20px;
                  font-size: 10px;
                  flex-shrink: 0;
                  display: inline-flex;
                  align-items: center;
                  justify-content: center;
                  margin-right: 8px;
                  background-color: #212529;
                  color: #fff;
                  border-radius: 50%;
                }

                .location-list .loc-name {
                  font-weight: 500;
                  color: #333;
                  line-height: 1.3;
                }

                .location-list .loc-dist {
                  font-weight: 500;
                  color: #666;
                  font-size: 12px;
                }

                .location-list .loc-time {
                  font-weight: 400;
                  border: 1px solid #e5e5e5;
                  padding: 2px 6px;
                  border-radius: 4px;
                  font-size: 11px;
                  display: inline-block;
                  background-color: #f8f9fa;
                  color: #212529;
                  width: 100%;
                  max-width: 90px;
                  text-align: center;
                }


/* ==================== */

    .custom-footer a:hover {
      color: #caa169 !important;
    }
    .btn-gold-pill:hover {
      background-color: #b89058 !important;
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(202, 161, 105, 0.4);
    }
    .footer-social-icons a:hover {
      color: #caa169 !important;
      transform: scale(1.15);
    }
    .footer-social-icons a {
      transition: all 0.2s ease;
    }


/* ==================== */

    .floating-contact-buttons {
      position: fixed;
      right: 20px;
      bottom: 10%;
      transform: translateY(-50%);
      z-index: 9999;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .floating-contact-buttons a {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 50px;
      height: 50px;
      transition: all 0.3s ease;
      position: relative;
      border-radius: 50%;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      background-color: #fff;
    }

    .floating-contact-buttons a:hover {
      transform: scale(1.15);
    }

    .floating-contact-buttons img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .tiktok-zoom {
      transform: scale(1.7) !important;
      object-fit: cover !important;
    }

    .phone-wrapper {
      position: relative;
      overflow: visible !important;
    }

    .phone-text {
      position: absolute;
      right: 60px;
      top: 50%;
      transform: translateY(-50%);
      background: #fff;
      color: #111;
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 14px;
      white-space: nowrap;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
      opacity: 1;
      visibility: visible;
      animation: hideAfter5s 0.1s ease forwards;
      pointer-events: none;
    }

    .phone-text::after {
      content: "";
      position: absolute;
      right: -6px;
      top: 50%;
      transform: translateY(-50%);
      border-width: 6px;
      border-style: solid;
      border-color: transparent transparent transparent #fff;
    }

    .phone-wrapper:hover .phone-text {
      opacity: 1;
      visibility: visible;
      transform: translateY(-50%) translateX(-4px);
      animation: none;
    }

    @keyframes hideAfter5s {
      0% {
        opacity: 1;
        visibility: visible;
      }

      80% {
        opacity: 1;
      }

      100% {
        opacity: 0;
        visibility: hidden;
      }
    }

    @keyframes shake-animation {
      0% {
        transform: rotate(0deg);
      }

      25% {
        transform: rotate(10deg);
      }

      50% {
        transform: rotate(0deg);
      }

      75% {
        transform: rotate(-10deg);
      }

      100% {
        transform: rotate(0deg);
      }
    }

    .animate-shake {
      animation: shake-animation 2.5s infinite ease-in-out;
      animation-delay: 1s;
    }

    @media (max-width: 768px) {
      .floating-contact-buttons {
        gap: 10px;
      }

      .floating-contact-buttons a {
        width: 40px;
        height: 40px;
      }
    }


/* ==================== */

    .ccchat-popupchat-container {
      position: fixed;
      right: 0;
      bottom: 0;
      overflow: hidden;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      border-radius: 10px;
    }

    .ccchat-ai-popupchat-toggle-btn {
      display: none;
      position: fixed;
      bottom: 12%;
      right: 20px;
      background: #fff;
      background: #000000;
      color: white;
      border: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      font-size: 22px;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      z-index: 10000;
    }

    .ccchat-ai-popupchat-iframe {
      height: 95%;
      width: 100%;
      border: none;
    }

    .chat-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.75rem;
      background-color: #ffffff;
    }

    .chat-title {
      margin-bottom: 0;
    }

    .chat-close-btn {
      background-color: #0d6efd;
      color: #fff;
      font-size: 0.875rem;
      padding: 0.25rem 0.5rem;
      border: none;
      border-radius: 0.25rem;
      cursor: pointer;
    }

    .chat-close-btn:hover {
      background-color: #0b5ed7;
    }

    @media (min-width: 1026px) {
      .ccchat-popupchat-container {
        width: 30%;
        height: 580px;
      }
    }

    @media (min-width: 768px) and (max-width: 1025px) {
      .ccchat-popupchat-container {
        width: 50%;
        height: 580px;
      }
    }

    @media (max-width: 767px) {
      .ccchat-popupchat-container {
        width: 80%;
        height: 600px;
      }

      .ccchat-ai-popupchat-iframe {
        height: 85%;
      }

      .ccchat-ai-popupchat-toggle-btn {
        width: 45px;
        height: 45px;
        bottom: 10%;
      }
    }

    .ccchat-ai-popupchat-header {
      display: flex;
    }

    .ccchat-ai-popupchat-toggle-btn {
      display: block;
    }

    .ccchat-toggle-wrapper {
      position: fixed;
      bottom: 80px;
      right: 20px;
      z-index: 10001;
    }

    .ccchat-toggle-text {
      position: absolute;
      right: 90px;
      top: 50%;
      transform: translateY(-130%);
      background: #fff;
      color: #111;
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 14px;
      white-space: nowrap;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
      opacity: 1;
      visibility: visible;
      pointer-events: none;
      animation: ccchatHideAfter5s 5s ease forwards;
      transition: opacity 0.15s ease, transform 0.15s ease;
    }

    .ccchat-toggle-text::after {
      content: "";
      position: absolute;
      right: -6px;
      top: 50%;
      transform: translateY(-50%);
      border-width: 6px;
      border-style: solid;
      border-color: transparent transparent transparent #fff;
    }

    @keyframes ccchatHideAfter5s {
      0% {
        opacity: 1;
        visibility: visible;
      }

      80% {
        opacity: 1;
      }

      100% {
        opacity: 0;
        visibility: hidden;
      }
    }
    .ccchat-ai-popupchat-dev-msg {
      background-color: #fcfbfa;
      height: calc(100% - 50px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 30px;
      text-align: center;
      border-top: 1px solid rgba(202, 161, 105, 0.15);
    }
    .dev-msg-icon {
      font-size: 50px;
      color: #caa169;
      margin-bottom: 20px;
      animation: spin-gear 4s linear infinite;
    }
    @keyframes spin-gear {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    .ccchat-ai-popupchat-dev-msg h4 {
      font-family: 'Lora', serif !important;
      font-size: 18px !important;
      font-weight: 600 !important;
      color: #11151a !important;
      margin-bottom: 12px !important;
    }
    .ccchat-ai-popupchat-dev-msg p {
      font-family: 'Montserrat', sans-serif !important;
      font-size: 13px !important;
      line-height: 1.6 !important;
      color: #666666 !important;
      margin: 0 !important;
    }


/* ==================== */

