    /* =============================================
       LIGHTBOX
       ============================================= */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 9000;
      background: rgba(0, 0, 0, 0.95);
      display: none;
    }
    .lightbox.open { display: block; }

    /* Carosello a scroll nativo — effetto album foto */
    .lightbox-track {
      display: flex;
      width: 100%;
      height: 100%;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      overscroll-behavior: contain;
    }
    .lightbox-track::-webkit-scrollbar { display: none; }
    .lightbox-slide {
      flex: 0 0 100%;
      scroll-snap-align: center;
      scroll-snap-stop: always;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .lightbox-slide img {
      max-width: 100%;
      max-height: 88vh;
      object-fit: contain;
      -webkit-user-drag: none;
      user-select: none;
      -webkit-touch-callout: none;
      pointer-events: none;
    }

    .lightbox-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: none;
      border: none;
      color: rgba(255,255,255,0.6);
      font-size: 32px;
      font-weight: 200;
      cursor: pointer;
      z-index: 2;
    }

    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: rgba(255,255,255,0.5);
      font-size: 48px;
      font-weight: 200;
      cursor: pointer;
      z-index: 2;
      padding: 16px;
      -webkit-tap-highlight-color: transparent;
    }
    .lightbox-prev { left: 4px; }
    .lightbox-next { right: 4px; }
    .lightbox-nav:active { color: var(--gold); }

    .lightbox-counter {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 300;
      letter-spacing: 2px;
      color: rgba(255,255,255,0.4);
      z-index: 2;
    }

    /* --- GIN PREMIUM LIGHTBOX --- */
    .gin-lb {
      position: fixed;
      inset: 0;
      z-index: 9500;
      background: #050504;
      display: none;
      overflow: hidden;
    }
    .gin-lb.open { display: block; }

    .gin-lb-glow {
      position: absolute;
      width: 300px;
      height: 400px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -55%);
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.4;
      animation: ginGlow 6s ease-in-out infinite alternate;
      z-index: 0;
    }
    @keyframes ginGlow {
      0% { opacity: 0.3; transform: translate(-50%, -55%) scale(1); }
      100% { opacity: 0.5; transform: translate(-50%, -55%) scale(1.15); }
    }

    /* Smoke layers */
    .gin-lb-smoke {
      position: absolute;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
    }
    .gin-lb-smoke-1 {
      background:
        radial-gradient(ellipse 60% 30% at 30% 80%, rgba(255,255,255,0.04) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 70% 90%, rgba(255,255,255,0.03) 0%, transparent 50%);
      filter: blur(40px);
      animation: smoke1 8s ease-in-out infinite alternate;
    }
    .gin-lb-smoke-2 {
      background:
        radial-gradient(ellipse 40% 50% at 20% 60%, rgba(255,255,255,0.03) 0%, transparent 50%),
        radial-gradient(ellipse 70% 20% at 80% 70%, rgba(255,255,255,0.02) 0%, transparent 50%);
      filter: blur(50px);
      animation: smoke2 11s ease-in-out infinite alternate;
    }
    .gin-lb-smoke-3 {
      background:
        radial-gradient(ellipse 80% 25% at 50% 95%, rgba(255,255,255,0.05) 0%, transparent 50%);
      filter: blur(35px);
      animation: smoke3 7s ease-in-out infinite alternate;
    }
    @keyframes smoke1 {
      0% { opacity: 0.5; transform: translateY(0) scale(1); }
      100% { opacity: 1; transform: translateY(-20px) scale(1.1); }
    }
    @keyframes smoke2 {
      0% { opacity: 0.7; transform: translateX(0); }
      100% { opacity: 0.4; transform: translateX(15px); }
    }
    @keyframes smoke3 {
      0% { opacity: 0.6; transform: translateY(0) scaleX(1); }
      100% { opacity: 1; transform: translateY(-30px) scaleX(1.2); }
    }

    .gin-lb-track {
      position: relative;
      z-index: 2;
      display: flex;
      width: 100%;
      height: 100%;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      overscroll-behavior: contain;
    }
    .gin-lb-track::-webkit-scrollbar { display: none; }
    .gin-lb-slide {
      position: relative;
      flex: 0 0 100%;
      scroll-snap-align: center;
      scroll-snap-stop: always;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 24px;
      padding: 20px;
    }
    .gin-lb-slide img {
      height: 55vh;
      max-height: 400px;
      width: auto;
      object-fit: contain;
      filter: drop-shadow(0 10px 40px rgba(0,0,0,0.6));
      position: relative;
      z-index: 1;
      -webkit-user-drag: none;
      user-select: none;
      -webkit-touch-callout: none;
      pointer-events: none;
    }
    .gin-lb-slide .gin-lb-info { position: relative; z-index: 1; }

    .gin-lb-info {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }
    .gin-lb-name {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 400;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--text);
    }
    .gin-lb-price {
      font-size: 20px;
      font-weight: 500;
      color: var(--gold);
      letter-spacing: 2px;
    }
    .gin-lb-desc {
      font-size: 13px;
      font-weight: 300;
      color: var(--text-secondary);
      max-width: 280px;
      line-height: 1.6;
    }

    .gin-lb-close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: none;
      border: none;
      color: rgba(255,255,255,0.5);
      font-size: 36px;
      font-weight: 200;
      cursor: pointer;
      z-index: 10;
    }

    /* Nav arrows */
    .gin-lb-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      color: rgba(255,255,255,0.6);
      font-size: 28px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, color 0.2s;
    }
    .gin-lb-nav:active {
      background: rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.9);
    }
    .gin-lb-prev { left: 12px; }
    .gin-lb-next { right: 12px; }

    /* Counter */
    .gin-lb-counter {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 11px;
      font-weight: 300;
      letter-spacing: 2px;
      color: rgba(255,255,255,0.3);
      z-index: 10;
    }

    /* (swipe ora gestito da scroll nativo del .gin-lb-track) */
    @keyframes slideLeft {
      0% { opacity: 0; transform: translateX(40px); }
      100% { opacity: 1; transform: translateX(0); }
    }
    @keyframes slideRight {
      0% { opacity: 0; transform: translateX(-40px); }
      100% { opacity: 1; transform: translateX(0); }
    }


    /* Fumo del visore gin disattivato */
    .gin-lb-smoke { display: none !important; }
