.product-slider-block-inner {
	text-align: center;
  max-width: var(--wp--style--global--wide-size) !important;
}

.product-slider-block{
  position: relative;
  .text-container {
    box-sizing: border-box;
    width: 100%;
    max-width: 984px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
      h2, .is-label {
        margin-top: 0;
        margin-bottom:15px;
      }
      p{
        margin-top:15px;
        max-width:760px;
        margin-left:auto;
        margin-right:auto;
      }
  }
  .product-combo{
    display: flex;
    justify-content: space-between;
    gap: 90px;
    margin-top: 30px;
    flex-wrap: nowrap;
    position: relative;
  }
  .splide-custom-progress{
    width: 5px;
    background:rgba(77, 77, 79, 0.2);
    position: absolute;
    top: 0;
    bottom:0;
    left: 50%;
    margin-left:15px;
    z-index: 1;
      .my-slider-progress-bar{
        width: 100%;
        transition: width 400ms ease;
        height: 33%;
        transform: translateY(-100%);
        background: var(--wp--preset--color--green);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        transition: all 0.3s ease-in-out;
      }
  }
  .product-slider-grid {
    width: 493px;
    .item{
      .img-holder{
        box-sizing: border-box;
        padding: 0;
        background: var(--wp--preset--color--light-gray);
        width: 493px;
        aspect-ratio: 1/1.12;
        position: relative;
        overflow: hidden;
        border-radius: 8px;
          img{
            position: absolute;
            height: 100%;
            width: 100%;
            object-fit: cover;
            top: 0;
            left: 0;
          }
          &.img-contain{
            background: transparent ;
            img{
              object-fit: contain;
            }
          }
      }
    }
  }
  .splide-custom-nav{
    flex-grow: 1;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    gap: 10px;
    .splide-nav-item{
      flex-grow: 1;
      .nav-title{
        font-size: 20px;
        font-family: var(--wp--preset--font-family--work-sans);
        color:var(--wp--preset--color--gray);
        opacity:0.5;
        cursor: pointer;
        margin-bottom: 8px;
        transition: all 0.3s ease-in-out;
      }
      .nav-description{
        max-height:0;
        overflow: hidden;
        font-size: 16px;
      }
      &.is-active{
        .nav-description{
          max-height:600px;
          transition: all 0.3s ease-in-out;
        }
        .nav-title{
          color:var(--wp--preset--color--secondary);
          opacity:1;
          transition: all 0.3s ease-in-out;
        }
      }
    }
  }
}

@media (max-width: 1080px) {
  .product-slider-block{
    .splide-custom-progress{
      left: 45%;
      margin-left:35px;
    }
    .product-slider-grid {
      width: 45%;
      flex-shrink: 0;
      .item{
        width: 100%;
        .img-holder{
          width: 100%;
        }
      }
    }
  }
}

@media (max-width: 767px) {
  .product-slider-block{
    .product-combo{
      gap: 20px;
      flex-wrap: wrap;
    }
    .splide-custom-nav{
      position: relative;
      padding-left:25px;
    }
    .splide-custom-progress{
      left: 0;
      height:100%;
      bottom:0;
      margin-left:0;
    }
    .product-slider-grid {
      width: 100%;
      flex-shrink: 0;
      .item{
        width: 100%;
        .img-holder{
          width: 100%;
          aspect-ratio: auto;
            img{
              position: static;
              height: auto;
              max-width: max-content;
              margin: 0 auto;
            }
        }
      }
    }
  }
}