/* Modern Enterprise Industrial Products Page Styles */

.products-page {
  min-width: 320px;
  margin: 0;
  color: var(--text-body, #475569);
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
}

.products-page a {
  color: inherit;
  text-decoration: none;
}

.products-page img {
  display: block;
  max-width: 100%;
  border: 0;
}

.products-main {
  overflow: hidden;
}

.products-section-inner {
  box-sizing: border-box;
  width: 1280px;
  max-width: 92%;
  margin: 0 auto;
  padding: 0 16px;
}

/* Modern Hero Section */
.products-hero {
  position: relative;
  height: 360px;
  background: #0b132a url("../images/ABUIABACGAAg2aGHowYoiPadmgEwuBc45gc.jpg") 50% 50% no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11, 19, 42, 0.85) 0%, rgba(11, 19, 42, 0.7) 100%);
}

.products-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 860px;
  padding: 0 20px;
}

.products-hero-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 16px;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 20px;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.products-hero-title {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.products-hero-desc {
  margin: 0 auto;
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.7;
}

.products-content {
  background: var(--bg-light, #f8fafc);
  padding-top: 40px;
}

/* Intro banner under hero */
.products-intro {
  padding: 20px 0 50px;
  text-align: center;
}

.products-intro-title {
  margin: 0 auto 16px;
  max-width: 840px;
  color: var(--text-dark, #0f172a);
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.products-intro-text {
  margin: 0 auto;
  max-width: 880px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.75;
}

/* Grid Stage & Cards (Equal Height Grid) */
.products-grid-stage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  width: 1280px;
  max-width: 92%;
  margin: 0 auto;
  padding: 0 16px 80px;
  box-sizing: border-box;
  align-items: stretch;
}

.products-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
  transition: all 0.3s ease;
}

.products-item:hover {
  transform: translateY(-8px);
  border-color: rgba(2, 132, 199, 0.4);
  box-shadow: 0 20px 35px -10px rgba(2, 132, 199, 0.15);
}

.products-item-media {
  display: block;
  position: relative;
  height: 240px;
  padding: 0;
  background: #f8fafc;
  box-sizing: border-box;
  overflow: hidden;
  border-bottom: 1px solid #f1f5f9;
  flex-shrink: 0;
}

.products-item-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.products-item:hover .products-item-media img {
  transform: scale(1.06);
}

.products-item-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.products-item-title {
  margin: 0 0 14px;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
}

.products-item-title a,
.products-item-title a:link,
.products-item-title a:visited {
  color: #0f172a !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.products-item:hover .products-item-title a {
  color: #0284c7 !important;
}

/* Specs formatting */
.products-item-spec {
  margin: 0 0 10px;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

/* 优雅截断过长描述 */
.products-item-copy p.products-item-spec:first-of-type {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 美化 Material / Diameter / Application 属性行 */
.products-item-spec-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

/* Styled Lists inside spec */
.products-item-copy ul {
  margin: 10px 0 16px;
  padding-left: 0;
  list-style: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.products-item-copy ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
  color: #64748b;
  font-size: 13.5px;
  line-height: 1.5;
}

.products-item-copy ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: #0284c7;
  border-radius: 50%;
}

/* Bottom aligned action link */
.products-item-action {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 14px;
  font-weight: 700;
  color: #0284c7;
  transition: gap 0.2s ease;
}

.products-item:hover .products-item-action {
  gap: 10px;
}

.products-item.is-custom {
  padding: 0;
}

.products-item.is-custom .products-item-media {
  height: 220px;
  border-bottom: 1px solid #f1f5f9;
  border-radius: 0;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .products-grid-stage {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .products-grid-stage {
    grid-template-columns: 1fr;
  }
  .products-hero-title {
    font-size: 30px;
  }
}


