
/* ==========================================================
   PRODUCT CARDS LIST (Vertical Stack)
   ========================================================== */
.cards-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.product-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;  /* spacing between cards */
}


.product-card {
  background-color: #b2e6ee;
  border-radius: 14px;
  padding: 35px 40px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  gap: 30px;
  text-decoration: none;
  color: #000;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

/* Product image in card */
.product-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  background-color: #fff;
  border-radius: 10px;
  flex-shrink: 0;
}

/* Product info section */
.product-info {
  flex: 1;
}

/* Product name */
.product-card h3 {
  font-family: "Fira Sans Condensed", sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

/* Product description */
.product-card p {
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 18px 0;
  color: #222;
}

/* Learn more button */
.learn-more-btn {
  background-color: #007c91;
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: background-color 0.2s ease;
  display: inline-block;
}

.product-card:hover .learn-more-btn {
  background-color: #005f6f;
}


/* ==========================================================
   RESPONSIVE DESIGN
   ========================================================== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    gap: 12px;
  }

  .icon-container {
    align-self: flex-end;
  }

  .product-card {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .product-image {
    width: 120px;
    height: 120px;
  }

  .page-title {
    font-size: 28px;
  }
}