.oneproduct {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-bottom: 80px;
}

.oneproduct-img-wrapper {
  height: fit-content;
  width: fit-content;
  padding: 10px;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0px 0px 55px rgba(0, 0, 0, 0.15);
}

.oneproduct-img {
  border-radius: 14px;
  width: 100%;
}

.oneproduct-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 10px;
}

.oneproduct-title {
  font-size: 48px;
  font-family: var(--font);
}

.oneproduct-price {
  font-size: 24px;
  font-weight: 600;
}

.oneproduct-amount {
  font-size: 18px;
  font-weight: 500;
}

.oneproduct-text {
  font-size: 18px;
  line-height: 120%;
  /* white-space: pre-line; */
  width: 100%;
}

@media (max-width: 1023px) {
  .oneproduct-title {
    font-size: 24px;
  }

  .oneproduct-price {
    font-size: 20px;
  }

  .oneproduct-amount {
    font-size: 16px;
  }

  .oneproduct-text {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .oneproduct {
    display: flex;
    flex-direction: column;
  }

  .oneproduct-img {
    max-width: 500px;
  }

  .oneproduct-title {
    font-size: 24px;
  }

  .oneproduct-price {
    font-size: 20px;
  }

  .oneproduct-amount {
    font-size: 16px;
  }

  .oneproduct-text {
    font-size: 14px;
  }
}
