/* ============================================================
   KLEIDER — COLLECTIONS PAGE SPECIFIC STYLES
   ============================================================ */

/* Collections page uses components.css for most styles.
   This file is reserved for page-specific additions. */

/* Lightbox overlay for product images (future enhancement) */
.product-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,16,8,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.product-lightbox.is-open {
  display: flex;
}

.product-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.product-lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.product-lightbox__close:hover {
  opacity: 1;
}
