/* css for video slider start  */

.video-section *{
  line-height: normal !important;
}
.video-section .ls-feature-books-wrapper{
    border: none;
  }
  .video-section .ls-featured-books h1 {
    text-align: center;
  }
  
  .video-section .ls-featured-books h3 {
    text-align: center;
  }
  
  .video-section {
    background-color: #f7f7f7;
    padding: 40px 0;
  }
  
  .ls-featured-video-wrapper{
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .ls-featured-video {
    /* width: 300px; */
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  .ls-video-wrapper {
    width: 100%;
    height: 450px;
    position: relative; /* for button positioning */
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    overflow: hidden;
  }
  
  .ls-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* custom mute button */
  .video-mute-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 16px 16px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .ls-video-wrapper:hover .video-mute-btn {
    opacity: 1;
  }
  
  
  .ls-featured-caption {
    display: grid;
    place-items: center;
  }
  
  .ls-video-product-area {
    margin-top: -100px;
    z-index: 2;
    background-color: #ffff;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .ls-video-product-area img{
    max-width: 100px;
  }
  
  .ls-video-text-area {
    width: 100%;
    margin-top: 10px;
  }
  
  .ls-video-text-area .heading-books:hover {
    text-decoration: underline;
  }
  
  .ls-video-text-area h2 {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
  
    font-size: 16px;
    font-weight: 500;
  }
  
  
  .ls-video-text-area{
    padding: 0px 30px;
    padding-bottom: 20px;
  }
  
  .ls-video-price h2{
    font-weight: bold;
    font-size: 18px;
  }
  
  .ls-video-price{
    margin-top: 10px;
  }
  
  .ls-video-price h2:last-child{
    font-size: 14px;
    font-weight: 500;
    text-decoration: line-through;
    color: var(--color-dark);
  }
  
  .ls-video-bottom-tags{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .ls-video-tag .off{
    background-color: var(--color-dark);
    color: #ffff;
    border-radius: 6px;
    padding: 3px 7px;
  }