/* ============================================================
   Vincor Labs — products.css
   Linked from: products.html
   ============================================================ */

/* ── PAGE BANNER ─────────────────────────────────────────── */

.page-banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  color: var(--white);
  padding: 50px 20px;
  text-align: center;
}

.page-banner h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-banner p {
  font-size: 15px;
  color: rgba(255,255,255,.7);
}

/* ── PRODUCTS PAGE LAYOUT ────────────────────────────────── */
.products-page {
  padding: 60px 20px;
}

/* ── RESEARCH NOTICE ─────────────────────────────────────── */
.research-notice {
  background: var(--blue-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--blue-dark);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ── CART MESSAGE ────────────────────────────────────────── */
.cart-msg {
  display: none;
  background: #d4edda;
  border: 1px solid #a8d5b5;
  color: #1a5c2e;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.cart-msg.visible {
  display: block;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  margin-top: auto;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 480px) {
  .page-banner h1 { font-size: 30px; }
  .products-grid { grid-template-columns: 1fr; }
}