/* Product Page Hero Section */
.product-hero {
  text-align: center;
  padding: 48px 0 18px 0;
}
.product-hero h1 {
  font-size: 2.7rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.product-hero .highlight {
  color: #015430;
}
.product-intro {
  color: #555;
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 18px auto;
}

/* Product List Section */
.product-list-section {
  padding: 0 0 60px 0;
}
.product-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.product-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  min-width: 0;
}
.product-card:hover {
  box-shadow: 0 12px 40px rgba(0,102,204,0.13);
  transform: translateY(-6px) scale(1.03);
}
.product-card-image {
  width: 100%;
  height: 210px;
  background: #f4f8fb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.product-card:hover .product-card-image img {
  transform: scale(1.07);
}
.product-card-content {
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.product-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}
.product-card-desc {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 18px;
  flex: 1 1 auto;
}
.product-card-btn {
  display: inline-block;
  background: linear-gradient(90deg, #03693d 60%, #18db87 100%);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 12px 32px;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 10px rgba(0,102,204,0.10);
  letter-spacing: 0.5px;
  text-decoration: none;
}
.product-card-btn:hover {
  background: linear-gradient(90deg, #18db87 60%, #03693d 100%);
  transform: translateY(-2px) scale(1.04);
  color: #fff;
  text-decoration: none;
}
@media (max-width: 900px) {
  .product-list-grid {
    gap: 18px;
  }
  .product-card-image {
    height: 160px;
  }
}
@media (max-width: 600px) {
  .product-hero h1 {
    font-size: 1.5rem;
  }
  .product-list-section {
    padding: 0 0 30px 0;
  }
  .product-card-content {
    padding: 16px 8px 12px 8px;
  }
  .product-card-image {
    height: 110px;
  }
}
