.banner_part {
    width: 100%;
    padding: 60px 0 120px; /* less space on top, keep bottom */

    background: #f8f9fa;
}
.banner_part .owl-stage-outer {
    padding-top: 0 !important;
}


/* Single slide */
.single_banner_slide {
    width: 100%;
}

/* Align content vertically */
.single_banner_slide .row {
    min-height: 800px; /* Increase banner height here */
    align-items: center;
}

/* Text */
.banner_text_iner h1 {
    font-size: 56px;
    font-weight: 700;
    color: #2c2c2c;
}

.banner_text_iner p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Image container */
.banner_img {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

/* Image FIX */
.banner_img img {
    width: 100%;
    max-height: 800px;   /* safe size */
    object-fit: contain;
}


/* Pattern image (optional) */
.pattern_img {
    display: none;
}
@media (min-width: 992px) {
    .banner_img img {
        transform: scale(1.1);
    }
}
body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

@media (max-width: 991px) {
    .banner_part {
        padding: 40px 0 60px;
    }
    .single_banner_slide .row {
        min-height: auto; 
        padding-top: 40px;
    }
    .banner_text_iner h1 {
        font-size: 36px;
    }
    .banner_img img {
        margin-top: 40px;
        max-height: 400px;
    }
    .banner_img {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .banner_text_iner h1 {
        font-size: 28px;
    }
    .banner_text_iner p {
        font-size: 15px;
    }
    .btn_1 {
        padding: 10px 24px;
        font-size: 14px;
    }
}
/* ================= RESPONSIVE ONLY (NO STRUCTURE CHANGES) ================= */

/* ---------- Tablets (≤ 991px) ---------- */
@media (max-width: 991px) {

  /* Banner */
  .single_banner_slide .row {
    min-height: auto;
    text-align: center;
  }

  .banner_text_iner {
    margin-bottom: 30px;
  }

  .banner_img {
    justify-content: center;
  }

  .banner_img img {
    max-height: 420px;
  }

  /* Product list */
  .single_product_iner {
    margin-bottom: 60px;
  }

  .single_product_content {
    margin-top: 30px;
    text-align: center;
  }

  /* Feature section */
  .feature_part_tittle,
  .feature_part_content {
    text-align: center;
  }
}

/* ---------- Mobile (≤ 576px) ---------- */
@media (max-width: 576px) {

  /* Banner */
  .banner_text_iner h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .banner_text_iner p {
    font-size: 14px;
  }

  .banner_img img {
    max-height: 300px;
  }

  /* Product list */
  .single_product_img img {
    width: 100%;
  }

  .single_product_content h2 {
    font-size: 18px;
  }

  /* Trending items */
  .single_product_item {
    text-align: center;
    margin-bottom: 30px;
  }

  /* Client review */
  .single_client_review p {
    font-size: 14px;
  }

  /* Subscribe */
  .subscribe_form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .subscribe_form input {
    width: 100%;
  }

  .subscribe_form .btn_1 {
    width: 100%;
  }
}
