/* Enhanced styling for product descriptions and hero sections */

/* Product Card Enhancements */
.product-details h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #0b5542;
}

.product-details p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: #444;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.size-note {
  font-size: 0.85rem;
  font-weight: normal;
  color: #777;
}

/* Hero Section Enhancements */
.hero-content h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #fff;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

/* Benefit Card Enhancements */
.benefit-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.benefit-card h3 {
  color: #0b5542;
  margin: 15px 0 10px;
}

/* Better CTA Buttons */
.btn-primary, .btn-secondary {
  padding: 12px 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(139, 195, 74, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
