/* Services 產品目錄頁專屬樣式 */

.page-header.services-header {
  position: relative;
  padding: 64px 0;
  overflow: hidden;
}

.page-header.services-header .bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header.services-header .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header.services-header .bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
}

.page-header.services-header .inner {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.72px;
  color: #d9d9d9;
  margin: 0 0 16px;
}

.breadcrumb .current {
  color: #fff;
  font-weight: 500;
}

.page-header.services-header h1 {
  color: #fff;
  font-size: 56px;
  letter-spacing: -1.12px;
  margin: 0 0 16px;
}

.page-header.services-header p {
  color: #c4c4c4;
  max-width: 560px;
}

.product-cards {
  width: 100%;
  padding: 80px 0;
}

.product-cards .inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 48px 40px;
  background: #fff;
}

.product-card.reverse {
  flex-direction: row-reverse;
}

.product-card .text-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 488px;
}

.product-card .text-col h3 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin: 0;
}

.product-card .spec-table {
  display: flex;
  gap: 32px;
  font-size: 15px;
  color: var(--color-text-muted);
}

.product-card .spec-table dl {
  margin: 0;
}

.product-card .spec-table dt {
  line-height: 1.85;
}

.product-card .spec-table dd {
  margin: 0;
}

.product-card .spec-col-label,
.product-card .spec-col-value {
  display: flex;
  flex-direction: column;
}

.product-card .spec-col-label > span,
.product-card .spec-col-value > span {
  line-height: 1.85;
}

.product-card .service-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.product-card .card-image {
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.product-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--color-bg-surface);
}

@media (max-width: 960px) {
  .product-card,
  .product-card.reverse {
    flex-direction: column;
    gap: 32px;
  }
  .product-card .text-col {
    max-width: 100%;
  }
  .product-card .spec-table {
    gap: 16px;
  }
}
