/*
 Theme Name:   Hello Elementor Child
 Template:     hello-elementor
 Version:      1.0.0
 Text Domain:  hello-elementor-child
*/

/* Add your custom styles below */

.eziefule-products {
  height: 300vh;
  background: #121212;
  position: relative;
  overflow: hidden;
  transition: background-color 0.8s ease;
}

.bottle-stage {
  position: sticky;
  top: 20%;
  height: 900px;
}

.bottle {
  position: absolute;
  left: 200px;
  bottom: 0;
  opacity: 0;
  transform: scale(0.6) translateY(200px);
  will-change: transform, opacity;
}

.product-copy {
  position: sticky;
  top: 30%;
  margin-left: 55%;
  width: 600px;
  color: white;
}

.bottle-thumbs {
  position: fixed;
  right: 80px;
  bottom: 80px;
  display: flex;
  gap: 12px;
}

.bottle-thumbs img {
  height: 80px;
  opacity: 0.6;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.bottle-thumbs img.active {
  opacity: 1;
  transform: scale(1.1);
}