/* Cero Estrés - Zoom móvil para imágenes */
.ce-mobile-zoom-wrap {
  position: relative;
  display: inline-block;
  max-width: 100%;
  cursor: zoom-in;
}

.ce-mobile-zoom-wrap img {
  display: block;
  max-width: 100%;
  height: auto;
}

.ce-mobile-zoom-btn {
  display: none;
}

.ce-mobile-zoom-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  touch-action: none;
  font-family: Asap, Arial, sans-serif;
}

.ce-mobile-zoom-overlay.is-active {
  display: flex;
}

.ce-mobile-zoom-stage {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  touch-action: none;
}

.ce-mobile-zoom-image {
  max-width: 96vw;
  max-height: 88vh;
  object-fit: contain;
  transform-origin: center center;
  transition: transform 0.15s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.ce-mobile-zoom-close,
.ce-mobile-zoom-reset {
  position: fixed;
  z-index: 1000001;
  border: 0;
  border-radius: 999px;
  background: #df7428;
  color: #fff;
  font-family: Asap, Arial, sans-serif;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
  cursor: pointer;
}

.ce-mobile-zoom-close {
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  font-size: 24px;
  line-height: 44px;
}

.ce-mobile-zoom-reset {
  left: 14px;
  bottom: 18px;
  padding: 10px 14px;
  font-size: 13px;
}

.ce-mobile-zoom-hint {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 1000000;
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12px;
  text-align: center;
  backdrop-filter: blur(6px);
}

body.ce-mobile-zoom-lock {
  overflow: hidden !important;
}

@media (max-width: 768px) {
  .ce-mobile-zoom-btn {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #df7428;
    color: #fff;
    font-size: 19px;
    box-shadow: 0 8px 22px rgba(0,0,0,.28);
    pointer-events: none;
  }
}
