/* ── Product page custom styles ─────────────────────────── */

.product-hero {
  text-align: center;
  padding: 2em 0 1.5em;
  border-bottom: 1px solid #eee;
  margin-bottom: 2em;
}

.product-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.3em;
}

.product-hero p.tagline {
  font-size: 1.15rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.product-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5em;
  margin: 2em 0;
}

.feature-card {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1.2em;
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-size: 1.1rem;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #444;
}

.product-section {
  margin: 2.5em 0;
}

.product-section h2 {
  border-bottom: 1px solid #eee;
  padding-bottom: 0.3em;
  margin-bottom: 1em;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
}

.product-table th,
.product-table td {
  text-align: left;
  padding: 0.6em 0.8em;
  border-color: #e5e5e5;
}

.product-table th {
  background: #fafafa;
  width: 200px;
}

.requirements-list {
  list-style: none;
  padding-left: 0;
}

.requirements-list li {
  margin-left: 0;
  padding: 0.3em 0 0.3em 1.5em;
  position: relative;
}

.requirements-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.cta-section {
  text-align: center;
  padding: 2em 0;
  margin-top: 3em;
  border-top: 1px solid #eee;
}

.cta-section a {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 0.7em 1.8em;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.cta-section a:hover {
  background: #333;
}
