 /* Product Grid: Always 2 per row */
.product-grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* Product Card */
.p-card {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  transition: 0.25s ease;
}

.p-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* ---- FIXED: Perfect square image ---- */
.p-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;      /* PERFECT SQUARE */
  overflow: hidden;
}

.p-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;       /* shows whole product */
  background: #f9fafb;       /* light background */
  padding: 6px;
}

/* Card Body */
.p-card-body {
  padding: 10px;
}

.p-title {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.p-price {
  font-size: 0.9rem;
  color: #047857;
  font-weight: 700;
}

.p-desc {
  font-size: 0.75rem;
  color: #4b5563;
  line-height: 1.3;
}

/* Support CTA */

.support-cta p {
  font-size: 0.85rem;
  color: #4b5563;
  margin: 0 0 10px;
}

.support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #16a34a;
  color: #f9fafb;
  font-size: 0.9rem;
  font-weight: 600;
}

.support-btn:hover {
  background: #15803d;
}