#marquee-products {
  background-color: #020202;
}

.marquee-title {
  color: #c7a152;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 32px;
  margin-top: 100px;
}

.marquee-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.marquee-card:hover {
  transform: scale(1.03);
  cursor: zoom-in;
}

.marquee-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .marquee-img {
    height: 180px;
  }

  .marquee-title {
    font-size: 1.8rem;
  }
}

.marquee-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.marquee-lightbox.show {
  visibility: visible;
  opacity: 1;
}

.ml-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ml-body {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  z-index: 2100;
}

.ml-slide {
  position: relative;
  width: 100%;
  height: auto;
}

.ml-image {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
  animation: zoomIn 0.3s ease;
}

.ml-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  color: #333;
  font-size: 28px;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
  z-index: 2200;
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
