/* ════════════════════════════════════════════════
   MUPIX — Public Frontend CSS
   Variables dinámicas inyectadas inline por el controller:
   --pub-primary, --pub-secondary, --pub-bg, --pub-font-heading, --pub-font-body
   ════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

:root {
  --pub-primary:   #4b5563;
  --pub-secondary: #4b5563;
  --pub-bg:        #f5f5f5;
  --pub-text:      #212121;
  --pub-muted:     #757575;
  --pub-card-bg:   #ffffff;
  --pub-radius:    12px;
  --pub-shadow:    0 2px 12px rgba(0,0,0,.10);
  --pub-font-heading: 'Inter', sans-serif;
  --pub-font-body:    'Inter', sans-serif;
}

html { scroll-behavior: auto; }

html, body.pub {
  background: var(--pub-bg);
  color: var(--pub-text);
  font-family: var(--pub-font-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ─── Header ─── */
.pub-header {
  background: var(--pub-primary);
  color: #fff;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  position: relative;
  width: 100%;
}

.pub-header--transparent {
  background: transparent !important;
  box-shadow: none !important;
}

.pub-header__logo {
  height: 42px;
  width: 42px;
  object-fit: contain;
}

.pub-header__logo-placeholder {
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.pub-header__name {
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--pub-font-heading);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pub-header__home-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #fff;
  min-width: 0;
}

/* ─── Lang switcher Dropdown ─── */
.pub-lang-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 110;
}

.pub-lang-dropdown__btn {
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  color: inherit !important;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  transition: opacity .2s;
  outline: none;
  line-height: 1;
  opacity: 0.85;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.pub-lang-dropdown__btn:hover,
.pub-lang-dropdown.show .pub-lang-dropdown__btn {
  background: transparent !important;
  opacity: 1;
}

.pub-lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  min-width: 60px;
  overflow: hidden;
  display: none;
  flex-direction: column;
  z-index: 200;
  border: 1px solid rgba(0,0,0,0.05);
}

.pub-lang-dropdown.show .pub-lang-dropdown__menu {
  display: flex;
}

.pub-lang-dropdown__item {
  padding: .4rem .6rem;
  color: #212121;
  text-decoration: none;
  font-size: .8rem;
  font-weight: 600;
  text-align: center;
  transition: background .15s;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pub-lang-dropdown__item:last-child {
  border-bottom: none;
}

.pub-lang-dropdown__item:hover {
  background: rgba(0,0,0,.05);
}

/* ─── Sticky wrapper que agrupa pub-menus + pub-tabs ─── */
.pub-sticky-nav {
  position: sticky;
  top: 0;
  z-index: 95;
}

/* ─── Menu nav ─── */
.pub-menus {
  background: var(--pub-secondary);
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.pub-menus::-webkit-scrollbar { display: none; }

.pub-menus__link {
  padding: .4rem .9rem;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, color .2s;
}

.pub-menus__link:hover { background: rgba(255,255,255,.15); color: #fff; }
.pub-menus__link.active { background: rgba(255,255,255,.25); color: #fff; }

.pub-tabs {
  background: var(--pub-card-bg);
  display: flex;
  align-items: flex-end;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  margin: 0;
}

body.pub:has(.pub-menus) .pub-tabs {
  margin-top: 0;
}

.pub-tabs::-webkit-scrollbar { display: none; }

.pub-tabs__link {
  padding: .4rem .9rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--pub-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
}

.pub-tabs__link:hover { color: var(--pub-primary); }
.pub-tabs__link.active {
  color: var(--pub-primary);
}

/* ─── Classic grid ─── */
.pub-main {
  padding: 2rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.pub-section {
  margin-bottom: 3rem;
  scroll-margin-top: calc(var(--pub-menus-h, 50px) + 60px);
  flex-shrink: 0;
}

.pub-section__title {
  font-family: var(--pub-font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pub-primary);
  margin-bottom: 1.2rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid rgba(0,0,0,.06);
}

.pub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
}

/* ─── Item Card ─── */
.pub-card {
  background: var(--pub-card-bg);
  border-radius: var(--pub-radius);
  box-shadow: var(--pub-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
  position: relative;
}

.pub-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.14);
}

.pub-card__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e8eaf6;
  position: relative;
}

.pub-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.pub-card:hover .pub-card__img { transform: scale(1.04); }

.pub-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--pub-secondary);
  opacity: .4;
}

.pub-card__body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.pub-card__name {
  font-family: var(--pub-font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--pub-text);
  line-height: 1.3;
}

.pub-card__desc {
  font-size: .85rem;
  color: var(--pub-muted);
  line-height: 1.5;
  flex: 1;
}

/* Tags */
.pub-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
}

.pub-tag {
  display: inline-block;
  padding: .2rem .6rem;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .02em;
}

/* Prices */
.pub-prices {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  margin-top: .2rem;
}

.pub-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
}

.pub-price__list { color: var(--pub-muted); font-size: .78rem; }
.pub-price__amount { font-weight: 700; color: var(--pub-primary); }

/* Card footer */
.pub-card__footer {
  padding: .5rem 1rem;
  display: flex;
  justify-content: flex-end;
}

.pub-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .85rem;
  border-radius: 20px;
  background: #25D366;
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, transform .15s;
}


.pub-whatsapp:hover { background: #1fbb5a; transform: scale(1.03); }

/* Share button */
.pub-share-action {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--pub-primary);
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  padding: 0;
  font-size: 1.15rem;
  opacity: 0.85;
}

.pub-share-action:hover { opacity: 1; transform: scale(1.15); }

/* ─── Empty state ─── */
.pub-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--pub-muted);
}

.pub-empty__icon { font-size: 3rem; margin-bottom: .8rem; opacity: .4; }

/* ─── Footer ─── */
.pub-extended-footer {
  margin-top: auto;
  padding: 3rem 1.5rem 3rem;
  background: var(--pub-bg);
  color: var(--pub-text, #212121);
  text-align: center;
  flex-shrink: 0;
}

.pub-extended-footer .info-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.pub-extended-footer .info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1rem;
}

.pub-extended-footer .info-item i {
  font-size: 1.25rem;
  color: var(--pub-primary);
}

.pub-extended-footer .info-item a {
  color: inherit;
  text-decoration: none;
}

.pub-extended-footer .pub-footer-brand {
  padding-top: 1rem;
  font-size: .68rem;
  color: var(--pub-primary);
  opacity: 0.3;
}

.pub-extended-footer .pub-footer-brand a {
  color: inherit;
  text-decoration: none;
  font-weight: 800;
}

/* ════════ LISTA VIEW ════════ */

.pub-main--lista {
  padding: 0;
  max-width: 760px;
  width:100%;
}

/* ─── Secciones & Cards ─── */
.pub-section { scroll-margin-top: calc(var(--pub-menus-h, 50px) + 60px); }

.pub-section-banner {
  width: 100%;
  height: clamp(140px, 30vh, 240px);
  object-fit: cover;
  object-position: center;
  display: block;
  box-shadow: var(--pub-shadow);
  margin-bottom: -1px;
}

.pub-section-banner--rounded {
  border-radius: var(--pub-radius);
  margin-bottom: 1.5rem;
}

/* ── Sección ── */
.lista-section {
  margin-bottom: 3.5rem;
  scroll-margin-top: calc(var(--pub-menus-h, 50px) + 80px);
  flex-shrink: 0;
}

/* ── Cabecera Menú (Layout Flotante) ── */
.pub-side-menu-header {
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pub-side-menu-title {
  font-family: var(--pub-font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0;
  color: var(--pub-text);
  line-height: 1.2;
}

.pub-side-menu-desc {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  opacity: 0.8;
  color: var(--pub-text);
}

/* ── Cabecera de Sección ── */

.lista-section__header {
  padding: 1.4rem;
  background: var(--pub-card-bg);
  border-bottom: 2px solid var(--pub-primary);
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.lista-section__title {
  font-family: var(--pub-font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--pub-primary);
}

.lista-section__desc {
  font-size: .82rem;
  color: var(--pub-muted);
  line-height: 1.4;
}

/* ── Lista de items ── */
.lista-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lista-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,.07);
  background: var(--pub-card-bg);
  position: relative;
}

.lista-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* Miniatura */
.lista-item__thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  overflow: hidden;
  background: #e8eaf6;
}

.lista-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cuerpo del item */
.lista-item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.lista-item__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .75rem;
}

.lista-item__name {
  font-family: var(--pub-font-heading);
  font-size: .97rem;
  font-weight: 700;
  color: var(--pub-text);
  line-height: 1.3;
}

.lista-item__desc {
  font-size: .82rem;
  color: var(--pub-muted);
  line-height: 1.5;
}

.lista-item__tags {
  margin-top: .2rem;
}

/* Precios alineados a la derecha */
.lista-item__prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .15rem;
  flex-shrink: 0;
}

.lista-item__price {
  font-size: .97rem;
  font-weight: 700;
  color: var(--pub-primary);
  white-space: nowrap;
}

.lista-item__price small {
  display: block;
  font-size: .68rem;
  font-weight: 400;
  color: var(--pub-muted);
  text-align: right;
}

/* Botón WhatsApp compacto (legacy) */
.lista-item__wa {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  transition: background .2s, transform .15s;
  align-self: center;
}

.lista-item__wa:hover {
  background: #1fbb5a;
  transform: scale(1.1);
}

/* Responsive lista */
@media (max-width: 600px) {
  .lista-section__header {
    padding: 1rem;
  }
  .lista-item {
    padding: .85rem 1rem;
    gap: .75rem;
  }
  .lista-item__thumb {
    width: 60px;
    height: 60px;
  }
  .lista-item__name { font-size: .9rem; }
  .lista-item__price { font-size: .9rem; }
  .lista-item__wa { width: 30px; height: 30px; }
}


/* ════════ REELS VIEW ════════ */
.reels-body {
  background: #000;
  overflow: hidden;
  height: 100dvh;
}

.reels-container {
  height: 100dvh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}

.reels-container::-webkit-scrollbar { display: none; }

.reel-slide {
  position: relative;
  height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
}

.reel-slide__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-slide__bg-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pub-primary), var(--pub-secondary));
  font-size: 6rem;
  opacity: .4;
}

.reel-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
}

.reel-slide__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 60px;
  padding: 2rem 1.5rem 2.5rem;
  color: #fff;
}

.reel-slide__section {
  font-size: .72rem;
  font-weight: 600;
  opacity: .7;
  margin-bottom: .4rem;
}

.reel-slide__name {
  font-family: var(--pub-font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: .6rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

.reel-slide__desc {
  font-size: .9rem;
  opacity: .85;
  line-height: 1.5;
  margin-bottom: .8rem;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reel-slide__tags { margin-bottom: .8rem; }

.reel-slide__prices {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
}

.reel-price {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px;
  padding: .3rem .8rem;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
}

.reel-price__label {
  font-size: .72rem;
  opacity: .75;
  font-weight: 400;
}

/* Reel side actions */
.reel-slide__actions {
  position: absolute;
  right: 0;
  bottom: 2.5rem;
  width: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.reel-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  color: #fff;
  text-decoration: none;
  font-size: .65rem;
  opacity: .85;
  transition: opacity .2s, transform .2s;
}

.reel-action:hover { opacity: 1; transform: scale(1.1); }

.reel-action__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.reel-action.whatsapp .reel-action__icon { background: #25D366; }

/* Reels header */
.reels-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(to bottom, rgba(0,0,0,.6), transparent);
}

.reels-header__name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex: 1;
}

/* Reels dots */
.reels-dots {
  position: fixed;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 100;
}

.reels-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.reels-dot.active {
  background: #fff;
  transform: scale(1.4);
}

/* ─── Responsive ─── */
@media (max-width: 600px) {
  .pub-grid { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .pub-main { padding: 1.2rem 1rem; }
  .pub-main--lista { padding: 0; }
  .pub-card__body { padding: .75rem; }
  .pub-card__name { font-size: .9rem; }
  .pub-section__title { font-size: 1.1rem; }
  .reel-slide__name { font-size: 1.4rem; }
}

@media (max-width: 380px) {
  .pub-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   VISTA B — Side Layout
   ════════════════════════════════════════ */

body.pub--side {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* Si hay Hero, permitimos que el body mande el scroll para poder bajar del Hero */
body.pub--side.pub--has-hero {
  overflow: auto !important;
  height: auto !important;
}

/* Contenedor principal de la vista B */
.pub-side-layout {
  display: flex;
  align-items: stretch;
  flex: 1;
  width: 100%;
  position: relative;
}

.pub--has-hero .pub-side-layout {
  overflow: visible !important;
}

/* Main (contenido) */
.pub-main--side {
  flex: 1;
  max-width: 100%;
  padding-bottom: 0;
  padding-right: 0;
}

.pub--has-hero .pub-main--side {
  overflow-y: visible !important;
  height: auto !important;
}

/* Sidebar de navegación (Popup flotante inferior derecho) */
.pub-side-nav {
  position: fixed;
  left: auto;
  bottom: 0;
  right: 0;
  top: auto;
  transform: scale(0.9);
  transform-origin: bottom right;
  opacity: 0;
  visibility: hidden;
  width: 200px;
  max-width: calc(100vw - 1.5rem);
  max-height: calc(100vh - 100px);
  background: var(--pub-primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  scrollbar-width: none;
  z-index: 400;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,.3);
  transition: all .2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pub-side-nav::-webkit-scrollbar { display: none; }

.pub-side-nav.open {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

/* Menú dentro del sidebar */
.psn-menu {
  padding: .05rem 0;
}

.psn-menu__link {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .35rem .9rem;
  color: rgba(255,255,255,.8);
  font-family: var(--pub-font-heading);
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .15s;
}

.psn-menu__link.active, .psn-menu__link:hover {
  color: #fff;
}

.psn-chevron {
  font-size: .65rem;
  opacity: .7;
}

/* Secciones dentro del menú activo */
.psn-sections {
  list-style: none;
  margin: 0;
  padding: 0 0 .25rem 0;
}

.psn-section__link {
  display: block;
  padding: .22rem .9rem .22rem 1.4rem;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .15s, background .15s;
}

.psn-section__link:hover {
  color: #fff;
}

.psn-section__link.active {
  color: #fff;
  background: rgba(255,255,255,.1);
}

/* Divisor entre menús */
.psn-menu + .psn-menu {
  border-top: 1px solid rgba(255,255,255,.1);
}

/* Botón flotante para abrir menú */
.pub-side-toggle {
  display: flex;
  position: fixed;
  bottom: 100px;
  right: 1.2rem;
  left: auto;
  z-index: 500;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pub-primary);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  cursor: pointer;
  touch-action: none;
  transition: all .2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pub-side-toggle.is-open {
  width: 28px;
  height: 28px;
  font-size: 1rem;
  background: rgb(0 0 0 / 21%);
  box-shadow: none;
  opacity: 0.7;
}

/* ── Botón WhatsApp Flotante ── */
.pub-fab-whatsapp {
  position: fixed;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 500;
  width: 40px;
  height: 40px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
}

/* ── Lightbox Minimalista ── */
.mupix-lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: transparent;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.mupix-lightbox.show {
  opacity: 1;
  visibility: visible;
}

.mupix-lightbox img {
  position: absolute;
  pointer-events: auto;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  filter: drop-shadow(0 20px 35px rgba(0,0,0,0.4));
}

/* Cursors on zoomable images */
.pub-zoomable {
  cursor: zoom-in;
}
