/* custom-modern.css - Kankay Resort Modernization */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@500;600;700&display=swap');

:root {
  --primary-modern: #2e8b57; /* A refined, premium nature green */
  --secondary-modern: #f4a460;
  --bg-light: #f2f4fb;
  --text-dark: #1a1a1a;
  --text-muted: #6c757d;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.02), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-premium: 0 30px 60px -12px rgba(50, 50, 93, 0.15), 0 18px 36px -18px rgba(0, 0, 0, 0.2);
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
}

body {
  font-family: 'Inter', sans-serif !important;
  color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6, .heading {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: -0.5px;
}

/* Modernizing Buttons */
.btn, .btn-primary {
  border-radius: var(--radius-xl) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 35px !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  box-shadow: var(--shadow-sm);
  border: none !important;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-modern) 0%, #1e5e3a 100%) !important;
  color: white !important;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(46, 139, 87, 0.4) !important;
}

.btn-outline-white-primary {
  border: 2px solid white !important;
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(5px);
  color: white !important;
}

.btn-outline-white-primary:hover {
  background: white !important;
  color: var(--primary-modern) !important;
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg) !important;
}

/* Glassmorphism Booking Bar */
.check-availabilty .block-32 {
  background: var(--glass-bg) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 4px !important;
  padding: 40px !important;
  box-shadow: var(--shadow-premium) !important;
  border: 1px solid var(--glass-border);
  transform: translateY(-50%);
  margin-top: 0 !important;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.check-availabilty .block-32:hover {
  transform: translateY(-55%);
  background: rgba(255, 255, 255, 0.9) !important;
}

/* New: Booking Title Styling */
.booking-section-title {
  color: white;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  opacity: 0;
  animation: fadeAndSlideUp 1.2s ease-out 0.3s forwards;
}

/* New: Smooth Slow Animations */
@keyframes fadeAndSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-booking-bar {
  opacity: 0;
  animation: fadeAndSlideUp 1.5s ease-out 0.6s forwards, bookingFloat 15s ease-in-out 2.1s infinite;
}

@keyframes bookingFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}



.check-availabilty form .form-control {
  border: 1px solid #e1e1e1 !important;
  border-radius: var(--radius-md) !important;
  background: #fff !important;
  font-family: 'Inter', sans-serif !important;
  color: #333 !important;
  padding: 10px 15px !important;
  height: 50px !important;
  transition: all 0.3s ease;
}

.check-availabilty form .form-control:focus {
  border-color: var(--primary-modern) !important;
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.2) !important;
}

.check-availabilty label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted) !important;
  margin-bottom: 8px;
}

/* Modernize Room Cards */
.room {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  display: block;
  margin-bottom: 30px;
}

.room:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.room .img-wrap img {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-bottom: 0 !important;
  transition: transform 0.5s ease;
}

.room:hover .img-wrap img {
  transform: scale(1.05);
}

.room .img-wrap {
  overflow: hidden;
}

.room .room-info {
  background: white;
  padding: 25px !important;
}

.room .room-info h2 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--text-dark);
  transition: color 0.3s;
}

.room:hover .room-info h2 {
  color: var(--primary-modern);
}

.room .room-info span {
  background: rgba(46, 139, 87, 0.1);
  color: var(--primary-modern);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
  display: inline-block;
}

/* Food Menu Improvements */
.food-menu-tabs .nav-tabs .nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: 30px !important;
  padding: 10px 25px;
  margin: 0 5px;
  color: white !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  transition: all 0.3s;
}

.food-menu-tabs .nav-tabs .nav-link.active,
.food-menu-tabs .nav-tabs .nav-link:hover {
  background: white !important;
  color: var(--text-dark) !important;
  border-color: white !important;
}

.food-menu {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.food-menu:hover {
  transform: translateX(10px);
  background: rgba(0, 0, 0, 0.6);
}

.site-hero .custom-caption {
  font-family: 'Inter', sans-serif;
  letter-spacing: 3px;
  font-size: 14px;
}

.site-navbar .menu a {
  font-family: 'Inter', sans-serif !important;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------------------------------
   MOBILE RESPONSIVENESS & POLISH
   --------------------------------- */
@media (max-width: 991px) {
  /* Fix layout spacing for tablets and mobiles */
  .site-hero .heading {
    font-size: 3rem !important; /* Smaller huge text */
  }
  
  .check-availabilty .block-32 {
    transform: none; /* remove overlap effect on mobile so it doesn't clip */
    margin-top: -30px !important; 
    margin-bottom: 30px !important;
    padding: 20px !important;
  }
  
  .check-availabilty .block-32:hover {
    transform: none;
  }
}

@media (max-width: 767px) {
  /* Optimize form buttons and text size for phones */
  .site-hero .heading {
    font-size: 2.5rem !important;
  }
  
  body {
    font-size: 14px !important;
  }
  
  .btn, .btn-primary {
    padding: 10px 20px !important;
    font-size: 14px !important;
    width: 100%; /* Full width buttons on mobile */
    margin-top: 10px;
  }

  .room .room-info {
    padding: 15px !important;
  }
  
  .room .room-info h2 {
    font-size: 1.25rem;
  }

  /* Ensure floating WhatsApp & TikTok buttons don't block mobile screens */
  .btn-whatsapp-flotante, 
  .contenedor-flotante {
    transform: scale(0.85); /* Shrink slightly */
    transform-origin: bottom right;
  }
  
  .contenedor-flotante {
    bottom: 80px; /* ensure TikTok isn't overlapping WhatsApp */
  }
  
  .btn-whatsapp-flotante {
    bottom: 20px;
    right: 20px;
  }

  /* Make tab pills scrollable on tiny screens or stack them */
  .food-menu-tabs .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .food-menu {
    padding: 15px;
    margin-bottom: 20px !important;
  }
  
  .food-menu h3 {
    font-size: 1.1rem;
  }
}

/* ---------------------------------
   MODERN DESKTOP HEADER & MENU
   --------------------------------- */
.site-navigation {
  margin: 0;
}

.site-navigation .site-menu {
  display: flex !important;
  align-items: center;
  margin: 0;
  padding: 0;
}

.site-navigation .site-menu > li {
  list-style: none;
  margin: 0 15px;
}

.site-navigation .site-menu > li > a {
  color: white; /* Initial color on dark hero image */
  font-family: 'Inter', sans-serif !important;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s;
  padding: 10px 0;
}

/* Hover effect: animated underline */
.site-navigation .site-menu > li > a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-modern);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.site-navigation .site-menu > li > a:hover::after,
.site-navigation .site-menu > li.active > a::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Specific styling for the CTA button in header */
.site-navigation .site-menu > li > a.btn {
  color: white !important; /* Always white inside button */
}
.site-navigation .site-menu > li > a.btn::after {
  display: none; /* No underline for button */
}

/* Scrolled Header Changes */
.site-header.scrolled {
  background: var(--glass-bg) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md) !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid var(--glass-border);
}

/* Text turns dark when scrolled */
.site-header.scrolled .site-navigation .site-menu > li > a {
  color: var(--text-dark) !important;
  font-weight: 600;
}

.site-header.scrolled .site-navigation .site-menu > li > a:hover {
  color: var(--primary-modern) !important;
}

.site-header.scrolled .site-navigation .site-menu > li > a.btn {
  color: white !important; /* Button text stays white */
  background: var(--primary-modern) !important;
}

/* Hamburger color when scrolled */
.site-header.scrolled .site-menu-toggle span {
  background: var(--text-dark) !important;
}

/* Ensure mobile menu behaves smoothly */
.site-navbar {
  transition: 0.3s all ease-in-out;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

/* Modern Dropdown */
.custom-dropdown-modern {
  background: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: var(--radius-lg) !important;
  padding: 10px 0 !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
  min-width: 220px;
  transform: translateY(10px);
}

.custom-dropdown-modern .dropdown-item {
  color: #e9ecef !important;
  font-weight: 500;
  padding: 12px 25px;
  transition: all 0.3s ease;
  background: transparent !important;
}

.custom-dropdown-modern .dropdown-item:hover,
.custom-dropdown-modern .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  padding-left: 32px;
}

/* Enhanced Cart Icon */
.cart-nav-item {
  position: relative;
  display: flex !important;
  align-items: center;
}

.cart-link-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.site-header.scrolled .cart-link-modern {
  background: rgba(0, 0, 0, 0.05) !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
}

.cart-link-modern:hover {
  background: var(--primary-modern) !important;
  transform: translateY(-3px) scale(1.05);
  border-color: transparent !important;
  box-shadow: 0 10px 20px rgba(46, 139, 87, 0.3);
}

.cart-link-modern i {
  font-size: 1.2rem !important;
  color: white !important;
  transition: all 0.3s ease !important;
}

.site-header.scrolled .cart-link-modern i {
  color: var(--text-dark) !important;
}

.cart-link-modern:hover i {
  color: white !important;
  animation: cartBounce 0.5s ease infinite alternate;
}

.cart-badge-modern {
  position: absolute;
  top: -6px;
  right: -6px;
  background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%) !important;
  color: white !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  min-width: 18px;
  height: 18px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(255, 71, 87, 0.4);
  border: 1.5px solid white !important;
  z-index: 5;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes cartBounce {
  from { transform: translateY(0); }
  to { transform: translateY(-2px); }
}

.cart-badge-modern.bump {
  transform: scale(1.4);
  background: #2ecc71 !important; /* Flash green on update */
}

/* ---------------------------------
   SEO & PERFORMANCE UTILITIES
   --------------------------------- */
.img-lazy {
  opacity: 0;
  transition: opacity 0.6s ease-in;
}

.img-lazy.loaded {
  opacity: 1;
}

/* Improved focus states for accessibility */
a:focus, button:focus {
  outline: 2px solid var(--primary-modern) !important;
  outline-offset: 2px;
}

/* ---------------------------------
   ROOM AMENITIES GRID
   --------------------------------- */
.room-amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 20px 0;
  padding: 20px;
  background: #fdfdfd;
  border-radius: var(--radius-md);
  border: 1px solid #f0f0f0;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.amenity-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  font-size: 11px;
  color: var(--text-muted);
  gap: 10px;
  padding: 5px;
}

.amenity-item i {
  font-size: 14px;
  color: var(--primary-modern);
  width: 20px;
  text-align: center;
}

@media (max-width: 576px) {
  .room-amenities {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 12px;
  }
  .amenity-item {
    font-size: 10px;
  }
}

/* ---------------------------------
   ROOM DETAILS MODAL (EXPANSION)
   --------------------------------- */
.room-details-modal .modal-lg {
  max-width: 950px;
}

.room-details-modal .modal-content {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.room-details-modal .modal-header {
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 30px;
}

.room-details-modal .modal-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--dark-modern);
}

.room-details-modal .modal-body {
  padding: 30px;
  max-height: 80vh;
  overflow-y: auto;
}

/* Modal Gallery */
.room-details-gallery {
  margin-bottom: 30px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.room-details-gallery img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Detailed Amenities Grid (3 Columns) */
.amenities-detailed-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.amenity-column {
  flex: 1;
  min-width: 250px;
}

.amenity-category-block {
  margin-bottom: 25px;
}

.amenity-category-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  color: #333;
  margin-bottom: 12px;
}

.amenity-category-title i {
  color: var(--primary-modern);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.amenity-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenity-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #555;
  margin-bottom: 8px;
}

.amenity-checklist li i.fa-check {
  color: #28a745;
  font-size: 12px;
  margin-top: 3px;
}

/* Ver más trigger */
.btn-ver-mas {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--primary-modern);
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  margin-left: 10px;
  vertical-align: middle;
}

.btn-ver-mas:hover {
  text-decoration: underline;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .room-details-gallery img {
    height: 250px;
  }
  .amenity-column {
    flex: 100%;
  }
}

/* ---------------------------------
   MODERN ROOM CARD REDESIGN
   --------------------------------- */
.room-card-modern {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid #eee;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.room-card-modern:hover {
  transform: translateY(-5px);
}

.room-image-wrap {
  margin: 0;
  height: 250px;
  overflow: hidden;
}

.room-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-content-modern {
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-title-modern {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.room-price-pill {
  display: inline-block;
  background: #eff7f2;
  color: #d4a373;
  padding: 8px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.room-amenities-box {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 15px;
  padding: 20px;
  text-align: left;
  position: relative;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.amenity-list-vertical {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenity-list-vertical li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
}

.amenity-list-vertical li i,
.amenity-list-vertical li svg {
  color: #2d6a4f;
  width: 20px;
  height: 20px;
  text-align: center;
  vertical-align: middle;
  flex-shrink: 0;
}

.amenity-list-vertical li svg {
  fill: currentColor;
}

.ver-mas-card-link {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  color: #2d6a4f;
  font-weight: 600;
  text-decoration: none !important;
  line-height: 1.2;
  transition: 0.3s;
}

.ver-mas-card-link:hover {
  opacity: 0.7;
}

.ver-mas-card-link i {
  font-size: 18px;
  margin-bottom: 2px;
}

.btn-add-cart-modern {
  background: #1b5e20;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
  width: 100%;
  margin-top: auto;
  text-decoration: none !important;
}

.btn-add-cart-modern:hover {
  background: #2e7d32;
  color: #fff;
  box-shadow: 0 4px 15px rgba(27, 94, 32, 0.3);
}

/* ---------------------------------
   MODERN ROOM DETAILS MODAL
   --------------------------------- */
.room-details-modal .modal-content {
  border-radius: 25px;
  border: none;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.room-details-modal .modal-header {
  border-bottom: none;
  padding: 20px 30px 10px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}

/* Force Modal Width since modal-xl might not be supported in this Bootstrap version */
.room-details-modal .modal-dialog {
  max-width: 1000px !important;
  width: 90% !important;
}

/* Modal Content override for Booking Exact Style */
.room-details-modal .modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #262626;
  background-color: #fff;
}

.room-details-modal .modal-body {
  padding: 24px;
}

/* Close Button Override */
.ref-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1050;
  font-size: 20px;
  font-weight: 400;
  color: #1a1a1a;
  background: none;
  border: none;
  opacity: 1;
  cursor: pointer;
}

/* Modal Layout: Pure CSS Grid for absolute horizontal stability */
.ref-modal-grid {
  display: grid;
  grid-template-columns: 57% 43%;
  width: 100%;
  gap: 0;
}

@media (max-width: 991px) {
  .ref-modal-grid {
    grid-template-columns: 1fr;
  }
}

/* Left: Gallery */
.ref-gallery-col {
  padding-right: 24px;
  min-width: 0; /* Prevents grid blowout */
}

@media (max-width: 991px) {
  .ref-gallery-col {
    padding-right: 0px;
    padding-bottom: 24px;
  }
}

.ref-carousel {
  margin-bottom: 12px;
  position: relative;
}

.ref-carousel-inner {
  border-radius: 8px;
  overflow: hidden;
}

.ref-carousel-inner img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Carousel Inner Dots Overlay */
.ref-indicators {
  margin-bottom: 12px;
}

.ref-indicators li {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  border: none;
  margin: 0 4px;
}

.ref-indicators .active {
  background-color: #fff;
  transform: scale(1.2);
}

/* Embedded Arrows */
.ref-arrow {
  width: 10%;
  opacity: 1;
}

.ref-arrow-icon {
  background: #fff;
  color: #1a1a1a;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  font-size: 16px;
  transition: 0.2s;
}

.ref-arrow:hover .ref-arrow-icon {
  transform: scale(1.05);
}

/* Thumbnails below */
.ref-thumbnail-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.ref-thumb-item {
  width: 72px;
  height: 54px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
}

.ref-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ref-thumb-item.active {
  border-color: #0071ce;
}

/* Right: Info */
.ref-info-col {
  display: flex;
  flex-direction: column;
}

.ref-room-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #1a1a1a;
  margin-bottom: 16px;
  margin-top: 0;
  font-family: inherit;
}

/* Custom Pills Reference Match */
.ref-quick-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.ref-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 6px;
  border: 1px solid #c6c6c6;
  border-radius: 3px;
  font-size: 12px;
  line-height: 18px;
  color: #262626;
  background: #fff;
}

.ref-pill-tag svg {
  width: 14px;
  height: 14px;
  color: #262626;
}

/* Room Specs */
.ref-room-specs {
  margin-bottom: 24px;
}

.ref-spec-line {
  font-size: 14px;
  line-height: 20px;
  color: #262626;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ref-spec-line strong {
  font-weight: 700;
  color: #1a1a1a;
}

.ref-section-block {
  margin-bottom: 16px;
}

.ref-section-block h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.ref-checklist-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ref-checklist-2col li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 20px;
  color: #262626;
}

.ref-checklist-2col li svg {
  margin-top: 3px;
  color: #1a1a1a;
  min-width: 14px;
}

.ref-smoke-policy {
  margin-top: 8px;
  font-size: 14px;
  line-height: 20px;
  color: #262626;
}

.ref-smoke-policy strong {
  font-weight: 700;
  color: #1a1a1a;
}

