/* Homepage 6 — Bacola-inspired grocery marketplace */

.bsp-homepage--homepage-6 {
  --bsp-h6-navy: #233a95;
  --bsp-h6-cyan: #2bbef9;
  --bsp-h6-sale: #ed174a;
  --bsp-h6-text: #202435;
  --bsp-h6-muted: #71778e;
  --bsp-h6-border: #e4e5ee;
  --bsp-h6-soft: #f7f8fd;
  --bsp-h6-radius: 8px;
  --bsp-h6-stock: #00b853;
  --bsp-container: 1400px;

  color: var(--bsp-h6-text);
  background: #ffffff;
  font-family: "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.bsp-homepage--homepage-6 .bsp-container {
  width: min(100% - 32px, var(--bsp-container, 1400px));
  max-width: var(--bsp-container, 1400px);
  margin-inline: auto;
}

.bsp-h6-empty-note {
  margin: 0;
  padding: 28px 20px;
  border: 1px dashed var(--bsp-h6-border);
  border-radius: var(--bsp-h6-radius);
  background: var(--bsp-h6-soft);
  color: var(--bsp-h6-muted);
  font-size: 14px;
  text-align: center;
}

/* ---- Section headers ---- */

.bsp-h6-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--bsp-h6-border);
}

.bsp-h6-section-head__title {
  margin: 0 0 4px;
  color: var(--bsp-h6-text);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.bsp-h6-section-head__subtitle {
  margin: 0;
  color: var(--bsp-h6-muted);
  font-size: 13px;
  line-height: 1.5;
}

.bsp-h6-section-head__view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: var(--bsp-h6-navy);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.bsp-h6-section-head__view-all:hover {
  color: var(--bsp-h6-cyan);
}

/* ---- Coupon strip ---- */

.bsp-h6-coupon {
  background: var(--bsp-h6-coupon-bg, var(--bsp-h6-soft));
  border-bottom: 1px solid var(--bsp-h6-border);
}

.bsp-h6-coupon__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  min-height: 48px;
  padding-block: 10px;
}

.bsp-h6-coupon__text {
  margin: 0;
  color: var(--bsp-h6-coupon-text, var(--bsp-h6-text));
  font-size: 13px;
  font-weight: 500;
}

.bsp-h6-coupon__code {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border: 1px dashed var(--bsp-h6-coupon-code-border, var(--bsp-h6-navy));
  border-radius: 4px;
  background: var(--bsp-h6-coupon-code-bg, #ffffff);
  color: var(--bsp-h6-coupon-code-text, var(--bsp-h6-navy));
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.bsp-h6-coupon__btn {
  appearance: none;
  border: 0;
  border-radius: 4px;
  background: var(--bsp-h6-coupon-btn-bg, var(--bsp-h6-navy));
  color: var(--bsp-h6-coupon-btn-text, #ffffff);
  padding: 7px 14px;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.bsp-h6-coupon__btn:hover,
.bsp-h6-coupon__btn.is-copied {
  background: var(--bsp-h6-coupon-btn-hover-bg, var(--bsp-h6-cyan));
}

/* ---- Hero ---- */

.bsp-h6-hero {
  padding: 24px 0 8px;
  background: var(--bsp-h6-hero-section-bg, #ffffff);
}

.bsp-h6-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.7fr);
  gap: 16px;
  align-items: stretch;
}

.bsp-h6-hero__main {
  min-width: 0;
}

.bsp-h6-hero__viewport {
  position: relative;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--bsp-h6-radius);
  background: var(--bsp-h6-hero-main-bg, var(--bsp-h6-soft));
}

.bsp-h6-hero__track {
  position: relative;
  height: 100%;
  min-height: inherit;
}

.bsp-h6-hero__slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 12px;
  padding: 36px 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.bsp-h6-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.bsp-h6-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  max-width: 420px;
  z-index: 1;
}

.bsp-h6-hero__kicker {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 4px;
  background: var(--bsp-h6-hero-kicker-bg, rgba(35, 58, 149, 0.1));
  color: var(--bsp-h6-hero-kicker-text, var(--bsp-h6-navy));
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.bsp-h6-hero__title {
  margin: 0;
  color: var(--bsp-h6-hero-title, var(--bsp-h6-text));
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.bsp-h6-hero__title-line {
  display: block;
}

.bsp-h6-hero__title-bold {
  display: block;
  color: var(--bsp-h6-hero-title-highlight, var(--bsp-h6-navy));
  font-weight: 700;
}

.bsp-h6-hero__text {
  margin: 0;
  color: var(--bsp-h6-hero-text, var(--bsp-h6-muted));
  font-size: 15px;
  line-height: 1.6;
}

.bsp-h6-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.bsp-h6-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 6px;
  background: var(--bsp-h6-hero-btn-bg, var(--bsp-h6-cyan));
  color: var(--bsp-h6-hero-btn-text, #ffffff);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.bsp-h6-hero__btn:hover {
  background: var(--bsp-h6-hero-btn-hover-bg, var(--bsp-h6-navy));
}

.bsp-h6-hero__btn--ghost {
  background: transparent;
  color: var(--bsp-h6-hero-btn-ghost-text, var(--bsp-h6-navy));
  box-shadow: inset 0 0 0 1px var(--bsp-h6-hero-btn-ghost-border, var(--bsp-h6-border));
}

.bsp-h6-hero__btn--ghost:hover {
  background: #ffffff;
  color: var(--bsp-h6-hero-btn-ghost-hover, var(--bsp-h6-cyan));
}

.bsp-h6-hero__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.bsp-h6-hero__image {
  max-width: 100%;
  max-height: 300px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.bsp-h6-hero__dots {
  position: absolute;
  left: 40px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.bsp-h6-hero__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--bsp-h6-hero-dot, #c9cddb);
  cursor: pointer;
}

.bsp-h6-hero__dot.is-active {
  background: var(--bsp-h6-hero-dot-active, var(--bsp-h6-navy));
}

.bsp-h6-hero__sides {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  min-height: 360px;
}

/* ---- Shared banners ---- */

.bsp-h6-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 8px;
  align-items: center;
  overflow: hidden;
  min-height: 170px;
  padding: 22px 24px;
  border-radius: var(--bsp-h6-radius);
  background: var(--bsp-h6-soft);
}

.bsp-h6-banner__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  z-index: 1;
}

.bsp-h6-banner__kicker {
  color: var(--bsp-h6-banner-kicker, var(--bsp-h6-sale));
  font-size: 12px;
  font-weight: 700;
}

.bsp-h6-banner__title {
  margin: 0;
  color: var(--bsp-h6-banner-title, var(--bsp-h6-text));
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.bsp-h6-banner__text {
  margin: 0;
  color: var(--bsp-h6-banner-text, var(--bsp-h6-muted));
  font-size: 13px;
  line-height: 1.45;
}

.bsp-h6-banner__price {
  margin: 0;
  color: var(--bsp-h6-banner-price, var(--bsp-h6-navy));
  font-size: 14px;
  font-weight: 700;
}

.bsp-h6-banner__btn {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  color: var(--bsp-h6-banner-btn, var(--bsp-h6-navy));
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.bsp-h6-banner__btn:hover {
  color: var(--bsp-h6-banner-btn-hover, var(--bsp-h6-cyan));
}

.bsp-h6-banner__media {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}

.bsp-h6-banner__media img {
  max-width: 100%;
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.bsp-h6-banner--side {
  min-height: 0;
  height: 100%;
}

.bsp-h6-banner--dual {
  min-height: 200px;
}

.bsp-h6-banner--triple {
  min-height: 190px;
  grid-template-columns: 1fr;
  align-content: space-between;
}

.bsp-h6-banner--triple .bsp-h6-banner__media {
  justify-content: flex-end;
}

.bsp-h6-banner--triple .bsp-h6-banner__media img {
  max-height: 110px;
}

/* ---- Categories ---- */

.bsp-h6-cats {
  padding: 36px 0 12px;
  background: var(--bsp-h6-cats-section-bg, #ffffff);
}

.bsp-h6-cats .bsp-h6-section-head__title {
  color: var(--bsp-h6-cats-title, var(--bsp-h6-text));
}

.bsp-h6-cats .bsp-h6-section-head__subtitle {
  color: var(--bsp-h6-cats-subtitle, var(--bsp-h6-muted));
}

.bsp-h6-cats__grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
}

.bsp-h6-cats__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 10px;
  border: 1px solid var(--bsp-h6-cats-card-border, var(--bsp-h6-border));
  border-radius: var(--bsp-h6-radius);
  background: var(--bsp-h6-cats-card-bg, #ffffff);
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bsp-h6-cats__card:hover {
  border-color: var(--bsp-h6-cats-card-hover, var(--bsp-h6-cyan));
  box-shadow: 0 8px 20px rgba(35, 58, 149, 0.06);
}

.bsp-h6-cats__media {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bsp-h6-cats-media-bg, var(--bsp-h6-soft));
  overflow: hidden;
}

.bsp-h6-cats__media img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.bsp-h6-cats__placeholder {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--bsp-h6-cats-icon, var(--bsp-h6-navy));
}

.bsp-h6-cats__placeholder svg {
  width: 28px;
  height: 28px;
}

.bsp-h6-cats__name {
  color: var(--bsp-h6-cats-name, var(--bsp-h6-text));
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.bsp-h6-cats__count {
  color: var(--bsp-h6-cats-count, var(--bsp-h6-muted));
  font-size: 11px;
}

/* ---- Product grids ---- */

.bsp-h6-products,
.bsp-h6-deals,
.bsp-h6-new {
  padding: 36px 0 12px;
}

.bsp-h6-products {
  background: var(--bsp-h6-best-section-bg, #ffffff);
  --bsp-h6-card-bg: var(--bsp-h6-best-card-bg, #ffffff);
  --bsp-h6-card-border: var(--bsp-h6-best-card-border, var(--bsp-h6-border));
  --bsp-h6-card-media-bg: var(--bsp-h6-best-media-bg, #fafbff);
  --bsp-h6-card-title: var(--bsp-h6-best-product-title, var(--bsp-h6-text));
  --bsp-h6-card-title-hover: var(--bsp-h6-best-product-hover, var(--bsp-h6-navy));
  --bsp-h6-card-price: var(--bsp-h6-best-price, var(--bsp-h6-text));
  --bsp-h6-card-sale-price: var(--bsp-h6-best-sale-price, var(--bsp-h6-sale));
  --bsp-h6-card-badge-bg: var(--bsp-h6-best-badge-bg, var(--bsp-h6-sale));
  --bsp-h6-card-badge-text: var(--bsp-h6-best-badge-text, #ffffff);
  --bsp-h6-card-wishlist: var(--bsp-h6-best-wishlist, var(--bsp-h6-muted));
  --bsp-h6-card-wishlist-active: var(--bsp-h6-best-wishlist-active, var(--bsp-h6-sale));
  --bsp-h6-card-cart-bg: var(--bsp-h6-best-cart-bg, var(--bsp-h6-soft));
  --bsp-h6-card-cart-text: var(--bsp-h6-best-cart-text, var(--bsp-h6-navy));
  --bsp-h6-card-cart-hover-bg: var(--bsp-h6-best-cart-hover-bg, var(--bsp-h6-navy));
  --bsp-h6-card-cart-hover-text: var(--bsp-h6-best-cart-hover-text, #ffffff);
  --bsp-h6-card-stock-in: var(--bsp-h6-best-stock-in, var(--bsp-h6-stock));
  --bsp-h6-card-stock-out: var(--bsp-h6-best-stock-out, var(--bsp-h6-sale));
  --bsp-h6-card-rating: var(--bsp-h6-best-rating, #ffcd00);
  --bsp-h6-card-quickview-bg: var(--bsp-h6-best-quickview-bg, var(--bsp-h6-navy));
  --bsp-h6-card-quickview-text: var(--bsp-h6-best-quickview-text, #ffffff);
}

.bsp-h6-products .bsp-h6-section-head__title {
  color: var(--bsp-h6-best-title, var(--bsp-h6-text));
}

.bsp-h6-products .bsp-h6-section-head__subtitle {
  color: var(--bsp-h6-best-subtitle, var(--bsp-h6-muted));
}

.bsp-h6-products .bsp-h6-section-head__view-all {
  color: var(--bsp-h6-best-view-all, var(--bsp-h6-navy));
}

.bsp-h6-products .bsp-h6-card__price {
  color: var(--bsp-h6-card-price, var(--bsp-h6-text));
}

.bsp-h6-deals {
  background: var(--bsp-h6-deals-section-bg, #ffffff);
  --bsp-h6-card-bg: var(--bsp-h6-deals-card-bg, #ffffff);
  --bsp-h6-card-border: var(--bsp-h6-deals-card-border, var(--bsp-h6-border));
  --bsp-h6-card-media-bg: var(--bsp-h6-deals-media-bg, #fafbff);
  --bsp-h6-card-title: var(--bsp-h6-deals-product-title, var(--bsp-h6-text));
  --bsp-h6-card-title-hover: var(--bsp-h6-deals-product-hover, var(--bsp-h6-navy));
  --bsp-h6-card-price: var(--bsp-h6-deals-price, var(--bsp-h6-text));
  --bsp-h6-card-sale-price: var(--bsp-h6-deals-sale-price, var(--bsp-h6-sale));
  --bsp-h6-card-badge-bg: var(--bsp-h6-deals-badge-bg, var(--bsp-h6-sale));
  --bsp-h6-card-badge-text: var(--bsp-h6-deals-badge-text, #ffffff);
  --bsp-h6-card-wishlist: var(--bsp-h6-deals-wishlist, var(--bsp-h6-muted));
  --bsp-h6-card-wishlist-active: var(--bsp-h6-deals-wishlist-active, var(--bsp-h6-sale));
  --bsp-h6-card-cart-bg: var(--bsp-h6-deals-cart-bg, var(--bsp-h6-soft));
  --bsp-h6-card-cart-text: var(--bsp-h6-deals-cart-text, var(--bsp-h6-navy));
  --bsp-h6-card-cart-hover-bg: var(--bsp-h6-deals-cart-hover-bg, var(--bsp-h6-navy));
  --bsp-h6-card-cart-hover-text: var(--bsp-h6-deals-cart-hover-text, #ffffff);
  --bsp-h6-card-stock-in: var(--bsp-h6-deals-stock-in, var(--bsp-h6-stock));
  --bsp-h6-card-stock-out: var(--bsp-h6-deals-stock-out, var(--bsp-h6-sale));
  --bsp-h6-card-rating: var(--bsp-h6-deals-rating, #ffcd00);
  --bsp-h6-card-quickview-bg: var(--bsp-h6-deals-quickview-bg, var(--bsp-h6-navy));
  --bsp-h6-card-quickview-text: var(--bsp-h6-deals-quickview-text, #ffffff);
  --bsp-h6-card-stock-bar-bg: var(--bsp-h6-deals-stock-bar-bg, #eceff7);
  --bsp-h6-card-stock-bar-fill: var(--bsp-h6-deals-stock-bar-fill, #00b853);
}

.bsp-h6-deals .bsp-h6-section-head__title {
  color: var(--bsp-h6-deals-title, var(--bsp-h6-text));
}

.bsp-h6-deals .bsp-h6-section-head__subtitle {
  color: var(--bsp-h6-deals-subtitle, var(--bsp-h6-muted));
}

.bsp-h6-deals .bsp-h6-section-head__view-all {
  color: var(--bsp-h6-deals-view-all, var(--bsp-h6-navy));
}

.bsp-h6-deals .bsp-h6-card__price {
  color: var(--bsp-h6-card-price, var(--bsp-h6-text));
}

.bsp-h6-new {
  background: var(--bsp-h6-new-section-bg, #ffffff);
  --bsp-h6-card-bg: var(--bsp-h6-new-card-bg, #ffffff);
  --bsp-h6-card-border: var(--bsp-h6-new-card-border, var(--bsp-h6-border));
  --bsp-h6-card-media-bg: var(--bsp-h6-new-media-bg, #fafbff);
  --bsp-h6-card-title: var(--bsp-h6-new-product-title, var(--bsp-h6-text));
  --bsp-h6-card-title-hover: var(--bsp-h6-new-product-hover, var(--bsp-h6-navy));
  --bsp-h6-card-price: var(--bsp-h6-new-price, var(--bsp-h6-text));
  --bsp-h6-card-sale-price: var(--bsp-h6-new-sale-price, var(--bsp-h6-sale));
  --bsp-h6-card-badge-bg: var(--bsp-h6-new-badge-bg, var(--bsp-h6-sale));
  --bsp-h6-card-badge-text: var(--bsp-h6-new-badge-text, #ffffff);
  --bsp-h6-card-wishlist: var(--bsp-h6-new-wishlist, var(--bsp-h6-muted));
  --bsp-h6-card-wishlist-active: var(--bsp-h6-new-wishlist-active, var(--bsp-h6-sale));
  --bsp-h6-card-cart-bg: var(--bsp-h6-new-cart-bg, var(--bsp-h6-soft));
  --bsp-h6-card-cart-text: var(--bsp-h6-new-cart-text, var(--bsp-h6-navy));
  --bsp-h6-card-cart-hover-bg: var(--bsp-h6-new-cart-hover-bg, var(--bsp-h6-navy));
  --bsp-h6-card-cart-hover-text: var(--bsp-h6-new-cart-hover-text, #ffffff);
  --bsp-h6-card-stock-in: var(--bsp-h6-new-stock-in, var(--bsp-h6-stock));
  --bsp-h6-card-stock-out: var(--bsp-h6-new-stock-out, var(--bsp-h6-sale));
  --bsp-h6-card-rating: var(--bsp-h6-new-rating, #ffcd00);
  --bsp-h6-card-quickview-bg: var(--bsp-h6-new-quickview-bg, var(--bsp-h6-navy));
  --bsp-h6-card-quickview-text: var(--bsp-h6-new-quickview-text, #ffffff);
}

.bsp-h6-new .bsp-h6-section-head__title {
  color: var(--bsp-h6-new-title, var(--bsp-h6-text));
}

.bsp-h6-new .bsp-h6-section-head__subtitle {
  color: var(--bsp-h6-new-subtitle, var(--bsp-h6-muted));
}

.bsp-h6-new .bsp-h6-section-head__view-all {
  color: var(--bsp-h6-new-view-all, var(--bsp-h6-navy));
}

.bsp-h6-new .bsp-h6-card__price {
  color: var(--bsp-h6-card-price, var(--bsp-h6-text));
}

.bsp-h6-products__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.bsp-h6-deals .bsp-h6-products__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ---- Product card ---- */

.bsp-h6-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--bsp-h6-card-border, var(--bsp-h6-border));
  border-radius: var(--bsp-h6-radius);
  background: var(--bsp-h6-card-bg, #ffffff);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bsp-h6-card:hover {
  border-color: #d7dae8;
  box-shadow: 0 10px 24px rgba(32, 36, 53, 0.06);
}

.bsp-h6-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bsp-h6-card-media-bg, #fafbff);
  overflow: hidden;
}

.bsp-h6-card__image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.bsp-h6-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: opacity 0.3s ease;
}

.bsp-h6-card__image--secondary {
  opacity: 0;
}

.bsp-h6-card:hover .bsp-h6-card__image--secondary {
  opacity: 1;
}

.bsp-h6-card:hover .bsp-h6-card__image-link:has(.bsp-h6-card__image--secondary) .bsp-h6-card__image:not(.bsp-h6-card__image--secondary) {
  opacity: 0;
}

.bsp-h6-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 4px;
  border-radius: 50%;
  background: var(--bsp-h6-card-badge-bg, var(--bsp-h6-sale));
  color: var(--bsp-h6-card-badge-text, #ffffff);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.bsp-h6-card__wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--bsp-h6-card-border, var(--bsp-h6-border));
  border-radius: 50%;
  background: var(--bsp-h6-card-bg, #ffffff);
  color: var(--bsp-h6-card-wishlist, var(--bsp-h6-muted));
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.bsp-h6-card__wishlist:hover,
.bsp-h6-card__wishlist.is-active {
  color: var(--bsp-h6-card-wishlist-active, var(--bsp-h6-sale));
  border-color: var(--bsp-h6-card-wishlist-active, var(--bsp-h6-sale));
}

.bsp-h6-card__wishlist.is-active i {
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
}

.bsp-h6-card__quick-view {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transform: translate(-50%, 8px);
  opacity: 0;
  visibility: hidden;
  border: 0;
  border-radius: 6px;
  background: var(--bsp-h6-card-quickview-bg, var(--bsp-h6-navy));
  color: var(--bsp-h6-card-quickview-text, #ffffff);
  padding: 8px 14px;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.bsp-h6-card:hover .bsp-h6-card__quick-view,
.bsp-h6-card:focus-within .bsp-h6-card__quick-view {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.bsp-h6-card__quick-view:hover {
  background: var(--bsp-h6-cyan);
}

.bsp-h6-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  padding: 14px 16px 16px;
}

.bsp-h6-card__title {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.bsp-h6-card__title a {
  color: var(--bsp-h6-card-title, var(--bsp-h6-text));
  text-decoration: none;
}

.bsp-h6-card__title a:hover {
  color: var(--bsp-h6-card-title-hover, var(--bsp-h6-navy));
}

.bsp-h6-card__stock {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bsp-h6-card__stock.is-in-stock {
  color: var(--bsp-h6-card-stock-in, var(--bsp-h6-stock));
}

.bsp-h6-card__stock.is-out-of-stock {
  color: var(--bsp-h6-card-stock-out, var(--bsp-h6-sale));
}

.bsp-h6-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--bsp-h6-card-rating, #ffcd00);
  font-size: 12px;
}

.bsp-h6-card__rating .bsp-featured-products__stars,
.bsp-h6-card__rating .star-rating {
  color: var(--bsp-h6-card-rating, #ffcd00);
}

.bsp-h6-card__review-count {
  color: var(--bsp-h6-muted);
  font-size: 12px;
}

.bsp-h6-card__price {
  color: var(--bsp-h6-card-price, var(--bsp-h6-text));
  font-size: 16px;
  font-weight: 700;
}

.bsp-h6-card__price del {
  margin-right: 6px;
  color: var(--bsp-h6-muted);
  font-size: 13px;
  font-weight: 500;
}

.bsp-h6-card__price ins {
  color: var(--bsp-h6-card-sale-price, var(--bsp-h6-sale));
  text-decoration: none;
}

.bsp-h6-card__stock-bar {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: var(--bsp-h6-card-stock-bar-bg, #eceff7);
  overflow: hidden;
}

.bsp-h6-card__stock-bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--bsp-h6-card-stock-bar-fill, #00b853);
}

.bsp-h6-card__stock-avail {
  margin: 0;
  color: var(--bsp-h6-muted);
  font-size: 12px;
}

.bsp-h6-card__cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  margin-top: auto;
  border-radius: 6px;
  background: var(--bsp-h6-card-cart-bg, var(--bsp-h6-soft));
  color: var(--bsp-h6-card-cart-text, var(--bsp-h6-navy));
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.bsp-h6-card__cart:hover,
.bsp-h6-card__cart.added {
  background: var(--bsp-h6-card-cart-hover-bg, var(--bsp-h6-navy));
  color: var(--bsp-h6-card-cart-hover-text, #ffffff);
}

/* ---- Dual / Triple ---- */

.bsp-h6-dual,
.bsp-h6-triple {
  padding: 28px 0 8px;
}

.bsp-h6-dual {
  background: var(--bsp-h6-dual-section-bg, #ffffff);
  --bsp-h6-banner-kicker: var(--bsp-h6-dual-kicker, var(--bsp-h6-sale));
  --bsp-h6-banner-title: var(--bsp-h6-dual-title, var(--bsp-h6-text));
  --bsp-h6-banner-text: var(--bsp-h6-dual-text, var(--bsp-h6-muted));
  --bsp-h6-banner-price: var(--bsp-h6-dual-price, var(--bsp-h6-navy));
  --bsp-h6-banner-btn: var(--bsp-h6-dual-btn, var(--bsp-h6-navy));
  --bsp-h6-banner-btn-hover: var(--bsp-h6-dual-btn-hover, var(--bsp-h6-cyan));
}

.bsp-h6-triple {
  background: var(--bsp-h6-triple-section-bg, #ffffff);
  --bsp-h6-banner-kicker: var(--bsp-h6-triple-kicker, var(--bsp-h6-sale));
  --bsp-h6-banner-title: var(--bsp-h6-triple-title, var(--bsp-h6-text));
  --bsp-h6-banner-text: var(--bsp-h6-triple-text, var(--bsp-h6-muted));
  --bsp-h6-banner-price: var(--bsp-h6-triple-price, var(--bsp-h6-navy));
  --bsp-h6-banner-btn: var(--bsp-h6-triple-btn, var(--bsp-h6-navy));
  --bsp-h6-banner-btn-hover: var(--bsp-h6-triple-btn-hover, var(--bsp-h6-cyan));
}

.bsp-h6-dual__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.bsp-h6-triple__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

/* ---- Trust banner ---- */

.bsp-h6-trust {
  margin-top: 28px;
  padding: 40px 0 56px;
  background: var(--bsp-h6-features-section-bg, var(--bsp-h6-soft));
  border-top: 1px solid var(--bsp-h6-border);
}

.bsp-h6-trust__intro {
  max-width: 640px;
  margin: 0 auto 28px;
  text-align: center;
}

.bsp-h6-trust__title {
  margin: 0 0 8px;
  color: var(--bsp-h6-features-title, var(--bsp-h6-text));
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.bsp-h6-trust__text {
  margin: 0;
  color: var(--bsp-h6-features-text, var(--bsp-h6-muted));
  font-size: 14px;
  line-height: 1.6;
}

.bsp-h6-trust__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bsp-h6-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  border: 1px solid var(--bsp-h6-features-item-border, var(--bsp-h6-border));
  border-radius: var(--bsp-h6-radius);
  background: var(--bsp-h6-features-item-bg, #ffffff);
}

.bsp-h6-trust__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bsp-h6-features-icon-bg, rgba(43, 190, 249, 0.12));
  color: var(--bsp-h6-features-icon, var(--bsp-h6-navy));
  font-size: 18px;
}

.bsp-h6-trust__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.bsp-h6-trust__item-title {
  color: var(--bsp-h6-features-item-title, var(--bsp-h6-text));
  font-size: 14px;
  font-weight: 700;
}

.bsp-h6-trust__item-text {
  color: var(--bsp-h6-features-item-text, var(--bsp-h6-muted));
  font-size: 12px;
  line-height: 1.45;
}

/* ---- Hot Product ---- */

.bsp-h6-hot {
  padding: 36px 0 12px;
  background: var(--bsp-h6-hot-section-bg, #ffffff);
}

.bsp-h6-hot .bsp-h6-section-head__title {
  color: var(--bsp-h6-hot-title, var(--bsp-h6-text));
}

.bsp-h6-hot .bsp-h6-section-head__subtitle {
  color: var(--bsp-h6-hot-subtitle, var(--bsp-h6-muted));
}

.bsp-h6-hot__card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: center;
  padding: 28px 32px;
  border: 1px solid var(--bsp-h6-hot-card-border, var(--bsp-h6-border));
  border-radius: var(--bsp-h6-radius);
  background: var(--bsp-h6-hot-card-bg, #ffffff);
}

.bsp-h6-hot__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 20px;
  border-radius: var(--bsp-h6-radius);
  background: var(--bsp-h6-hot-media-bg, var(--bsp-h6-soft));
}

.bsp-h6-hot__media img {
  max-width: 100%;
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.bsp-h6-hot__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 52px;
  padding: 6px;
  border-radius: 50%;
  background: var(--bsp-h6-hot-accent, var(--bsp-h6-sale));
  color: var(--bsp-h6-hot-badge-text, #ffffff);
  font-size: 13px;
  font-weight: 700;
}

.bsp-h6-hot__details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.bsp-h6-hot__name {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.bsp-h6-hot__name a {
  color: var(--bsp-h6-hot-name, var(--bsp-h6-text));
  text-decoration: none;
}

.bsp-h6-hot__name a:hover {
  color: var(--bsp-h6-hot-name-hover, var(--bsp-h6-navy));
}

.bsp-h6-hot__rating {
  color: #ffcd00;
  font-size: 13px;
}

.bsp-h6-hot__price {
  color: var(--bsp-h6-hot-price, var(--bsp-h6-sale));
  font-size: 28px;
  font-weight: 700;
}

.bsp-h6-hot__price del {
  margin-right: 8px;
  color: var(--bsp-h6-muted);
  font-size: 16px;
  font-weight: 500;
}

.bsp-h6-hot__price ins {
  text-decoration: none;
}

.bsp-h6-hot__stock {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bsp-h6-hot__stock.is-in-stock {
  color: var(--bsp-h6-hot-stock-in, var(--bsp-h6-stock));
}

.bsp-h6-hot__stock.is-out-of-stock {
  color: var(--bsp-h6-hot-stock-out, var(--bsp-h6-sale));
}

.bsp-h6-hot__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 8px;
  padding: 0 28px;
  border-radius: 6px;
  background: var(--bsp-h6-hot-btn-bg, var(--bsp-h6-navy));
  color: var(--bsp-h6-hot-btn-text, #ffffff);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
}

.bsp-h6-hot__btn:hover {
  background: var(--bsp-h6-hot-btn-hover, var(--bsp-h6-cyan));
}

/* ---- Category Showcase ---- */

.bsp-h6-catshow {
  padding: 36px 0 12px;
  background: var(--bsp-h6-catshow-section-bg, #ffffff);
  --bsp-h6-card-bg: var(--bsp-h6-catshow-card-bg, #ffffff);
  --bsp-h6-card-border: var(--bsp-h6-catshow-card-border, var(--bsp-h6-border));
  --bsp-h6-card-media-bg: var(--bsp-h6-catshow-media-bg, #fafbff);
  --bsp-h6-card-title: var(--bsp-h6-catshow-product-title, var(--bsp-h6-text));
  --bsp-h6-card-title-hover: var(--bsp-h6-catshow-product-hover, var(--bsp-h6-navy));
  --bsp-h6-card-price: var(--bsp-h6-catshow-price, var(--bsp-h6-text));
  --bsp-h6-card-sale-price: var(--bsp-h6-catshow-sale-price, var(--bsp-h6-sale));
  --bsp-h6-card-badge-bg: var(--bsp-h6-catshow-badge-bg, var(--bsp-h6-sale));
  --bsp-h6-card-badge-text: var(--bsp-h6-catshow-badge-text, #ffffff);
  --bsp-h6-card-cart-bg: var(--bsp-h6-catshow-cart-bg, var(--bsp-h6-soft));
  --bsp-h6-card-cart-text: var(--bsp-h6-catshow-cart-text, var(--bsp-h6-navy));
  --bsp-h6-card-cart-hover-bg: var(--bsp-h6-catshow-cart-hover-bg, var(--bsp-h6-navy));
  --bsp-h6-card-cart-hover-text: var(--bsp-h6-catshow-cart-hover-text, #ffffff);
}

.bsp-h6-catshow .bsp-h6-section-head__title {
  color: var(--bsp-h6-catshow-title, var(--bsp-h6-text));
}

.bsp-h6-catshow .bsp-h6-section-head__subtitle {
  color: var(--bsp-h6-catshow-subtitle, var(--bsp-h6-muted));
}

.bsp-h6-catshow .bsp-h6-section-head__view-all {
  color: var(--bsp-h6-catshow-view-all, var(--bsp-h6-navy));
}

.bsp-h6-catshow__layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.8fr);
  gap: 20px;
  align-items: start;
}

.bsp-h6-catshow__sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bsp-h6-catshow__banner {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  padding: 22px;
  border-radius: var(--bsp-h6-radius);
  background: var(--bsp-h6-catshow-banner-bg, var(--bsp-h6-soft));
}

.bsp-h6-catshow__banner-img {
  position: absolute;
  right: 8px;
  bottom: 8px;
  max-width: 46%;
  max-height: 140px;
  object-fit: contain;
}

.bsp-h6-catshow__banner-copy {
  position: relative;
  z-index: 1;
  max-width: 70%;
}

.bsp-h6-catshow__banner-title {
  margin: 0 0 8px;
  color: var(--bsp-h6-catshow-banner-title, var(--bsp-h6-text));
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.bsp-h6-catshow__banner-text {
  margin: 0;
  color: var(--bsp-h6-catshow-banner-text, var(--bsp-h6-muted));
  font-size: 13px;
  line-height: 1.45;
}

.bsp-h6-catshow__links {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--bsp-h6-catshow-sidebar-border, var(--bsp-h6-border));
  border-radius: var(--bsp-h6-radius);
  background: var(--bsp-h6-catshow-sidebar-bg, #ffffff);
  overflow: hidden;
}

.bsp-h6-catshow__links li + li {
  border-top: 1px solid var(--bsp-h6-catshow-sidebar-border, var(--bsp-h6-border));
}

.bsp-h6-catshow__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
  color: var(--bsp-h6-catshow-sidebar-link, var(--bsp-h6-text));
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.bsp-h6-catshow__links a:hover {
  color: var(--bsp-h6-catshow-sidebar-hover, var(--bsp-h6-cyan));
  background: var(--bsp-h6-soft);
}

.bsp-h6-catshow__links span {
  color: var(--bsp-h6-muted);
  font-size: 12px;
  font-weight: 400;
}

.bsp-h6-catshow__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ---- Brands ---- */

.bsp-h6-brands {
  padding: 36px 0 12px;
  background: var(--bsp-h6-brands-section-bg, #ffffff);
}

.bsp-h6-brands .bsp-h6-section-head__title {
  color: var(--bsp-h6-brands-title, var(--bsp-h6-text));
}

.bsp-h6-brands__list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bsp-h6-brands__item {
  min-height: 88px;
}

.bsp-h6-brands__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 88px;
  padding: 16px;
  border: 1px solid var(--bsp-h6-brands-card-border, var(--bsp-h6-border));
  border-radius: var(--bsp-h6-radius);
  background: var(--bsp-h6-brands-card-bg, #ffffff);
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.bsp-h6-brands__logo:hover {
  border-color: var(--bsp-h6-brands-card-hover, var(--bsp-h6-cyan));
}

.bsp-h6-brands__image {
  max-width: 100%;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.bsp-h6-brands--tint .bsp-h6-brands__image {
  filter: grayscale(1) opacity(0.75);
  transition: filter 0.2s ease;
}

.bsp-h6-brands--tint .bsp-h6-brands__logo:hover .bsp-h6-brands__image {
  filter: none;
}

.bsp-h6-brands__wordmark {
  color: var(--bsp-h6-brands-logo-tint, var(--bsp-h6-navy));
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
}

/* ---- Latest News ---- */

.bsp-h6-news {
  padding: 36px 0 12px;
  background: var(--bsp-h6-news-section-bg, #ffffff);
}

.bsp-h6-news .bsp-h6-section-head__title {
  color: var(--bsp-h6-news-title, var(--bsp-h6-text));
}

.bsp-h6-news .bsp-h6-section-head__subtitle {
  color: var(--bsp-h6-news-subtitle, var(--bsp-h6-muted));
}

.bsp-h6-news__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.bsp-h6-news__card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--bsp-h6-news-card-border, var(--bsp-h6-border));
  border-radius: var(--bsp-h6-radius);
  background: var(--bsp-h6-news-card-bg, #ffffff);
}

.bsp-h6-news__media {
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--bsp-h6-news-media-bg, var(--bsp-h6-soft));
  overflow: hidden;
}

.bsp-h6-news__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.bsp-h6-news__card:hover .bsp-h6-news__image {
  transform: scale(1.04);
}

.bsp-h6-news__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #eef1f8 0%, #f7f8fd 100%);
}

.bsp-h6-news__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 20px;
}

.bsp-h6-news__date {
  color: var(--bsp-h6-news-meta, var(--bsp-h6-muted));
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.bsp-h6-news__card-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.bsp-h6-news__card-title a {
  color: var(--bsp-h6-news-card-title, var(--bsp-h6-text));
  text-decoration: none;
}

.bsp-h6-news__card-title a:hover {
  color: var(--bsp-h6-news-card-hover, var(--bsp-h6-navy));
}

.bsp-h6-news__excerpt {
  margin: 0;
  color: var(--bsp-h6-news-excerpt, var(--bsp-h6-muted));
  font-size: 13px;
  line-height: 1.55;
}

/* ---- Responsive ---- */

@media (max-width: 1200px) {
  .bsp-h6-cats__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .bsp-h6-products__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .bsp-h6-deals .bsp-h6-products__grid,
  .bsp-h6-catshow__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bsp-h6-brands__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .bsp-h6-hero__grid {
    grid-template-columns: 1fr;
  }

  .bsp-h6-hero__sides {
    grid-template-rows: none;
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }

  .bsp-h6-hero__viewport,
  .bsp-h6-hero__track {
    height: auto;
    min-height: 0;
  }

  .bsp-h6-hero__slide {
    position: relative;
    inset: auto;
    min-height: 0;
    height: auto;
  }

  .bsp-h6-hero__slide:not(.is-active) {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .bsp-h6-triple__grid {
    grid-template-columns: 1fr;
  }

  .bsp-h6-trust__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bsp-h6-hot__card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .bsp-h6-catshow__layout {
    grid-template-columns: 1fr;
  }

  .bsp-h6-news__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .bsp-homepage--homepage-6 .bsp-container {
    width: min(100% - 24px, var(--bsp-container, 1400px));
  }

  .bsp-h6-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
  }

  .bsp-h6-coupon__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding-block: 12px;
  }

  .bsp-h6-coupon__text {
    font-size: 12px;
    line-height: 1.4;
  }

  .bsp-h6-hero {
    padding-top: 16px;
  }

  .bsp-h6-hero__slide {
    grid-template-columns: 1fr;
    padding: 22px 18px 40px;
    gap: 16px;
  }

  .bsp-h6-hero__content {
    max-width: none;
    width: 100%;
  }

  .bsp-h6-hero__title {
    font-size: clamp(24px, 7vw, 32px);
  }

  .bsp-h6-hero__text {
    font-size: 14px;
  }

  .bsp-h6-hero__media {
    order: -1;
    width: 100%;
    min-height: 140px;
  }

  .bsp-h6-hero__image {
    max-height: 160px;
    width: auto;
    max-width: 85%;
    margin-inline: auto;
  }

  .bsp-h6-hero__actions {
    width: 100%;
  }

  .bsp-h6-hero__btn {
    flex: 1 1 auto;
    min-width: 0;
  }

  .bsp-h6-hero__dots {
    left: 18px;
    bottom: 14px;
  }

  .bsp-h6-hero__sides {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    min-height: 0;
  }

  .bsp-h6-dual__grid {
    grid-template-columns: 1fr;
  }

  .bsp-h6-cats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .bsp-h6-products__grid,
  .bsp-h6-deals .bsp-h6-products__grid,
  .bsp-h6-catshow__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .bsp-h6-banner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 20px;
  }

  .bsp-h6-banner__media img {
    max-height: 110px;
  }

  .bsp-h6-brands__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bsp-h6-news__grid {
    grid-template-columns: 1fr;
  }

  .bsp-h6-hot__media {
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .bsp-h6-hero__actions {
    flex-direction: column;
  }

  .bsp-h6-hero__btn {
    width: 100%;
  }

  .bsp-h6-hero__sides {
    grid-template-columns: 1fr;
  }

  .bsp-h6-cats__grid {
    gap: 10px;
  }

  .bsp-h6-trust__list {
    grid-template-columns: 1fr;
  }

  .bsp-h6-banner {
    padding: 18px;
  }

  .bsp-h6-card__cart {
    min-height: 44px;
  }
}
