main > section {
  padding: 2rem;
}
.product-card {
  font-weight: 600;
}
.product-card > h3 {
  word-break: keep-all;
}
.product-card li {
  font-size: 1.1em;
}
.product-body {
  display: flex;
  gap: 2rem;
  padding: 0 2rem 1.5rem;
  align-items: flex-start;
}
.product-image {
  flex: 0 0 45%;
}
.product-image img {
  width: 100%;
  height: auto;
  display: block;
}
.product-info {
  flex: 1;
}
.product-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}
.product-contents .product-contents-title {
  font-weight: bold;
  margin-bottom: 0.3rem;
}
.product-contents ul {
  list-style: disc;
  margin-left: 1.5rem;
}
.product-contents ul li {
  padding: 0.15rem 0;
  font-size: 0.95rem;
}
.product-detail {
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem;
  align-items: flex-start;
}
.product-descriptions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product-descriptions h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #444;
  margin-bottom: 0.3rem;
  padding: 0;
  border-bottom: none;
}
.product-descriptions p {
  font-size: 0.94rem;
  line-height: 1.7;
  color: #555;
  text-indent: 1em;
}
@media (max-width: 1260px) {
  .product-body,
  .product-detail {
    flex-direction: column;
    gap: 1rem;
  }
  .product-image {
    flex: none;
    width: 70%;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .product-body {
    padding: 0 1rem 1rem;
  }
  .product-image {
    width: 90%;
  }
}
