    /*---------------------------- GENERAL START -------------------------*/

    @import url("/assets/css/splide.min.css");


    @font-face {
        font-family: "Poppins";
        src: url("/assets/fonts/Poppins/Poppins-Light.ttf") format("truetype");
        font-weight: 300;
        font-style: normal;
        font-display: swap;
      }
  
      @font-face {
          font-family: "Poppins";
          src: url("/assets/fonts/Poppins/Poppins-Regular.ttf") format("truetype");
          font-weight: 400;
          font-style: normal;
          font-display: swap;
      }
  
      @font-face {
        font-family: "Poppins";
        src: url("/assets/fonts/Poppins/Poppins-Medium.ttf") format("truetype");
        font-weight: 500;
        font-style: normal;
        font-display: swap;
      }
  
      @font-face {
        font-family: "Poppins";
        src: url("/assets/fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
        font-weight: 600;
        font-style: normal;
        font-display: swap;
      }
  
      @font-face {
        font-family: "Poppins";
        src: url("/assets/fonts/Poppins/Poppins-Bold.ttf") format("truetype");
        font-weight: 700;
        font-style: normal;
        font-display: swap;
      }
  
      @font-face {
        font-family: "Poppins";
        src: url("/assets/fonts/Poppins/Poppins-Italic.ttf") format("truetype");
        font-weight: 400;
        font-style: italic;
        font-display: swap;
      }
    
    @font-face {
        font-family: "Montserrat";
        src: url("/assets/fonts/Montserrat/static/Montserrat-Black.ttf") format("truetype");
        font-display: swap;
      }
    

    *{
        scroll-behavior: smooth;        
        margin: 0;
        word-wrap: break-word;
        
    }
   

    body {
        font-family: 'Poppins';
        
    }
    .header {
        background-color: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 15px 0;
        top:0;
        position: sticky;
        z-index: 999999;
    }
    .book-card {
        
        overflow: hidden;
        
    }
    .book-image {
        
        object-fit: cover;
    }
    .book-details {
        
    }
    .book-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #343a40;
    }
    .book-summary {
        color: #6c757d;
        margin-bottom: 20px;
        font-weight: lighter;
        position: relative;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

   
.bookSummary {
    max-height: 120px;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .bookSummary.expanded {
    max-height: none;
  }
  
  .read-toggle {
    color: blue;
    cursor: pointer;
    font-weight: bold;
    margin-top: 5px;
    display: none; /* Hidden by default, shown via jQuery if needed */
  }
  
    .book-meta {
        margin-bottom: 25px;
    }
    .meta-item {
        margin-bottom: 8px;
    }
    .format-option {
        border: 1px solid #dee2e6;
        border-radius: 5px;
        padding: 10px 15px;
        margin-right: 10px;
        cursor: pointer;
        transition: all 0.3s;
    }
    .format-option:hover, .format-option.active {
        border-color: #0d6efd;
        background-color: #e7f1ff;
    }
    .delivery-option {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }
    .btn-buy {
        padding: 12px 30px;
        font-weight: 600;
        font-size: 1.1rem;
    }
    .modal-content {
        border-radius: 10px;
    }
    .confirmation-icon {
        font-size: 4rem;
        color: #198754;
        margin-bottom: 20px;
    }

    .logo img{
        width: 250px;
    }
    .accordion-buttonCus::after{
        
        background-image:none !important;
        
    }

    #preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 99999999999;
      }
  
      
      .spinner {
          width: 50px;
          height: 50px;
          border: 5px solid #f3f3f3;
          border-top: 5px solid #000;
          border-radius: 50%;
          animation: spin 1s linear infinite;
      }

      @keyframes spin {
          0% { transform: rotate(0deg); }
          100% { transform: rotate(360deg); }
      }

      .book-cont{
        overflow: hidden !important;
      }

      .book-img-cvr{
        height: 180px;
        overflow: hidden !important;
      }
      .book-img-cvr img{
        width: 100%;
        height: 100%;
        object-fit: cover !important;
        vertical-align: middle !important;
      }
    @media only screen and (max-width: 768px) {
        .logo img{
            width: 150px;
        }

        .book-img-cvr{
            height: 160px;
        }
    }