<style>
.product-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 20px;
}

/* Main card */
.product-item {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 22px 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.product-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 14px rgba(0,0,0,0.08);
}

/* Left column */
.product-left {
  flex: 1;
  padding-right: 30px;
}

.product-left h3 {
  font-size: 19px;
  font-weight: 700;
  color: #222;
  margin: 0 0 8px;
}

.product-meta {
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
}

.product-price {
  font-size: 14px;
  font-weight: 600;
  color: #008000;
  margin-bottom: 12px;
}

.product-note {
  font-size: 13px;
  color: #444;
  line-height: 1.5;
  margin-top: 6px;
}

/* Right column */
.product-right {
  width: 350px;
  min-width: 350px;
  font-size: 13px;
  color: #333;
  border-left: 1px solid #eee;
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-field {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  align-items: center;
  gap: 10px;
}

.product-field strong {
  color: #555;
  font-weight: 600;
  min-width: 110px;
  text-align: right;
}

.product-field span {
  color: #222;
  flex: 1;
  text-align: left;
  word-break: break-word;
}

/* Optional image */
.product-image {
  width: 140px;
  min-width: 140px;
  height: 140px;
  border-radius: 10px;
  overflow: hidden;
  margin-left: 25px;
  border: 1px solid #eee;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 950px) {
  .product-item {
    flex-direction: column;
    padding: 18px;
  }

  .product-right {
    border-left: none;
    border-top: 1px solid #eee;
    margin-top: 12px;
    padding-left: 0;
    padding-top: 10px;
    width: 100%;
  }

  .product-field strong {
    text-align: left;
  }

  .product-image {
    margin: 15px auto 0;
  }
}

.product-item {
  margin-top: 30px;
  margin-bottom: 30px;
}
</style>