.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Sabit 2 sütun */
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.product-card {
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  padding: 20px;
  background-color: #fff;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.product-card img {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 16px;
}

.product-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #1a1a1a;
}

.product-card p {
  font-size: 14px;
  color: #666;
  min-height: 48px;
  margin-bottom: 16px;
}

.product-card button {
  background-color: #0071e3;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.product-card button:hover {
  background-color: #005bb5;
}
