/* body {
      background-color: #fdf8f3;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
    } */
 
.herbal-bliss-animation {
  position: relative;
  width: 400px;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  background: #000; /* fallback while video loads */
}

/* the video background layer */
.herbal-bliss-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;  /* fills the box nicely */
  z-index: 0;
}
    .herbal-bliss-animation img {
      position: absolute;
      width: 125px;
      height: auto;
      pointer-events: none;
      z-index: 2;
    }

 .lady  {
   width: 600px;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
   z-index: 1;

}

 .product-top-left  {
   top: 0;
   left: 0;
   animation: bounce 2s infinite ease-in-out;

}

 .product-top-right  {
   top: 0;
   right: 0;
   animation: bounce 2s 0.2s infinite ease-in-out;

}

 .product-bottom-left  {
   bottom: 0;
   left: 0;
   animation: bounce 2s 0.4s infinite ease-in-out;

}

 .product-bottom-right  {
   bottom: 0;
   right: 0;
   animation: bounce 2s 0.6s infinite ease-in-out;

}

 @keyframes bounce  {
   0%, 100%  {
     transform: translateY(0px);

  }

   50%  {
     transform: translateY(-15px);

  }

}
