 .slider-wrapper {
      width: 100%;
      max-width: 100%;margin: 5px auto;
      position: relative;
      border: 1px solid #eee;
      border-radius: 10px;
      background: white;
      overflow: hidden;
    }
 
    .pdt-heading{display: flex;align-items: center;white-space: nowrap;position: relative;padding: 0px 20px;margin-top: 5px;}.slider-buttons {position: absolute;right: 20px;display: flex;align-items: center;gap: 30px;}
    .slider-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .product { 
      min-width: 240px; 
      margin: 10px;
      background: #fff;
      border-radius: 8px; 
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      flex-shrink: 0;
      overflow: hidden;
      cursor: pointer; transition: all 0.5s ease-in-out;
    }.product:hover{transform: scale(1.01);}

    .product img { 
      width: 240px;
      height: 200px;
      object-fit: cover;
    }

    .product-details {
      padding: 0 10px;
    }
    .product-title { 
      font-size: 14px;
      margin-bottom: 5px;
      width: 100%;
      max-width: 220px;
      white-space: nowrap;
      overflow: hidden;        
      text-overflow: ellipsis;   
      }

    .product-price {
      color: #b10b0b;
      font-weight: bold;
      margin-bottom: 5px;
    } 

    .slider-wrapper button {
      padding: 5px 10px;
      font-size: 16px;
      border: none;
      border-radius: 6px;
      background-color: #eee; 
      cursor: pointer;
      transition: all 0.5s ease-in-out;
    }

    .slider-wrapper button:hover {
      background-color: #b10b0b;color: #fff;
    }

    .modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.8);
      opacity: 0;
      visibility: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 999;
      transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .modal.show {
      opacity: 1;
      visibility: visible;
    }


    .modal-content {
      background: white;
      max-width: 800px;
      width: 90%;
      padding: 20px;
      border-radius: 10px;
      position: relative;
      text-align: start;
    }

    .modal-content img {
      width: 100%;
      max-height: 500px;border-radius: 10px;
      object-fit: contain;
    }
    
    .model-details{padding: 20px;border-top: 1px solid #b10b0b;margin-top: 20px;max-height: 30vh;overflow-y: auto;}
    .model-details h2 {
      font-size: 14px;
      font-weight: 400;
      margin: 10px 0;
    } 
    .model-details a {
      display: inline-block;
      background: #b10b0b;color: #fff;
      padding: 10px 20px;
      border-radius: 6px;
      text-decoration: none;
      font-size: 16px;
    }
    .model-head{display: flex;align-items: center;justify-content: space-between;padding: 5px 10px;border-bottom: 2px solid #b10b0b;margin-bottom: 10px;}
   .model-head .close-btn {font-size: 22px;border: 0;cursor: pointer;color: #333;background: #eee;padding: 0 5px;border-radius: 3px;transition: all 0.5s ease-in-out;}.model-head .close-btn:hover{background: #ccc;color: #b10b0b;}

    .popup-nav {
      position: absolute;
      top: 45%;
      transform: translateY(-50%);
      font-size: 28px;
      cursor: pointer;
      user-select: none;
      background: rgba(0,0,0,0.1);transition: all 0.5s ease-in-out;
      padding: 5px 10px;
      border-radius: 8px;
    }.popup-nav:hover{background: #ccc;color: #b10b0b;}

    #popupPrev { left: 5px; }
    #popupNext { right: 5px; }
    @media screen and (max-width:1200px) {
      .model-details::-webkit-scrollbar{display: none;} .modal-content{padding: 10px;max-width: 600px;} .modal-content img{max-height: 400px;}
    }
     @media screen and (max-width:500px) {
      .model-head h2{font-size: 14px;}
    }

    @keyframes animation{
      
    }