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

.oneproduct-img-wrapper {
  height: fit-content;
  width: fit-content;
  background-color: #fff;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  overflow: hidden;
}

.oneproduct-img {
  width: 100%;
}

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

.oneproduct-title {
  font-family: 'PT Serif', sans-serif;
  font-weight: 700;
  font-size: 48px;
  letter-spacing: 0.03em;
  color: #000;
  margin-bottom: 22px;
}
.cart-icon.active1 {
  border-radius: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 61px;
  height: 62px;
  background-color: #142e38;
}
.oneproduct-price {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 17px;
}

.oneproduct-amount {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 17px;
}

.oneproduct-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: #131313;
}

@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;
  }
}
