.home-view .hero {
  height: 100vh !important;
  height: 100svh !important;
  min-height: 640px;
  padding-bottom: 0 !important;
}

.home-view .hero .hero-dots {
  bottom: 92px !important;
}

.featured-scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 7;
  display: flex;
  min-width: 118px;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(6, 27, 33, 0.24);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transform: translate(-50%, 16px);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 10px 28px rgba(5, 23, 28, 0.18);
  transition: opacity 0.6s ease 0.25s, transform 0.8s cubic-bezier(0.2, 0.75, 0.2, 1) 0.25s,
    background 0.25s ease, border-color 0.25s ease;
}

.featured-scroll-cue.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.featured-scroll-cue:hover {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(6, 27, 33, 0.4);
}

.featured-scroll-cue__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.featured-scroll-cue__arrow {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  animation: featuredCueDown 1.65s ease-in-out infinite;
}

@keyframes featuredCueDown {
  0%, 100% { transform: rotate(45deg) translate(-2px, -2px); opacity: 0.65; }
  50% { transform: rotate(45deg) translate(3px, 3px); opacity: 1; }
}

.products-section {
  position: relative;
  min-height: min(100vh, 980px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.96), transparent 42%),
    #f3f5f6 !important;
  padding: clamp(76px, 7vw, 112px) 0 clamp(62px, 6vw, 92px) !important;
  content-visibility: visible !important;
}

.products-section .container {
  max-width: none !important;
  padding-inline: 0 !important;
}

.products-section .section-heading {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto clamp(42px, 4.5vw, 64px) !important;
  color: #152d34;
  font-size: clamp(32px, 3.2vw, 52px) !important;
  line-height: 1.12;
  letter-spacing: -0.035em;
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.products-section .section-heading::after {
  bottom: -18px !important;
  width: 46px !important;
  height: 3px !important;
  border-radius: 999px;
}

.products-section .products-grid {
  display: flex !important;
  grid-template-columns: none !important;
  gap: clamp(8px, 0.7vw, 14px) !important;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 0 20px;
  scroll-padding-inline: 0;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-x pan-y;
  align-items: center;
  transition: opacity 0.9s ease 0.12s, transform 1s cubic-bezier(0.2, 0.75, 0.2, 1) 0.12s;
}

.products-section .products-grid::-webkit-scrollbar {
  display: none;
}

.products-section.featured-products-ready .section-heading,
.products-section.featured-products-ready .products-grid {
  opacity: 0;
  transform: translateY(42px);
  filter: blur(7px);
}

.products-section.featured-products-ready.is-featured-visible .section-heading,
.products-section.featured-products-ready.is-featured-visible .products-grid {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.products-section .product-card {
  position: relative !important;
  flex: 0 0 50vw !important;
  width: 50vw !important;
  height: clamp(360px, 27vw, 680px);
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #dfe5e6 !important;
  box-shadow: none !important;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  opacity: 0.72 !important;
  transform: scale(0.82) !important;
  transform-origin: center;
  transition:
    opacity 0.65s ease,
    transform 0.8s cubic-bezier(0.2, 0.75, 0.2, 1),
    box-shadow 0.65s ease !important;
}

.products-section .product-card.is-featured-active {
  opacity: 1 !important;
  transform: scale(1) !important;
  box-shadow: none !important;
}

.products-section .product-card:hover {
  opacity: 0.9 !important;
  transform: scale(0.86) !important;
}

.products-section .product-card.is-featured-active:hover {
  opacity: 1 !important;
  transform: scale(1.01) !important;
}

.products-section .product-image {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto !important;
  overflow: hidden;
  border-radius: inherit !important;
  background: #dfe5e6;
}

.products-section .product-image::after {
  z-index: 1;
  opacity: 1 !important;
  background: linear-gradient(180deg, transparent 42%, rgba(5, 19, 24, 0.08) 62%, rgba(5, 19, 24, 0.78) 100%) !important;
}

.products-section .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 1.1s cubic-bezier(0.2, 0.75, 0.2, 1) !important;
}

.products-section .product-card:hover .product-image img,
.products-section .product-card.is-featured-active .product-image img {
  transform: scale(1.045) !important;
}

.products-section .product-name {
  position: absolute !important;
  z-index: 2;
  right: clamp(24px, 3vw, 48px);
  bottom: clamp(24px, 3vw, 44px);
  left: clamp(24px, 3vw, 48px);
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 58px 0 0 !important;
  background: transparent !important;
  color: #fff !important;
  font-size: clamp(22px, 2vw, 34px) !important;
  font-weight: 650 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.018em;
  text-align: left !important;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.4);
}

.products-section .product-name::after {
  top: 50% !important;
  right: 4px !important;
  color: #fff !important;
  font-size: 30px !important;
  transform: translateY(-50%) !important;
}

.products-section .product-card:hover .product-name::after {
  transform: translate(4px, calc(-50% - 4px)) !important;
}

@media (max-width: 768px) {
  .home-view .hero {
    height: 100vh !important;
    height: 100svh !important;
    min-height: 560px;
  }

  .home-view .hero .hero-dots {
    bottom: 82px !important;
  }

  .featured-scroll-cue {
    bottom: 18px;
    min-width: 110px;
    min-height: 46px;
  }

  .products-section {
    min-height: auto;
    padding: 58px 0 48px !important;
  }

  .products-section .section-heading {
    width: calc(100% - 36px);
    margin-bottom: 30px !important;
    font-size: 30px !important;
  }

  .products-section .products-grid {
    gap: 8px !important;
    padding: 8px 0 14px;
    scroll-padding-inline: 0;
  }

  .products-section .product-card {
    flex-basis: 100vw !important;
    width: 100vw !important;
    height: clamp(360px, 108vw, 520px);
    border-radius: 0 !important;
  }

  .products-section .product-name {
    right: 22px;
    bottom: 24px;
    left: 22px;
    padding-right: 44px !important;
    font-size: 21px !important;
  }

}

@media (prefers-reduced-motion: reduce) {
  .products-section .section-heading,
  .products-section .products-grid,
  .products-section .product-card,
  .products-section .product-image img {
    transition-duration: 0.01ms !important;
  }

  .products-section.featured-products-ready .section-heading,
  .products-section.featured-products-ready .products-grid {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .featured-scroll-cue__arrow {
    animation: none;
  }

}
