/* 产品资料与酒窖馆。产品图使用 contain，避免拉伸或裁掉瓶身。 */
.product-hero-image img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
}

.table-scroll {
  overflow-x: auto;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  line-height: 1.7;
}

.product-table caption {
  text-align: left;
  color: var(--muted);
  margin-bottom: 12px;
}

.product-table th, .product-table td {
  padding: 17px 20px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.product-table th {
  color: var(--gold);
  font-weight: 500;
}

.product-table thead {
  background: #ffffff08;
}

.product-note {
  font-size: 14px;
  color: var(--muted);
}

.product-faq details {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.product-faq summary {
  color: var(--gold);
  cursor: pointer;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-bottom: 50px;
}

.catalogue-grid article {
  padding: 24px;
  border: 1px solid var(--line);
}

.catalogue-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.catalogue-grid h2 {
  font-size: 25px;
  margin-top: 25px;
}

@media (max-width: 800px) {
  .catalogue-grid {
    grid-template-columns: 1fr;
  }

  .product-table th, .product-table td {
    padding: 14px 10px;
  }

}
