/* ===== Product Hero Banner ===== */

.phb-banner {
  position: relative;
  width: 100%;
  height: 105vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.phb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.phb-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  padding: 60px 60px 80px 120px;
  box-sizing: border-box;
}

.phb-title {
  color: #fff;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.phb-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 400;
  margin: 12px 0 0;
  line-height: 1.5;
}

.phb-btn-wrap {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* Shape divider */
.phb-shape {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

.phb-shape svg {
  display: block;
  width: 100%;
  height: 120px;
}

/* Remove outer element margins */
.elementor-widget-phb_product_hero {
  margin-bottom: 0 !important;
}

/* ===== Responsive ===== */
@media screen and (max-width: 1024px) {
  .phb-inner {
    padding: 40px 40px 60px;
  }
}

@media screen and (max-width: 768px) {
  .phb-banner {
    height: 50vh;
    min-height: 300px;
  }
  .phb-inner {
    padding: 30px 24px 50px;
    align-items: center;
    text-align: center;
  }
  .phb-btn {
    padding: 10px 28px;
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .phb-banner {
    height: 45vh;
    min-height: 260px;
  }
  .phb-inner {
    padding: 24px 20px 40px;
  }
}
