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

.watch-shop-lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  z-index: 10001;
}

.lightbox-close:hover {
  transform: rotate(90deg);
  color: #eed172;
}

.lightbox-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 95%;
  max-height: 90%;
  position: relative;
}

.lightbox-image-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-image-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-row img {
  max-width: 100%;
  max-height: 55vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}

.lightbox-nav i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
}

.lightbox-nav:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

.lightbox-info {
  text-align: center;
  margin-top: 25px;
  color: #fff;
  width: 100%;
}

.lightbox-info h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.lightbox-info p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  opacity: 0.8;
}

.lightbox-btn {
  display: inline-block;
  padding: 14px 40px;
  background-color: #eed172;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.lightbox-btn:hover {
  background-color: #c0392b;
  transform: scale(1.05);
}

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: -50px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .lightbox-next {
    right: -50px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .lightbox-close {
    top: 15px;
    right: 20px;
    font-size: 30px;
  }

  .lightbox-content {
    max-width: 85%;
  }

  .lightbox-content img {
    max-height: 50vh;
  }

  .lightbox-info h3 {
    font-size: 1.4rem;
  }

  .lightbox-info p {
    font-size: 0.95rem;
  }

  .lightbox-btn {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}
