/* ============================================
   ALCOHOL SERIES IMAGE POPUP
   ============================================ */

.alcohol-series-image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  padding: 20px;
  box-sizing: border-box;
}

.alcohol-series-image-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease-out;
}

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

.alcohol-series-image-wrapper {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: zoomIn 0.3s ease-out;
}

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

.alcohol-series-image {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.alcohol-series-image-close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #f7931a;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: #f7931a;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10002;
  transition: all 0.3s ease;
  line-height: 1;
  padding: 0;
}

.alcohol-series-image-close:hover {
  background: #f7931a;
  color: #000;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .alcohol-series-image-overlay {
    padding: 10px;
  }
  
  .alcohol-series-image {
    max-width: 100%;
    max-height: 85vh;
  }
  
  .alcohol-series-image-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}

