.product {
    height: auto;
}

.product-image-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 14px;
}

#modalImageContainer {
  width: 80%;
  height: 80%;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 0 0;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  margin: 0 auto;
}

.modal-content {
  width: min(720px, 94vw);
  max-height: min(82vh, 880px);
  overflow: auto;
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 16px 16px 18px;
  transform: translateY(8px) scale(0.985);
  opacity: 0;
  transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.42s ease;
}

.prize-description {
    display: none;
}

.product-price {
    display: flex;
    gap: 8px;
    align-items: baseline;
    font-weight: 700;
    background: none;
    color: #fff;
    font-size: 18px;
    padding: 6px 10px;
    border-radius: 41px;
}

.product-price .old-price, .purchase-button .price .old-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-weight: 500;
    color: #fff;
}

#modalDescription {
    margin: 6px 0 14px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    text-align: left;
    width: 100%;
    flex: 0 0 auto;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.purchase-button .price {
    background: none;
    color: #00aaff;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 41px;
}