/* ============================
   Welcome – Product Section
============================ */

.product-section {
  position: relative;
  padding: 40px 20px;
  background-image: url('../contents/img/geometric-bg.jpg'); /* 📸 Replace with your actual image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: left;
  overflow: hidden;
  z-index: 1;
}

.product-section-2 {
  position: relative;
  padding: 40px 20px;
  background-color: #f6dbae; /* Replace with your desired background color */
  text-align: left;
  overflow: hidden;
  z-index: 1;
}

.product-section-3 {
  position: relative;
  padding: 40px 20px;
  background-color: #e6cc94;
  text-align: left;
  overflow: hidden;
  z-index: 1;
}

.product-section-inner {
  max-width: 800px;
  margin: 0 auto;
  border: 2px solid #5a3e2b; /* Border color */
  padding: 20px;
  background-color: #fff7e6; /* Inner background color */
  box-sizing: border-box;
}


/* ============================
   Section Title
============================ */
.product-section h2 {
  font-size: 25px;
  margin-bottom: 20px;
  color: #5a3e2b;
 /* text-transform: uppercase;*/
  text-align: center;
  letter-spacing: 1.2px;
  font-weight: 600;
}
.product-section-2 h2 {
  font-size: 25px;
  margin-bottom: 30px; /* Reduced the margin-bottom for less space */
  text-align: center;
  color: #5a3e2b;
  letter-spacing: 1.2px;
  font-weight: 600;
}
.product-section-3 h2 {
  font-size: 25px;
  margin-bottom: 30px; /* Reduced the margin-bottom for less space */
  text-align: center;
  color: #5a3e2b;
  letter-spacing: 1.2px;
  font-weight: 600;
}
.product-section-3 h3 {
  font-size: 20px;
  margin-bottom: 10px; /* Reduced the margin-bottom for less space */
  text-align: left;
  color: #747f60;
  letter-spacing: 1.2px;
  font-weight: 600;
}
/* ============================
   Intro Paragraph
============================ */

.product-intro {
  max-width: 800px;
  margin: 0 auto 0px; /* Decreased the bottom margin */
  font-size: 18px;
  color: #4a3e3e;
  line-height: 1.8;
  font-family: Helvetica, Arial, sans-serif;
  font-style: normal;
}

.product-section-2 .product-intro {
  margin-top: 10; /* Ensure no margin at the top of the paragraph */
}

/* ============================
   3-Column Responsive Grid
============================ */

/* Grid Layout Styling */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
  gap: 20px;
  max-width: 1200px;
  margin: 0px auto;
}

/* Product Item Styling */
.product-item {
  text-align: center;
}

.product-item img {
  width: 100%;
  height: auto;
  border-radius: 10px; /* Optional: Rounded corners */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect on Images */
.product-item img:hover {
  transform: scale(1.05); /* Slight zoom effect */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Box shadow on hover */
}

/* Text Styling Under Images */
.product-item figcaption {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #5a3e2b; /* Text color */
}
