.shop-banner-sec {
  background-image: url("../../../../public/images/shop-detail.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 350px 140px 100px;
  position: relative;
  z-index: 1;
}

.shop-banner-sec::before {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #16190073;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.shop-banner-content h1 {
  font-family: var(--font-dm-display);
  font-weight: 400;
  font-size: 100px;
  color: #fff;
}

.shop-banner-content h4 {
  font-size: 22px;
  font-weight: 500;
  font-family: var(--font-dm-display);
  color: var(--yellow-color);
}

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .shop-banner-sec {
    padding: 250px 60px 80px;
  }

  .shop-banner-content h1 {
    font-size: 70px;
    line-height: 1.2;
  }

  .shop-banner-content h4 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .shop-banner-sec {
    padding: 180px 30px 60px;
    text-align: center;
  }

  .shop-banner-content h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .shop-banner-content h4 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .shop-banner-sec {
    padding: 170px 20px 50px;
  }

  .shop-banner-content h1 {
    font-size: 32px;
    line-height: 1.1;
  }

  .shop-banner-content h4 {
    font-size: 14px;
  }
}

