.product-circle {
  width: 300px;              /* fixed width */
  height: 300px;             /* fixed height */
  border-radius: 50%;        /* makes it circular */
  overflow: hidden;          /* hides extra image parts */
  margin: 0 auto;            /* center align */
  background: #198754;       /* fallback bg-success */
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* crops image to fit circle */
}
.bg-theme-secondary {
    --bs-bg-opacity: 1;
    background-color: rgb(232 249 212) !important;
}