  .hs-slider {
    display: flex;
    justify-content: center;
    align-items: start;
    min-height: calc(100dvh - 70px);
    background: linear-gradient(135deg, #fefcf9, #f5f8fa);
    margin-bottom: 50px;
    .slider-container {
      width: 100%;
      height: 100%;
      position: relative;
      .slide {
        height: 100%;
        display: none;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: 30px;
        gap: 40px;
        &.active {display: flex;}
        .cta-container {
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: column;
          flex: 1;
          .content {
            max-width: 600px;
            .tag {
              line-height: 1;
              font-size: 18px;
              color: #f23f0a;
              margin-bottom: 10px;
              opacity: 0;
              animation: leftToRight 500ms ease 100ms forwards;
            }
            .title {
              line-height: 1.2;
              font-size: 40px;
              margin-bottom: 20px;
              opacity: 0;
              animation: leftToRight 500ms ease forwards;
              span {
                color: #f23f0a;
              }
            }
            .subtitle {
              font-size: 22px;
              font-weight: 500;
              margin-bottom: 30px;
              color: #555;
              opacity: 0;
              animation: leftToRight 500ms ease 200ms forwards;
              span {
                color: #f23f0a;
              }
            }
            .cta-button {
              background-color: #f23f0a;
              color: #fff;
              padding: 15px 30px;
              text-decoration: none;
              border-radius: 5px;
              font-size: 18px;
              box-shadow: 0 4px 10px rgb(0 0 0 / .35);
              opacity: 0;
              animation: bounceIn 500ms ease 500ms forwards;
              a {
                color: #fff;
                text-decoration: none;
              }
            }
          }
        }
        .product-container {
          flex: 1;
          .content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            .image-container {
              position: relative;
              border-radius: 50%;
              width: 250px;
              height: 250px;
              display: flex;
              justify-content: center;
              align-items: center;
              border: solid 2px rgb(0 0 0 / .1);
              box-shadow: 0 4px 10px rgb(0 0 0 / .35);
              // background: #e2e1e1;
              overflow: hidden;
              .product-image {
                position: relative;
                z-index: 1;
                width: 250px;
                height: 250px;
                object-fit: cover;
                opacity: 0;
                animation: bounceIn 500ms ease 200ms forwards;
              }
            }
            .card.description {
              display: flex;
              flex-direction: column;
              min-width: 200px;
              max-width: 250px;
              background-color: rgb(255 255 255 / 50%);
              backdrop-filter: blur(2px);
              padding: 20px;
              box-shadow: 0 4px 8px rgba(0,0,0,0.1);
              border-radius: 10px;
              margin-top: -20px;
              z-index: 2;
              opacity: 0;
              animation: bounceIn 500ms ease 600ms forwards;
              .product-name {
                font-size: 20px;
                margin: 0 0 10px;
              }
              .product-price {
                font-size: 28px;
                color: #f23f0a;
                font-weight: bold;
                line-height: 1;
                margin: 0;
                text-align: right;
              }
            }
          }
        }
      }
      .bar-container {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: rgb(0 0 0 / .3);
        .bar {
          width: 2px;
          height: 100%;
          background-color: #f23f0a;
        }
      }
    }
  }

  @media (min-width:780px) {
    .hs-slider {
      height: 80dvh;
      max-height: 600px;
      align-items: center;
      .slider-container {
        .slide {
          flex-direction: row;
          padding: 80px 30px;
          .cta-container {
            .content {
              .title {
                font-size: 48px;
              }
            }
          }
          .product-container {
            .content {
              flex-direction: row;
              align-items: start;
              .image-container {
                width: 350px;
                height: 350px;
                .product-image {
                  width: 350px;
                  height: 350px;
                }
              }
              .card.description {
                margin-top: 0;
                margin-left: -40px;
              }
            }
          }
        }
      }

    }
  }

  @keyframes leftToRight {
    0% {
      transform: translateX(-100%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes rightToLeft {
    0% {
      transform: translateX(100%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes bounceIn {
    0% {
      transform: scale(0.5);
      opacity: 0;
    }
    40% {
      transform: scale(1.2);
      opacity: 1;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  @keyframes loadBar {
    0% { width: 0; }
    100% { width: 100%; }
  }
