.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox__content {
  position: relative;
  max-width: 100%;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.lightbox__image {
  max-width: 80%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox__close {
  position: absolute;
  top: -50px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--yellow-gta);
  font-size: 4rem;
  font-weight: bold;
  cursor: pointer;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.lightbox__close:hover {
  color: #fff;
  transform: scale(1.2);
}

.lightbox__nav {
  position: relative;
  background: rgba(255, 165, 0, 0.2);
  border: 2px solid var(--yellow-gta);
  color: var(--yellow-gta);
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  padding: 20px 25px;
  transition: all 0.3s ease;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.lightbox__nav:hover {
  background: rgba(255, 165, 0, 0.4);
  transform: scale(1.1);
}

.menu__image__box {
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.menu__image__box::after {
  content: '🔍 Click para ampliar';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  color: var(--yellow-gta);
  text-align: center;
  padding: 15px;
  font-size: 1.6rem;
  font-family: 'Pricedown Bl', 'Pricedown', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu__image__box:hover::after {
  opacity: 1;
}

.menu__image__box:hover {
  transform: scale(1.02);
}

.menu__image__box img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.menu__image__box:hover img {
  transform: scale(1.05);
}

@media only screen and (max-width: 768px) {
  .lightbox__nav {
    font-size: 2rem;
    padding: 15px 20px;
  }
  
  .lightbox__prev {
    left: 10px;
  }
  
  .lightbox__next {
    right: 10px;
  }
  
  .lightbox__close {
    top: -40px;
    font-size: 3rem;
  }
  
  .menu__image__box::after {
    font-size: 1.4rem;
    padding: 10px;
  }
}
