
/* ============================================
   HERO SECTION — Main Styles
   ============================================ */

.bh-hero { padding: 16px 0; background: #fff; }

.bh-hero__layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 16px;
  align-items: start;
}

.bh-hero__main { border-radius: 16px; overflow: hidden; min-width: 0; }
.bh-hero-swiper { border-radius: 16px; overflow: hidden; }

/* ── Slide ── */
.bh-hero__slide {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 360px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  overflow: hidden;
}

/* Decorative circles on slide (when no bg image) */
.bh-hero__slide::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
  z-index: 1;
}
.bh-hero__slide::after {
  content: '';
  position: absolute;
  right: 60px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 1;
}

/* Dark overlay when bg image present */
.bh-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.5) 0%, rgba(0,0,0,.15) 60%, transparent 100%);
  z-index: 2;
}

/* ── Content ── */
.bh-hero__content {
  position: relative;
  z-index: 3;
  padding: 40px 48px;
  max-width: 520px;
}

.bh-hero__content--over-img .bh-hero__title { color: #fff; }
.bh-hero__content--over-img .bh-hero__subtitle { color: rgba(255,255,255,.9); }

/* Tag badge */
.bh-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #ff6f00;
  color: #fff;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(255,111,0,.35);
}

/* Title */
.bh-hero__title {
  font-family: Poppins, sans-serif;
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 800;
  color: #1a3c1f;
  line-height: 1.2;
  margin-bottom: 10px;
}

/* Subtitle */
.bh-hero__subtitle {
  font-size: 15px;
  color: #4a7b50;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Swiper controls */
.bh-hero-swiper .swiper-button-next,
.bh-hero-swiper .swiper-button-prev {
  color: #2e7d32 !important;
  background: rgba(255,255,255,.95);
  width: 36px !important;
  height: 36px !important;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
}
.bh-hero-swiper .swiper-button-next::after,
.bh-hero-swiper .swiper-button-prev::after {
  font-size: 13px !important;
  font-weight: 900 !important;
}
.swiper-pagination-bullet { background: #2e7d32; opacity: .35; }
.swiper-pagination-bullet-active { background: #2e7d32 !important; opacity: 1; }

/* ============================================
   SIDE BANNERS
   ============================================ */

.bh-hero__side { display: flex; flex-direction: column; gap: 14px; }

.bh-hero__side-banner {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  flex: 1;
  min-height: 168px;
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
}
.bh-hero__side-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.13);
}
.bh-hero__side-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 168px;
  display: block;
}

/* ── Placeholder Card 1 (Hot Deals) ── */
.bh-hero__side-banner:nth-child(1) .bh-side-placeholder {
  background: linear-gradient(135deg, #ff6f00 0%, #ff8f00 50%, #ffa726 100%);
  color: #fff;
}
.bh-hero__side-banner:nth-child(1) .bh-side-placeholder .bh-side-placeholder__icon { color: rgba(255,255,255,.85); }
.bh-hero__side-banner:nth-child(1) .bh-side-placeholder .bh-side-placeholder__badge { background: rgba(255,255,255,.2); }

/* ── Placeholder Card 2 (New Arrivals) ── */
.bh-hero__side-banner:nth-child(2) .bh-side-placeholder {
  background: linear-gradient(135deg, #1565c0 0%, #1976d2 50%, #42a5f5 100%);
  color: #fff;
}
.bh-hero__side-banner:nth-child(2) .bh-side-placeholder .bh-side-placeholder__icon { color: rgba(255,255,255,.85); }
.bh-hero__side-banner:nth-child(2) .bh-side-placeholder .bh-side-placeholder__badge { background: rgba(255,255,255,.2); }

/* ── Placeholder Base ── */
.bh-side-placeholder {
  position: relative;
  width: 100%;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 18px 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #1a3c1f;
}

/* Decorative circle inside placeholder */
.bh-side-placeholder::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  pointer-events: none;
}
.bh-side-placeholder::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  pointer-events: none;
}

.bh-side-placeholder__badge {
  display: inline-block;
  background: rgba(0,0,0,.12);
  color: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.bh-side-placeholder__title {
  font-family: Poppins, sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 4px;
}

.bh-side-placeholder__sub {
  font-size: 12px;
  font-weight: 500;
  opacity: .85;
}

.bh-side-placeholder__icon {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 28px;
  opacity: .7;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
  .bh-hero__layout { grid-template-columns: 1fr 220px; gap: 12px; }
  .bh-hero__slide { min-height: 300px; }
  .bh-hero__content { padding: 28px 32px; }
  .bh-side-placeholder { min-height: 140px; }
  .bh-hero__side-banner { min-height: 140px; }
  .bh-hero__side-banner img { min-height: 140px; }
}

/* Mobile */
@media (max-width: 768px) {
  .bh-hero { padding: 8px 0; }
  .bh-hero__layout {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .bh-hero__main { border-radius: 12px; }
  .bh-hero-swiper { border-radius: 12px; }
  .bh-hero__slide { min-height: 230px !important; }
  .bh-hero__content { padding: 22px 20px !important; max-width: 100% !important; }
  .bh-hero__title { font-size: 22px !important; margin-bottom: 6px !important; }
  .bh-hero__subtitle { font-size: 13px !important; margin-bottom: 14px !important; }
  .bh-hero-swiper .swiper-button-next,
  .bh-hero-swiper .swiper-button-prev { display: none !important; }

  /* Side banners: 2 columns */
  .bh-hero__side { flex-direction: row !important; gap: 10px !important; }
  .bh-hero__side-banner { flex: 1 !important; min-height: 120px !important; border-radius: 12px !important; }
  .bh-hero__side-banner img { min-height: 120px !important; }
  .bh-side-placeholder { min-height: 120px !important; padding: 14px 14px; }
  .bh-side-placeholder__title { font-size: 14px !important; }
  .bh-side-placeholder__icon { font-size: 22px !important; top: 12px; right: 12px; }
  .bh-side-placeholder__badge { font-size: 9px !important; }
  .bh-side-placeholder__sub { font-size: 11px !important; }
}

/* Small Mobile */
@media (max-width: 480px) {
  .bh-hero__slide { min-height: 200px !important; }
  .bh-hero__content { padding: 16px 16px !important; }
  .bh-hero__title { font-size: 19px !important; }
  .bh-hero__tag { font-size: 10px !important; padding: 4px 10px !important; }
  .bh-hero__side-banner { min-height: 100px !important; }
  .bh-side-placeholder { min-height: 100px !important; }
}
