/**
 * Homepage 4 — cosmetics-style sections.
 *
 * Keep H4 section CSS here only. Do not mix with homepage-1/2/3 stylesheets.
 */

#bsp-homepage-4 {
  --bsp-container: 1600px;
  --bsp-h4-font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --bsp-h4-font-sans: "DM Sans", system-ui, sans-serif;
  background: #ffffff;
  font-family: var(--bsp-h4-font-sans);
}

/* ============ Hero banner ============ */

.bsp-h4-hero {
  --bsp-h4-hero-bg: #f7f7f5;
  --bsp-h4-hero-min-height: 520px;
  --bsp-h4-hero-title-size: 56px;
  --bsp-h4-hero-image-radius: 28px;
  --bsp-h4-hero-kicker: #1a1a1a;
  --bsp-h4-hero-title: #1a1a1a;
  --bsp-h4-hero-text: #6b7280;
  --bsp-h4-hero-btn-bg: #082126;
  --bsp-h4-hero-btn-text: #ffffff;
  --bsp-h4-hero-nav: #1a1a1a;
  --bsp-h4-hero-nav-muted: #d1d5db;

  padding: 36px 0 48px;
  background: var(--bsp-h4-hero-bg);
}

.bsp-h4-hero__container {
  max-width: var(--bsp-container, 1600px);
  margin: 0 auto;
  padding: 0 20px;
}

.bsp-h4-hero__viewport {
  position: relative;
  overflow: hidden;
}

.bsp-h4-hero__track {
  display: flex;
  transition: transform 0.55s ease;
}

.bsp-h4-hero__slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 40px 48px;
  min-height: var(--bsp-h4-hero-min-height);
}

.bsp-h4-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 0 12px;
  max-width: 520px;
}

.bsp-h4-hero--slider .bsp-h4-hero__content {
  padding-bottom: 72px;
}

.bsp-h4-hero__kicker {
  margin: 0;
  color: var(--bsp-h4-hero-kicker);
  font-family: var(--bsp-h4-font-serif);
  font-size: clamp(1.15rem, 1.4vw, 1.45rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.2;
}

.bsp-h4-hero__title {
  margin: 0;
  color: var(--bsp-h4-hero-title);
  font-family: var(--bsp-h4-font-serif);
  font-size: clamp(2.25rem, 4.2vw, var(--bsp-h4-hero-title-size));
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.bsp-h4-hero__title-line {
  display: block;
}

.bsp-h4-hero__text {
  margin: 0;
  max-width: 38ch;
  color: var(--bsp-h4-hero-text);
  font-size: 15px;
  line-height: 1.65;
}

.bsp-h4-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.bsp-h4-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--bsp-h4-hero-btn-bg);
  color: var(--bsp-h4-hero-btn-text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.bsp-h4-hero__btn:hover,
.bsp-h4-hero__btn:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.bsp-h4-hero__btn--ghost {
  background: transparent;
  color: var(--bsp-h4-hero-title);
  border: 1px solid currentColor;
}

.bsp-h4-hero__btn--ghost:hover,
.bsp-h4-hero__btn--ghost:focus-visible {
  filter: none;
  background: var(--bsp-h4-hero-btn-bg);
  color: var(--bsp-h4-hero-btn-text);
  border-color: var(--bsp-h4-hero-btn-bg);
}

.bsp-h4-hero__nav {
  position: absolute;
  left: 0;
  bottom: 8px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.bsp-h4-hero__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--bsp-h4-hero-nav);
  font-size: 14px;
  cursor: pointer;
}

.bsp-h4-hero__arrow:hover,
.bsp-h4-hero__arrow:focus-visible {
  opacity: 0.7;
}

.bsp-h4-hero__dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bsp-h4-hero__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--bsp-h4-hero-nav-muted);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.bsp-h4-hero__dot.is-active {
  width: 28px;
  background: var(--bsp-h4-hero-nav);
}

.bsp-h4-hero__media {
  min-width: 0;
  align-self: stretch;
  display: flex;
  align-items: stretch;
}

.bsp-h4-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: var(--bsp-h4-hero-min-height);
  object-fit: cover;
  object-position: center;
  border-radius: var(--bsp-h4-hero-image-radius);
}

.bsp-h4-hero--empty {
  padding: 48px 0;
}

.bsp-h4-hero__empty-note {
  margin: 0;
  padding: 28px 24px;
  border: 1px dashed #d1d5db;
  border-radius: 14px;
  background: #ffffff;
  color: #6b7280;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 992px) {
  .bsp-h4-hero {
    padding: 0 0 28px;
  }

  .bsp-h4-hero__container {
    max-width: none;
    width: 100%;
    padding: 0;
  }

  .bsp-h4-hero__viewport {
    border-radius: 0;
  }

  .bsp-h4-hero__slide {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(420px, 58vw);
    gap: 0;
    min-height: 420px;
    align-items: stretch;
  }

  .bsp-h4-hero__media,
  .bsp-h4-hero__content {
    grid-area: 1 / 1;
    order: unset;
  }

  .bsp-h4-hero__media {
    align-self: stretch;
    min-height: 100%;
  }

  .bsp-h4-hero__image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    max-height: none;
    border-radius: 0;
    object-fit: cover;
  }

  .bsp-h4-hero__content {
    z-index: 2;
    align-self: end;
    justify-self: stretch;
    max-width: none;
    width: 100%;
    box-sizing: border-box;
    gap: 10px;
    padding: 72px 24px 56px;
    background: linear-gradient(
      to top,
      rgba(8, 16, 20, 0.82) 0%,
      rgba(8, 16, 20, 0.45) 52%,
      rgba(8, 16, 20, 0) 100%
    );
  }

  .bsp-h4-hero--slider .bsp-h4-hero__content {
    padding-bottom: 64px;
  }

  .bsp-h4-hero__kicker {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
  }

  .bsp-h4-hero__title {
    color: #ffffff;
    font-size: clamp(1.5rem, 3.8vw, 2.1rem);
    line-height: 1.12;
  }

  .bsp-h4-hero__text {
    max-width: 42ch;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    line-height: 1.55;
  }

  .bsp-h4-hero__actions {
    gap: 10px;
    margin-top: 2px;
  }

  .bsp-h4-hero__btn {
    min-height: 40px;
    padding: 0 20px;
    font-size: 13px;
    background: #ffffff;
    color: #082126;
  }

  .bsp-h4-hero__btn:hover,
  .bsp-h4-hero__btn:focus-visible {
    filter: none;
    background: rgba(255, 255, 255, 0.92);
    color: #082126;
  }

  .bsp-h4-hero__btn--ghost {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.75);
  }

  .bsp-h4-hero__btn--ghost:hover,
  .bsp-h4-hero__btn--ghost:focus-visible {
    background: #ffffff;
    color: #082126;
    border-color: #ffffff;
  }

  .bsp-h4-hero__nav {
    left: 24px;
    bottom: 16px;
    color: #ffffff;
  }

  .bsp-h4-hero__arrow {
    color: #ffffff;
  }

  .bsp-h4-hero__dot {
    background: rgba(255, 255, 255, 0.45);
  }

  .bsp-h4-hero__dot.is-active {
    background: #ffffff;
  }
}

@media (max-width: 576px) {
  .bsp-h4-hero__slide {
    grid-template-rows: minmax(380px, 72vw);
    min-height: 380px;
  }

  .bsp-h4-hero__image {
    min-height: 380px;
  }

  .bsp-h4-hero__content {
    gap: 8px;
    padding: 64px 16px 52px;
  }

  .bsp-h4-hero--slider .bsp-h4-hero__content {
    padding-bottom: 58px;
  }

  .bsp-h4-hero__kicker {
    font-size: 0.95rem;
  }

  .bsp-h4-hero__title {
    font-size: clamp(1.35rem, 6.4vw, 1.7rem);
  }

  .bsp-h4-hero__text {
    font-size: 12.5px;
    line-height: 1.5;
  }

  .bsp-h4-hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
  }

  .bsp-h4-hero__btn {
    width: auto;
    min-height: 38px;
    padding: 0 16px;
    font-size: 12.5px;
  }

  .bsp-h4-hero__nav {
    left: 16px;
    bottom: 12px;
  }
}

/* ============ Categories (circular slider) ============ */

.bsp-h4-categories {
  --bsp-h4-cat-section-bg: #ffffff;
  --bsp-h4-cat-circle-bg: #f3f3f3;
  --bsp-h4-cat-label: #1a1a1a;
  --bsp-h4-cat-sale-bg: #e11d2e;
  --bsp-h4-cat-sale-text: #ffffff;
  --bsp-h4-cat-border: #e8e8e8;
  --bsp-h4-cat-circle: 88px;
  --bsp-h4-cat-gap: 28px;
  --bsp-h4-cat-padding-y: 36px;
  --bsp-h4-cat-label-size: 13px;
  --bsp-h4-cat-cols: 10;
  --bsp-h4-cat-item-width: calc((100% - (var(--bsp-h4-cat-gap) * (var(--bsp-h4-cat-cols) - 1))) / var(--bsp-h4-cat-cols));

  background: var(--bsp-h4-cat-section-bg);
  padding: var(--bsp-h4-cat-padding-y) 0;
  border-bottom: 1px solid var(--bsp-h4-cat-border);
}

.bsp-h4-categories__container {
  max-width: var(--bsp-container, 1600px);
  margin: 0 auto;
  padding: 0 20px;
}

.bsp-h4-categories__slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.bsp-h4-categories__arrow {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  background: #ffffff;
  color: #1a1a1a;
  font-size: 13px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.bsp-h4-categories__arrow:hover:not(:disabled),
.bsp-h4-categories__arrow:focus-visible:not(:disabled) {
  border-color: #1a1a1a;
}

.bsp-h4-categories__arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.bsp-h4-categories__carousel {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}

.bsp-h4-categories__viewport {
  overflow: hidden;
  width: 100%;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.bsp-h4-categories__viewport:active {
  cursor: grabbing;
}

.bsp-h4-categories__track {
  display: flex;
  gap: var(--bsp-h4-cat-gap);
  transition: transform 0.45s ease;
  will-change: transform;
}

.bsp-h4-categories__carousel:not(.is-slider) .bsp-h4-categories__track {
  justify-content: center;
  flex-wrap: wrap;
}

.bsp-h4-categories__carousel.is-slider .bsp-h4-categories__item {
  flex: 0 0 var(--bsp-h4-cat-item-width);
  width: var(--bsp-h4-cat-item-width);
}

.bsp-h4-categories__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--bsp-h4-cat-label);
  text-align: center;
  min-width: 0;
  -webkit-user-drag: none;
  user-select: none;
}

.bsp-h4-categories__item img {
  -webkit-user-drag: none;
  pointer-events: none;
}

.bsp-h4-categories__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(var(--bsp-h4-cat-circle), 100%);
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--bsp-h4-cat-circle-bg);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.bsp-h4-categories__item:hover .bsp-h4-categories__circle,
.bsp-h4-categories__item:focus-visible .bsp-h4-categories__circle {
  transform: translateY(-2px);
}

.bsp-h4-categories__circle--sale {
  background: var(--bsp-h4-cat-sale-bg);
}

.bsp-h4-categories__sale-text {
  color: var(--bsp-h4-cat-sale-text);
  font-size: calc(var(--bsp-h4-cat-circle) * 0.22);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
}

.bsp-h4-categories__image {
  display: block;
  width: 68%;
  height: 68%;
  object-fit: contain;
  object-position: center;
}

.bsp-h4-categories__placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 22px;
}

.bsp-h4-categories__label {
  display: block;
  max-width: 100%;
  font-size: var(--bsp-h4-cat-label-size);
  font-weight: 500;
  line-height: 1.3;
  color: var(--bsp-h4-cat-label);
  word-break: break-word;
}

.bsp-h4-categories__empty-note {
  margin: 0;
  padding: 24px;
  border: 1px dashed #d1d5db;
  border-radius: 12px;
  color: #6b7280;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 992px) {
  .bsp-h4-categories__slider {
    gap: 0;
  }

  .bsp-h4-categories__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-70%);
    box-shadow: 0 4px 14px rgba(17, 24, 39, 0.12);
  }

  .bsp-h4-categories__arrow--prev {
    left: 0;
  }

  .bsp-h4-categories__arrow--next {
    right: 0;
  }
}

@media (max-width: 576px) {
  .bsp-h4-categories {
    --bsp-h4-cat-circle: 72px;
    --bsp-h4-cat-gap: 16px;
  }
}

/* ============ New Arrivals / Best Sellers ============ */

.bsp-h4-arrivals {
  --bsp-h4-na-section-bg: #ffffff;
  --bsp-h4-na-title: #1a1a1a;
  --bsp-h4-na-subtitle: #9ca3af;
  --bsp-h4-na-tab: #6b7280;
  --bsp-h4-na-tab-active: #1a1a1a;
  --bsp-h4-na-card-bg: #f5f5f5;
  --bsp-h4-na-badge-bg: #5f9ea0;
  --bsp-h4-na-badge-text: #ffffff;
  --bsp-h4-na-ticker-bg: #f5d76e;
  --bsp-h4-na-ticker-text: #1a1a1a;
  --bsp-h4-na-category: #9ca3af;
  --bsp-h4-na-product: #1a1a1a;
  --bsp-h4-na-progress: #1a1a1a;
  --bsp-h4-na-progress-track: #e5e7eb;
  --bsp-h4-na-arrow: #1a1a1a;
  --bsp-h4-na-arrow-border: #d1d5db;
  --bsp-h4-na-gap: 16px;
  --bsp-h4-na-padding-y: 56px;
  --bsp-h4-na-title-size: 42px;
  --bsp-h4-na-card-radius: 12px;
  --bsp-h4-na-card-width: 240px;

  padding: var(--bsp-h4-na-padding-y) 0;
  background: var(--bsp-h4-na-section-bg);
}

.bsp-h4-arrivals__container {
  max-width: var(--bsp-container, 1600px);
  margin: 0 auto;
  padding: 0 20px;
}

.bsp-h4-arrivals__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 40px;
  margin-bottom: 36px;
}

.bsp-h4-arrivals__intro {
  min-width: 0;
  max-width: 640px;
}

.bsp-h4-arrivals__title {
  margin: 0;
  color: var(--bsp-h4-na-title);
  font-family: var(--bsp-h4-font-serif);
  font-size: var(--bsp-h4-na-title-size);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.bsp-h4-arrivals__subtitle {
  margin: 10px 0 0;
  color: var(--bsp-h4-na-subtitle);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.bsp-h4-arrivals__tabs {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 28px;
}

.bsp-h4-arrivals__tab {
  position: relative;
  padding: 0 0 10px;
  border: 0;
  background: transparent;
  color: var(--bsp-h4-na-tab);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
}

.bsp-h4-arrivals__tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: transparent;
  transition: background 0.2s ease;
}

.bsp-h4-arrivals__tab.is-active {
  color: var(--bsp-h4-na-tab-active);
}

.bsp-h4-arrivals__tab.is-active::after {
  background: var(--bsp-h4-na-tab-active);
}

.bsp-h4-arrivals__panel[hidden] {
  display: none !important;
}

.bsp-h4-arrivals__slider {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.bsp-h4-arrivals__carousel {
  width: 100%;
  min-width: 0;
}

.bsp-h4-arrivals__viewport {
  overflow: hidden;
  width: 100%;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.bsp-h4-arrivals__viewport:active {
  cursor: grabbing;
}

.bsp-h4-arrivals__track {
  display: flex;
  gap: var(--bsp-h4-na-gap);
  transition: transform 0.45s ease;
  will-change: transform;
}

.bsp-h4-arrivals__carousel:not(.is-slider) .bsp-h4-arrivals__track {
  flex-wrap: wrap;
}

.bsp-h4-arrivals__carousel.is-slider .bsp-h4-arrivals__card {
  flex: 0 0 var(--bsp-h4-na-card-width);
  width: var(--bsp-h4-na-card-width);
}

.bsp-h4-arrivals__carousel:not(.is-slider) .bsp-h4-arrivals__card {
  flex: 1 1 calc((100% - (var(--bsp-h4-na-cols) - 1) * var(--bsp-h4-na-gap)) / var(--bsp-h4-na-cols));
  max-width: calc((100% - (var(--bsp-h4-na-cols) - 1) * var(--bsp-h4-na-gap)) / var(--bsp-h4-na-cols));
}

.bsp-h4-arrivals__card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--bsp-h4-na-card-bg);
  border-radius: var(--bsp-h4-na-card-radius);
  overflow: hidden;
}

.bsp-h4-arrivals__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bsp-h4-na-card-bg);
  overflow: hidden;
}

.bsp-h4-arrivals__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--bsp-h4-na-badge-bg);
  color: var(--bsp-h4-na-badge-text);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.bsp-h4-arrivals__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #1a1a1a;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(17, 24, 39, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, color 0.2s ease;
}

.bsp-h4-arrivals__media:hover .bsp-h4-arrivals__wishlist,
.bsp-h4-arrivals__media:focus-within .bsp-h4-arrivals__wishlist,
.bsp-h4-arrivals__wishlist.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bsp-h4-arrivals__wishlist:hover,
.bsp-h4-arrivals__wishlist.is-active {
  color: #e11d2e;
}

.bsp-h4-arrivals__wishlist.is-active i {
  font-weight: 900;
}

.bsp-h4-arrivals__image-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  padding: 28px 20px 36px;
  overflow: hidden;
  text-decoration: none;
}

.bsp-h4-arrivals__image-link .bsp-product-card-images {
  position: relative;
  width: 100%;
  height: 100%;
}

.bsp-h4-arrivals__image-link .bsp-product-card-images img,
.bsp-h4-arrivals__image-link .bsp-product-card-images__primary,
.bsp-h4-arrivals__image-link .bsp-product-card-images__secondary {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center center;
  -webkit-user-drag: none;
  pointer-events: none;
}

.bsp-h4-arrivals__media:hover .bsp-product-card-images.has-secondary .bsp-product-card-images__secondary,
.bsp-h4-arrivals__media:focus-within .bsp-product-card-images.has-secondary .bsp-product-card-images__secondary {
  opacity: 1;
}

.bsp-h4-arrivals__media:hover .bsp-product-card-images.has-secondary .bsp-product-card-images__primary,
.bsp-h4-arrivals__media:focus-within .bsp-product-card-images.has-secondary .bsp-product-card-images__primary {
  opacity: 0;
}

.bsp-h4-arrivals__actions {
  position: absolute;
  right: 12px;
  bottom: 40px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.bsp-h4-arrivals__quick-view,
.bsp-h4-arrivals__bag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #1a1a1a;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(17, 24, 39, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, color 0.2s ease;
}

.bsp-h4-arrivals__media:hover .bsp-h4-arrivals__quick-view,
.bsp-h4-arrivals__media:focus-within .bsp-h4-arrivals__quick-view,
.bsp-h4-arrivals__media:hover .bsp-h4-arrivals__bag,
.bsp-h4-arrivals__media:focus-within .bsp-h4-arrivals__bag {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bsp-h4-arrivals__media:hover .bsp-h4-arrivals__bag,
.bsp-h4-arrivals__media:focus-within .bsp-h4-arrivals__bag {
  transition-delay: 0.05s;
}

.bsp-h4-arrivals__quick-view:hover,
.bsp-h4-arrivals__bag:hover {
  color: #082126;
}

.bsp-h4-arrivals__ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  overflow: hidden;
  height: 28px;
  background: var(--bsp-h4-na-ticker-bg);
  color: var(--bsp-h4-na-ticker-text);
}

.bsp-h4-arrivals__ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  animation: bsp-h4-na-ticker 18s linear infinite;
}

.bsp-h4-arrivals__ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.bsp-h4-arrivals__ticker-bolt {
  font-size: 11px;
  line-height: 1;
}

@keyframes bsp-h4-na-ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.bsp-h4-arrivals__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px 20px;
}

.bsp-h4-arrivals__category {
  margin: 0;
  color: var(--bsp-h4-na-category);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.bsp-h4-arrivals__name {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.bsp-h4-arrivals__name a {
  color: var(--bsp-h4-na-product);
  text-decoration: none;
}

.bsp-h4-arrivals__name a:hover,
.bsp-h4-arrivals__name a:focus-visible {
  text-decoration: underline;
}

.bsp-h4-arrivals__price {
  color: var(--bsp-h4-na-product);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.bsp-h4-arrivals__price del {
  margin-right: 6px;
  color: #9ca3af;
  font-weight: 500;
}

.bsp-h4-arrivals__price ins {
  text-decoration: none;
}

.bsp-h4-arrivals__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.bsp-h4-arrivals__progress {
  position: relative;
  flex: 1 1 auto;
  max-width: 100%;
  height: 2px;
  overflow: hidden;
  background: var(--bsp-h4-na-progress-track);
}

.bsp-h4-arrivals__progress-fill {
  display: block;
  height: 100%;
  background: var(--bsp-h4-na-progress);
  transition: width 0.35s ease;
}

.bsp-h4-arrivals__nav-spacer {
  flex: 1 1 auto;
}

.bsp-h4-arrivals__arrows {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
}

.bsp-h4-arrivals__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--bsp-h4-na-arrow-border);
  border-radius: 50%;
  background: #ffffff;
  color: var(--bsp-h4-na-arrow);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.bsp-h4-arrivals__arrow:hover:not(:disabled),
.bsp-h4-arrivals__arrow:focus-visible:not(:disabled) {
  border-color: var(--bsp-h4-na-arrow);
}

.bsp-h4-arrivals__arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.bsp-h4-arrivals__empty-note {
  margin: 0;
  padding: 24px;
  border: 1px dashed #d1d5db;
  border-radius: 12px;
  color: #6b7280;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 992px) {
  .bsp-h4-arrivals__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 28px;
  }

  .bsp-h4-arrivals {
    --bsp-h4-na-title-size: 34px;
  }

  .bsp-h4-arrivals__progress {
    max-width: none;
  }
}

@media (max-width: 576px) {
  .bsp-h4-arrivals {
    --bsp-h4-na-title-size: 30px;
    --bsp-h4-na-padding-y: 40px;
  }

  .bsp-h4-arrivals__tabs {
    gap: 20px;
    width: 100%;
  }

  .bsp-h4-arrivals__tab {
    font-size: 14px;
  }

  .bsp-h4-arrivals__image-link {
    padding: 20px 16px 28px;
  }

  .bsp-h4-arrivals__body {
    padding: 14px 14px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bsp-h4-arrivals__ticker-track {
    animation: none;
  }

  .bsp-h4-arrivals__track,
  .bsp-h4-arrivals__progress-fill {
    transition: none;
  }
}

@media (hover: none) {
  .bsp-h4-arrivals__wishlist,
  .bsp-h4-arrivals__quick-view,
  .bsp-h4-arrivals__bag,
  .bsp-h4-lookbook__wishlist,
  .bsp-h4-lookbook__quick-view,
  .bsp-h4-lookbook__bag {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

/* ============ Lookbook banners ============ */

.bsp-h4-lookbook {
  --bsp-h4-lb-section-bg: #ffffff;
  --bsp-h4-lb-pill-bg: #ffffff;
  --bsp-h4-lb-pill-border: #e5e7eb;
  --bsp-h4-lb-pill-text: #1a1a1a;
  --bsp-h4-lb-overlay-text: #ffffff;
  --bsp-h4-lb-bar-bg: #2c2c2c;
  --bsp-h4-lb-bar-text: #ffffff;
  --bsp-h4-lb-btn-bg: #ffffff;
  --bsp-h4-lb-btn-text: #1a1a1a;
  --bsp-h4-lb-padding-y: 48px;
  --bsp-h4-lb-gap: 16px;
  --bsp-h4-lb-card-radius: 16px;
  --bsp-h4-lb-card-height: 480px;

  padding: var(--bsp-h4-lb-padding-y) 0;
  background: var(--bsp-h4-lb-section-bg);
}

.bsp-h4-lookbook__container {
  max-width: var(--bsp-container, 1600px);
  margin: 0 auto;
  padding: 0 20px;
}

.bsp-h4-lookbook__pills {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.bsp-h4-lookbook__carousel {
  flex: 1 1 auto;
  min-width: 0;
}

.bsp-h4-lookbook__viewport {
  overflow: hidden;
  width: 100%;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.bsp-h4-lookbook__viewport:active {
  cursor: grabbing;
}

.bsp-h4-lookbook__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  width: max-content;
  transition: transform 0.4s ease;
  will-change: transform;
}

.bsp-h4-lookbook__pills:not(.is-slider) .bsp-h4-lookbook__track {
  flex-wrap: wrap;
  width: auto;
}

.bsp-h4-lookbook__arrow {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--bsp-h4-lb-pill-border);
  border-radius: 50%;
  background: #ffffff;
  color: var(--bsp-h4-lb-pill-text);
  cursor: pointer;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.bsp-h4-lookbook__arrow:hover:not(:disabled),
.bsp-h4-lookbook__arrow:focus-visible:not(:disabled) {
  border-color: var(--bsp-h4-lb-pill-text);
}

.bsp-h4-lookbook__arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.bsp-h4-lookbook__pill {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 8px;
  border: 1px solid var(--bsp-h4-lb-pill-border);
  border-radius: 999px;
  background: var(--bsp-h4-lb-pill-bg);
  color: var(--bsp-h4-lb-pill-text);
  text-decoration: none;
  -webkit-user-drag: none;
  user-select: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bsp-h4-lookbook__pill:hover,
.bsp-h4-lookbook__pill:focus-visible {
  border-color: #c4c4c4;
  box-shadow: 0 2px 10px rgba(17, 24, 39, 0.06);
}

.bsp-h4-lookbook__pill-thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  overflow: hidden;
  border-radius: 50%;
  background: #f3f4f6;
}

.bsp-h4-lookbook__pill-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  pointer-events: none;
}

.bsp-h4-lookbook__pill-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 14px;
}

.bsp-h4-lookbook__pill-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.bsp-h4-lookbook__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--bsp-h4-lb-gap);
}

.bsp-h4-lookbook__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bsp-h4-lb-card-height);
  overflow: hidden;
  border-radius: var(--bsp-h4-lb-card-radius);
  background: #1a1a1a;
}

.bsp-h4-lookbook__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #3a3a3a;
}

.bsp-h4-lookbook__image,
.bsp-h4-lookbook__image-fallback {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.bsp-h4-lookbook__image-fallback {
  background:
    linear-gradient(160deg, #6b7280 0%, #374151 55%, #1f2937 100%);
}

.bsp-h4-lookbook__gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.bsp-h4-lookbook__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 92px;
  z-index: 1;
  padding: 0 20px;
  color: var(--bsp-h4-lb-overlay-text);
}

.bsp-h4-lookbook__wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, color 0.2s ease;
}

.bsp-h4-lookbook__card:hover .bsp-h4-lookbook__wishlist,
.bsp-h4-lookbook__card:focus-within .bsp-h4-lookbook__wishlist,
.bsp-h4-lookbook__wishlist.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bsp-h4-lookbook__wishlist:hover,
.bsp-h4-lookbook__wishlist.is-active {
  color: #e11d2e;
}

.bsp-h4-lookbook__wishlist.is-active i {
  font-weight: 900;
}

.bsp-h4-lookbook__actions {
  position: absolute;
  right: 14px;
  bottom: 96px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.bsp-h4-lookbook__quick-view,
.bsp-h4-lookbook__bag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.bsp-h4-lookbook__card:hover .bsp-h4-lookbook__quick-view,
.bsp-h4-lookbook__card:focus-within .bsp-h4-lookbook__quick-view,
.bsp-h4-lookbook__card:hover .bsp-h4-lookbook__bag,
.bsp-h4-lookbook__card:focus-within .bsp-h4-lookbook__bag {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bsp-h4-lookbook__card:hover .bsp-h4-lookbook__bag,
.bsp-h4-lookbook__card:focus-within .bsp-h4-lookbook__bag {
  transition-delay: 0.05s;
}

.bsp-h4-lookbook__kicker {
  margin: 0 0 4px;
  font-family: var(--bsp-h4-font-serif);
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.3;
}

.bsp-h4-lookbook__heading {
  margin: 0;
  font-family: var(--bsp-h4-font-serif);
  font-size: clamp(22px, 1.6vw, 28px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.bsp-h4-lookbook__bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 76px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.bsp-h4-lookbook__product {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--bsp-h4-lb-bar-text);
  text-decoration: none;
}

.bsp-h4-lookbook__thumb {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  background: #ffffff;
}

.bsp-h4-lookbook__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.bsp-h4-lookbook__name {
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.bsp-h4-lookbook__price {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  opacity: 0.92;
}

.bsp-h4-lookbook__price del {
  margin-right: 4px;
  opacity: 0.55;
}

.bsp-h4-lookbook__price ins {
  text-decoration: none;
}

.bsp-h4-lookbook__shop {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--bsp-h4-lb-btn-bg);
  color: var(--bsp-h4-lb-btn-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.bsp-h4-lookbook__shop:hover,
.bsp-h4-lookbook__shop:focus-visible {
  opacity: 0.92;
  transform: translateY(-1px);
}

.bsp-h4-lookbook__empty-note {
  margin: 0;
  padding: 24px;
  border: 1px dashed #d1d5db;
  border-radius: 12px;
  color: #6b7280;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 1199px) {
  .bsp-h4-lookbook__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bsp-h4-lookbook__card {
    height: 420px;
  }
}

@media (max-width: 767px) {
  .bsp-h4-lookbook {
    --bsp-h4-lb-padding-y: 36px;
  }

  .bsp-h4-lookbook__pills {
    margin-bottom: 20px;
    gap: 10px;
  }

  .bsp-h4-lookbook__grid {
    grid-template-columns: 1fr;
  }

  .bsp-h4-lookbook__card {
    height: 380px;
  }

  .bsp-h4-lookbook__copy {
    bottom: 78px;
    padding: 0 16px;
  }

  .bsp-h4-lookbook__heading {
    font-size: 24px;
  }

  .bsp-h4-lookbook__bar {
    min-height: 64px;
    padding: 10px 12px;
    gap: 8px;
  }

  .bsp-h4-lookbook__thumb {
    width: 40px;
    height: 40px;
  }

  .bsp-h4-lookbook__name,
  .bsp-h4-lookbook__price {
    font-size: 12px;
  }

  .bsp-h4-lookbook__shop {
    flex-shrink: 0;
    padding: 8px 14px;
    font-size: 12px;
  }
}

/* -------------------------------------------------------------------------
   Beauty Showcase — headline, trust pills, sale banner + category grid
   ------------------------------------------------------------------------- */

.bsp-h4-showcase {
  --bsp-h4-sc-section-bg: #ffffff;
  --bsp-h4-sc-title: #1a1a1a;
  --bsp-h4-sc-highlight: #f2c4c0;
  --bsp-h4-sc-pill-bg: #ffffff;
  --bsp-h4-sc-pill-border: #e5e7eb;
  --bsp-h4-sc-pill-text: #1a1a1a;
  --bsp-h4-sc-tile-bg: #f5f5f5;
  --bsp-h4-sc-tile-text: #1a1a1a;
  --bsp-h4-sc-banner-text: #ffffff;
  --bsp-h4-sc-btn-bg: #ffffff;
  --bsp-h4-sc-btn-text: #1a1a1a;
  --bsp-h4-sc-padding-y: 56px;
  --bsp-h4-sc-gap: 16px;
  --bsp-h4-sc-radius: 16px;
  --bsp-h4-sc-title-size: 42px;
  padding: var(--bsp-h4-sc-padding-y) 0;
  background: var(--bsp-h4-sc-section-bg);
}

.bsp-h4-showcase__container {
  max-width: var(--bsp-container, 1600px);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.bsp-h4-showcase__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  gap: 28px;
}

.bsp-h4-showcase__title {
  margin: 0;
  max-width: 14em;
  font-family: var(--bsp-h4-font-serif);
  font-size: var(--bsp-h4-sc-title-size);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--bsp-h4-sc-title);
}

.bsp-h4-showcase__highlight {
  position: relative;
  display: inline-block;
  font-style: italic;
  font-weight: 500;
  z-index: 0;
  padding: 0 0.12em;
}

.bsp-h4-showcase__highlight::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.18em;
  right: -0.18em;
  top: 0.02em;
  bottom: -0.08em;
  border: 1.5px solid var(--bsp-h4-sc-highlight);
  border-radius: 50% 48% 52% 50% / 48% 52% 48% 52%;
  transform: rotate(-4deg);
  pointer-events: none;
}

.bsp-h4-showcase__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bsp-h4-showcase__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--bsp-h4-sc-pill-border);
  border-radius: 999px;
  background: var(--bsp-h4-sc-pill-bg);
  color: var(--bsp-h4-sc-pill-text);
  font-family: var(--bsp-h4-font-sans);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.bsp-h4-showcase__pill-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: currentColor;
  opacity: 0.85;
}

.bsp-h4-showcase__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 2.08fr);
  gap: var(--bsp-h4-sc-gap);
  align-items: stretch;
}

.bsp-h4-showcase__banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--bsp-h4-sc-radius);
  min-height: 100%;
  background: #6b7f6a;
  isolation: isolate;
}

.bsp-h4-showcase__banner.has-fallback {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.18), transparent 55%),
    linear-gradient(160deg, #7a9178 0%, #556b54 55%, #3f5240 100%);
}

.bsp-h4-showcase__banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.bsp-h4-showcase__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

.bsp-h4-showcase__banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  gap: 14px;
  height: 100%;
  min-height: 520px;
  padding: 48px 28px 36px;
  color: var(--bsp-h4-sc-banner-text);
}

.bsp-h4-showcase__banner-kicker {
  margin: 0;
  font-family: var(--bsp-h4-font-serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.3;
}

.bsp-h4-showcase__banner-title {
  margin: 0;
  font-family: var(--bsp-h4-font-serif);
  font-size: clamp(32px, 2.8vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.bsp-h4-showcase__countdown {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
  font-family: var(--bsp-h4-font-sans);
  font-size: clamp(28px, 2.4vw, 36px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.bsp-h4-showcase__countdown-sep {
  opacity: 0.9;
  font-weight: 500;
}

.bsp-h4-showcase__banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--bsp-h4-sc-btn-bg);
  color: var(--bsp-h4-sc-btn-text);
  font-family: var(--bsp-h4-font-sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.bsp-h4-showcase__banner-btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.bsp-h4-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: var(--bsp-h4-sc-gap);
  min-height: 520px;
}

.bsp-h4-showcase__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px 16px 22px;
  border-radius: var(--bsp-h4-sc-radius);
  background: var(--bsp-h4-sc-tile-bg);
  color: var(--bsp-h4-sc-tile-text);
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.bsp-h4-showcase__tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
}

.bsp-h4-showcase__tile-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex: 1 1 auto;
  min-height: 110px;
}

.bsp-h4-showcase__tile-image {
  display: block;
  max-width: 72%;
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.bsp-h4-showcase__tile-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  color: #9ca3af;
  font-size: 22px;
}

.bsp-h4-showcase__tile-label {
  font-family: var(--bsp-h4-font-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bsp-h4-showcase__empty-note {
  margin: 0;
  padding: 24px;
  border: 1px dashed #d1d5db;
  border-radius: 12px;
  color: #6b7280;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 1199px) {
  .bsp-h4-showcase__layout {
    grid-template-columns: minmax(220px, 0.85fr) minmax(0, 2.15fr);
  }

  .bsp-h4-showcase__banner-content,
  .bsp-h4-showcase__grid {
    min-height: 460px;
  }
}

@media (max-width: 991px) {
  .bsp-h4-showcase__title {
    max-width: 22ch;
    font-size: clamp(30px, 5vw, 38px);
  }

  .bsp-h4-showcase__layout {
    grid-template-columns: 1fr;
  }

  .bsp-h4-showcase__pills {
    flex-wrap: nowrap;
    justify-content: flex-start;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .bsp-h4-showcase__pills::-webkit-scrollbar {
    display: none;
  }

  .bsp-h4-showcase__banner-content {
    min-height: 340px;
    padding-top: 36px;
  }

  .bsp-h4-showcase__grid {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bsp-h4-showcase__tile {
    min-height: 170px;
    padding: 18px 14px 16px;
    gap: 12px;
  }

  .bsp-h4-showcase__tile-media {
    min-height: 90px;
  }

  .bsp-h4-showcase__tile-label {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .bsp-h4-showcase {
    --bsp-h4-sc-padding-y: 40px;
  }

  .bsp-h4-showcase__header {
    margin-bottom: 28px;
    gap: 20px;
  }

  .bsp-h4-showcase__title {
    max-width: none;
    font-size: 28px;
  }

  .bsp-h4-showcase__highlight::before {
    left: -0.3em;
    right: -0.3em;
  }

  .bsp-h4-showcase__pills {
    gap: 8px;
  }

  .bsp-h4-showcase__pill {
    padding: 8px 14px;
    font-size: 12px;
  }

  .bsp-h4-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .bsp-h4-showcase__tile {
    min-height: 148px;
    padding: 14px 10px 12px;
    gap: 8px;
  }

  .bsp-h4-showcase__tile-media {
    min-height: 72px;
  }

  .bsp-h4-showcase__tile-image {
    max-height: 96px;
  }

  .bsp-h4-showcase__tile-placeholder {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .bsp-h4-showcase__tile-label {
    font-size: 12px;
  }

  .bsp-h4-showcase__banner-content {
    min-height: 300px;
    padding: 32px 20px 24px;
  }

  .bsp-h4-showcase__banner-title {
    font-size: 28px;
  }

  .bsp-h4-showcase__countdown {
    font-size: 24px;
  }
}

/* -------------------------------------------------------------------------
   Trending This Week — 3x3 horizontal product cards
   ------------------------------------------------------------------------- */

.bsp-h4-trending {
  --bsp-h4-tr-section-bg: #ffffff;
  --bsp-h4-tr-title: #1a1a1a;
  --bsp-h4-tr-link: #1a1a1a;
  --bsp-h4-tr-card-bg: #f5f5f5;
  --bsp-h4-tr-category: #9ca3af;
  --bsp-h4-tr-product: #1a1a1a;
  --bsp-h4-tr-price: #1a1a1a;
  --bsp-h4-tr-sale: #e11d2e;
  --bsp-h4-tr-arrow: #1a1a1a;
  --bsp-h4-tr-arrow-bg: #ffffff;
  --bsp-h4-tr-arrow-border: #e5e7eb;
  --bsp-h4-tr-padding-y: 56px;
  --bsp-h4-tr-gap: 20px;
  --bsp-h4-tr-radius: 12px;
  --bsp-h4-tr-title-size: 36px;
  padding: var(--bsp-h4-tr-padding-y) 0;
  background: var(--bsp-h4-tr-section-bg);
}

.bsp-h4-trending__container {
  max-width: var(--bsp-container, 1600px);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.bsp-h4-trending__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.bsp-h4-trending__title {
  margin: 0;
  font-family: var(--bsp-h4-font-serif);
  font-size: var(--bsp-h4-tr-title-size);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--bsp-h4-tr-title);
}

.bsp-h4-trending__shop-all {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  color: var(--bsp-h4-tr-link);
  font-family: var(--bsp-h4-font-sans);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.bsp-h4-trending__shop-all:hover {
  opacity: 0.7;
}

.bsp-h4-trending__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--bsp-h4-tr-gap);
}

.bsp-h4-trending__card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 108px;
  padding: 16px 18px;
  border-radius: var(--bsp-h4-tr-radius);
  background: var(--bsp-h4-tr-card-bg);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bsp-h4-trending__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.08);
}

.bsp-h4-trending__media {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
}

.bsp-h4-trending__image {
  display: block;
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.bsp-h4-trending__placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  color: #9ca3af;
  font-size: 18px;
}

.bsp-h4-trending__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
}

.bsp-h4-trending__category {
  font-family: var(--bsp-h4-font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bsp-h4-tr-category);
  line-height: 1.2;
}

.bsp-h4-trending__name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--bsp-h4-font-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--bsp-h4-tr-product);
}

.bsp-h4-trending__price {
  display: inline-flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  font-family: var(--bsp-h4-font-sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--bsp-h4-tr-price);
}

.bsp-h4-trending__price .price,
.bsp-h4-trending__price del,
.bsp-h4-trending__price ins,
.bsp-h4-trending__price .amount {
  background: none;
  text-decoration: none;
}

.bsp-h4-trending__price .price {
  display: inline-flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  color: inherit;
}

.bsp-h4-trending__price del {
  color: #9ca3af;
  font-weight: 500;
  margin-left: 0;
}

.bsp-h4-trending__price del .amount {
  text-decoration: line-through;
}

.bsp-h4-trending__price ins {
  color: var(--bsp-h4-tr-sale);
  font-weight: 700;
  text-decoration: none;
}

.bsp-h4-trending__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--bsp-h4-tr-arrow-border);
  border-radius: 50%;
  background: var(--bsp-h4-tr-arrow-bg);
  color: var(--bsp-h4-tr-arrow);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.bsp-h4-trending__card:hover .bsp-h4-trending__arrow {
  border-color: var(--bsp-h4-tr-arrow);
}

.bsp-h4-trending__empty-note {
  margin: 0;
  padding: 24px;
  border: 1px dashed #d1d5db;
  border-radius: 12px;
  color: #6b7280;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 991px) {
  .bsp-h4-trending__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .bsp-h4-trending {
    --bsp-h4-tr-padding-y: 40px;
  }

  .bsp-h4-trending__header {
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
  }

  .bsp-h4-trending__title {
    flex: 1 1 auto;
    min-width: 0;
    font-size: clamp(24px, 6vw, 30px);
  }

  .bsp-h4-trending__shop-all {
    font-size: 12px;
  }

  .bsp-h4-trending__grid {
    grid-template-columns: 1fr;
  }

  .bsp-h4-trending__card {
    min-height: 96px;
    padding: 14px 16px;
  }
}

/* -------------------------------------------------------------------------
   Holiday Gift Banners — dual lifestyle promo cards
   ------------------------------------------------------------------------- */

.bsp-h4-gifts {
  --bsp-h4-gf-section-bg: #ffffff;
  --bsp-h4-gf-text: #ffffff;
  --bsp-h4-gf-badge-bg: #f7e4e0;
  --bsp-h4-gf-badge-text: #1a1a1a;
  --bsp-h4-gf-btn-bg: #ffffff;
  --bsp-h4-gf-btn-text: #1a1a1a;
  --bsp-h4-gf-padding-y: 48px;
  --bsp-h4-gf-gap: 20px;
  --bsp-h4-gf-radius: 16px;
  --bsp-h4-gf-height: 360px;
  padding: var(--bsp-h4-gf-padding-y) 0;
  background: var(--bsp-h4-gf-section-bg);
}

.bsp-h4-gifts__container {
  max-width: var(--bsp-container, 1600px);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.bsp-h4-gifts__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--bsp-h4-gf-gap);
}

.bsp-h4-gifts__banner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: var(--bsp-h4-gf-height);
  border-radius: var(--bsp-h4-gf-radius);
  background: #8a7060;
}

.bsp-h4-gifts__banner.has-fallback:nth-child(1) {
  background:
    radial-gradient(ellipse at 70% 40%, rgba(255, 220, 180, 0.35), transparent 55%),
    linear-gradient(135deg, #c4a484 0%, #8b6b52 55%, #5c4030 100%);
}

.bsp-h4-gifts__banner.has-fallback:nth-child(2) {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(180, 220, 230, 0.4), transparent 50%),
    linear-gradient(145deg, #7eb0b8 0%, #4a858e 50%, #2f5f66 100%);
}

.bsp-h4-gifts__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.bsp-h4-gifts__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.32) 100%);
  pointer-events: none;
}

.bsp-h4-gifts__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
  gap: 20px;
  align-items: start;
  height: 100%;
  min-height: var(--bsp-h4-gf-height);
  padding: 36px 36px 32px;
  color: var(--bsp-h4-gf-text);
}

.bsp-h4-gifts__copy {
  grid-column: 1;
  grid-row: 1;
  max-width: 16em;
}

.bsp-h4-gifts__kicker {
  margin: 0 0 8px;
  font-family: var(--bsp-h4-font-serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.3;
}

.bsp-h4-gifts__title {
  margin: 0;
  font-family: var(--bsp-h4-font-serif);
  font-size: clamp(28px, 2.4vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.bsp-h4-gifts__badge {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--bsp-h4-gf-badge-bg);
  color: var(--bsp-h4-gf-badge-text);
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.bsp-h4-gifts__badge-label {
  font-family: var(--bsp-h4-font-serif);
  font-size: 13px;
  font-weight: 500;
}

.bsp-h4-gifts__badge-value {
  font-family: var(--bsp-h4-font-serif);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.bsp-h4-gifts__btn {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
  align-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--bsp-h4-gf-btn-bg);
  color: var(--bsp-h4-gf-btn-text);
  font-family: var(--bsp-h4-font-sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.bsp-h4-gifts__btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.bsp-h4-gifts__empty-note {
  margin: 0;
  padding: 24px;
  border: 1px dashed #d1d5db;
  border-radius: 12px;
  color: #6b7280;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 991px) {
  .bsp-h4-gifts__content {
    padding: 28px 24px 24px;
  }

  .bsp-h4-gifts__badge {
    width: 72px;
    height: 72px;
  }

  .bsp-h4-gifts__badge-value {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .bsp-h4-gifts {
    --bsp-h4-gf-padding-y: 36px;
    --bsp-h4-gf-height: 320px;
  }

  .bsp-h4-gifts__grid {
    grid-template-columns: 1fr;
  }

  .bsp-h4-gifts__title {
    font-size: 28px;
  }
}

/* -------------------------------------------------------------------------
   Shop By Brands — bordered 2×5 logo grid
   ------------------------------------------------------------------------- */

.bsp-h4-brands {
  --bsp-h4-br-section-bg: #ffffff;
  --bsp-h4-br-title: #1a1a1a;
  --bsp-h4-br-link: #1a1a1a;
  --bsp-h4-br-border: #e5e7eb;
  --bsp-h4-br-wordmark: #1a1a1a;
  --bsp-h4-br-padding-y: 56px;
  --bsp-h4-br-logo-h: 40px;
  --bsp-h4-br-cell-min: 120px;
  --bsp-h4-br-title-size: 36px;
  --bsp-h4-br-radius: 8px;
  padding: var(--bsp-h4-br-padding-y) 0;
  background: var(--bsp-h4-br-section-bg);
}

.bsp-h4-brands__container {
  max-width: var(--bsp-container, 1600px);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.bsp-h4-brands__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.bsp-h4-brands__title {
  margin: 0;
  font-family: var(--bsp-h4-font-serif);
  font-size: var(--bsp-h4-br-title-size);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--bsp-h4-br-title);
}

.bsp-h4-brands__shop-all {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  color: var(--bsp-h4-br-link);
  font-family: var(--bsp-h4-font-sans);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.bsp-h4-brands__shop-all:hover {
  opacity: 0.7;
}

.bsp-h4-brands__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--bsp-h4-br-border);
  border-radius: var(--bsp-h4-br-radius);
  overflow: hidden;
  background: #ffffff;
}

.bsp-h4-brands__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--bsp-h4-br-cell-min);
  padding: 28px 20px;
  border-right: 1px solid var(--bsp-h4-br-border);
  border-bottom: 1px solid var(--bsp-h4-br-border);
}

.bsp-h4-brands__cell:nth-child(5n) {
  border-right: 0;
}

.bsp-h4-brands__cell:nth-last-child(-n + 5) {
  border-bottom: 0;
}

.bsp-h4-brands__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.bsp-h4-brands__logo:hover {
  opacity: 0.75;
  transform: translateY(-1px);
}

.bsp-h4-brands__image {
  display: block;
  max-width: 100%;
  max-height: var(--bsp-h4-br-logo-h);
  width: auto;
  height: auto;
  object-fit: contain;
}

.bsp-h4-brands.is-grayscale .bsp-h4-brands__image {
  filter: grayscale(1);
  opacity: 0.85;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.bsp-h4-brands.is-grayscale .bsp-h4-brands__logo:hover .bsp-h4-brands__image {
  filter: grayscale(0);
  opacity: 1;
}

.bsp-h4-brands__wordmark {
  font-family: var(--bsp-h4-font-serif);
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--bsp-h4-br-wordmark);
}

.bsp-h4-brands__empty-note {
  margin: 0;
  padding: 24px;
  border: 1px dashed #d1d5db;
  border-radius: 12px;
  color: #6b7280;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 991px) {
  .bsp-h4-brands__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bsp-h4-brands__cell:nth-child(5n) {
    border-right: 1px solid var(--bsp-h4-br-border);
  }

  .bsp-h4-brands__cell:nth-last-child(-n + 5) {
    border-bottom: 1px solid var(--bsp-h4-br-border);
  }

  .bsp-h4-brands__cell:nth-child(3n) {
    border-right: 0;
  }

  .bsp-h4-brands__cell:nth-last-child(-n + 3) {
    border-bottom: 0;
  }
}

@media (max-width: 767px) {
  .bsp-h4-brands {
    --bsp-h4-br-padding-y: 40px;
  }

  .bsp-h4-brands__header {
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
  }

  .bsp-h4-brands__title {
    flex: 1 1 auto;
    min-width: 0;
    font-size: clamp(24px, 6vw, 30px);
  }

  .bsp-h4-brands__shop-all {
    font-size: 12px;
  }

  .bsp-h4-brands__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bsp-h4-brands__cell {
    min-height: 100px;
    padding: 22px 14px;
  }

  .bsp-h4-brands__cell:nth-child(3n) {
    border-right: 1px solid var(--bsp-h4-br-border);
  }

  .bsp-h4-brands__cell:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--bsp-h4-br-border);
  }

  .bsp-h4-brands__cell:nth-child(2n) {
    border-right: 0;
  }

  .bsp-h4-brands__cell:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

/* -------------------------------------------------------------------------
   Customer Reviews — 3-column grid + Show More
   ------------------------------------------------------------------------- */

.bsp-h4-reviews {
  --bsp-h4-rv-section-bg: #ffffff;
  --bsp-h4-rv-title: #1a1a1a;
  --bsp-h4-rv-card-bg: #f9f9f9;
  --bsp-h4-rv-name: #1a1a1a;
  --bsp-h4-rv-verified: #9ca3af;
  --bsp-h4-rv-quote: #6b7280;
  --bsp-h4-rv-product: #0f4c5c;
  --bsp-h4-rv-btn-bg: #082126;
  --bsp-h4-rv-btn-text: #ffffff;
  --bsp-h4-rv-padding-y: 72px;
  --bsp-h4-rv-gap: 20px;
  --bsp-h4-rv-radius: 12px;
  --bsp-h4-rv-title-size: 40px;
  padding: var(--bsp-h4-rv-padding-y) 0;
  background: var(--bsp-h4-rv-section-bg);
}

.bsp-h4-reviews__container {
  max-width: var(--bsp-container, 1600px);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.bsp-h4-reviews__header {
  margin-bottom: 40px;
  text-align: center;
}

.bsp-h4-reviews__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-family: var(--bsp-h4-font-serif);
  font-size: var(--bsp-h4-rv-title-size);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--bsp-h4-rv-title);
}

.bsp-h4-reviews__title-line {
  display: block;
}

.bsp-h4-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--bsp-h4-rv-gap);
}

.bsp-h4-reviews__card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px 28px 24px;
  border-radius: var(--bsp-h4-rv-radius);
  background: var(--bsp-h4-rv-card-bg);
}

.bsp-h4-reviews__card.is-hidden {
  display: none !important;
}

.bsp-h4-reviews__actions[hidden] {
  display: none !important;
}

.bsp-h4-reviews__card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.bsp-h4-reviews__avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.bsp-h4-reviews__avatar--placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e5e7eb;
  color: #374151;
  font-family: var(--bsp-h4-font-sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.bsp-h4-reviews__meta {
  min-width: 0;
}

.bsp-h4-reviews__name {
  margin: 0;
  font-family: var(--bsp-h4-font-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--bsp-h4-rv-name);
}

.bsp-h4-reviews__verified {
  margin: 2px 0 0;
  font-family: var(--bsp-h4-font-sans);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--bsp-h4-rv-verified);
}

.bsp-h4-reviews__quote {
  margin: 0 0 20px;
  flex: 1 1 auto;
}

.bsp-h4-reviews__quote p {
  margin: 0;
  font-family: var(--bsp-h4-font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--bsp-h4-rv-quote);
}

.bsp-h4-reviews__product {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #e5e7eb;
}

.bsp-h4-reviews__product-media {
  display: inline-flex;
  flex-shrink: 0;
  text-decoration: none;
}

.bsp-h4-reviews__product-image {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
}

.bsp-h4-reviews__product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #eef2f3;
  color: var(--bsp-h4-rv-product);
}

.bsp-h4-reviews__product-name {
  font-family: var(--bsp-h4-font-sans);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--bsp-h4-rv-product);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a.bsp-h4-reviews__product-name:hover {
  opacity: 0.75;
}

.bsp-h4-reviews__actions {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.bsp-h4-reviews__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 14px 32px;
  border: 0;
  border-radius: 999px;
  background: var(--bsp-h4-rv-btn-bg);
  color: var(--bsp-h4-rv-btn-text);
  font-family: var(--bsp-h4-font-sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.bsp-h4-reviews__more:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.bsp-h4-reviews__empty-note {
  margin: 0;
  padding: 24px;
  border: 1px dashed #d1d5db;
  border-radius: 12px;
  color: #6b7280;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 991px) {
  .bsp-h4-reviews__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .bsp-h4-reviews {
    --bsp-h4-rv-padding-y: 48px;
  }

  .bsp-h4-reviews__header {
    margin-bottom: 28px;
  }

  .bsp-h4-reviews__title {
    font-size: clamp(28px, 7vw, 36px);
  }

  .bsp-h4-reviews__grid {
    grid-template-columns: 1fr;
  }

  .bsp-h4-reviews__card {
    padding: 22px 20px 20px;
  }

  .bsp-h4-reviews__actions {
    margin-top: 28px;
  }
}

/* -------------------------------------------------------------------------
   Our Blog Posts — 3-column image + title + date • author
   ------------------------------------------------------------------------- */

.bsp-h4-blog {
  --bsp-h4-bl-section-bg: #ffffff;
  --bsp-h4-bl-title: #1a1a1a;
  --bsp-h4-bl-view-all: #1a1a1a;
  --bsp-h4-bl-card-title: #1a1a1a;
  --bsp-h4-bl-meta: #9ca3af;
  --bsp-h4-bl-padding-y: 56px;
  --bsp-h4-bl-gap: 28px;
  --bsp-h4-bl-radius: 12px;
  --bsp-h4-bl-title-size: 36px;
  padding: var(--bsp-h4-bl-padding-y) 0;
  background: var(--bsp-h4-bl-section-bg);
}

.bsp-h4-blog__container {
  max-width: var(--bsp-container, 1600px);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.bsp-h4-blog__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.bsp-h4-blog__title {
  margin: 0;
  font-family: var(--bsp-h4-font-serif);
  font-size: var(--bsp-h4-bl-title-size);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--bsp-h4-bl-title);
}

.bsp-h4-blog__view-all {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  color: var(--bsp-h4-bl-view-all);
  font-family: var(--bsp-h4-font-sans);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.bsp-h4-blog__view-all:hover {
  opacity: 0.7;
}

.bsp-h4-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--bsp-h4-bl-gap);
}

.bsp-h4-blog__card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.bsp-h4-blog__media {
  display: block;
  overflow: hidden;
  border-radius: var(--bsp-h4-bl-radius);
  aspect-ratio: 3 / 2;
  background: #f3f4f6;
  text-decoration: none;
}

.bsp-h4-blog__image,
.bsp-h4-blog__image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.bsp-h4-blog__image-placeholder {
  background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%);
}

.bsp-h4-blog__media:hover .bsp-h4-blog__image {
  transform: scale(1.04);
}

.bsp-h4-blog__card-title {
  margin: 16px 0 8px;
  font-family: var(--bsp-h4-font-serif);
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--bsp-h4-bl-card-title);
}

.bsp-h4-blog__card-title a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.bsp-h4-blog__card-title a:hover {
  opacity: 0.75;
}

.bsp-h4-blog__meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-family: var(--bsp-h4-font-sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bsp-h4-bl-meta);
}

.bsp-h4-blog__meta-sep {
  opacity: 0.8;
}

.bsp-h4-blog__empty-note {
  margin: 0;
  padding: 24px;
  border: 1px dashed #d1d5db;
  border-radius: 12px;
  color: #6b7280;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 991px) {
  .bsp-h4-blog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .bsp-h4-blog {
    --bsp-h4-bl-padding-y: 40px;
  }

  .bsp-h4-blog__header {
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
  }

  .bsp-h4-blog__title {
    flex: 1 1 auto;
    min-width: 0;
    font-size: clamp(24px, 6vw, 30px);
  }

  .bsp-h4-blog__view-all {
    font-size: 12px;
  }

  .bsp-h4-blog__grid {
    grid-template-columns: 1fr;
  }

  .bsp-h4-blog__card-title {
    margin-top: 14px;
    font-size: 22px;
  }
}
