/*
Theme Name: Hamsa House Stay
Theme URI: https://pekao.es
Author: Hamsa House
Description: Tema que replica el diseño original de Hamsa House (React). Colores, tipografía y secciones idénticos.
Version: 1.0
Text Domain: hamsa-house
*/

/* Bagerich Regular (fonts/Bagerich-Regular.woff) */
@font-face {
  font-family: 'Bagerich';
  src: url('fonts/Bagerich-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --hh-dark: #2e2c2a;
  --hh-dark-2: #474341;
  --hh-gold: #c29a5c;
  --hh-gold-hover: #b08a4c;
  --hh-bg: #f3eee8;
  --hh-bg-2: #f7eee8;
  --hh-title: #e0b9a0;
  --hh-text: #7a6e6e;
  --hh-text-2: #737171;
  --hh-card-bg: #ead5ca;
  --font-heading: 'Bagerich', 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: var(--font-body); color: var(--hh-text); background: #fff; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); }
button, input, select, textarea,
.hh-nav a, .hh-btn-room, .hh-btn-book, .hh-apt-btn-reservar, .hh-btn-submit, .hh-legal-strip a,
.hh-footer, .hh-footer a, .hh-footer-brand, .hh-footer-nav a, .hh-footer-back,
.hh-mobile-panel, .hh-mobile-panel a, .hh-mobile-panel nav a,
.hh-room-hero-back, .hh-services-toggle, .hh-contact-form label { font-family: var(--font-body); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* Header - fixed, gradient, gold line */
.hh-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s;
  background: linear-gradient(to bottom, var(--hh-dark), var(--hh-dark-2));
}
.hh-header.scrolled {
  background: rgba(46, 44, 42, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}
.hh-header-accent { height: 1px; background: linear-gradient(to right, transparent, var(--hh-gold), transparent); }
.hh-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding: 0 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}
.hh-logo { height: 80px; width: auto; opacity: 0.95; }
.hh-logo:hover { opacity: 1; }
.hh-nav { display: none; }
@media (min-width: 1024px) {
  .hh-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex: 1;
    justify-content: center;
  }
}
.hh-nav a {
  position: relative;
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.hh-nav a:hover { color: #fff; }
.hh-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--hh-gold);
  transition: width 0.3s;
}
.hh-nav a:hover::after { width: 100%; }
.hh-header-right { display: none; }
@media (min-width: 1024px) {
  .hh-header-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }
}
.hh-header-right a { color: rgba(255,255,255,0.6); transition: color 0.3s; }
.hh-header-right a:hover { color: var(--hh-gold); }
.hh-header-divider { border-right: 1px solid rgba(255,255,255,0.2); padding-right: 1.25rem; margin-right: 0.5rem; }
.hh-btn-book {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--hh-gold);
  color: #fff !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.3s;
}
.hh-btn-book:hover { background: var(--hh-gold-hover); }
.hh-menu-toggle { display: block; background: none; border: none; color: #fff; padding: 0.5rem; cursor: pointer; }
@media (min-width: 1024px) { .hh-menu-toggle { display: none; } }
.hh-header-line { height: 1px; background: rgba(255,255,255,0.1); }

/* Mobile menu */
.hh-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
}
.hh-mobile-menu.active { display: block; }
.hh-mobile-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); }
.hh-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 18rem;
  height: 100%;
  background: var(--hh-dark);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  padding: 6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
}
.hh-mobile-panel nav { display: flex; flex-direction: column; gap: 0.25rem; }
.hh-mobile-panel a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s;
}
.hh-mobile-panel a:hover { color: var(--hh-gold); }
.hh-mobile-accent { height: 1px; background: linear-gradient(to right, var(--hh-gold), transparent); margin-bottom: 2rem; }
.hh-mobile-actions { margin-top: auto; }
.hh-mobile-actions .hh-btn-book { width: 100%; justify-content: center; margin-bottom: 1rem; }
.hh-mobile-icons { display: flex; justify-content: center; gap: 1.5rem; }
.hh-mobile-icons a { color: rgba(255,255,255,0.5); }
.hh-mobile-icons a:hover { color: var(--hh-gold); }

/* Hero - fullscreen */
.hh-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.hh-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hh-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); }
.hh-hero-content { position: relative; z-index: 10; text-align: center; }
.hh-hero-label { color: #fff; font-size: 0.75rem; font-weight: 700; letter-spacing: 2.5px; margin-bottom: 1rem; text-transform: uppercase; }
@media (min-width: 768px) { .hh-hero-label { font-size: 0.875rem; } }
.hh-hero-logo-img { width: 16rem; margin: 0 auto; }
@media (min-width: 768px) { .hh-hero-logo-img { width: 500px; } }
@media (min-width: 1024px) { .hh-hero-logo-img { width: 650px; } }
.hh-hero-arrow { position: absolute; bottom: 2rem; opacity: 0.8; }
.hh-hero-arrow img { width: 2rem; height: 2rem; animation: hh-bounce 2s infinite; }
@media (min-width: 768px) { .hh-hero-arrow img { width: 2.5rem; height: 2.5rem; } }
@keyframes hh-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Page hero (inner pages) - contenido centrado en columna como en el original */
.hh-page-hero {
  position: relative;
  height: 50vh;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}
.hh-page-hero .hh-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hh-page-hero .hh-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.4), rgba(0,0,0,0.6)); }
.hh-page-hero .hh-page-hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hh-page-hero h1 {
  position: relative;
  z-index: 10;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: #fff;
  letter-spacing: 0.05em;
  margin: 0 0 1rem;
}
@media (min-width: 768px) { .hh-page-hero h1 { font-size: 4.5rem; } }
.hh-page-hero .hh-hero-line { position: relative; z-index: 10; width: 6rem; height: 1px; background: rgba(255,255,255,0.6); margin: 0 auto 1.5rem; }
.hh-page-hero .hh-page-hero-subtitle { position: relative; z-index: 10; color: rgba(255,255,255,0.9); font-size: 1.125rem; font-weight: 300; max-width: 32rem; margin: 0; line-height: 1.5; }
@media (min-width: 768px) { .hh-page-hero .hh-page-hero-subtitle { font-size: 1.25rem; } }

/* Sections - common */
.hh-section { padding: 4rem 1rem; }
@media (min-width: 768px) { .hh-section { padding: 6rem 1rem; } }
.hh-section-bg { background: var(--hh-bg); }
.hh-section-title {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--hh-title);
  text-align: center;
  margin: 0 0 1.5rem;
}
@media (min-width: 768px) { .hh-section-title { font-size: 3rem; } }
.hh-ornament { display: flex; justify-content: center; margin: 2rem 0; }
.hh-ornament img { height: 1rem; width: 10rem; object-fit: contain; }
.hh-section-text { color: var(--hh-text); font-size: 1rem; line-height: 1.75; max-width: 56rem; margin: 0 auto; text-align: center; }

/* Experience - 2 cols */
.hh-experience-grid { display: grid; gap: 3rem; max-width: 72rem; margin: 0 auto; }
@media (min-width: 1024px) { .hh-experience-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.hh-experience-text p { color: var(--hh-text-2); font-size: 1rem; line-height: 1.75; margin: 0 0 1.5rem; }
.hh-experience-img { width: 100%; border-radius: 0.5rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); transition: transform 0.5s; }
.hh-experience-img:hover { transform: scale(1.05); }

/* Parallax block */
.hh-parallax { position: relative; width: 100%; height: 500px; overflow: hidden; background: var(--hh-dark-2); }
.hh-parallax img { width: 100%; height: 100%; object-fit: cover; }
.hh-parallax::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.2), transparent, rgba(0,0,0,0.2)); }
@media (max-width: 1023px) { .hh-parallax { display: none; } }

/* Gallery grid */
.hh-gallery { padding: 0; }
.hh-gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; padding: 0 1.25rem; }
@media (min-width: 768px) { .hh-gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.hh-gallery-item { position: relative; overflow: hidden; cursor: pointer; min-height: 290px; }
.hh-gallery-item.gallery-large { grid-column: span 2; grid-row: span 2; min-height: 600px; }
.hh-gallery-item > div { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.5s; }
.hh-gallery-item:hover > div { transform: scale(1.1); }

/* Services accordion */
/* Servicios (home): título e intro alineados a la izquierda, sin hueco raro */
.hh-services-section { padding-top: 2.5rem; padding-bottom: 2.5rem; }
@media (min-width: 768px) { .hh-services-section { padding-top: 3.5rem; padding-bottom: 3.5rem; } }
.hh-services-container { max-width: 72rem; }
.hh-services-title { text-align: left; margin-bottom: 0.75rem; }
.hh-services-intro { text-align: left; max-width: 100%; margin: 0 0 1.5rem; color: #3e3b3b; }
.hh-services-list { border-top: 1px solid #eee; }
.hh-services-toggle {
  width: 100%;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity 0.3s;
}
.hh-services-toggle:hover { opacity: 0.7; }
.hh-services-content { overflow: hidden; }
.hh-services-content ul { list-style: none; padding: 0 0 1.5rem 1.5rem; margin: 0; }
.hh-services-content li { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--hh-text-2); margin-bottom: 0.5rem; }
.hh-services-content li::before { content: ''; margin-top: 6px; width: 6px; height: 6px; border-radius: 50%; background: var(--hh-text-2); flex-shrink: 0; }

/* Location images */
.hh-location-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .hh-location-grid { grid-template-columns: repeat(4, 1fr); } }
.hh-location-item { position: relative; overflow: hidden; padding-bottom: 75%; }
.hh-location-item > div { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s; }
.hh-location-item:hover > div { transform: scale(1.1); }

/* Logo strip */
.hh-logo-section { background: var(--hh-bg); padding: 2rem 1rem; border-top: 1px solid rgba(0,0,0,0.2); text-align: center; }
.hh-logo-section img { height: 3rem; margin: 0 auto; opacity: 0.8; }
@media (min-width: 768px) { .hh-logo-section img { height: 4rem; } }

/* Legal strip */
.hh-legal-strip { background: var(--hh-title); padding: 1rem; text-align: center; }
.hh-legal-strip a { color: #000; font-size: 0.875rem; }
.hh-legal-strip a:hover { text-decoration: underline; }

/* Footer */
.hh-footer { background: var(--hh-dark-2); color: #fff; padding: 2rem 1rem; }
.hh-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 768px) { .hh-footer-inner { flex-direction: row; } }
.hh-footer nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2rem; }
.hh-footer a { font-size: 0.875rem; transition: opacity 0.3s; }
.hh-footer a:hover { opacity: 0.7; }
.hh-footer-back { display: flex; align-items: center; gap: 0.5rem; background: none; border: none; color: #fff; font-size: 0.875rem; cursor: pointer; }
.hh-footer-back:hover { opacity: 0.7; }

/* Contact page */
.hh-contact-page { background: var(--hh-bg-2); min-height: 100vh; }
.hh-contact-grid { display: grid; gap: 4rem; padding: 5rem 1.5rem; max-width: 80rem; margin: 0 auto; }
@media (min-width: 1024px) { .hh-contact-grid { grid-template-columns: 1fr 1fr; } }
.hh-contact-title { font-family: var(--font-heading); font-size: 2.25rem; color: var(--hh-dark-2); margin: 0 0 1.5rem; }
@media (min-width: 768px) { .hh-contact-title { font-size: 3rem; } }
.hh-contact-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.hh-contact-card:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.hh-contact-icon { width: 3.5rem; height: 3.5rem; border-radius: 50%; background: var(--hh-card-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hh-contact-icon svg { width: 1.5rem; height: 1.5rem; color: var(--hh-dark-2); }
.hh-contact-card h3 { color: var(--hh-dark-2); font-size: 1.125rem; margin: 0 0 0.5rem; }
.hh-contact-card p, .hh-contact-card a { color: var(--hh-text); margin: 0; }
.hh-contact-card a:hover { color: var(--hh-gold); }
.hh-contact-form-wrap { background: #fff; padding: 2rem; border-radius: 2px; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.hh-contact-form h3 { font-family: var(--font-heading); font-size: 1.875rem; color: var(--hh-dark-2); margin: 0 0 2rem; }
.hh-contact-form label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--hh-dark-2); margin-bottom: 0.5rem; }
.hh-contact-form input, .hh-contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 2px;
  font-size: 1rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.hh-contact-form input:focus, .hh-contact-form textarea:focus {
  outline: none;
  border-color: var(--hh-gold);
  box-shadow: 0 0 0 2px rgba(194, 154, 92, 0.3);
}
.hh-contact-form textarea { resize: none; min-height: 150px; }
.hh-contact-form .hh-btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--hh-dark-2);
  color: #fff;
  border: none;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.3s;
}
.hh-contact-form .hh-btn-submit:hover { background: #5a524f; }
.hh-map-wrap { width: 100%; height: 500px; filter: grayscale(1); }
.hh-map-wrap:hover { filter: grayscale(0); }
.hh-map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* Legal page */
.hh-legal-page { background: var(--hh-bg-2); padding: 5rem 1.5rem; }
.hh-legal-content { max-width: 56rem; margin: 0 auto; background: #fff; padding: 2rem; border-radius: 2px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); color: var(--hh-dark-2); }
.hh-legal-content h2 { font-family: var(--font-heading); margin-top: 2rem; }
.hh-legal-content h3 { font-size: 1.125rem; margin: 1.5rem 0 0.75rem; }
.hh-legal-content p, .hh-legal-content li { color: var(--hh-text); line-height: 1.75; }

/* Main content area (for default page template) */
.hh-main { padding-top: 90px; }
.hh-page-content { padding: 5rem 1.5rem; max-width: 56rem; margin: 0 auto; }
.hh-page-content h2 { font-family: var(--font-heading); color: var(--hh-title); font-size: 1.875rem; }
@media (min-width: 768px) { .hh-page-content h2 { font-size: 2.25rem; } }

/* Room / Apartment blocks (contenido rescatado del ZIP) */
.hh-rooms-wrap { padding: 4rem 1.5rem; max-width: 80rem; margin: 0 auto; }
.hh-room-block { display: flex; flex-direction: column; gap: 3rem; align-items: center; margin-bottom: 6rem; }
.hh-room-block:last-of-type { margin-bottom: 0; }
@media (min-width: 1024px) {
  .hh-room-block { flex-direction: row; gap: 3rem; }
  .hh-room-block--reverse { flex-direction: row-reverse; }
}
.hh-room-block .hh-room-image { width: 100%; overflow: hidden; border-radius: 2px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
@media (min-width: 1024px) { .hh-room-block .hh-room-image { width: 50%; } }
.hh-room-block .hh-room-image img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform 0.7s; }
.hh-room-block .hh-room-image:hover img { transform: scale(1.05); }
.hh-room-block .hh-room-body { width: 100%; padding: 0 1rem; }
@media (min-width: 1024px) { .hh-room-block .hh-room-body { width: 50%; max-width: 36rem; } }
.hh-room-block .hh-room-body h3 { font-family: var(--font-heading); font-size: 2rem; color: var(--hh-dark-2); margin: 0 0 1rem; }
@media (min-width: 768px) { .hh-room-block .hh-room-body h3 { font-size: 2.5rem; } }
.hh-room-block .hh-room-line { width: 4rem; height: 1px; background: var(--hh-gold); margin-bottom: 1.5rem; }
.hh-room-block .hh-room-body p { color: var(--hh-text); font-size: 1.125rem; line-height: 1.75; margin-bottom: 2rem; }
.hh-room-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-bottom: 2rem; color: var(--hh-text-2); font-size: 0.875rem; }
.hh-room-features .hh-room-feature { display: flex; align-items: center; gap: 0.75rem; }
.hh-feature-icon { color: var(--hh-gold); flex-shrink: 0; width: 1.25rem; height: 1.25rem; }
.hh-room-block .hh-btn-room { display: inline-block; border: 2px solid var(--hh-dark-2); color: var(--hh-dark-2); padding: 1rem 2.5rem; font-size: 0.875rem; font-weight: 600; letter-spacing: 0.15em; transition: all 0.3s; }
.hh-room-block .hh-btn-room:hover { background: var(--hh-dark-2); color: #fff; }
.hh-room-block .hh-room-image a { display: block; cursor: pointer; }
.hh-room-block .hh-room-image a:hover img { transform: scale(1.05); }
.hh-room-title-link { color: inherit; transition: color 0.2s; }
.hh-room-title-link:hover { color: var(--hh-gold); }

/* Room detail page (página de cada habitación) - según imagen de referencia */
.hh-room-detail-page { background: var(--hh-bg-2); padding-top: 5.5rem; }
.hh-room-detail-back { background: var(--hh-bg-2); }
.hh-room-back-link { color: var(--hh-dark-2); font-size: 0.9375rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.25rem; transition: color 0.2s; }
.hh-room-back-link:hover { color: var(--hh-gold); }

.hh-room-hero-wrap { max-width: 72rem; margin: -5rem auto 0; padding: 0 1.5rem; }
.hh-room-hero { position: relative; width: 100%; aspect-ratio: 21/9; min-height: 280px; max-height: 50vh; overflow: hidden; border-radius: 8px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15); }
.hh-room-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.hh-room-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 45%, transparent 70%), linear-gradient(to right, rgba(0,0,0,0.5) 0%, transparent 55%); }
.hh-room-hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem 1.5rem 2rem; max-width: 72rem; margin: 0; text-align: left; }
@media (min-width: 1024px) { .hh-room-hero-content { padding: 3rem 2rem 2.5rem; } }
.hh-room-hero-back { color: #fff; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.75rem; display: inline-block; transition: color 0.2s; text-decoration: none; }
.hh-room-hero-back:hover { color: rgba(255,255,255,0.9); }
.hh-room-hero-title { font-family: var(--font-heading); font-size: 2rem; font-weight: 600; color: #fff; margin: 0 0 0.35rem; line-height: 1.2; }
@media (min-width: 768px) { .hh-room-hero-title { font-size: 2.75rem; } }
.hh-room-hero-meta { color: rgba(255,255,255,0.95); font-size: 0.9375rem; margin: 0; }

.hh-room-detail-grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) {
  .hh-room-detail-grid { grid-template-columns: 1fr 360px; align-items: start; }
}
.hh-room-detail-main { min-width: 0; }
.hh-room-detail-section { padding: 0 0 2.5rem; margin-bottom: 0; }
.hh-room-detail-section:last-child { padding-bottom: 0; }
.hh-room-detail-heading { font-family: var(--font-heading); font-size: 1.75rem; color: var(--hh-dark-2); margin-bottom: 1rem; text-align: left; }
.hh-room-detail-desc { color: var(--hh-text); font-size: 1.0625rem; line-height: 1.75; margin: 0; }
.hh-room-features--list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem 1rem; }
@media (max-width: 600px) { .hh-room-features--list { grid-template-columns: 1fr; } }
.hh-room-features--list .hh-room-feature { display: flex; align-items: center; gap: 0.5rem; color: var(--hh-text-2); font-size: 0.9375rem; }
.hh-room-features--list .hh-feature-icon { width: 1.125rem; height: 1.125rem; flex-shrink: 0; }
.hh-room-booking-title { font-family: var(--font-heading); font-size: 1.5rem; color: var(--hh-dark-2); margin-bottom: 1.5rem; text-align: left; }
.hh-room-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.hh-room-gallery-item { overflow: hidden; border-radius: 2px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.hh-room-gallery-item img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.4s; }
.hh-room-gallery-item:hover img { transform: scale(1.05); }
.hh-room-detail-sidebar { min-width: 0; }
@media (min-width: 1024px) {
  .hh-room-detail-sidebar { position: sticky; top: 7rem; }
}
.hh-room-booking-card { background: #fff; border: 1px solid #e8e4e0; border-radius: 2px; box-shadow: 0 4px 12px rgba(0,0,0,0.06); padding: 1.75rem; }
.hh-room-booking-meta { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.hh-room-booking-row { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; font-size: 0.875rem; border-bottom: none; }
.hh-room-booking-label { color: var(--hh-text); }
.hh-room-booking-value { font-weight: 600; color: var(--hh-dark-2); }
.hh-btn-room--full { width: 100%; box-sizing: border-box; display: block; text-align: center; margin-bottom: 0.75rem; }
.hh-room-booking-note { font-size: 0.75rem; color: var(--hh-text); text-align: center; margin: 0; }

/* Apartamento detalle (igual que ZIP: imagen sin overlay, título+desc+galería izq, sidebar Características+Comodidades+RESERVAR AHORA) */
.hh-apt-detail-page { background: #f7eee8; padding-top: 5.5rem; min-height: 100vh; }
.hh-apt-hero-image { margin-top: -5rem; padding: 0 0 2rem; }
.hh-apt-hero-container { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.hh-apt-hero-img-wrap { aspect-ratio: 21/9; overflow: hidden; border-radius: 8px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15); }
.hh-apt-hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s; }
.hh-apt-hero-img-wrap:hover img { transform: scale(1.02); }
