.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)), var(--panel);
  border: 1px solid var(--ring);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  border-color: rgba(90,169,255,0.4);
}

.product-image {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(90,169,255,0.12), rgba(167,179,216,0.08)),
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.03) 0,
      rgba(255,255,255,0.03) 8px,
      transparent 8px,
      transparent 16px
    );
  border-bottom: 1px solid var(--ring);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-image--placeholder span {
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.product-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-body h2 {
  font-size: 1.25rem;
  margin: 0;
}

.product-desc {
  margin: 0;
  flex: 1;
}

.product-meta {
  margin: 0;
  font-size: 0.9rem;
  color: var(--primary);
}

.product-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(90,169,255,0.35);
  background: rgba(90,169,255,0.1);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.contact-card {
  text-align: center;
  margin-top: 12px;
}

.contact-card p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.contact-email {
  display: inline-block;
  margin-top: 8px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.contact-email:hover {
  color: var(--ink);
  text-shadow: 0 0 20px var(--glow);
}
