/* =========================
   SLIDER SECTION (MATCH SITE THEME)
========================= */
.slider-section {
  background: #ffffff; /* clean & theme-safe */
  padding: 20px 0 40px;
}

/* =========================
   OUTER WRAPPER
========================= */
.slider-wrapper {
  padding: 20px 60px;
  box-sizing: border-box;
}

/* =========================
   SWIPER CONTAINER
========================= */
.swiper {
  width: 100%;
  height: 460px;
  overflow: hidden;
}

/* =========================
   SLIDE (CARD STYLE)
========================= */
.swiper-slide {
  border-radius: 24px;   /* round corners */
  overflow: hidden;      /* IMPORTANT */
  background: #fff;
  border: 1px solid #e5e7eb;
}



/* subtle lift only (no zoom drama) */
.swiper-slide-active {
  transform: translateY(-4px);
}

/* =========================
   SLIDE IMAGE
========================= */
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   OVERLAY (SOFT & CLEAN)
========================= */
.swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.15)
  );
}

header,
.site-header,
.main-header {
    position: relative;   /* or fixed / sticky */
    z-index: 9999;
}

/* =========================
   TEXT CONTENT
========================= */
.slide-content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  color: #ffffff;
  max-width: 70%;
}

.slide-content h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

/* =========================
   BUTTON (ECOM, SMALL & CLEAN)
========================= */
.slide-btn {
  padding: 6px 16px;
  font-size: 13px;
  background: #ff9800;
  color: #ffffff;
  font-weight: 600;
  border-radius: 18px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.slide-btn:hover {
  background: #ffb347;
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.35);
}

/* =========================
   NAVIGATION ARROWS (MINIMAL)
========================= */
.swiper-button-next,
.swiper-button-prev {
  width: 34px;
  height: 34px;
  background: #ffffff;
  border-radius: 50%;
  color: #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: 0.25s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 13px;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #ff9800;
  color: #ffffff;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
  .slider-wrapper {
    padding: 15px;
  }

  .swiper {
    height: 320px;
  }

  .swiper-slide {
    height: 280px;
    border-radius: 16px;
  }

  .slide-content {
    bottom: 18px;
    left: 18px;
    max-width: 85%;
  }

  .slide-content h2 {
    font-size: 18px;
  }

  .slide-btn {
    font-size: 12px;
    padding: 5px 14px;
  }
}


/* Remove gap below slider */
.slider-section,
.hero-slider,
.banner-slider {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Remove gap above banner/products */
.banner-section,
.product-section,
.section-t-space {
    margin-top: 0 !important;
    padding-top: 0 !important;
}


/* Desktop banner */
.banner-section {
    margin-top: 2px;
}

.banner-contain {
    max-width: 1920px;
    height: 150px;   /* desktop height */
    margin: 0 auto;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== HIDE BANNER ON MOBILE ===== */
@media (max-width: 768px) {
    .banner-section {
        display: none;
    }
}



