     /* ================= product-hero SECTION ================= */
    .product-hero{
  position:relative;
  height:320px;
  border-radius:20px;
  margin:10px;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  margin-bottom: 25px;
  background:url('../images/factory_machinery.png') center/cover no-repeat;
}

.product-hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.2) 100%
  );
}

.product-hero-content{
  position:relative;
  z-index:2;
  width:70%;
  max-width:none;
  padding:0 40px;
  display:flex;
  align-items:flex-end;
  gap:40px;
}

.product-hero h1{
  font-size:74px;
  font-weight:800;
  color:#fff;
  font-style: italic;
  margin-bottom: 10px;
  letter-spacing:1px;
  white-space:nowrap;
}

.product-hero p{
  font-size:18px;
  color:rgba(255,255,255,0.85);
  line-height:1.4;
  max-width:420px;
  margin-bottom:40px;
}

