/* =============================================
   MISTYOZ AI — products.css
   ============================================= */

/* Hero glow */
.products-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 480px;
  background: radial-gradient(ellipse at top center,
    rgba(107, 141, 247, 0.07) 0%,
    transparent 65%);
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 640px) {
  .products-glow {
    width: 320px;
    height: 260px;
  }
}


/* =============================================
   PRODUCT CARDS
   ============================================= */
.product-card {
  min-height: 280px;
}


/* =============================================
   TAGS
   ============================================= */

/* Tech/category pills */
.tag {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid #1e1e1e;
  border-radius: 999px;
  font-size: 0.65rem;
  color: #666;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.product-card:hover .tag {
  border-color: #2a2a2a;
  color: #888;
}

/* "New" / "Open Source" badge */
.tag-new {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid rgba(107, 141, 247, 0.3);
  border-radius: 999px;
  font-size: 0.6rem;
  color: #6b8df7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 12px;
}


/* =============================================
   LINK BUTTONS
   ============================================= */
.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid #1e1e1e;
  border-radius: 999px;
  font-size: 0.75rem;
  color: #888;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.link-btn:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

/* Primary variant — white fill */
.link-btn-primary {
  background: #fff;
  border-color: #fff;
  color: #000;
  font-weight: 600;
}

.link-btn-primary:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.88);
  color: #000;
}