
/* REFUGIOS CHILE V5.003.3 — fotografía sin recorte + visor completo */

/* En el detalle del refugio se muestra la fotografía completa, sin object-fit:cover. */
.rc-property-media-grid img{
  object-fit:contain !important;
  background:#111713 !important;
  cursor:zoom-in !important;
}

/* El video mantiene contain para no recortar el encuadre original. */
.rc-property-media-grid video{
  object-fit:contain !important;
  background:#111713 !important;
}

/* Visor fullscreen creado por refugios-territory-dynamic.js */
.rc-photo-viewer{
  position:fixed;
  z-index:12000;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px;
  background:rgba(4,7,6,.95);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .2s ease,visibility .2s ease;
}
.rc-photo-viewer.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}
.rc-photo-viewer-stage{
  position:relative;
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
}
.rc-photo-viewer img{
  display:block;
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  box-shadow:0 30px 90px rgba(0,0,0,.38);
}
.rc-photo-viewer-close{
  position:absolute;
  z-index:3;
  top:0;
  right:0;
  width:44px;
  height:44px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:50%;
  background:rgba(0,0,0,.25);
  color:white;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  backdrop-filter:blur(12px);
}
.rc-photo-viewer-nav{
  position:absolute;
  z-index:3;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:64px;
  border:0;
  background:rgba(0,0,0,.22);
  color:white;
  font-size:34px;
  cursor:pointer;
  backdrop-filter:blur(8px);
}
.rc-photo-viewer-prev{left:0}
.rc-photo-viewer-next{right:0}
.rc-photo-viewer-meta{
  position:absolute;
  z-index:3;
  left:50%;
  bottom:4px;
  transform:translateX(-50%);
  color:rgba(255,255,255,.8);
  font-family:Inter,Arial,sans-serif;
  font-size:9px;
  letter-spacing:2px;
  text-transform:uppercase;
  white-space:nowrap;
}
@media(max-width:700px){
  .rc-photo-viewer{padding:10px}
  .rc-photo-viewer-nav{width:40px;height:56px}
}


/* V5.003.4 — galería completa dentro del detalle del refugio */
.rc-property-all-photos{
  display:none;
  padding:34px 28px 38px;
  background:#F4EFE7;
  border-top:1px solid rgba(44,49,43,.08);
}
.rc-property-all-photos.is-visible{display:block}
.rc-property-all-photos-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:24px;
  margin:0 0 20px;
}
.rc-property-all-photos-head small{
  display:block;
  margin-bottom:7px;
  color:#A17837;
  font-size:8px;
  font-weight:700;
  letter-spacing:2.8px;
  text-transform:uppercase;
}
.rc-property-all-photos-head h3{
  margin:0;
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:34px;
  line-height:1;
  font-weight:300;
  color:#20231f;
}
.rc-property-all-photos-count{
  color:#837d73;
  font-size:10px;
  letter-spacing:1.3px;
  text-transform:uppercase;
}
.rc-property-all-photos-grid{
  columns:3;
  column-gap:8px;
}
.rc-property-all-photo{
  position:relative;
  display:block;
  width:100%;
  padding:0;
  margin:0 0 8px;
  border:0;
  background:#111713;
  break-inside:avoid;
  cursor:zoom-in;
  overflow:hidden;
}
.rc-property-all-photo img{
  display:block;
  width:100%;
  height:auto;
  max-width:100%;
  object-fit:contain;
  transition:transform .25s ease,opacity .25s ease;
}
.rc-property-all-photo:hover img{
  transform:scale(1.012);
  opacity:.96;
}
@media(max-width:900px){
  .rc-property-all-photos-grid{columns:2}
}
@media(max-width:600px){
  .rc-property-all-photos{padding:26px 14px 30px}
  .rc-property-all-photos-head{align-items:start;flex-direction:column;gap:8px}
  .rc-property-all-photos-grid{columns:1}
}
