/* Landing — visor de galería (mismo chrome que el feed / perfil) */

/* feed.css define body{background:#f8f6f4} para la app; en la home solo cargamos feed.css por el visor */
body.morita-landing {
	background-color: #fff;
}

/* feed.css define .gallery-image para el carrusel del visor (opacity:0 sin .active).
   La cuadrícula de la home reutiliza el mismo nombre de clase: restauramos visibilidad. */
#galeria.gallery-section .gallery-image {
	position: static;
	top: auto;
	left: auto;
	width: 100%;
	height: auto;
	opacity: 1 !important;
	transform: none !important;
	transition: none;
	will-change: auto;
}

#galeria.gallery-section .gallery-image img {
	min-width: 0;
	min-height: 0;
}

.profile-viewer-overlay {
	--feed-bottom-offset: 0px;
	--gallery-indicators-bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
}

.profile-viewer-overlay .gallery-overlay {
	padding: 32px 22px calc(10px + env(safe-area-inset-bottom, 0px)) !important;
}

.profile-viewer-overlay .gallery-description {
	margin-bottom: 0.5rem !important;
}

.profile-viewer-overlay .profile-viewer-scroll-hint {
	bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}

#galeria .gallery-open-viewer {
	cursor: zoom-in;
}

.morita-galeria-toast {
	position: fixed;
	left: 50%;
	bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
	transform: translateX(-50%) translateY(120%);
	z-index: 10060;
	max-width: min(22rem, calc(100vw - 2rem));
	padding: 0.65rem 1rem;
	border-radius: 999px;
	background: rgba(26, 26, 26, 0.94);
	color: #fff;
	font-family: 'Catamaran', system-ui, sans-serif;
	font-size: 0.88rem;
	line-height: 1.35;
	text-align: center;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
	transition: transform 0.28s ease;
	pointer-events: none;
}

.morita-galeria-toast.is-visible {
	transform: translateX(-50%) translateY(0);
}

.like-button.liked i {
	color: #fd1c79;
}

.like-button.disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

.user-name.clickable {
	cursor: pointer;
}
