/* Homepage product grids — WooCommerce sections */

/* Featured Products — luxury slider */
.bsp-fp-slider {
  background: var(--bsp-fp-bg, #f9f9f9);
  padding: 64px 20px 72px;
  overflow-x: clip;
}

.bsp-fp-slider__container {
  max-width: 1320px;
  margin: 0 auto;
  min-width: 0;
}

.bsp-fp-slider__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  min-height: 48px;
}

.bsp-fp-slider__title {
  margin: 0;
  color: var(--bsp-fp-title, #111827);
  font-family: var(--bsp-font-heading);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-align: center;
}

.bsp-fp-slider__view-all {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--bsp-fp-title, #111827);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.bsp-fp-slider__view-all:hover {
  opacity: 0.7;
  color: var(--bsp-fp-title, #111827);
}

.bsp-fp-slider__carousel {
  --bsp-fp-card-width: 300px;
}

/* Non-slider: equal-width grid (column count set via --bsp-fp-columns) */
.bsp-fp-slider__carousel:not(.is-slider) {
  --bsp-fp-columns: 4;
}

.bsp-fp-slider__carousel:not(.is-slider) .bsp-fp-slider__viewport {
  overflow: visible;
}

.bsp-fp-slider__carousel:not(.is-slider) .bsp-fp-slider__track {
  display: grid;
  grid-template-columns: repeat(var(--bsp-fp-columns, 4), minmax(0, 1fr));
  gap: 20px;
}

.bsp-fp-slider__carousel:not(.is-slider) .bsp-fp-slider__card {
  flex: none;
  width: 100%;
}

.bsp-fp-slider__viewport {
  overflow: hidden;
}

.bsp-fp-slider__track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.bsp-fp-slider__card {
  flex: 0 0 var(--bsp-fp-card-width);
  width: var(--bsp-fp-card-width);
  display: flex;
  flex-direction: column;
}

.bsp-fp-slider__card-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f3f4f6;
  margin-bottom: 14px;
}

.bsp-fp-slider__card-image-link {
  display: block;
  width: 100%;
  height: 100%;
}

.bsp-fp-slider__card-media .bsp-product-card-images {
  width: 100%;
  height: 100%;
}

.bsp-fp-slider__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #374151;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.bsp-fp-slider__wishlist:hover,
.bsp-fp-slider__wishlist.is-active {
  color: var(--bsp-fp-accent, #111827);
}

.bsp-fp-slider__wishlist.is-active svg path {
  fill: var(--bsp-fp-accent, #111827);
}

.bsp-fp-slider__card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bsp-fp-slider__card-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.bsp-fp-slider__card-title a {
  color: var(--bsp-fp-card-title, #111827);
  text-decoration: none;
}

.bsp-fp-slider__card-title a:hover {
  opacity: 0.7;
}

.bsp-fp-slider__card-category {
  margin: 0;
  color: var(--bsp-fp-category, #9ca3af);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
}

.bsp-fp-slider__card-price {
  margin-top: 2px;
  color: var(--bsp-fp-price, #111827);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.bsp-fp-slider__card-price del {
  color: #9ca3af;
  font-weight: 400;
  margin-right: 6px;
}

.bsp-fp-slider__card-price ins {
  text-decoration: none;
}

.bsp-fp-slider__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.bsp-fp-slider__swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bsp-swatch-color, #ccc);
  border: 1px solid rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.bsp-fp-slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.bsp-fp-slider__arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #d1d5db;
  border-radius: 0;
  background: transparent;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.bsp-fp-slider__arrow:hover:not(:disabled) {
  border-color: #111827;
  background: #111827;
  color: #fff;
}

.bsp-fp-slider__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.bsp-fp-slider__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bsp-fp-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.bsp-fp-slider__dot.is-active {
  background: #111827;
  transform: scale(1.15);
}

@media (max-width: 767px) {
  .bsp-fp-slider {
    padding: 48px 16px 56px;
  }

  .bsp-fp-slider__carousel:not(.is-slider) .bsp-fp-slider__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .bsp-fp-slider__header {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    min-height: 0;
  }

  .bsp-fp-slider__view-all {
    position: static;
    transform: none;
    order: 2;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 0;
  }

  .bsp-fp-slider__title {
    font-size: clamp(26px, 7vw, 34px);
  }

  .bsp-fp-slider__nav {
    margin-top: 24px;
    gap: 14px;
  }
}

@media (max-width: 991px) {
  .bsp-fp-slider {
    padding: 52px 16px 60px;
  }
}

/* Shared product grid sections */

.bsp-product-grid,
.bsp-featured-products {
  background: var(--bsp-fp-bg, #fff);
  padding: 56px 20px 64px;
}

.bsp-featured-products__container {
  max-width: 1320px;
  margin: 0 auto;
}

.bsp-featured-products__header {
  text-align: center;
  margin-bottom: 32px;
}

.bsp-featured-products__kicker {
  margin: 0 0 10px;
  color: var(--bsp-fp-kicker, #1a1a1a);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bsp-featured-products__title {
  margin: 0 0 12px;
  color: var(--bsp-fp-title, #111827);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
}

.bsp-featured-products__subtitle {
  margin: 0 0 28px;
  color: var(--bsp-fp-subtitle, #6b7280);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.5;
}

.bsp-product-grid__grid,
.bsp-featured-products__grid {
  display: grid;
  grid-template-columns: repeat(var(--bsp-fp-columns, 5), minmax(0, 1fr));
  gap: 18px 14px;
}

.bsp-featured-products__card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bsp-featured-products__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.12);
}

.bsp-featured-products__card-image-link {
  display: block;
  text-decoration: none;
  height: 100%;
  position: relative;
  z-index: 1;
}

.bsp-featured-products__card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f3f0;
  border-radius: 14px 14px 0 0;
}

.bsp-featured-products__quick-view {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  pointer-events: auto;
  border: 0;
  padding: 12px 16px;
  background: rgba(17, 24, 39, 0.72);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.2s ease;
}

.bsp-featured-products__card-media:hover .bsp-featured-products__quick-view,
.bsp-featured-products__quick-view:focus-visible {
  transform: translateY(0);
  opacity: 1;
}

.bsp-featured-products__quick-view:hover {
  background: rgba(26, 26, 26, 0.92);
}

.bsp-product-card__quick-view {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  pointer-events: auto;
  border: 0;
  padding: 12px 16px;
  background: rgba(17, 17, 17, 0.78);
  background: color-mix(in srgb, var(--bsp-fp-quick-view-bg, #111111) 78%, transparent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.2s ease;
}

.bsp-fp-slider__card-media:hover .bsp-product-card__quick-view,
.bsp-luxury-card__media:hover .bsp-product-card__quick-view,
.bsp-bs-split__featured-media:hover .bsp-product-card__quick-view,
.bsp-na-split__featured-media:hover .bsp-product-card__quick-view,
.bsp-product-card__quick-view:focus-visible {
  transform: translateY(0);
  opacity: 1;
}

.bsp-product-card__quick-view:hover {
  background: rgba(26, 26, 26, 0.95);
}

@media (hover: none) {
  .bsp-featured-products__quick-view {
    transform: translateY(0);
    opacity: 1;
  }

  .bsp-product-card__quick-view {
    transform: translateY(0);
    opacity: 1;
  }
}

.bsp-featured-products__card-media .bsp-product-card-images {
  width: 100%;
  height: 100%;
}

.bsp-featured-products__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--bsp-fp-accent, #1a1a1a);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.bsp-featured-products__card-body {
  padding: 14px 12px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bsp-featured-products__card-category {
  margin: 0 0 6px;
  color: var(--bsp-fp-category, #9ca3af);
  font-size: 12px;
  line-height: 1.3;
}

.bsp-featured-products__card-title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bsp-featured-products__card-title a {
  color: var(--bsp-fp-card-title, #111827);
  text-decoration: none;
}

.bsp-featured-products__card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  min-height: 18px;
}

.bsp-featured-products__stars {
  display: inline-flex;
  gap: 2px;
}

.bsp-featured-products__star {
  color: #e5e7eb;
}

.bsp-featured-products__star.is-filled {
  color: var(--bsp-fp-accent, #1a1a1a);
}

.bsp-featured-products__review-count {
  color: var(--bsp-fp-category, #9ca3af);
  font-size: 12px;
}

.bsp-featured-products__card-price {
  margin-bottom: 14px;
  color: var(--bsp-fp-price, #111827);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.bsp-featured-products__card-price del {
  color: #9ca3af;
  font-weight: 500;
  margin-right: 6px;
}

.bsp-featured-products__card-price ins {
  text-decoration: none;
  color: var(--bsp-fp-sale, #1a1a1a);
}

.bsp-featured-products__card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bsp-featured-products__add-btn {
  flex: 1;
  min-height: 42px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--bsp-fp-accent, #1a1a1a) !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: var(--bsp-fp-accent, #1a1a1a) !important;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0 10px !important;
  transition: background 0.2s ease, color 0.2s ease;
}

.bsp-featured-products__add-btn:hover {
  background: var(--bsp-fp-accent, #1a1a1a);
  color: #fff;
}

.bsp-featured-products__wishlist-btn {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.bsp-featured-products__wishlist-btn.is-active,
.bsp-featured-products__wishlist-btn:hover {
  border-color: var(--bsp-fp-accent, #1a1a1a);
  color: var(--bsp-fp-accent, #1a1a1a);
}

.bsp-featured-products__wishlist-btn.is-active svg path {
  fill: var(--bsp-fp-accent, #1a1a1a);
}

.bsp-featured-products__footer {
  margin-top: 36px;
  text-align: center;
}

.bsp-featured-products__view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 32px;
  border-radius: 999px;
  background: var(--bsp-fp-accent, #1a1a1a);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bsp-featured-products__view-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(26, 26, 26, 0.35);
  color: #fff;
}

@media (min-width: 1200px) {
  .bsp-product-grid__grid,
  .bsp-featured-products__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 1199px) {
  .bsp-product-grid__grid,
  .bsp-featured-products__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .bsp-product-grid,
  .bsp-featured-products {
    padding: 44px 16px 52px;
  }

  .bsp-product-grid__grid,
  .bsp-featured-products__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .bsp-product-grid__grid,
  .bsp-featured-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 479px) {
  .bsp-product-grid__grid,
  .bsp-featured-products__grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }
}

/* -------------------------------------------------------------------------
   Best Sellers — luxury split layout
   ------------------------------------------------------------------------- */

.bsp-product-grid--best-sellers {
  --bsp-luxury-serif: var(--bsp-font-heading, Georgia, "Times New Roman", serif);
  --bsp-luxury-taupe: #c4b5a6;
  --bsp-luxury-taupe-light: #e8e0d8;
  --bsp-luxury-black: #111111;
  overflow-x: clip;
}

.bsp-product-grid--best-sellers .bsp-bs-split__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  min-height: 48px;
}

.bsp-product-grid--best-sellers .bsp-bs-split__title {
  margin: 0;
  font-family: var(--bsp-luxury-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--bsp-fp-title, #111827);
}

.bsp-product-grid--best-sellers .bsp-bs-split__view-all {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--bsp-luxury-black);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.bsp-product-grid--best-sellers .bsp-bs-split__view-all:hover {
  opacity: 0.65;
  color: var(--bsp-luxury-black);
}

.bsp-product-grid--best-sellers .bsp-bs-split__layout {
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.bsp-product-grid--best-sellers .bsp-bs-split__featured {
  display: flex;
  flex-direction: column;
  background: var(--bsp-luxury-taupe-light);
  border-radius: 0;
  overflow: hidden;
}

.bsp-product-grid--best-sellers .bsp-bs-split__featured-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bsp-luxury-taupe);
}

.bsp-product-grid--best-sellers .bsp-bs-split__featured-media .bsp-product-card-images {
  width: 100%;
  height: 100%;
}

.bsp-product-grid--best-sellers .bsp-bs-split__featured-image-link {
  display: block;
  height: 100%;
}

.bsp-product-grid--best-sellers .bsp-bs-split__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 6px 12px;
  background: var(--bsp-luxury-black);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.bsp-product-grid--best-sellers .bsp-bs-split__index {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.bsp-product-grid--best-sellers .bsp-bs-split__featured-body {
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bsp-product-grid--best-sellers .bsp-bs-split__featured-title {
  margin: 0 0 10px;
  font-family: var(--bsp-luxury-serif);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 400;
  line-height: 1.25;
}

.bsp-product-grid--best-sellers .bsp-bs-split__featured-title a {
  color: var(--bsp-luxury-black);
  text-decoration: none;
}

.bsp-product-grid--best-sellers .bsp-bs-split__featured-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.bsp-product-grid--best-sellers .bsp-bs-split__featured-rating .bsp-featured-products__star.is-filled {
  color: var(--bsp-luxury-black);
}

.bsp-product-grid--best-sellers .bsp-bs-split__featured-price {
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--bsp-luxury-black);
}

.bsp-product-grid--best-sellers .bsp-bs-split__featured-desc {
  margin: 0 0 22px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}

.bsp-product-grid--best-sellers .bsp-bs-split__shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 46px;
  padding: 0 28px;
  background: var(--bsp-luxury-black);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.bsp-product-grid--best-sellers .bsp-bs-split__shop-btn:hover {
  background: #2d2d2d;
  color: #fff;
  transform: translateY(-1px);
}

.bsp-product-grid--best-sellers .bsp-bs-split__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.bsp-product-grid--best-sellers .bsp-bs-split__grid > [role="listitem"] {
  min-width: 0;
}

.bsp-product-grid--best-sellers .bsp-luxury-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
  background: #fff;
}

.bsp-product-grid--best-sellers .bsp-luxury-card__index {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--bsp-luxury-black);
  opacity: 0.7;
}

.bsp-product-grid--best-sellers .bsp-luxury-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f3f4f6;
}

.bsp-product-grid--best-sellers .bsp-luxury-card__image-link {
  display: block;
  height: 100%;
}

.bsp-product-grid--best-sellers .bsp-luxury-card__media .bsp-product-card-images {
  width: 100%;
  height: 100%;
}

.bsp-product-grid--best-sellers .bsp-luxury-card__wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--bsp-luxury-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.bsp-product-grid--best-sellers .bsp-luxury-card__wishlist.is-active,
.bsp-product-grid--best-sellers .bsp-luxury-card__wishlist:hover {
  color: var(--bsp-fp-accent, #1a1a1a);
}

.bsp-product-grid--best-sellers .bsp-luxury-card__wishlist.is-active svg path {
  fill: var(--bsp-fp-accent, #1a1a1a);
}

.bsp-product-grid--best-sellers .bsp-luxury-card__body {
  padding: 14px 8px 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 0 0 auto;
}

.bsp-product-grid--best-sellers .bsp-luxury-card__title {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.bsp-product-grid--best-sellers .bsp-luxury-card__title a {
  color: var(--bsp-luxury-black);
  text-decoration: none;
}

.bsp-product-grid--best-sellers .bsp-luxury-card__price {
  font-size: 13px;
  font-weight: 600;
  color: var(--bsp-luxury-black);
}

.bsp-product-grid--best-sellers .bsp-luxury-card__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.bsp-product-grid--best-sellers .bsp-luxury-card__swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bsp-swatch-color, #d1d5db);
  border: 1px solid rgba(17, 17, 17, 0.12);
}

@media (max-width: 1199px) {
  .bsp-product-grid--best-sellers .bsp-bs-split__layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bsp-product-grid--best-sellers .bsp-bs-split__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .bsp-product-grid--best-sellers,
  .bsp-product-grid--new-arrivals {
    padding: 48px 16px 56px;
  }

  .bsp-product-grid--best-sellers .bsp-bs-split__featured-body {
    padding: 22px 20px 26px;
  }
}

@media (max-width: 767px) {
  .bsp-product-grid--best-sellers .bsp-bs-split__header {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    min-height: 0;
  }

  .bsp-product-grid--best-sellers .bsp-bs-split__view-all {
    position: static;
    transform: none;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 0;
  }

  .bsp-product-grid--best-sellers .bsp-bs-split__title {
    font-size: clamp(26px, 7vw, 36px);
  }

  .bsp-product-grid--best-sellers .bsp-bs-split__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .bsp-product-grid--best-sellers .bsp-bs-split__shop-btn {
    width: 100%;
    align-self: stretch;
  }
}

/* -------------------------------------------------------------------------
   New Arrivals — luxury split layout
   ------------------------------------------------------------------------- */

.bsp-product-grid--new-arrivals {
  --bsp-luxury-serif: var(--bsp-font-heading, Georgia, "Times New Roman", serif);
  --bsp-luxury-black: #111111;
  overflow-x: clip;
}

.bsp-product-grid--new-arrivals .bsp-na-split__layout {
  display: grid;
  grid-template-columns: minmax(0, 35%) minmax(0, 65%);
  gap: 32px;
  align-items: start;
}

.bsp-product-grid--new-arrivals .bsp-na-split__title {
  margin: 0 0 12px;
  font-family: var(--bsp-luxury-serif);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--bsp-fp-title, #111827);
}

.bsp-product-grid--new-arrivals .bsp-na-split__subtitle {
  margin: 0 0 24px;
  color: var(--bsp-fp-subtitle, #6b7280);
  font-size: 15px;
  line-height: 1.55;
  max-width: 28ch;
}

.bsp-product-grid--new-arrivals .bsp-na-split__shop-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  margin-bottom: 28px;
  background: var(--bsp-luxury-black);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: background 0.2s ease;
}

.bsp-product-grid--new-arrivals .bsp-na-split__shop-all:hover {
  background: #2d2d2d;
  color: #fff;
}

.bsp-product-grid--new-arrivals .bsp-na-split__featured {
  position: relative;
  overflow: hidden;
}

.bsp-product-grid--new-arrivals .bsp-na-split__featured-media {
  position: relative;
  overflow: hidden;
}

.bsp-product-grid--new-arrivals .bsp-na-split__featured-image-link {
  display: block;
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f3f4f6;
}

.bsp-product-grid--new-arrivals .bsp-na-split__featured-image-link .bsp-product-card-images {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.bsp-product-grid--new-arrivals .bsp-na-split__featured-image-link:hover .bsp-product-card-images:not(.has-secondary) {
  transform: scale(1.03);
}

.bsp-product-grid--new-arrivals .bsp-na-split__featured-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 24px 20px 52px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 35%, rgba(17, 17, 17, 0.55) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  pointer-events: none;
  transition: background 0.35s ease;
}

.bsp-product-grid--new-arrivals .bsp-na-split__featured-media:hover .bsp-na-split__featured-overlay,
.bsp-product-grid--new-arrivals .bsp-na-split__featured-media:focus-within .bsp-na-split__featured-overlay {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.08) 0%, rgba(17, 17, 17, 0.72) 48%, rgba(17, 17, 17, 0.92) 100%);
}

.bsp-product-grid--new-arrivals .bsp-na-split__featured-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s ease, max-height 0.35s ease, transform 0.3s ease, margin 0.3s ease;
}

.bsp-product-grid--new-arrivals .bsp-na-split__featured-name {
  font-family: var(--bsp-luxury-serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  transition: transform 0.3s ease;
}

.bsp-product-grid--new-arrivals .bsp-na-split__featured-desc {
  margin-top: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s ease, max-height 0.35s ease, transform 0.3s ease, margin 0.3s ease;
}

.bsp-product-grid--new-arrivals .bsp-na-split__featured-rating {
  display: flex;
  align-items: center;
  min-height: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s ease, max-height 0.35s ease, transform 0.3s ease, margin 0.3s ease;
}

.bsp-product-grid--new-arrivals .bsp-na-split__featured-rating .bsp-featured-products__star.is-filled {
  color: #f5e6c8;
}

.bsp-product-grid--new-arrivals .bsp-na-split__featured-media:hover .bsp-na-split__featured-category,
.bsp-product-grid--new-arrivals .bsp-na-split__featured-media:focus-within .bsp-na-split__featured-category {
  opacity: 1;
  max-height: 24px;
  margin-bottom: 8px;
  transform: translateY(0);
}

.bsp-product-grid--new-arrivals .bsp-na-split__featured-media:hover .bsp-na-split__featured-desc,
.bsp-product-grid--new-arrivals .bsp-na-split__featured-media:focus-within .bsp-na-split__featured-desc {
  opacity: 1;
  max-height: 72px;
  margin-top: 8px;
  transform: translateY(0);
}

.bsp-product-grid--new-arrivals .bsp-na-split__featured-media:hover .bsp-na-split__featured-rating,
.bsp-product-grid--new-arrivals .bsp-na-split__featured-media:focus-within .bsp-na-split__featured-rating {
  opacity: 1;
  max-height: 24px;
  margin-top: 8px;
  transform: translateY(0);
}

.bsp-product-grid--new-arrivals .bsp-na-split__featured-price {
  font-size: 15px;
  font-weight: 600;
  margin-top: 6px;
}

.bsp-product-grid--new-arrivals .bsp-na-split__featured-media:hover .bsp-na-split__featured-price,
.bsp-product-grid--new-arrivals .bsp-na-split__featured-media:focus-within .bsp-na-split__featured-price {
  margin-top: 10px;
}

.bsp-product-grid--new-arrivals .bsp-na-split__featured-cta {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.05s, max-height 0.35s ease, transform 0.3s ease 0.05s, margin 0.3s ease;
}

.bsp-product-grid--new-arrivals .bsp-na-split__featured-media:hover .bsp-na-split__featured-cta,
.bsp-product-grid--new-arrivals .bsp-na-split__featured-media:focus-within .bsp-na-split__featured-cta {
  opacity: 1;
  max-height: 24px;
  margin-top: 12px;
  transform: translateY(0);
}

@media (hover: none) {
  .bsp-product-grid--new-arrivals .bsp-na-split__featured-overlay {
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.08) 0%, rgba(17, 17, 17, 0.72) 48%, rgba(17, 17, 17, 0.92) 100%);
  }

  .bsp-product-grid--new-arrivals .bsp-na-split__featured-category,
  .bsp-product-grid--new-arrivals .bsp-na-split__featured-desc,
  .bsp-product-grid--new-arrivals .bsp-na-split__featured-rating,
  .bsp-product-grid--new-arrivals .bsp-na-split__featured-cta {
    opacity: 1;
    max-height: none;
    transform: none;
    overflow: visible;
  }

  .bsp-product-grid--new-arrivals .bsp-na-split__featured-category {
    margin-bottom: 8px;
  }

  .bsp-product-grid--new-arrivals .bsp-na-split__featured-desc,
  .bsp-product-grid--new-arrivals .bsp-na-split__featured-rating {
    margin-top: 8px;
  }

  .bsp-product-grid--new-arrivals .bsp-na-split__featured-cta {
    margin-top: 12px;
  }
}

.bsp-product-grid--new-arrivals .bsp-na-split__products {
  position: relative;
  min-width: 0;
}

.bsp-product-grid--new-arrivals .bsp-na-split__products-head {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.bsp-product-grid--new-arrivals .bsp-product-carousel__nav {
  display: inline-flex;
  gap: 8px;
}

.bsp-product-grid--new-arrivals .bsp-product-carousel__arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #d1d5db;
  border-radius: 50%;
  background: #fff;
  color: var(--bsp-luxury-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.bsp-product-grid--new-arrivals .bsp-product-carousel__arrow:hover:not(:disabled) {
  border-color: var(--bsp-luxury-black);
  background: #f9fafb;
}

.bsp-product-grid--new-arrivals .bsp-product-carousel__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.bsp-product-grid--new-arrivals .bsp-product-carousel__viewport {
  overflow: hidden;
}

.bsp-product-grid--new-arrivals .bsp-na-split__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.bsp-product-grid--new-arrivals .bsp-product-carousel.is-active .bsp-na-split__grid {
  display: flex;
  gap: 16px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.bsp-product-grid--new-arrivals .bsp-product-carousel.is-active .bsp-product-carousel__slide {
  flex: 0 0 var(--bsp-pc-slide-width, calc((100% - 32px) / 3));
  min-width: var(--bsp-pc-slide-width, calc((100% - 32px) / 3));
}

.bsp-product-grid--new-arrivals .bsp-luxury-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
}

.bsp-product-grid--new-arrivals .bsp-luxury-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f3f4f6;
}

.bsp-product-grid--new-arrivals .bsp-luxury-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 8px;
  background: var(--bsp-luxury-black);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.bsp-product-grid--new-arrivals .bsp-luxury-card__wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--bsp-luxury-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.bsp-product-grid--new-arrivals .bsp-luxury-card__wishlist.is-active,
.bsp-product-grid--new-arrivals .bsp-luxury-card__wishlist:hover {
  color: var(--bsp-fp-accent, #1a1a1a);
}

.bsp-product-grid--new-arrivals .bsp-luxury-card__wishlist.is-active svg path {
  fill: var(--bsp-fp-accent, #1a1a1a);
}

.bsp-product-grid--new-arrivals .bsp-luxury-card__image-link {
  display: block;
  height: 100%;
}

.bsp-product-grid--new-arrivals .bsp-luxury-card__media .bsp-product-card-images {
  width: 100%;
  height: 100%;
}

.bsp-product-grid--new-arrivals .bsp-luxury-card__body {
  padding: 14px 4px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bsp-product-grid--new-arrivals .bsp-luxury-card__title {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.bsp-product-grid--new-arrivals .bsp-luxury-card__title a {
  color: var(--bsp-luxury-black);
  text-decoration: none;
}

.bsp-product-grid--new-arrivals .bsp-luxury-card__price {
  font-size: 13px;
  font-weight: 600;
}

.bsp-product-grid--new-arrivals .bsp-luxury-card__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.bsp-product-grid--new-arrivals .bsp-luxury-card__swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bsp-swatch-color, #d1d5db);
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.bsp-product-grid--new-arrivals .bsp-na-split__products:not(:has(.is-carousel)) .bsp-na-split__products-head {
  display: none;
}

@media (max-width: 1199px) {
  .bsp-product-grid--new-arrivals .bsp-na-split__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bsp-product-grid--new-arrivals .bsp-na-split__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .bsp-product-grid--new-arrivals .bsp-na-split__subtitle {
    max-width: none;
  }

  .bsp-product-grid--new-arrivals .bsp-na-split__shop-all {
    width: 100%;
    max-width: 280px;
    margin-bottom: 24px;
  }

  .bsp-product-grid--new-arrivals .bsp-na-split__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bsp-product-grid--new-arrivals .bsp-na-split__featured-name {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .bsp-product-grid--new-arrivals .bsp-na-split__title {
    font-size: clamp(26px, 7vw, 36px);
  }

  .bsp-product-grid--new-arrivals .bsp-na-split__featured-overlay {
    padding: 20px 16px 48px;
  }

  .bsp-product-grid--new-arrivals .bsp-na-split__products-head {
    margin-bottom: 12px;
  }
}

