.hero-products-stage {
  position: relative;
  width: 100%;
  min-height: 300px;
  height: clamp(300px, 52vw, 640px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  padding: 0 clamp(0.5rem, 2vw, 1rem) 0.5rem;
  padding-right: clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
}

.hero-products-glow {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  width: 86%;
  height: 24%;
  background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.22) 0%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.hero-product-bottle {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  height: clamp(230px, 46vw, 560px);
  width: auto;
  max-width: none;
  min-width: 0;
  margin-left: clamp(-18px, -2.8vw, -10px);
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 20px 30px rgba(15, 23, 42, 0.16));
  opacity: 1;
}

.hero-product-bottle:first-child {
  margin-left: 0;
}

@media (min-width: 1024px) {
  .hero-products-stage {
    min-height: 420px;
    height: clamp(440px, 56vh, 660px);
    justify-content: flex-end;
    padding-right: clamp(2rem, 4.5vw, 4rem);
  }

  .hero-product-bottle {
    height: clamp(420px, 58vh, 620px);
    margin-left: clamp(-28px, -3.2vw, -18px);
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .hero-products-stage {
    min-height: 280px;
    height: clamp(280px, 50vw, 420px);
    margin-top: 0.5rem;
  }

  .hero-product-bottle {
    height: clamp(260px, 44vw, 400px);
    margin-left: clamp(-14px, -2.2vw, -8px);
  }
}

@media (max-width: 639px) {
  .hero-products-stage {
    min-height: 210px;
    height: clamp(210px, 54vw, 290px);
    padding-inline: 0.5rem;
    padding-right: 0.75rem;
    justify-content: center;
  }

  .hero-product-bottle {
    height: clamp(185px, 48vw, 265px);
    margin-left: -8px;
  }
}
