.photo-strip {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.5rem 0;
}

.photo-strip img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  flex: 0 0 auto;
}

.photo-add {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  border: 1px dashed #aaa;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Lightbox definition */
.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
}

.photo-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
  backdrop-filter: blur(10px);
}

.photo-lightbox-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 92vw;
  max-height: 85vh;
  border-radius: 10px;
  z-index: 1;
}


.photo-lightbox-prev,
.photo-lightbox-next,
.photo-lightbox-close {
  position: absolute;
  z-index: 2;

  width: 48px;
  height: 48px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 0;

  font-size: 3rem;
  line-height: 1;
  padding-bottom: 12px;
  /* optical correction */
  cursor: pointer;
}

/* Positioning */
.photo-lightbox-prev {
  top: 0;
  bottom: 0;
  left: 14px;
  margin: auto 0;
}

.photo-lightbox-next {
  top: 0;
  bottom: 0;
  right: 14px;
  margin: auto 0;
}

.photo-lightbox-close {
  top: 18px;
  right: 18px;
  font-size: 2.8rem;
  padding-bottom: 10px;
}

.photo-lightbox-prev:active,
.photo-lightbox-next:active,
.photo-lightbox-close:active {
  background: rgba(255, 255, 255, 0.3);
}