/* Reservas — page-specific styles */
.res-search-field--adults { max-width: 145px; }
.res-search-field--kids { max-width: 125px; }
.res-hidden { display: none !important; }
.res-rate-unit { font-family: var(--font-body); font-size: .75rem; font-weight: 400; color: var(--stone-light); }
.res-section-label-center { justify-content: center; display: flex; }
.res-faq__title { text-align: center; font-family: var(--font-display); }
.res-faq__title em { font-style: italic; color: var(--amber); }
.res-rate-context-icon { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2; }
.mphb-availability-search.res-mphb-search { width: 100%; }
.mphb-res-wrapper .mphb_sc_search_results-wrapper,
.mphb-res-wrapper .mphb_sc_search_results-info,
.mphb-res-wrapper .mphb-recommendation { max-width: 100%; }
/* ══════════════════════════════════════
   HERO — compacto, no es protagonista
   ══════════════════════════════════════ */
.res-hero {
  background: var(--carbon);
  padding: 5rem 2rem 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.res-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 900px 400px at 50% 100%, rgba(58,107,53,.08), transparent);
}
.res-hero__content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.res-hero__eyebrow { font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--amber-light); margin-bottom: .9rem; }
.res-hero h1 { color: white; margin-bottom: .8rem; }
.res-hero h1 em { font-style: italic; color: var(--amber-light); }
.res-hero__sub { font-size: .95rem; font-weight: 300; color: rgba(255,255,255,.55); }

/* Trust strip debajo del título */
.res-hero__trust {
  display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap;
  padding: 1.5rem 0; margin-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.res-hero__trust-item {
  display: flex; align-items: center; gap: .45rem;
  font-size: .75rem; color: rgba(255,255,255,.45); font-weight: 500;
}
.res-hero__trust-item svg { width: 14px; height: 14px; stroke: var(--amber-light); fill: none; stroke-width: 2; flex-shrink: 0; }


/* ══════════════════════════════════════
   SEARCH BAR
   ══════════════════════════════════════
   WordPress: reemplazar el bloque .res-search-demo
   con el shortcode de MotoPress:

   <div class="res-search-wrap">
     <?php echo do_shortcode(
       '[mphb_availability_search class="res-mphb-search"]'
     ); ?>
   </div>

   Los estilos .res-mphb-search y .res-search-wrap
   normalizan el output del plugin al diseño del sitio.
   Los parámetros de URL (mphb_check_in_date, etc.)
   son auto-populados por MotoPress si vienen del motor
   de cualquier otra página del sitio.
   ══════════════════════════════════════════════════════ */
.res-search-wrap {
  background: var(--carbon);
  padding: 0 2rem 2.5rem;
}
.res-search-bar,
.mphb-availability-search.res-mphb-search {
  max-width: var(--container); margin: 0 auto;
  background: rgba(255,255,255,.07); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1); border-radius: 8px;
  padding: 1.4rem 2rem;
  display: flex; align-items: flex-end; gap: 1rem; flex-wrap: wrap;
}
.res-search-field,
.mphb-availability-search.res-mphb-search .mphb-booking-form-field {
  flex: 1; min-width: 120px; display: flex; flex-direction: column; gap: .3rem;
}
.res-search-label,
.mphb-availability-search.res-mphb-search label {
  font-size: .68rem !important; font-weight: 600 !important; letter-spacing: .1em !important;
  text-transform: uppercase !important; color: rgba(255,255,255,.5) !important;
}
.res-search-input,
.mphb-availability-search.res-mphb-search input,
.mphb-availability-search.res-mphb-search select {
  background: rgba(255,255,255,.08) !important; border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 4px !important; padding: .7rem 1rem !important;
  color: white !important; font-family: var(--font-body) !important; font-size: .9rem !important;
  outline: none !important; transition: border-color .3s !important; width: 100% !important;
  -webkit-appearance: none;
}
.res-search-input:focus,
.mphb-availability-search.res-mphb-search input:focus,
.mphb-availability-search.res-mphb-search select:focus { border-color: var(--amber) !important; }
.res-search-input::placeholder { color: rgba(255,255,255,.3); }
.res-search-input option { color: var(--carbon); background: white; }
.res-search-btn,
.mphb-availability-search.res-mphb-search button[type="submit"],
.mphb-availability-search.res-mphb-search .mphb-booking-form-submit {
  background: var(--amber) !important; color: white !important;
  font-family: var(--font-body) !important; font-size: .85rem !important;
  font-weight: 700 !important; letter-spacing: .06em !important; text-transform: uppercase !important;
  padding: .75rem 2.2rem !important; border-radius: 4px !important; border: none !important;
  cursor: pointer !important; transition: background .3s, transform .25s !important;
  white-space: nowrap !important; flex-shrink: 0 !important;
}
.res-search-btn:hover,
.mphb-availability-search.res-mphb-search button[type="submit"]:hover {
  background: var(--copper) !important; transform: translateY(-1px) !important;
}

/* Separador visual */
.res-divider {
  background: var(--carbon);
  padding-bottom: 2rem;
}
.res-divider__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}


/* ══════════════════════════════════════
   ÁREA DE RESULTADOS
   ══════════════════════════════════════ */
.res-results { padding: 2.5rem 0 4rem; }

.res-results__meta {
  max-width: var(--container); margin: 0 auto 2rem; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.res-results__summary { font-size: .88rem; color: var(--stone); }
.res-results__summary strong { color: var(--carbon); font-weight: 700; }
.res-results__dates {
  display: flex; align-items: center; gap: .6rem;
  background: white; border: 1px solid var(--cream-dark); border-radius: 20px;
  padding: .35rem 1rem; font-size: .78rem; color: var(--stone); font-weight: 500;
}
.res-results__dates svg { width: 13px; height: 13px; stroke: var(--amber); fill: none; stroke-width: 2; }

/*
  ════════════════════════════════════════════════════════════
  WRAPPER DE RESULTADOS MOTOPRESS

  WordPress: los clusters se generan con:
  <div class="res-rooms-wrap mphb-res-wrapper">
    <?php echo do_shortcode(
      '[mphb_search_results
        title="false"
        featured_image="false"
        gallery="false"
        excerpt="false"
        details="false"
        price="true"
        view_button="true"
        orderby="menu_order"
        order="ASC"]'
    ); ?>
  </div>

  MotoPress genera por cada habitación disponible:
    .mphb-room                → mapeado a .res-room-cluster
    .mphb-room-thumbnail      → mapeado a .res-room-photos
    .mphb-room-title          → mapeado a .res-room-name
    .mphb-rates               → mapeado a .res-room-rates (columna derecha)
    .mphb-rate                → mapeado a .res-rate-card
    .mphb-price               → mapeado a .res-rate-price
    .mphb-book-button         → mapeado a .res-rate-select
    .mphb-view-button         → mapeado a .res-rate-view

  Los overrides CSS de .mphb-res-wrapper cubren toda la
  cadena de clases del plugin para que el layout del
  listado coincida exactamente con el diseño de esta vista.
  ════════════════════════════════════════════════════════════
*/
.res-rooms-wrap {
  max-width: var(--container); margin: 0 auto; padding: 0 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
}

/* MotoPress overrides para el wrapper */
.mphb-res-wrapper .mphb-rooms { display: flex; flex-direction: column; gap: 1.5rem; }
.mphb-res-wrapper .mphb-room  { /* hereda .res-room-cluster */ }


/* ── CLUSTER: 1 habitación por fila ── */
.res-room-cluster {
  background: white; border-radius: 8px; border: 1px solid var(--cream-dark);
  overflow: hidden;
  display: grid; grid-template-columns: 340px 1fr;
  transition: box-shadow .35s;
}
.res-room-cluster:hover { box-shadow: 0 12px 40px rgba(0,0,0,.09); }

/* MotoPress override para el cluster */
.mphb-res-wrapper .mphb-room {
  background: white; border-radius: 8px; border: 1px solid var(--cream-dark);
  display: grid; grid-template-columns: 340px 1fr;
  overflow: hidden;
  transition: box-shadow .35s;
}
.mphb-res-wrapper .mphb-room:hover { box-shadow: 0 12px 40px rgba(0,0,0,.09); }


/* ── Columna izquierda: foto + info habitación ── */
.res-room-left {
  display: flex; flex-direction: column;
  border-right: 1px solid var(--cream-dark);
}

/* MotoPress mapeo */
.mphb-res-wrapper .mphb-room-thumbnail { border-right: 1px solid var(--cream-dark); }

/* Carrusel de fotos */
.res-room-photos {
  position: relative; height: 240px; overflow: hidden;
  background: var(--carbon-soft, #2a2a28); flex-shrink: 0;
}
.res-room-photos__slides { display: flex; height: 100%; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.res-room-photo { flex: 0 0 100%; height: 100%; overflow: hidden; }
.res-room-photo img { width: 100%; height: 100%; object-fit: cover; }

.res-room-photos__prev,
.res-room-photos__next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(28,28,28,.65); display: flex; align-items: center; justify-content: center;
  transition: opacity .25s, background .25s; opacity: 0;
}
.res-room-photos:hover .res-room-photos__prev,
.res-room-photos:hover .res-room-photos__next { opacity: 1; }
.res-room-photos__prev { left: .6rem; }
.res-room-photos__next { right: .6rem; }
.res-room-photos__prev:hover,
.res-room-photos__next:hover { background: rgba(28,28,28,.9); }
.res-room-photos__prev svg,
.res-room-photos__next svg { width: 12px; height: 12px; stroke: white; fill: none; stroke-width: 2.5; stroke-linecap: round; }

.res-room-photos__dots {
  position: absolute; bottom: .65rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 4px;
}
.res-room-photos__dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: background .2s; }
.res-room-photos__dot.is-active { background: white; }

/* MotoPress thumbnail → igual altura */
.mphb-res-wrapper .mphb-room-thumbnail img {
  width: 100%; height: 240px; object-fit: cover;
}

/* Info de la habitación debajo de la foto */
.res-room-info { padding: 1.4rem 1.5rem; flex: 1; }
.res-room-type { font-size: .65rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); margin-bottom: .3rem; }
.res-room-name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; color: var(--carbon); margin-bottom: .9rem; line-height: 1.15; }
.res-room-specs { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.res-room-spec { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: var(--stone); }
.res-room-spec svg { width: 13px; height: 13px; stroke: var(--selva); fill: none; stroke-width: 1.8; flex-shrink: 0; }
.res-room-view-link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .75rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: var(--selva); transition: color .25s;
}
.res-room-view-link:hover { color: var(--selva-deep); }
.res-room-view-link svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* MotoPress room info overrides */
.mphb-res-wrapper .mphb-room-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; color: var(--carbon); padding: 1.2rem 1.4rem .4rem; }
.mphb-res-wrapper .mphb-room-details { padding: 0 1.4rem 1.2rem; font-size: .82rem; color: var(--stone); }
.mphb-res-wrapper .mphb-view-button { display: none; } /* se mueve al footer de la rate card */


/* ── Columna derecha: tarifas ── */
.res-room-right { display: flex; flex-direction: column; }

.res-room-rates {
  display: flex; flex-direction: column;
  height: 100%;
}

/* MotoPress: .mphb-rates */
.mphb-res-wrapper .mphb-rates { display: flex; flex-direction: column; height: 100%; }

/* ── RATE CARD — cada opción de tarifa ── */
.res-rate-card {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0 1.5rem;
  padding: 1.2rem 1.6rem;
  border-bottom: 1px solid var(--cream-dark);
  transition: background .2s;
  align-items: center;
  min-height: 110px;
}
.res-rate-card:last-child { border-bottom: none; }
.res-rate-card:hover { background: var(--warm-white, #faf8f5); }

/* MotoPress: .mphb-rate */
.mphb-res-wrapper .mphb-rate {
  flex: 1; display: grid; grid-template-columns: 1fr auto;
  gap: 0 1.5rem; padding: 1.2rem 1.6rem;
  border-bottom: 1px solid var(--cream-dark); transition: background .2s;
  align-items: center; min-height: 110px;
}
.mphb-res-wrapper .mphb-rate:last-child { border-bottom: none; }
.mphb-res-wrapper .mphb-rate:hover { background: var(--warm-white, #faf8f5); }

/* Columna izquierda de la rate card: info */
.res-rate-info { display: flex; flex-direction: column; gap: .35rem; }

/* Badge de tipo de tarifa */
.res-rate-name {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .22rem .7rem; border-radius: 3px; align-self: flex-start;
}
.res-rate-name--desayuno { background: rgba(58,107,53,.09); color: var(--selva-deep); border: 1px solid rgba(58,107,53,.2); }
.res-rate-name--media    { background: rgba(196,129,61,.09); color: var(--copper); border: 1px solid rgba(196,129,61,.2); }
.res-rate-name--completa { background: rgba(28,28,28,.07); color: var(--carbon); border: 1px solid rgba(28,28,28,.15); }

/* Inclusions: ítem a ítem */
.res-rate-includes { display: flex; flex-direction: column; gap: .2rem; margin-top: .1rem; }
.res-rate-include {
  display: flex; align-items: center; gap: .4rem;
  font-size: .78rem; color: var(--stone);
}
.res-rate-include svg { width: 11px; height: 11px; stroke: var(--selva); fill: none; stroke-width: 2.5; flex-shrink: 0; }
.res-rate-include--cross svg { stroke: var(--stone-light, #9a9490); }
.res-rate-include--cross span { color: var(--stone-light, #9a9490); }

/* Noches + personas */
.res-rate-context {
  font-size: .75rem; color: var(--stone-light, #9a9490); margin-top: .3rem;
  display: flex; align-items: center; gap: .4rem;
}
.res-rate-context svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Columna derecha de la rate card: precio + botones */
.res-rate-right { display: flex; flex-direction: column; align-items: flex-end; gap: .5rem; }
.res-rate-price-block { text-align: right; }
.res-rate-price-original { font-size: .78rem; color: var(--stone-light, #9a9490); text-decoration: line-through; }
.res-rate-price-total {
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 500;
  color: var(--carbon); line-height: 1; letter-spacing: -.01em;
}
.res-rate-price-total sup { font-size: .9rem; font-family: var(--font-body); font-weight: 600; vertical-align: super; }
.res-rate-price-label { font-size: .7rem; color: var(--stone); margin-top: .15rem; }

/* Método de pago */
.res-rate-payment {
  display: flex; align-items: center; gap: .4rem;
  font-size: .7rem; color: var(--stone); font-weight: 500;
}
.res-rate-payment-logo {
  width: 18px; height: 18px; border-radius: 50%;
  background: #009ee3; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.res-rate-payment-logo svg { width: 11px; height: 11px; fill: white; }

/* Botones */
.res-rate-ctas { display: flex; flex-direction: column; gap: .5rem; width: 100%; min-width: 150px; }

.res-rate-select {
  display: flex; align-items: center; justify-content: center;
  background: var(--selva); color: white;
  font-family: var(--font-body); font-size: .8rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .65rem 1.4rem; border-radius: 4px;
  border: none; cursor: pointer;
  transition: background .25s, transform .25s;
  text-align: center; white-space: nowrap;
}
.res-rate-select:hover { background: var(--selva-deep); transform: translateY(-1px); }

.res-rate-view {
  display: flex; align-items: center; justify-content: center;
  background: transparent; color: var(--carbon);
  font-family: var(--font-body); font-size: .78rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  padding: .58rem 1.4rem; border-radius: 4px;
  border: 1.5px solid var(--cream-dark); cursor: pointer;
  transition: border-color .25s, color .25s;
  text-align: center; white-space: nowrap;
}
.res-rate-view:hover { border-color: var(--carbon); }

/* MotoPress overrides para botones */
.mphb-res-wrapper .mphb-book-button {
  display: flex !important; align-items: center !important; justify-content: center !important;
  background: var(--selva) !important; color: white !important;
  font-family: var(--font-body) !important; font-size: .8rem !important;
  font-weight: 700 !important; letter-spacing: .06em !important; text-transform: uppercase !important;
  padding: .65rem 1.4rem !important; border-radius: 4px !important; border: none !important;
  cursor: pointer !important; transition: background .25s !important; white-space: nowrap !important;
  text-decoration: none !important;
}
.mphb-res-wrapper .mphb-book-button:hover { background: var(--selva-deep) !important; }

/* MotoPress price */
.mphb-res-wrapper .mphb-price {
  font-family: var(--font-display) !important; font-size: 1.75rem !important;
  font-weight: 500 !important; color: var(--carbon) !important; line-height: 1 !important;
}


/* ── Estado: sin disponibilidad ── */
.res-no-results {
  max-width: var(--container); margin: 0 auto; padding: 0 2rem;
  display: none;
  text-align: center;
}
.res-no-results__box {
  background: white; border-radius: 8px; border: 1px solid var(--cream-dark);
  padding: 3rem 2rem;
}
.res-no-results__icon { width: 48px; height: 48px; margin: 0 auto 1.2rem; stroke: var(--stone-light); fill: none; stroke-width: 1.5; }
.res-no-results h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: var(--stone); margin-bottom: .6rem; }
.res-no-results p { font-size: .9rem; color: var(--stone-light); margin-bottom: 1.5rem; }
.res-no-results__btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--amber); color: white;
  font-family: var(--font-body); font-size: .85rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .8rem 2rem; border-radius: 4px;
  transition: background .25s;
}
.res-no-results__btn:hover { background: var(--copper); }


/* ══════════════════════════════════════
   TRUST STRIP — debajo de resultados
   ══════════════════════════════════════ */
.res-trust {
  background: white; border-top: 1px solid var(--cream-dark);
  margin-top: 3rem;
}
.res-trust__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.res-trust__item {
  padding: 1.6rem 1.5rem; text-align: center;
  border-right: 1px solid var(--cream-dark);
  transition: background .2s;
}
.res-trust__item:last-child { border-right: none; }
.res-trust__item:hover { background: var(--warm-white, #faf8f5); }
.res-trust__icon {
  width: 36px; height: 36px; margin: 0 auto .8rem;
  border-radius: 50%; background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
}
.res-trust__icon svg { width: 16px; height: 16px; stroke: var(--selva); fill: none; stroke-width: 1.8; }
.res-trust__title { font-size: .82rem; font-weight: 700; color: var(--carbon); margin-bottom: .2rem; }
.res-trust__sub   { font-size: .73rem; color: var(--stone); line-height: 1.45; }


/* ══════════════════════════════════════
   FAQ — solo sobre el proceso de reserva
   ══════════════════════════════════════ */
.res-faq { padding: var(--section-pad) 0; background: var(--cream); }
.res-faq__header { text-align: center; margin-bottom: 2.5rem; }
.res-faq__header h2 { font-family: var(--font-display); }
.res-faq__header h2 em { font-style: italic; color: var(--amber); }
.res-faq__list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.res-faq__item {
  background: white; border: 1px solid var(--cream-dark);
  border-bottom: none; overflow: hidden;
}
.res-faq__item:first-child { border-radius: 8px 8px 0 0; }
.res-faq__item:last-child  { border-radius: 0 0 8px 8px; border-bottom: 1px solid var(--cream-dark); }
.res-faq__q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.5rem; cursor: pointer;
  font-size: .92rem; font-weight: 600; color: var(--carbon);
  transition: background .2s;
  gap: 1rem;
}
.res-faq__q:hover { background: var(--warm-white, #faf8f5); }
.res-faq__q-chevron {
  flex-shrink: 0; width: 20px; height: 20px;
  stroke: var(--stone-light); fill: none; stroke-width: 2; stroke-linecap: round;
  transition: transform .35s ease;
}
.res-faq__item.open .res-faq__q-chevron { transform: rotate(180deg); stroke: var(--amber); }
.res-faq__a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.res-faq__item.open .res-faq__a { max-height: 200px; }
.res-faq__a-inner { padding: .2rem 1.5rem 1.2rem; font-size: .87rem; color: var(--stone); line-height: 1.7; border-top: 1px solid var(--cream-dark); padding-top: .9rem; }
.res-faq__a-inner a { color: var(--selva); text-decoration: underline; text-underline-offset: 2px; }


/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .res-room-cluster,
  .mphb-res-wrapper .mphb-room { grid-template-columns: 300px 1fr; }
  .res-trust__inner { grid-template-columns: 1fr 1fr; }
  .res-trust__item:nth-child(2) { border-right: none; }
  .res-trust__item:nth-child(3) { border-right: 1px solid var(--cream-dark); border-top: 1px solid var(--cream-dark); }
  .res-trust__item:nth-child(4) { border-right: none; border-top: 1px solid var(--cream-dark); }
}

@media (max-width: 768px) {
  .res-search-bar { flex-direction: column; gap: .7rem; padding: 1.1rem; }
  .res-search-field { min-width: 100%; }
  .res-search-btn { width: 100%; justify-content: center; padding: .75rem !important; }

  .res-room-cluster,
  .mphb-res-wrapper .mphb-room { grid-template-columns: 1fr; }
  .res-room-left { border-right: none; border-bottom: 1px solid var(--cream-dark); }
  .mphb-res-wrapper .mphb-room-thumbnail { border-right: none; border-bottom: 1px solid var(--cream-dark); }
  .res-room-photos { height: 220px; }

  /* Rate card: stack en mobile */
  .res-rate-card,
  .mphb-res-wrapper .mphb-rate { grid-template-columns: 1fr; gap: 1rem; padding: 1.1rem 1.3rem; }
  .res-rate-right { align-items: flex-start; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 1rem; }
  .res-rate-ctas { flex-direction: row; min-width: auto; }
  .res-rate-select, .res-rate-view { flex: 1; font-size: .75rem; padding: .6rem 1rem; }

  .res-results__meta { flex-direction: column; align-items: flex-start; gap: .6rem; }
  .res-trust__inner { grid-template-columns: 1fr 1fr; }

  /* En mobile: controles de foto siempre visibles */
  .res-room-photos__prev,
  .res-room-photos__next { opacity: .8; }
}

@media (max-width: 480px) {
  .res-hero { padding: 4.5rem 1.5rem 0; }
  .res-hero__trust { gap: 1rem; }
  .res-trust__inner { grid-template-columns: 1fr; }
  .res-trust__item { border-right: none; border-bottom: 1px solid var(--cream-dark); }
  .res-trust__item:last-child { border-bottom: none; }
  .res-rate-right { flex-direction: column; }
  .res-rate-ctas { flex-direction: column; width: 100%; }
  .res-rate-select, .res-rate-view { width: 100%; }
}
