/* 产品列表页 */
.list-page {
  min-height: calc(100vh - var(--header-h));
  background: var(--bg-content);
}

.list-container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 24px 48px;
}

.list-title {
  font-family: "Playfair Display", "Noto Serif TC", serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

/* 公告区 */
.announcements {
  margin-bottom: 32px;
}

.announcements-heading {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.announcements-list {
  list-style: disc;
  padding-left: 1.5em;
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.7;
}

.announcements-list li {
  margin-bottom: 8px;
}

.announcements-list li:last-child {
  margin-bottom: 0;
}

/* 商品列表 */
.product-list {
  margin-top: 8px;
}

.product-list ul {
  list-style: none;
}

.product-item {
  margin-bottom: 4px;
  line-height: 1.65;
}

.product-item a,
.product-item .product-link {
  display: inline;
  color: var(--link-blue);
  text-decoration: underline;
  font-size: 15px;
  word-break: break-word;
}

.product-item a:hover,
.product-item .product-link:hover {
  opacity: 0.85;
}

.product-loading,
.product-error {
  color: var(--text-body);
  font-size: 15px;
  padding: 16px 0;
}

.product-error {
  color: #c62828;
}

@media (max-width: 768px) {
  .list-container {
    padding: 24px 16px 40px;
  }

  .announcements-list,
  .product-item a,
  .product-item .product-link {
    font-size: 14px;
  }
}
