.products-container {
  position: relative; /* allow absolute images */
  text-align: center;
  padding: 60px 20px;
  background: #fdf8f0;
  overflow: visible; /* allow decorative images to show outside */
}

/* Heading with Decorative Images */
.products-heading-wrapper {
  display: flex;
  justify-content: center; /* center heading */
  align-items: center;     /* vertically center images */
  gap: 20px;               /* space between heading and images */
  margin-bottom: 30px;
  position: relative;
}

.products-heading-wrapper h1 {
  font-size: 3rem;
  color: #b39d5d;
  margin: 0;
  z-index: 2;
}

.products-heading-wrapper .decor-left,
.products-heading-wrapper .decor-right {
  width: 80px;
  height: 80px;
  opacity: 0.4;
  flex-shrink: 0;
}

/* Product Card */
.product-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-bottom: 60px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  overflow: hidden;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Product Image */
.product-img img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Product Details */
.product-details {
  max-width: 550px;
  text-align: left;
}

.product-details h2 {
  font-size: 2.2rem;
  color: #b39d5d;
  margin-bottom: 20px;
}

.product-details p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Button */
.btn {
  background: #b39d5d;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #9c7c4c;
  transform: scale(1.05);
}

/* Responsive */
@media(max-width: 992px){
  .products-heading-wrapper {
    gap: 10px;
  }
  .products-heading-wrapper h1 {
    font-size: 2.2rem;
  }
  .products-heading-wrapper .decor-left,
  .products-heading-wrapper .decor-right {
    width: 50px;
    height: 50px;
  }

  .product-card {
    flex-direction: column;
    gap: 25px;
  }
  .product-img img {
    width: 80%;
    height: auto;
  }
  .product-details {
    text-align: center;
  }
}
