.featured-products-section {
  background: #fff;
  border-top: 7px solid #f7f7f7;
  padding: 20px 0 24px;
}

.featured-products-section h2 {
  color: #1d1d1f;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.24px;
  margin: 0 0 16px;
  padding: 0 18px;
}

.featured-products-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}

.featured-products-scroll::-webkit-scrollbar {
  display: none;
}

.featured-products-track {
  display: flex;
  gap: 0;
  padding: 0 9px;
}

.featured-product-card {
  color: #111114;
  display: block;
  flex: 0 0 50%;
  min-width: 0;
  scroll-snap-align: start;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.featured-product-card__image-wrap {
  aspect-ratio: 1 / 1;
  background: #f8f8f8;
  border-right: 1px solid #fff;
  overflow: hidden;
}

.featured-product-card__image-wrap img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.featured-product-card__name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.24px;
  line-height: normal;
  margin: 10px 0 2px;
  overflow: hidden;
  padding: 0 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.featured-product-card__brand {
  color: #111114;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.24px;
  line-height: normal;
  margin: 0 0 10px;
  overflow: hidden;
  padding: 0 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.featured-product-card__price {
  align-items: center;
  color: #6e6e73;
  display: flex;
  font-size: 13px;
  font-weight: 400;
  gap: 8px;
  justify-content: space-between;
  letter-spacing: -0.24px;
  margin: 0;
  padding: 0 9px;
}

.featured-product-card__price span:last-child {
  color: #4b5563;
  flex: 0 0 auto;
  text-align: right;
}

.featured-product-card__price + .featured-product-card__price {
  margin-top: 2px;
}

.featured-product-card__price--profit span,
.featured-product-card__price--profit span:last-child {
  color: #c9a646;
}

@media (hover: hover) and (pointer: fine) {
  .featured-product-card__image-wrap img {
    transition: transform 0.3s ease;
  }

  .featured-product-card:hover .featured-product-card__image-wrap img {
    transform: scale(1.025);
  }
}

/* Placeholder cards shown while the catalog loads */
.featured-product-card--loading {
  pointer-events: none;
}

.featured-product-card--loading .featured-product-card__image-wrap,
.featured-product-card--loading .featured-product-card__name,
.featured-product-card--loading .featured-product-card__brand,
.featured-product-card--loading .featured-product-card__price span {
  background: #f1f1f1;
  border-radius: 3px;
  color: transparent;
}

.featured-product-card--loading .featured-product-card__name,
.featured-product-card--loading .featured-product-card__brand {
  height: 15px;
}

.featured-product-card--loading .featured-product-card__price span {
  display: inline-block;
  height: 15px;
  width: 62px;
}
