/**
 * BEHOME DESIGN SYSTEM
 * One spacing, type, card, and container language for the storefront.
 *
 * Containers:
 *  - .bh-container  → centered content rail (home merch, PDP info)
 *  - .bh-full       → full-bleed (hero only)
 *  - Product grid   → CSS Grid 5 / 4 / 3 / 2 by viewport
 */

:root {
  /* Brand */
  --bh-brand: #69C2E7;
  --bh-brand-deep: #4DB5DF;
  --bh-brand-hover: #4DB5DF;
  --bh-brand-soft: #EAF8FD;
  --bh-brand-border: #D7ECF6;
  --bh-on-brand: #FFFFFF;

  /* Text hierarchy */
  --bh-ink: #1F2937;
  --bh-text: #1F2937;
  --bh-text-secondary: #4B5563;
  --bh-muted: #6B7280;
  --bh-text-light: #9CA3AF;
  --bh-text-inverse: #FFFFFF;

  /* Surfaces */
  --bh-line: #D7ECF6;
  --bh-paper: #FFFFFF;
  --bh-mist: #F8FCFE;
  --bh-section: #F5FAFC;
  --bh-blush: #EAF8FD;
  --bh-card: #FFFFFF;

  /* Shape & motion */
  --bh-radius: 12px;
  --bh-radius-sm: 8px;
  --bh-shadow: 0 1px 2px rgba(31, 41, 55, 0.04), 0 6px 16px rgba(31, 41, 55, 0.05);
  --bh-shadow-hover: 0 12px 28px rgba(31, 41, 55, 0.1);
  --bh-space-1: 6px;
  --bh-space-2: 10px;
  --bh-space-3: 16px;
  --bh-space-4: 24px;
  --bh-space-5: 36px;
  --bh-space-6: 48px;
      --bh-container: 1312px;
  --bh-container-wide: 1320px;
  --bh-gutter: 20px;
  --bh-font: inherit;
  --bh-ease: 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ========== CONTAINERS ========== */
.bh-full {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.bh-container {
  width: 100%;
  max-width: var(--bh-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--bh-gutter);
  padding-right: var(--bh-gutter);
}

.bh-container--wide {
  max-width: var(--bh-container-wide);
}

/* Home: hero full bleed only */
.home-banner-area {
  width: 100%;
}

.home-banner-area .bh-full,
.home-banner-area .container-fluid {
  max-width: none !important;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.home-banner-area .carousel-box img,
.home-banner-area img.img-fit {
  border-radius: 0 !important;
}

@media (min-width: 992px) {
  .home-banner-area .bh-hero-inner {
    max-width: var(--bh-container-wide);
    margin: 0 auto;
    padding: 0 var(--bh-gutter);
  }
  .home-banner-area .carousel-box img,
  .home-banner-area img.img-fit {
    border-radius: var(--bh-radius) !important;
  }
}

/* Home merch always centered */
.home-merch {
  width: 100%;
  background: var(--bh-paper);
}

.home-merch__section {
  padding: var(--bh-space-5) 0;
}

.home-merch__section--alt {
  background: var(--bh-mist);
}

.home-merch__section--tint {
  background: var(--bh-blush);
}

.home-merch__inner {
  max-width: var(--bh-container);
  margin: 0 auto;
  padding-left: var(--bh-gutter);
  padding-right: var(--bh-gutter);
}

.home-merch__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--bh-space-3);
  margin-bottom: var(--bh-space-4);
}

.home-merch__title {
  margin: 0;
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.6rem);
  font-weight: 700;
  color: var(--bh-ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.home-merch__subtitle {
  margin: 6px 0 0;
  font-size: 0.92rem;
  color: var(--bh-muted);
  line-height: 1.5;
  max-width: 42ch;
}

.home-merch__link {
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--bh-brand);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity var(--bh-ease);
}

.home-merch__link:hover {
  opacity: 0.8;
  color: var(--bh-brand);
  text-decoration: none;
}

/* Collection cards */
.home-collection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--bh-space-3);
}

@media (min-width: 768px) {
  .home-collection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .home-collection-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.home-collection-card {
  position: relative;
  display: block;
  border-radius: var(--bh-radius);
  overflow: hidden;
  min-height: 200px;
  background: #e2e8f0;
  text-decoration: none;
  color: #fff;
  box-shadow: var(--bh-shadow);
  transition: transform var(--bh-ease), box-shadow var(--bh-ease);
}

.home-collection-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--bh-shadow-hover);
  color: #fff !important;
  text-decoration: none !important;
}

.home-collection-card__img,
.home-collection-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-collection-card__overlay {
  position: absolute;
  inset: 0;
  /* Stronger bottom scrim so titles stay readable on light photos */
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.08) 0%,
    rgba(15, 23, 42, 0.28) 45%,
    rgba(15, 23, 42, 0.82) 100%
  );
  pointer-events: none;
}

.home-collection-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 16px 16px;
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.home-collection-card__type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92) !important;
  margin-bottom: 4px;
}

.home-collection-card__name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff !important;
}

.home-collection-card__meta {
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Room grid */
.home-room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--bh-space-2);
}

@media (min-width: 768px) {
  .home-room-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: var(--bh-space-3);
  }
}

.home-room-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 16px 10px;
  background: var(--bh-paper);
  border: 1px solid var(--bh-line);
  border-radius: var(--bh-radius);
  text-decoration: none;
  color: var(--bh-ink);
  transition: border-color var(--bh-ease), box-shadow var(--bh-ease), transform var(--bh-ease);
}

.home-room-card:hover {
  border-color: var(--bh-brand-border);
  box-shadow: var(--bh-shadow);
  transform: translateY(-2px);
  color: var(--bh-ink);
  text-decoration: none;
}

.home-room-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--bh-mist);
}

.home-room-card span {
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.3;
}

/* ========== PRODUCT GRID (CSS Grid — professional) ========== */
/*
  Large desktop 1600+: 5 cols
  Desktop: 4 cols
  Tablet: 3 cols
  Mobile: 2 cols
*/
.product-grid-fluid,
.bh-product-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 !important;
  width: 100%;
}

/* Kill Bootstrap column behavior inside professional grid */
.product-grid-fluid > .product-grid-item,
.product-grid-fluid > [class*="col-"],
.bh-product-grid > .product-grid-item,
.bh-product-grid > [class*="col-"] {
  width: 100% !important;
  max-width: none !important;
  flex: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

@media (min-width: 768px) {
  .product-grid-fluid,
  .bh-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (min-width: 992px) {
  .product-grid-fluid,
  .bh-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (min-width: 1600px) {
  .product-grid-fluid,
  .bh-product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* Home product rails use same grid, capped to container */
.home-product-row {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

@media (min-width: 768px) {
  .home-product-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (min-width: 992px) {
  .home-product-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.home-product-row .product-card {
  height: 100%;
  margin: 0;
}

/* ========== PRODUCT CARDS ========== */
.product-card,
.product-card--premium {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--bh-paper);
  border: 1px solid var(--bh-line);
  border-radius: var(--bh-radius);
  overflow: hidden;
  /* Never animate layout-affecting properties */
  transition: box-shadow 240ms ease, border-color 240ms ease;
  max-height: none;
  transform: none;
}

.product-card:hover,
.product-card--premium:hover {
  /* No translateY / scale of the card — prevents grid jump */
  transform: none;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  border-color: var(--bh-brand-border);
}

.product-card .product-image,
.product-card--premium .product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0 !important;
  height: auto !important;
  padding-top: 0 !important;
  background: var(--bh-mist);
  overflow: hidden;
}

.product-card .product-image img,
.product-card--premium .product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 240ms ease;
  transform: scale(1);
  transform-origin: center center;
  will-change: transform;
}

.product-card:hover .product-image img {
  transform: scale(1.02);
}

.product-card .product-details,
.product-card--premium .product-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 14px 14px;
  gap: 4px;
  min-height: 148px;
}

.product-card .product-title,
.product-card--premium .product-title {
  display: block !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.35;
  margin: 0 0 4px;
  min-height: auto;
  max-height: none;
  -webkit-line-clamp: unset !important;
}

.product-card .product-title a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: inherit;
}

.product-card .product-short-desc,
.product-card--premium .product-short-desc {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  overflow: hidden !important;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--bh-muted);
  margin: 0 0 8px;
  min-height: calc(1.4em * 2);
  max-height: calc(1.4em * 2);
}

.product-card .product-price,
.product-card--premium .product-price {
  margin-top: auto;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--bh-ink);
}

.product-card .product-card-cta {
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bh-brand);
}

.product-collection-badge {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bh-brand);
  background: var(--bh-brand-soft);
  border: 1px solid var(--bh-brand-border);
  border-radius: 999px;
  padding: 3px 9px;
}

/* ========== LISTING PAGE ========== */
.listing-page-shell {
  width: 100%;
  padding: var(--bh-space-3) 0 var(--bh-space-5);
  margin: 0;
  max-width: none !important;
}

.listing-page-shell > .container-fluid {
  max-width: var(--bh-container-wide) !important;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--bh-gutter);
  padding-right: var(--bh-gutter);
}

.listing-page-shell .custom-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 8px 0 14px;
  color: var(--bh-ink);
}

/* ========== PDP ========== */
/* Gallery + buy box: wide centered */
.pdp-top-wrap > .container-fluid,
section.pt-3 > .container-fluid {
  max-width: var(--bh-container-wide) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: var(--bh-gutter) !important;
  padding-right: var(--bh-gutter) !important;
}

/* Info stack: one reading container */
.pdp-lower-wrap {
  padding: var(--bh-space-4) 0 var(--bh-space-5);
  background: var(--bh-paper);
}

.pdp-info-container,
.pdp-lower-wrap > .container,
.pdp-lower-wrap > .container-fluid {
  max-width: var(--bh-container) !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: var(--bh-gutter) !important;
  padding-right: var(--bh-gutter) !important;
}

.pdp-collection-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: var(--bh-radius);
  border: 1px solid var(--bh-brand-border);
  background: var(--bh-brand-soft);
}

.pdp-collection-strip__label {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bh-ink);
}

.pdp-collection-strip__label strong {
  color: var(--bh-brand);
}

.pdp-collection-strip a {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--bh-brand);
  text-decoration: none;
}

/* Why us / brands / newsletter */
.home-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--bh-space-3);
}

@media (min-width: 768px) {
  .home-why-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.home-why-card {
  background: var(--bh-paper);
  border: 1px solid var(--bh-line);
  border-radius: var(--bh-radius);
  padding: 22px 16px;
  text-align: center;
  transition: box-shadow var(--bh-ease);
}

.home-why-card:hover {
  box-shadow: var(--bh-shadow);
}

.home-why-card i {
  font-size: 1.6rem;
  color: var(--bh-brand);
  margin-bottom: 10px;
  display: inline-block;
}

.home-why-card h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 700;
}

.home-why-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--bh-muted);
  line-height: 1.5;
}

.home-brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.home-brand-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 68px;
  padding: 10px 16px;
  background: var(--bh-paper);
  border: 1px solid var(--bh-line);
  border-radius: var(--bh-radius-sm);
  text-decoration: none;
  transition: box-shadow var(--bh-ease);
}

.home-brand-chip:hover {
  box-shadow: var(--bh-shadow);
}

.home-brand-chip img {
  max-height: 36px;
  max-width: 96px;
  object-fit: contain;
}

.home-news {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.home-news h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 700;
}

.home-news p {
  margin: 0 0 16px;
  color: var(--bh-muted);
}

.home-news form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.home-news input[type="email"] {
  flex: 1 1 220px;
  max-width: 340px;
  height: 46px;
  border: 1px solid var(--bh-line);
  border-radius: var(--bh-radius-sm);
  padding: 0 14px;
}

.home-news button {
  height: 46px;
  border: 0;
  border-radius: var(--bh-radius-sm);
  padding: 0 20px;
  background: var(--bh-brand);
  color: var(--bh-on-brand, #fff);
  font-weight: 650;
  cursor: pointer;
}
.home-news button:hover {
  background: var(--bh-brand-hover, #4DB5DF);
  color: var(--bh-on-brand, #fff);
}

.home-lifestyle {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--bh-radius);
  overflow: hidden;
  min-height: 240px;
  border: 1px solid var(--bh-line);
  background: #1F2937;
}

@media (min-width: 768px) {
  .home-lifestyle {
    grid-template-columns: 1.15fr 1fr;
    min-height: 300px;
  }
}

.home-lifestyle__media {
  min-height: 180px;
  background: #1e293b center/cover no-repeat;
}

.home-lifestyle__copy {
  padding: 28px 26px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-lifestyle__copy h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 700;
   color: #fff;
}

.home-lifestyle__copy p {
  margin: 0 0 16px;
  opacity: 0.9;
  line-height: 1.55;
  font-size: 0.92rem;
     color: #fff;
}

.home-lifestyle__copy a {
  align-self: flex-start;
  background: #fff;
  color: var(--bh-ink);
  font-weight: 650;
  font-size: 0.85rem;
  padding: 11px 18px;
  border-radius: var(--bh-radius-sm);
  text-decoration: none;
}

/* Category hero */
.category-hero {
  border-radius: var(--bh-radius);
  overflow: hidden;
  border: 1px solid var(--bh-line);
  background: linear-gradient(135deg, var(--bh-mist), var(--bh-blush));
  margin-bottom: var(--bh-space-4);
  min-height: 160px;
}

.category-hero img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  display: block;
}

.category-hero__fallback {
  padding: 32px 28px;
}

.category-hero__fallback h1 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bh-ink);
}

.category-hero__fallback p {
  margin: 0;
  color: var(--bh-muted);
  max-width: 52ch;
  line-height: 1.55;
  font-size: 0.95rem;
}

/* CMS leftover sections on home — contain them */
.product_section_detail.bh-container,
.home-merch + .product_section_detail {
  max-width: var(--bh-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--bh-gutter);
  padding-right: var(--bh-gutter);
}

@media (max-width: 767px) {
  :root {
    --bh-gutter: 14px;
    --bh-space-5: 28px;
  }

  .home-collection-card {
    min-height: 160px;
  }

  .product-card .product-details {
    min-height: 132px;
    padding: 10px;
  }
}

/* ===== Header nav polish ===== */
.bh-nav-list {
  align-items: center;
  gap: 2px;
}
.bh-nav-link {
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}
.bh-nav-link:hover,
.bh-nav-item:hover > .bh-nav-link {
  background: rgba(105, 194, 231, 0.06);
  color: #69C2E7 !important;
}
.bh-nav-caret {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-left: 2px;
}
.bh-mega {
  border-radius: 12px !important;
  border: 1px solid #D7ECF6;
  min-width: 320px;
  max-width: 520px;
}
.bh-mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}
.bh-mega-parent {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: #1F2937 !important;
  text-decoration: none !important;
}
.bh-mega-parent:hover {
  color: #69C2E7 !important;
}
.bh-mega-count {
  display: block;
  font-size: 0.75rem;
  color: #6B7280;
  margin-top: 2px;
}
.bh-nav-collections > .bh-nav-link .cat-name {
  color: #69C2E7;
}

/* ===== Footer ===== */
.bh-footer {
  background: #1F2937;
  color: #e2e8f0;
  margin-top: 40px;
  padding: 40px 0 20px;
}
.bh-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.bh-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 768px) {
  .bh-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .bh-footer__grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr 1.2fr;
  }
}
.bh-footer__title {
  margin: 0 0 12px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.bh-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bh-footer__list li {
  margin-bottom: 8px;
  font-size: 0.88rem;
  line-height: 1.45;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.bh-footer__list a {
  color: #cbd5e1;
  text-decoration: none;
}
.bh-footer__list a:hover {
  color: #fff;
}
.bh-footer__list i {
  color: #94a3b8;
  margin-top: 2px;
}
.bh-footer__text {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0 0 12px;
}
.bh-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.bh-footer__social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}
.bh-footer__form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bh-footer__form input {
  flex: 1 1 140px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #fff;
  padding: 0 12px;
}
.bh-footer__form button {
  height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  background: var(--bh-brand, #69C2E7);
  color: var(--bh-on-brand, #fff);
  font-weight: 650;
  cursor: pointer;
}
.bh-footer__form button:hover {
  background: var(--bh-brand-hover, #4DB5DF);
  color: var(--bh-on-brand, #fff);
}
.bh-footer__bottom {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: #94a3b8;
}

/* ===== Category landing ===== */
.bh-cat-landing {
  margin-bottom: 18px;
}
.bh-cat-hero {
  position: relative;
  margin-bottom: 18px;
}
.bh-cat-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,23,42,0.78) 0%, rgba(15,23,42,0.35) 70%);
  color: #ffffff !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 32px;
}
.bh-cat-hero__overlay h1,
.bh-cat-hero__fallback h1 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 1.2rem + 1vw, 1.85rem);
  font-weight: 700;
  color: #ffffff !important;
}
.bh-cat-hero__overlay p,
.bh-cat-hero__fallback p {
  margin: 0 0 10px;
  max-width: 48ch;
  line-height: 1.55;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.95) !important;
}
.bh-cat-hero__count {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.9;
}
.bh-cat-hero__fallback {
  min-height: 180px;
}
.bh-cat-tone-bath .bh-cat-hero__fallback {
  background: linear-gradient(135deg, #f0f7fa 0%, #faf6f7 55%, #eef2ff 100%);
}
.bh-cat-tone-bed .bh-cat-hero__fallback {
  background: linear-gradient(135deg, #faf6f7 0%, #f8fafc 50%, #f5f0eb 100%);
}
.bh-cat-tone-entry .bh-cat-hero__fallback {
  background: linear-gradient(135deg, #f5f5f4 0%, #fafaf9 50%, #f0fdf4 100%);
}
.bh-cat-tone-home .bh-cat-hero__fallback {
  background: linear-gradient(135deg, #f8fafc 0%, #faf6f7 100%);
}
.bh-cat-block {
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid #D7ECF6;
  border-radius: 12px;
  background: #fff;
}
.bh-cat-block__title {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1F2937;
}
.bh-cat-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bh-cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #D7ECF6;
  background: #f8fafc;
  color: #1F2937;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 650;
}
.bh-cat-chip span {
  font-size: 0.75rem;
  color: #6B7280;
  font-weight: 600;
}
.bh-cat-chip:hover {
  border-color: rgba(105, 194, 231,0.25);
  color: #69C2E7;
  text-decoration: none;
}
.bh-cat-guide__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
@media (min-width: 768px) {
  .bh-cat-guide__list {
    grid-template-columns: 1fr 1fr;
  }
}
.bh-cat-guide__list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.45;
}
.bh-cat-guide__list i {
  color: #69C2E7;
  margin-top: 2px;
}

/* ===== Brand hero (new, not CMS) ===== */
.bh-hero {
  position: relative;
  width: 100%;
  background: #1F2937;
  overflow: hidden;
}
.bh-hero__slide {
  position: relative;
  min-height: 380px;
  max-height: 520px;
  height: 52vw;
  max-height: 520px;
  min-height: 360px;
}
.bh-hero__slide--mobile {
  min-height: 420px;
  height: 72vw;
  max-height: 560px;
}
.bh-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bh-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,23,42,0.78) 0%, rgba(15,23,42,0.45) 45%, rgba(15,23,42,0.15) 100%);
}
.bh-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 48px;
  color: #fff;
  max-width: 560px;
}
.bh-hero__slide--mobile .bh-hero__content {
  padding: 28px 18px 40px;
  max-width: 100%;
}
.bh-hero__kicker {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.bh-hero__title {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.55rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.bh-hero__text {
  margin: 0 0 20px;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  max-width: 38ch;
}
.bh-hero__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #1F2937;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bh-hero__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  color: #1F2937;
  text-decoration: none;
}
.bh-hero .slick-dots {
  bottom: 14px !important;
}
.bh-hero .slick-prev,
.bh-hero .slick-next {
  z-index: 3;
}

/* Promo strip under hero */
.bh-promo-strip {
  padding: 20px 0 8px;
  background: #fff;
}
.bh-promo-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .bh-promo-strip__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
.bh-promo-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  min-height: 180px;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 4px 16px rgba(15,23,42,0.08);
  transition: transform 0.22s ease;
}
.bh-promo-card:hover {
  transform: translateY(-3px);
  color: #fff;
  text-decoration: none;
}
.bh-promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bh-promo-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 16px;
  background: linear-gradient(180deg, transparent, rgba(15,23,42,0.75));
  color: #fff;
}
.bh-promo-card__body span {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 4px;
}
.bh-promo-card__body strong {
  font-size: 1.1rem;
  font-weight: 700;
}

/* Unified product badges */
.bh-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  box-shadow: 0 2px 8px rgba(15,23,42,0.12);
  pointer-events: none;
}
.bh-badge--sale {
  background: var(--bh-brand, #69C2E7);
  color: var(--bh-on-brand, #fff);
}
.bh-badge--deal {
  background: #1F2937;
  color: #fff;
}
.bh-badge--featured {
  background: #fff;
  color: #69C2E7;
  border: 1px solid rgba(105, 194, 231,0.2);
}
.bh-badge--oos {
  top: auto;
  bottom: 10px;
  left: 10px;
  right: auto;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  font-weight: 650;
  backdrop-filter: blur(4px);
  box-shadow: none;
  border: 1px solid rgba(255,255,255,0.12);
}

/* Hide legacy loud badges if any remain */
.product-card .product-badge-stock,
.product-card .deal-of-the-day {
  display: none !important;
}

/* Category hero with real photo */
.bh-cat-hero {
  position: relative;
  min-height: 220px;
  max-height: 320px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 18px;
}
.bh-cat-hero__photo {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 320px;
  object-fit: cover;
  display: block;
}
.bh-cat-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,23,42,0.78) 0%, rgba(15,23,42,0.35) 65%, rgba(15,23,42,0.12) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 32px;
}
.bh-cat-hero__overlay h1 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 1.2rem + 1vw, 1.9rem);
  font-weight: 700;
  color: #fff;
}
.bh-cat-hero__overlay p {
  margin: 0 0 10px;
  max-width: 46ch;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
}
.bh-cat-hero__count {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* PDP story lifestyle support */
.pdp-lifestyle__media img {
  object-fit: cover;
}
