/* =========================
   Unique Products Section (Full Hero Style)
   ========================= */
.products-section {
  height: 100vh;                   /* always full screen height */
  display: flex;
  align-items: center;              /* vertical center */
  justify-content: center;          /* horizontal center */
  background: #f8f9fb;
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
    padding: 120px 20px 40px;         /* ⬅ top space near header */
}

.products-container {
  max-width: 1200px;
  width: 100%;
}

.products-title {
  margin-bottom: 40px;
}

.products-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;   /* make cards equal height */
}

.product-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  flex: 1 1 45%;   /* 2 per row on desktop */
  max-width: 500px;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px); /* nice hover effect */
}

.product-image {
  height: 250px;
  background-position: center;
  background-size: cover;
}

.product-content {
  padding: 20px;
}

.product-content h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: var(--primary, #2a4d8f);
}

.product-content h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.product-content p {
  font-size: 1rem;
  line-height: 1.6;
}
