/* === AMAZON PRICE CHECKER - STYLES === */

/* Custom Animations */
@keyframes blob {
  0% { transform: translate(0px, 0px) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
  100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob {
  animation: blob 7s infinite;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

.animation-delay-4000 {
  animation-delay: 4s;
}

/* Scrollbar Hiding for Gallery */
.gallery {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.gallery::-webkit-scrollbar {
  display: none;
}

/* ===== LIGHTBOX STYLES (Kept from original) ===== */
.lightbox-backdrop {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  display: none; /* Controlled by JS */
  align-items: center !important;
  justify-content: center !important;
  background: rgba(15, 23, 42, 0.9) !important; /* Darker slate backdrop */
  z-index: 9999 !important;
  padding: 1rem;
  width: 100% !important;
  height: 100% !important;
  box-sizing: border-box !important;
  backdrop-filter: blur(8px);
}

.lightbox-image-container {
  position: relative !important;
  max-height: 100vh !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  margin: 0 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 0 88px !important;
}

.lightbox-content {
  max-width: min(1200px, 90vw);
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  outline: none;
  display: block !important;
  margin: 0 auto !important;
  height: auto !important;
}

/* Buttons */
.lightbox-nav-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 50% !important; /* Circular buttons */
  width: 56px !important;
  height: 56px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  z-index: 10052 !important;
  backdrop-filter: blur(4px) !important;
}

.lightbox-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-50%) scale(1.1) !important;
}

.lightbox-nav-btn-prev {
  left: 24px !important;
}

.lightbox-nav-btn-next {
  right: 24px !important;
}

.lightbox-close-btn {
  position: fixed !important;
  top: 24px !important;
  right: 24px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  border: none !important;
  border-radius: 50% !important;
  width: 48px !important;
  height: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  z-index: 10053 !important;
}

.lightbox-close-btn:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  transform: rotate(90deg);
}

@media screen and (max-width: 768px) {
  .lightbox-image-container {
    padding: 0 !important;
    width: 100% !important;
  }
  .lightbox-nav-btn {
    width: 40px !important;
    height: 40px !important;
    background: rgba(0,0,0,0.5) !important;
  }
  .lightbox-nav-btn-prev { left: 10px !important; }
  .lightbox-nav-btn-next { right: 10px !important; }
  .lightbox-close-btn { top: 16px; right: 16px; background: rgba(0,0,0,0.5) !important; }
}
