/* Módulo Lightbox */
/* =========================================================
     9. LIGHTBOX DE IMÁGENES (AMPLIAR FOTO DEL PLATO)
     ========================================================= */
  .menu2-lightbox-bg {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
  }

  .menu2-lightbox-bg.open {
    opacity: 1;
    pointer-events: auto;
  }

  .menu2-lightbox-bg img {
    max-width: 92%;
    max-height: 92%;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    object-fit: contain;
  }

