/* Top Section */
.hero {
  position: relative;
  width: 100%;
  height: 300px;
  background: url('../../resource/products/page-title.jpg') no-repeat center center/cover;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.hero-content h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.breadcrumb {
  color: #f47c20;
  font-size: 16px;
}

.breadcrumb a {
  text-decoration: none;
  color: white;
}

/* Product Detail Section Styling */
.product-detail-section {
  padding: 3rem 1rem;
}

.product-detail-section img {
  width: 100%;
  max-width: 100%;
  height: 400px; /* Fixed height for consistent look */
  object-fit: cover; /* Ensures the image fills the box nicely */
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.product-detail-section h2 {
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
}

.product-detail-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1rem;
}

.product-detail-section h5 {
  font-weight: 600;
  margin-top: 2rem;
  color: #333;
}

.product-detail-section ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}

.product-detail-section ul li {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 0.3rem;
}

/* Optional: Responsive tweaks */
@media (max-width: 768px) {
  .product-detail-section {
      padding: 2rem 1rem;
  }

  .product-detail-section img {
      width: 100%;
      height: auto;
  }
}

@media (max-width: 768px) {
  .product-detail-section img {
      height: auto; /* Let it adjust naturally on smaller screens */
      object-fit: contain;
  }
}