/* Bella Pink — modal de detalhes: mantém a imagem original completa, sem corte. */
.product-modal {
  max-height: calc(100vh - 30px);
}

.modal-layout {
  min-height: 0;
  max-height: calc(100vh - 30px);
}

.modal-image-wrap {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.modal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.modal-content {
  min-height: 0;
  overflow-y: auto;
}

@media (max-width: 720px) {
  .product-modal {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
    overflow: auto;
  }

  .modal-layout {
    max-height: none;
    min-height: 0;
  }

  .modal-image-wrap {
    height: min(55vh, 420px);
    min-height: 240px;
  }

  .modal-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .modal-content {
    overflow: visible;
  }
}
