/* ── Products Page ───────────────────────────────────── */

.products-hero {
  text-align: center;
  padding-bottom: 48px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 64px;
}

/* ── Product Card ────────────────────────────────────── */
.product-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.2s;
}
.product-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.product-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0;
}

.product-tagline {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin-bottom: 16px;
}

.product-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ── Status Badges ───────────────────────────────────── */
.status-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.status-badge.live {
  background: rgba(52,211,153,0.12);
  color: #34d399;
  border: 1px solid rgba(52,211,153,0.3);
}
.status-badge.staging {
  background: rgba(192,132,252,0.12);
  color: #c084fc;
  border: 1px solid rgba(192,132,252,0.3);
}
.status-badge.coming-soon {
  background: rgba(251,191,36,0.12);
  color: #fbbf24;
  border: 1px solid rgba(251,191,36,0.3);
}

/* ── Feature List ────────────────────────────────────── */
.product-features {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.product-features li {
  padding: 5px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.product-features li::before {
  content: "\2192";
  color: #818cf8;
  margin-right: 10px;
  font-weight: 700;
}

/* ── Product Actions (dual buttons) ─────────────────── */
.product-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

/* ── CTA Button ──────────────────────────────────────── */
.product-cta {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 8px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.product-cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ── View Details Link (outline/ghost button) ────────── */
.product-detail-link {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.product-detail-link:hover {
  color: #e0e0e8;
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-1px);
}

/* ── Footer Section ──────────────────────────────────── */
.products-footer-section {
  text-align: center;
  padding: 64px 0 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    padding: 24px 20px;
  }
}
