/* Base Styles: Apply to all screen sizes */
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
}

.d-flex {
  flex-wrap: wrap; /* Wrap items to prevent overflow */
  justify-content: space-between; /* Adjust spacing */
}

header-component, nav-component, footer-component, booking-component, div[ui-view] {
  width: 100%;
  display: block;
  margin: 0 auto; /* Center the components */
}

.container {
  width: 100%;
  max-width: 1200px; /* Limit the width on large screens */
  margin: 0 auto;    /* Center the container on desktop */
  padding: 15px;
  box-sizing: border-box;
}

/* Prevent Horizontal Scrolling */
body {
  overflow-x: hidden;
}


/* Mobile-Specific Styles */
@media (max-width: 768px) {
  header-component, nav-component, footer-component, div[ui-view] {
    width: 100%;
  }

  .container {
    padding: 10px;
  }
}

/* Specific breakpoint adjustments */
@media (max-width: 500px) {
  body {
    padding: 0; /* Remove body-level padding */
    margin: 0; /* Remove body-level margin */
  }

  .container,
  .container-fluid {
    padding: 0 5px; /* Minimal padding for small screens */
  }


}
/* Desktop-Specific Styles */
@media (min-width: 769px) {
  .container {
    max-width: 1200px; /* Limit the width for readability */
    padding: 20px;
  }
  booking-component {
    margin-right: 30px;
  }
}


.cookie-dialog {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  color: #333;
  padding: 20px;
  box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease-in-out;
  transform: translateY(100%);
}

.cookie-dialog.visible {
  transform: translateY(0);
}

.cookie-dialog h3 {
  margin: 0;
  font-size: 18px;
}

.cookie-dialog p {
  font-size: 14px;
  margin: 10px 0;
  text-align: center;
}

.cookie-dialog .actions {
  margin-top: 15px;
  display: flex;
  justify-content: space-around;
  width: 100%;
}

.cookie-dialog button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.cookie-dialog button.reject {
  background: #dc3545;
}

.cookie-dialog button.more-info {
  background: #6c757d;
}

.cookie-dialog button:hover {
  opacity: 0.9;
}

.places-map .map-container {
  width: 100%;
  height: 500px;
}

.places-map #map {
  width: 100%;
  height: 500px;
}

.places-list {
  margin: 20px auto;
  max-width: 800px;
  padding: 10px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.places-list h3 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 18px;
}

.places-list ul {
  list-style: none;
  padding: 0;
}

.places-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.places-list li:last-child {
  border-bottom: none;
}
/* ─── Estado inline (dentro del héroe) ──────────────────────── */
.bw-wrap {
  position: relative;
  width: 100%;
}

.bw-iframe {
  width: 100%;
  min-height: 140px;
  border: none;
  display: block;
  background: transparent;
  transition: height 0.2s ease;
}

/* ─── Modal ──────────────────────────────────────────────────── */
/*
  El modal es position:fixed dentro de .hero-overlay (z-index:10).
  Para que supere los botones del carousel (z-index:15) y la nav (z-index:200),
  cuando el modal está activo elevamos .hero-overlay a z-index:9999 via body class,
  y bajamos temporalmente los elementos que quedarían encima.
*/
.bw-wrap--modal {
  position: fixed;
  inset: 0;
  z-index: 8500;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(0, 0, 0, 0.82);
}

.bw-wrap--modal .bw-iframe {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  margin: 0 auto 24px;
  min-height: 50vh;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  background: #fff;
  transition: none;
}

/* ─── Barra de cierre sticky ─────────────────────────────────── */
.bw-modal-bar {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.5);
  max-width: 960px;
  margin: 0 auto;
  border-radius: 12px 12px 0 0;
}

.bw-close {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.18s ease;
}

.bw-close:hover { background: rgba(255, 255, 255, 0.28); }

/* ─── Backdrop ───────────────────────────────────────────────── */
.bw-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  cursor: pointer;
}

/* ─── Corrección de stacking context via body class ─────────── */

/* Elevar el hero-overlay para que el modal (dentro de él) supere
   los botones del carousel (z-index:15) y la nav (z-index:200)  */
body.bw-modal-active .hero-overlay {
  z-index: 9999 !important;
}

/* Bajar los botones del carousel para que queden bajo el modal   */
body.bw-modal-active .hero-carousel-btn {
  z-index: 0 !important;
  pointer-events: none !important;
}

/* Bajar header y nav por debajo del modal                        */
body.bw-modal-active .site-header,
body.bw-modal-active .site-nav {
  z-index: 0 !important;
}

/* ─── Loading spinner (mientras el iframe recarga) ───────────── */
.bw-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  width: 100%;
}

.bw-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255,193,7,0.3);
  border-top-color: #ffc107;
  border-radius: 50%;
  animation: bw-spin 0.7s linear infinite;
}

@keyframes bw-spin {
  to { transform: rotate(360deg); }
}

.bw-iframe--hidden {
  display: none !important;
}

/* ─── Mobile: pantalla completa sin bordes ───────────────────── */
@media (max-width: 600px) {
  .bw-wrap--modal .bw-iframe,
  .bw-modal-bar {
    border-radius: 0;
    max-width: 100%;
  }
}

/* ─── Banner ────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: #fff;
  border-top: 3px solid #ffc107;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── Text ──────────────────────────────────────────────────── */
.cookie-banner-text {
  flex: 1;
  min-width: 220px;
}

.cookie-banner-title {
  font-weight: 700;
  color: #1a1a2e;
  font-size: 0.95rem;
  margin: 0 0 4px;
}

.cookie-banner-desc {
  font-size: 0.82rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

.cookie-policy-link {
  color: #856404;
  text-decoration: underline;
  white-space: nowrap;
}

/* ─── Actions ───────────────────────────────────────────────── */
.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.cookie-btn--outline {
  background: #fff;
  border: 1.5px solid #dee2e6;
  color: #495057;
}
.cookie-btn--outline:hover { border-color: #ffc107; color: #1a1a2e; }

.cookie-btn--reject {
  background: #f8f9fa;
  color: #495057;
  border: 1.5px solid #dee2e6;
}
.cookie-btn--reject:hover { background: #e9ecef; }

.cookie-btn--accept {
  background: #ffc107;
  color: #212529;
}
.cookie-btn--accept:hover { background: #e0a800; }

/* ─── Preferences panel ─────────────────────────────────────── */
.cookie-panel {
  border-top: 1px solid #f0f0f0;
  background: #fafafa;
}

.cookie-panel-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 1.5rem;
}

.cookie-category {
  padding: 0.9rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.cookie-category:last-of-type { border-bottom: none; }

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-category-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 3px;
}

.cookie-category-desc {
  font-size: 0.78rem;
  color: #6c757d;
  margin: 0;
}

.cookie-always-on {
  font-size: 0.75rem;
  color: #28a745;
  font-weight: 600;
  white-space: nowrap;
  background: #d4edda;
  padding: 3px 10px;
  border-radius: 20px;
  flex-shrink: 0;
}

/* ─── Toggle switch ─────────────────────────────────────────── */
.cookie-toggle {
  position: relative;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
  cursor: pointer;
  margin: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: #ced4da;
  border-radius: 26px;
  transition: background 0.25s ease;
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  left: 3px;
  bottom: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transition: transform 0.25s ease;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: #ffc107;
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(20px);
}

/* ─── Mobile ────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .cookie-banner-inner {
    padding: 1rem;
    gap: 1rem;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
    font-size: 0.78rem;
    padding: 8px 10px;
  }
}

/* ─── Footer base ───────────────────────────────────────────── */
.site-footer {
  background: #111418;
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  border-top: 3px solid #ffc107;
}

.sf-main { padding: 3rem 1rem 2rem; }

/* ─── Brand ─────────────────────────────────────────────────── */
.sf-brand {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffc107;
  margin-bottom: 0.2rem;
  letter-spacing: -0.3px;
}

.sf-stars {
  color: #ffc107;
  font-size: 0.78rem;
  margin-bottom: 0.9rem;
}

.sf-location { color: rgba(255,255,255,0.55); }

/* ─── Address ───────────────────────────────────────────────── */
.sf-address {
  font-style: normal;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}

.sf-address a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.18s;
}

.sf-address a:hover { color: #ffc107; }

/* ─── Mini mapa ─────────────────────────────────────────────── */
.sf-map-wrap {
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.1);
}

.sf-map {
  width: 100%;
  height: 140px;
}

/* ─── Section heading ───────────────────────────────────────── */
.sf-heading {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #ffc107;
  margin-bottom: 0.9rem;
}

/* ─── Nav links ─────────────────────────────────────────────── */
.sf-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sf-links li { margin-bottom: 0.45rem; }

.sf-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.18s;
}

.sf-links a:hover { color: #ffc107; }

/* ─── Social icons ──────────────────────────────────────────── */
.sf-social { display: flex; gap: 10px; }

.sf-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}

.sf-social a:hover {
  background: #ffc107;
  color: #111;
}

/* ─── Suscripción ───────────────────────────────────────────── */
.sf-sub-desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

.sf-form { margin-bottom: 0.5rem; }

.sf-input-wrap {
  display: flex;
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.15);
}

.sf-input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: none;
  outline: none;
  padding: 9px 12px;
  font-size: 0.85rem;
  color: #fff;
}

.sf-input::placeholder { color: rgba(255,255,255,0.35); }

.sf-input:focus { background: rgba(255,255,255,0.12); }

.sf-btn {
  background: #ffc107;
  border: none;
  color: #111;
  padding: 9px 15px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.18s;
  flex-shrink: 0;
}

.sf-btn:hover { background: #ffca2c; }
.sf-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.sf-error {
  display: block;
  color: #f87171;
  font-size: 0.75rem;
  margin-top: 4px;
}

.sf-msg { font-size: 0.82rem; margin: 4px 0 0; }
.sf-msg--ok  { color: #4ade80; }
.sf-msg--err { color: #f87171; }

.sf-gdpr {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.65rem;
  line-height: 1.5;
}

.sf-gdpr a {
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
}

.sf-gdpr a:hover { color: #ffc107; }

/* ─── Bottom bar ────────────────────────────────────────────── */
.sf-bottom {
  background: #0b0d0f;
  padding: 0.9rem 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.sf-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.18s;
}

.sf-bottom a:hover { color: #ffc107; }

.sf-cookie-btn {
  background: none;
  border: none;
  padding: 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.18s;
}

.sf-cookie-btn:hover { color: #ffc107; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 767px) {
  .sf-main { padding: 2rem 1rem 1.5rem; }
}

/* ─── Header ────────────────────────────────────────────────── */
.site-header {
  background: #fff;
  border-bottom: 3px solid #ffc107;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 10px 0;
  position: relative;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── Brand ─────────────────────────────────────────────────── */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand:hover {
  text-decoration: none;
}

.brand-logo {
  height: 68px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.12));
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.72rem;
  color: #868e96;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* ─── Quick access buttons ──────────────────────────────────── */
.quick-access {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 7px;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid #ffc107;
  color: #856404;
  background: #fff;
  transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease;
  white-space: nowrap;
}

.quick-btn:hover {
  background: #ffc107;
  color: #212529;
  text-decoration: none;
  transform: translateY(-1px);
}

.quick-btn--whatsapp {
  border-color: #25d366;
  color: #1a8f48;
}

.quick-btn--whatsapp:hover {
  background: #25d366;
  color: #fff;
}

/* ─── Mobile ────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .brand-tagline {
    display: none;
  }

  .quick-label {
    display: none;
  }

  .quick-btn {
    padding: 9px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
    gap: 0;
  }

  .quick-btn i {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    height: 50px;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .quick-access {
    gap: 6px;
  }

  .quick-btn {
    width: 36px;
    height: 36px;
  }
}

/* ─── Hero ─────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  height: 82vh;
  min-height: 520px;
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}

.hero-img {
  object-fit: cover;
}

.hero-carousel-btn {
  top: 20px !important;
  bottom: auto !important;
  height: 48px !important;
  width: 48px !important;
  border-radius: 50% !important;
  background: rgba(0,0,0,0.45) !important;
  margin: 0 8px;
  z-index: 15 !important;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.hero-carousel-btn:hover {
  opacity: 1;
  background: rgba(0,0,0,0.7) !important;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.65) 60%, rgba(0,0,0,0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
  padding: 1rem;
}

.hero-content {
  pointer-events: all;
  text-align: center;
  width: 100%;
  max-width: 860px;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  color: #ffc107;
  text-shadow: 2px 3px 10px rgba(0,0,0,0.6);
  margin-bottom: 0.4rem;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2.5vw, 1.15rem);
  color: rgba(255,255,255,0.92);
  margin-bottom: 1.8rem;
  letter-spacing: 0.5px;
}

/* ─── Features ──────────────────────────────────────────────── */
.feature-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  padding: 1rem 0.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.feature-label {
  margin-bottom: 0;
  font-size: clamp(0.7rem, 1.5vw, 0.82rem);
  font-weight: 600;
  line-height: 1.3;
  word-break: break-word;
  hyphens: auto;
}

/* ─── Section heading ───────────────────────────────────────── */
.section-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #212529;
  position: relative;
  padding-bottom: 0.6rem;
}

.section-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #ffc107;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* ─── Room preview cards ────────────────────────────────────── */
.room-preview-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.room-preview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.room-preview-featured {
  border: 2px solid #ffc107;
}

.room-preview-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ffc107;
  color: #212529;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.room-preview-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.room-preview-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-preview-body h5 {
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.5rem;
}

.room-preview-body p {
  flex: 1;
}

/* ─── Amenity badges ────────────────────────────────────────── */
.room-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.badge-amenity {
  font-size: 0.72rem;
  background: #fff8e1;
  color: #664d03;
  border: 1px solid #ffe08a;
  border-radius: 20px;
  padding: 3px 9px;
  white-space: nowrap;
}

.badge-amenity i {
  margin-right: 3px;
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-section {
    height: 70vh;
    min-height: 480px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 85vh;
  }
}

/* ─── Nav bar ───────────────────────────────────────────────── */
.site-nav {
  background: #fff !important;
  border-bottom: 2px solid #f0f0f0;
  padding: 0 !important;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

/* ─── Nav links ─────────────────────────────────────────────── */
.site-nav .nav-link {
  color: #495057 !important;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 1.05rem 1rem !important;
  position: relative;
  transition: color 0.2s ease;
}

/* Indicador amarillo deslizante */
.site-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 3px;
  background: #ffc107;
  border-radius: 3px 3px 0 0;
  transition: left 0.22s ease, right 0.22s ease;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.is-active {
  color: #1a1a2e !important;
}

.site-nav .nav-link:hover::after,
.site-nav .nav-link.is-active::after {
  left: 6px;
  right: 6px;
}

/* ─── Botón Reservar ────────────────────────────────────────── */
.btn-reservar {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 22px;
  background: #ffc107;
  color: #212529 !important;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 7px;
  text-decoration: none !important;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.18s ease, transform 0.15s ease;
}

.btn-reservar:hover {
  background: #e0a800;
  transform: translateY(-1px);
}

/* ─── Hamburguesa personalizada ─────────────────────────────── */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1.5px solid #dee2e6 !important;
  border-radius: 7px;
  padding: 8px 10px;
  cursor: pointer;
  margin-left: auto;
  box-shadow: none !important;
  outline: none !important;
}

.nav-toggle:focus {
  border-color: #ffc107 !important;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #495057;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animación X al abrir */
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Desktop: ocultar toggle ───────────────────────────────── */
@media (min-width: 992px) {
  .nav-toggle {
    display: none !important;
  }
}

/* ─── Mobile: menú desplegable ──────────────────────────────── */
@media (max-width: 991px) {
  .site-nav .navbar-collapse {
    border-top: 1px solid #f0f0f0;
    margin-top: 4px;
    padding: 8px 0 12px;
  }

  .site-nav .nav-link {
    padding: 0.7rem 0.5rem !important;
    font-size: 0.88rem;
    border-bottom: 1px solid #f5f5f5;
  }

  .site-nav .nav-link::after {
    display: none;
  }

  .site-nav .nav-link.is-active {
    color: #ffc107 !important;
    padding-left: 1rem !important;
    border-left: 3px solid #ffc107;
  }

  .btn-reservar {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    border-radius: 8px;
  }
}

/* ─── Hero ──────────────────────────────────────────────────── */
.offers-hero {
  background: linear-gradient(135deg, #1a1d20 0%, #2d3436 100%);
  border-bottom: 3px solid #ffc107;
  padding: 4rem 1rem 3.5rem;
}

.offers-hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #ffc107;
  margin-bottom: 0.6rem;
}

.offers-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin: 0 auto;
}

/* ─── Offers grid ───────────────────────────────────────────── */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

/* ─── Offer card ────────────────────────────────────────────── */
.offer-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem 1.5rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1.5px solid #f0f0f0;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.13);
}

/* ─── Badges ────────────────────────────────────────────────── */
.offer-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.badge-flex    { background: #d4edda; color: #155724; }
.badge-price   { background: #fff3cd; color: #856404; }
.badge-popular { background: #ffc107; color: #212529; }

/* ─── Icon ──────────────────────────────────────────────────── */
.offer-icon {
  width: 56px;
  height: 56px;
  background: #fff8e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  border: 2px solid #ffe08a;
}

.offer-icon i {
  font-size: 1.4rem;
  color: #ffc107;
}

/* ─── Card content ──────────────────────────────────────────── */
.offer-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 0.5rem;
}

.offer-desc {
  font-size: 0.88rem;
  color: #6c757d;
  text-align: center;
  line-height: 1.5;
  flex: 1;
  margin-bottom: 1rem;
}

/* ─── Terms ─────────────────────────────────────────────────── */
.offer-terms {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  border-top: 1px solid #f0f0f0;
  padding-top: 0.9rem;
}

.offer-terms li {
  font-size: 0.8rem;
  color: #495057;
  padding: 3px 0;
}

/* ─── Book button ───────────────────────────────────────────── */
.btn-offer-book {
  display: block;
  text-align: center;
  background: #ffc107;
  color: #212529;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.18s ease;
}

.btn-offer-book:hover {
  background: #e0a800;
  color: #212529;
  text-decoration: none;
}

/* ─── Flash banner ──────────────────────────────────────────── */
.flash-banner {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  border-radius: 14px;
  overflow: hidden;
}

.flash-banner-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  flex-wrap: wrap;
}

.flash-icon {
  font-size: 2.5rem;
  color: #212529;
  flex-shrink: 0;
  animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.15); }
}

.flash-content {
  flex: 1;
  min-width: 200px;
}

.flash-content h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #212529;
  margin-bottom: 0.3rem;
}

.flash-content p {
  font-size: 0.9rem;
  color: #343a40;
  margin: 0;
}

.flash-btn {
  flex-shrink: 0;
  background: #212529;
  color: #ffc107;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.18s ease;
  white-space: nowrap;
}

.flash-btn:hover {
  background: #1a1a2e;
  color: #ffc107;
  text-decoration: none;
}

/* ─── Contact form ──────────────────────────────────────────── */
.contact-card {
  background: #fff;
  border-radius: 14px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  max-width: 760px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.4rem;
}

.form-control:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 3px rgba(255,193,7,0.2);
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 576px) {
  .flash-banner-inner {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
  }

  .flash-btn {
    width: 100%;
    text-align: center;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Hero ───────────────────────────────────────────────────── */
.places-hero {
  background: linear-gradient(135deg, #1a1d20 0%, #2d3436 100%);
  border-bottom: 3px solid #ffc107;
  padding: 3.5rem 1rem 3rem;
  text-align: center;
}

.places-hero-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #ffc107;
  margin-bottom: 0.6rem;
}

.places-hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── Section title ──────────────────────────────────────────── */
.places-section-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #ffc107;
  display: inline-block;
}

/* ─── Places grid ────────────────────────────────────────────── */
.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

/* ─── Place card ─────────────────────────────────────────────── */
.place-card {
  display: flex;
  gap: 1rem;
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  border: 1.5px solid #f0f0f0;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.place-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.place-icon-wrap {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: #fff8e1;
  border: 2px solid #ffe08a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #ffc107;
}

.place-body { flex: 1; min-width: 0; }

.place-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.place-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.place-dist {
  font-size: 0.78rem;
  color: #856404;
  background: #fff8e1;
  border: 1px solid #ffe08a;
  border-radius: 20px;
  padding: 2px 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.place-dist i { margin-right: 3px; }

.place-desc {
  font-size: 0.82rem;
  color: #6c757d;
  line-height: 1.5;
  margin: 0 0 0.6rem;
}

.place-tags { display: flex; flex-wrap: wrap; gap: 5px; }

.place-tag {
  font-size: 0.72rem;
  font-weight: 600;
  background: #f8f9fa;
  color: #495057;
  border: 1px solid #dee2e6;
  border-radius: 20px;
  padding: 2px 8px;
}

/* ─── Transport ──────────────────────────────────────────────── */
.transport-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1.5px solid #f0f0f0;
  height: 100%;
}

.transport-icon {
  font-size: 1.6rem;
  color: #ffc107;
  margin-bottom: 0.5rem;
  display: block;
}

.transport-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.2rem;
}

.transport-val {
  font-size: 0.82rem;
  color: #495057;
  margin: 0;
}

/* ─── Map (estilos del directive existente) ──────────────────── */
.places-map {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.map-container {
  flex: 2;
  min-width: 280px;
}

#map {
  height: 420px;
  width: 100%;
  border-radius: 12px;
  border: 1.5px solid #dee2e6;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.places-list {
  flex: 1;
  min-width: 220px;
}

.places-list h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}

.places-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 420px;
  overflow-y: auto;
}

.places-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.82rem;
  color: #495057;
  gap: 0.5rem;
}

.places-list li:last-child { border-bottom: none; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 576px) {
  .places-grid { grid-template-columns: 1fr; }
  .places-map  { flex-direction: column; }
}

/* ─── Botón disparador ──────────────────────────────────────────── */
.pw-trigger-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #212529;
  color: #fff;
  border: 1.5px solid #212529;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
  text-decoration: none;
}

.pw-trigger-btn:hover {
  background: #ffc107;
  border-color: #ffc107;
  color: #212529;
}

/* ─── Overlay ────────────────────────────────────────────────────── */
.pw-overlay {
  position: fixed;
  inset: 0;
  z-index: 99000;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 12px 12px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* ─── Modal (contenedor del iframe) ────────────────────────────── */
.pw-modal {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

/* ─── Iframe ─────────────────────────────────────────────────────── */
.pw-modal-iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: none;
  background: transparent;
  transition: opacity 0.2s ease;
}

/* ─── Loading overlay ───────────────────────────────────────────── */
.pw-modal-loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  min-height: 120px;
}

.pw-modal-spin {
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 3px solid rgba(255, 193, 7, 0.3);
  border-top-color: #ffc107;
  border-radius: 50%;
  animation: pw-spin 0.7s linear infinite;
}

@keyframes pw-spin {
  to { transform: rotate(360deg); }
}

/* ─── Stacking context cuando el portal está abierto ───────────── */
/*
  El overlay vive DENTRO del stacking context del nav (z-index:200).
  Para que supere al hero-overlay (z-index:10 en root) y al cookie
  banner (z-index:10000 en root), elevamos el nav al nivel más alto
  y bajamos lo que quedaría por encima.
*/
body.pw-body-lock .site-nav {
  z-index: 99999 !important;
}
body.pw-body-lock .site-header,
body.pw-body-lock .cookie-banner {
  z-index: 0 !important;
}

/* ─── Mobile: pantalla completa ─────────────────────────────────── */
@media (max-width: 600px) {
  .pw-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .pw-modal {
    max-width: 100%;
    border-radius: 16px 16px 0 0;
  }
}

/* ─── Privacy page ──────────────────────────────────────────── */
.privacy-hero {
  background: linear-gradient(135deg, #1a1d20 0%, #2d3436 100%);
  border-bottom: 3px solid #ffc107;
  padding: 3.5rem 1rem 3rem;
  text-align: center;
}

.privacy-hero-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #ffc107;
  margin-bottom: 0.5rem;
}

.privacy-hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin: 0;
}

/* ─── Layout ────────────────────────────────────────────────── */
.privacy-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
  color: #212529;
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ─── TOC ───────────────────────────────────────────────────── */
.privacy-toc {
  background: #f8f9fa;
  border: 1.5px solid #e9ecef;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}

.privacy-toc h2 {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6c757d;
  margin-bottom: 0.75rem;
}

.privacy-toc ol {
  margin: 0;
  padding-left: 1.25rem;
}

.privacy-toc li { margin-bottom: 0.25rem; }
.privacy-toc a  { color: #856404; text-decoration: none; font-size: 0.88rem; }
.privacy-toc a:hover { text-decoration: underline; }

/* ─── Sections ──────────────────────────────────────────────── */
.privacy-section {
  margin-bottom: 2.5rem;
  scroll-margin-top: 80px;
}

.privacy-section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a2e;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #ffc107;
  margin-bottom: 1rem;
}

.privacy-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #343a40;
  margin: 1.25rem 0 0.5rem;
}

.privacy-section p, .privacy-section li {
  color: #495057;
}

.privacy-section ul, .privacy-section ol {
  padding-left: 1.4rem;
}

.privacy-section li { margin-bottom: 0.3rem; }

/* ─── Info box ──────────────────────────────────────────────── */
.privacy-info-box {
  background: #fff8e1;
  border: 1.5px solid #ffe08a;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.privacy-info-box p {
  margin: 0;
  color: #856404;
  font-size: 0.88rem;
}

/* ─── Table ─────────────────────────────────────────────────── */
.privacy-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid #dee2e6;
  margin-top: 1rem;
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  min-width: 560px;
}

.privacy-table th {
  background: #f8f9fa;
  color: #6c757d;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.4px;
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1.5px solid #dee2e6;
}

.privacy-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #f0f0f0;
  color: #495057;
  vertical-align: top;
}

.privacy-table tr:last-child td { border-bottom: none; }
.privacy-table tr:hover td { background: #fafafa; }

.cookie-cat-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.cat-tecnica   { background: #e8f4fd; color: #0c63e4; }
.cat-analitica { background: #d4edda; color: #155724; }
.cat-marketing { background: #fff3cd; color: #856404; }

/* ─── Rights list ───────────────────────────────────────────── */
.rights-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rights-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.rights-list li:last-child { border-bottom: none; }

.rights-icon {
  width: 32px;
  height: 32px;
  background: #fff8e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid #ffe08a;
}

.rights-icon i {
  font-size: 0.85rem;
  color: #ffc107;
}

.rights-text strong { color: #1a1a2e; display: block; font-size: 0.88rem; }
.rights-text span   { color: #6c757d; font-size: 0.82rem; }

/* ─── AEPD callout ──────────────────────────────────────────── */
.aepd-box {
  background: #f8f9fa;
  border-left: 4px solid #ffc107;
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  color: #495057;
  margin-top: 1rem;
}

.aepd-box a { color: #856404; text-decoration: underline; }

/* ─── Cookie prefs CTA ──────────────────────────────────────── */
.cookie-prefs-cta {
  background: #fff8e1;
  border: 1.5px solid #ffe08a;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  margin-top: 3rem;
}

.cookie-prefs-cta p {
  color: #856404;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}

.btn-cookie-prefs {
  background: #ffc107;
  color: #212529;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.18s ease;
}

.btn-cookie-prefs:hover { background: #e0a800; }

/* ─── Updated label ─────────────────────────────────────────── */
.privacy-updated {
  font-size: 0.8rem;
  color: #6c757d;
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #dee2e6;
}

/* ─── Header ───────────────────────────────────────────── */
.services-header {
  background: linear-gradient(135deg, #1a1d20 0%, #343a40 100%);
  border-bottom: 3px solid #ffc107;
}

.services-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 1px;
}

/* ─── Section title ────────────────────────────────────── */
.section-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #212529;
  position: relative;
  padding-bottom: 0.6rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #ffc107;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* ─── Rooms grid ───────────────────────────────────────── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* ─── Room card ────────────────────────────────────────── */
.room-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.room-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.room-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.4rem;
}

.room-card-desc {
  color: #6c757d;
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
}

.room-capacity {
  color: #495057;
  font-size: 0.9rem;
}

/* ─── Amenity tags ─────────────────────────────────────── */
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
}

.amenity-tag {
  font-size: 0.78rem;
  background: #fffbf0;
  border: 1px solid #ffe08a;
  color: #5a4100;
  border-radius: 20px;
  padding: 4px 10px;
  white-space: nowrap;
}

/* ─── Facility items ───────────────────────────────────── */
.facility-item {
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #e9ecef;
  transition: background 0.2s ease;
}

.facility-item:hover {
  background: #fff8e1;
  border-color: #ffc107;
}

/* ─── Carousel overrides ───────────────────────────────── */
.room-card .carousel-control-prev,
.room-card .carousel-control-next {
  width: 2.2rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.room-card:hover .carousel-control-prev,
.room-card:hover .carousel-control-next {
  opacity: 1;
}

.room-card .carousel-control-prev-icon,
.room-card .carousel-control-next-icon {
  background-color: rgba(0,0,0,0.5);
  border-radius: 50%;
  padding: 14px;
  background-size: 50%;
}

.room-card .carousel-indicators {
  margin-bottom: 0;
}

.room-card .carousel-indicators button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.7);
}

.room-card .carousel-indicators .active {
  background-color: #ffc107;
}

/* ─── Responsive ───────────────────────────────────────── */
@media (max-width: 576px) {
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  .room-card-img {
    height: 220px;
  }
}

