/* ========================================
   ASP Associates — Products Page Styles
   products.css
   ======================================== */

.product-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.product-section:last-of-type {
  border-bottom: none;
}

.product-section__header {
  margin-bottom: var(--space-10);
}

.product-section__header h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-3);
}

.product-section__header p {
  font-size: var(--text-base);
  max-width: 560px;
}

.product-list {
  display: flex;
  flex-direction: column;
}

.product-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-8);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.product-row:first-child {
  border-top: 1px solid var(--border);
}

.product-row__name {
  font-size: var(--text-md);
  font-weight: 700;
}

.product-row__desc {
  font-size: var(--text-base);
  color: var(--text-secondary);
}

.product-row__meta {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-2);
}

.product-row__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 5px;
  background: var(--accent-subtle);
  color: var(--accent);
}

.custom-row {
  background: var(--bg-surface);
  border-radius: var(--radius-base);
  padding: var(--space-10);
  text-align: center;
  box-shadow: var(--shadow-subtle);
}

.custom-row h3 {
  margin-bottom: var(--space-3);
}

.custom-row p {
  max-width: 480px;
  margin: 0 auto var(--space-6);
  font-size: var(--text-base);
}

@media (max-width: 768px) {
  .product-row {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }
}
