
/* ===== Image Preview Modal — Wraith ===== */
.cc_uNDcCLHPMB_product_detail_reviews .kombos-image-preview, .cc_uNDcCLHPMB_product_detail_option_set .kombos-image-preview {
  position: fixed;
  inset: 0;
  z-index: var(--kombos-z-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 9, 30, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.cc_uNDcCLHPMB_product_detail_reviews .kombos-image-preview--open, .cc_uNDcCLHPMB_product_detail_option_set .kombos-image-preview--open {
  opacity: 1;
}

/* Close button */
.cc_uNDcCLHPMB_product_detail_reviews .kombos-image-preview__close, .cc_uNDcCLHPMB_product_detail_option_set .kombos-image-preview__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--paper);
  border: 1px solid var(--stroke);
  border-radius: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.125rem;
  color: var(--steel);
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.cc_uNDcCLHPMB_product_detail_reviews .kombos-image-preview__close:hover, .cc_uNDcCLHPMB_product_detail_option_set .kombos-image-preview__close:hover {
  background: var(--slab);
  border-color: var(--steel);
}

/* Preview image */
.cc_uNDcCLHPMB_product_detail_reviews .kombos-image-preview__img, .cc_uNDcCLHPMB_product_detail_option_set .kombos-image-preview__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 0;
  cursor: default;
}
