/* E-commerce section banners (middle + bottom) */
.sec-banner {
  --sec-accent: #f4813c;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  color: #fff;
  isolation: isolate;
  box-shadow: 0 16px 36px rgba(15, 23, 42, .12);
}
.sec-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sec-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform 7s ease;
}
.swiper-slide-active .sec-banner__bg img {
  transform: scale(1.08);
}
.sec-banner__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(8, 10, 16, .82) 0%, rgba(8, 10, 16, .45) 48%, rgba(8, 10, 16, .2) 100%);
}
.sec-banner__body {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 100%;
  padding: 28px 30px;
}
.sec-banner__copy {
  max-width: 62%;
  min-width: 0;
}
.sec-banner__deal {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #1a0f0a;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .2);
}
.sec-banner__eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 8px;
}
.sec-banner__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.18;
  margin: 0 0 8px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .28);
}
.sec-banner__sub {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .88);
  margin: 0;
  max-width: 34em;
}
.sec-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  color: #fff !important;
  background: var(--sec-accent);
  border: 0;
  box-shadow: 0 10px 24px rgba(244, 129, 60, .38);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.sec-banner__btn:hover {
  transform: translateY(-2px);
  background: #e06f2c;
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(244, 129, 60, .45);
}
.sec-banner__fg {
  flex: 0 0 auto;
  max-width: 36%;
  pointer-events: none;
}
.sec-banner__fg img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 210px;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, .35));
}

/* Middle — promo card next to testimonials (no CTA) */
.sec-banner--middle {
  width: 100%;
  min-height: 240px;
  aspect-ratio: 5 / 3;
}
.sec-banner--middle .sec-banner__veil {
  background:
    linear-gradient(180deg, rgba(8, 10, 16, .2) 0%, rgba(8, 10, 16, .35) 45%, rgba(8, 10, 16, .88) 100%),
    linear-gradient(90deg, rgba(8, 10, 16, .55) 0%, transparent 60%);
}
.sec-banner--middle .sec-banner__body {
  align-items: flex-end;
  padding: 24px 26px 26px;
}
.sec-banner--middle .sec-banner__copy {
  max-width: 72%;
}
.sec-banner--middle .sec-banner__title {
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
}
.sec-banner--middle .sec-banner__sub {
  font-size: 13.5px;
}
.sec-banner--middle .sec-banner__btn {
  display: none !important;
}
.sec-banner--middle .sec-banner__fg {
  align-self: center;
}
.sec-banner--middle .sec-banner__fg img {
  max-height: 170px;
}

.sec-banner.sec_mid_deals { --sec-accent: #f4813c; }
.sec-banner.sec_mid_deals .sec-banner__deal { background: #f4813c; color: #fff; }
.sec-banner.sec_mid_new { --sec-accent: #3b82f6; }
.sec-banner.sec_mid_new .sec-banner__deal { background: #3b82f6; color: #fff; }
.sec-banner.sec_mid_best { --sec-accent: #22c55e; }
.sec-banner.sec_mid_best .sec-banner__deal { background: #22c55e; color: #052e16; }

/* Bottom — store CTA strip */
.sec-banner--bottom {
  min-height: 220px;
}
.sec-banner--bottom .sec-banner__body {
  padding: 38px 44px;
  min-height: 220px;
}
.sec-banner--bottom .sec-banner__copy {
  max-width: 58%;
}
.sec-banner--bottom .sec-banner__title {
  font-size: clamp(1.5rem, 2.6vw, 2.15rem);
}
.sec-banner--bottom .sec-banner__fg img {
  max-height: 200px;
}

.sec-banner.sec_bot_sale { --sec-accent: #f4813c; }
.sec-banner.sec_bot_sale .sec-banner__deal { background: #fff; color: #c2410c; }
.sec-banner.sec_bot_ship { --sec-accent: #0ea5e9; }
.sec-banner.sec_bot_ship .sec-banner__deal { background: #fff; color: #0369a1; }
.sec-banner.sec_bot_ship .sec-banner__btn {
  background: #0ea5e9;
  box-shadow: 0 10px 24px rgba(14, 165, 233, .38);
}
.sec-banner.sec_bot_ship .sec-banner__btn:hover {
  background: #0284c7;
  box-shadow: 0 14px 28px rgba(14, 165, 233, .45);
}

.middle-banner-slider {
  border-radius: 14px;
  overflow: hidden;
}
.middle-banner-slider .swiper-slide { height: auto; }
.middle-banner-slider .swiper-pagination-bullet {
  background: #fff;
  opacity: .45;
}
.middle-banner-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: #f4813c;
}
.newsletter-inner.has-sec-system {
  padding: 0 !important;
  background: transparent;
  min-height: 0;
  box-shadow: none;
}

@media (max-width: 991px) {
  .sec-banner__fg { display: none; }
  .sec-banner__copy { max-width: 100% !important; }
  .sec-banner--middle .sec-banner__body,
  .sec-banner--bottom .sec-banner__body { padding: 22px 18px; }
  .sec-banner--middle {
    aspect-ratio: auto;
    min-height: 210px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sec-banner__bg img,
  .swiper-slide-active .sec-banner__bg img {
    transform: none;
    transition: none;
  }
}
