.product-info,
.product-list {
  color: #fff;
}

.item-detail img {
  cursor: pointer;
}

.container {
  background-color: #000;
}

.content {
  max-width: 1920px;
  margin: 0 auto;
}

.product-item span {
  max-width: 270px;
  width: 200px;
}

.product-info {
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
}

.item-title {
  font-size: 15px;
  color: #eee;
  text-align: center;
}

.product-desc {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.product-desc p {
  min-height: 77px;
}

.item-list {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  width: 100%;
}

.product-list {
  padding: 0 15px;
  margin: 130px 0 200px 0;
}

.product-detail {
  padding-top: 70px;
}

.product-detail h2 {
  font-size: 30px;
}

.product-item {
  padding: 32px 0;
  border-top: 1px solid;
  margin-top: 35px;
  display: flex;
  justify-content: space-between;
}

.item-detail {
  width: calc(100% / 5);
  max-width: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
  aspect-ratio: 150 / 124;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .product-info {
    flex-direction: column;
    align-items: center;
    gap: 50px 0;
    padding-top: 50px;
  }

  .product-list {
    padding: 0 10px;
  }

  .product-desc {
    width: 50%;
  }

  .product-item {
    flex-direction: column;
    gap: 20px;
  }

  .item-list {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px 0;
  }

  .item-detail {
    flex-grow: 0;
    flex-basis: 25%;
    padding: 0;
  }
}
