/* ======= Product Excerpt Section (Homepage) ======= */
.product-excerpt-section {
  padding: 50px 20px;
  background-color: #f9fafe;
  text-align: center;
}

.product-excerpt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 products side by side */
  gap: 30px;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* Reuse .product-card styling */
.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  padding: 20px;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}
.product-card img {
width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}



.product-card h3 {
  color: #022a44;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 0.95rem;
  color: #555;
}

/* View More Button */
.view-more-container {
  margin-top: 10px;
}

.view-more-btn {
  display: inline-block;
  padding: 10px 24px;
  background-color: #022a44; /* match header color */
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.view-more-btn:hover {
  background-color: #01416c;
}

/* ======= Responsive Layout ======= */
@media (max-width: 768px) {
  .product-excerpt-grid {
    grid-template-columns: 1fr; /* Stack on smaller screens */
  }
}
