
    .bg_dark {
        background-color: #000000 !important;
    }
    .announcement-bar {
      padding-right: 65px;
      position: relative;
      transition: all 0.5s linear;
      padding: 0;
        height: 40px;
        color: white;
    }
    .announcement-bar .close-announcement-bar {
      cursor: pointer;
      position: absolute;
      font-size: 12px;
      right: 25px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 40px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--white);
    }
    .announcement-bar.not-hover .box-sw-announcement-bar:hover {
      animation-play-state: running !important;
    }
    
    .box-sw-announcement-bar {
      display: flex;
      -webkit-animation: slide-har 14s linear infinite;
      animation: slide-har 14s linear infinite;
      transition: animation-duration 300ms;
    }
    .box-sw-announcement-bar:hover {
      animation-play-state: paused;
    }
    
    .speed-1 {
      -webkit-animation: slide-har 40s linear infinite;
      animation: slide-har 40s linear infinite !important;
    }
    .speed-1:hover {
      animation-play-state: paused !important;
    }
    
    .wrap-announcement-bar {
      overflow: hidden;
    }
    
    .noti-bar-text {
      padding: 10px 0px;
    }
    
    .wrap-announcement-bar-2 {
      position: relative;
    }
    .wrap-announcement-bar-2 .tf-sw-top_bar {
      margin: 0px 20px;
    }
    .wrap-announcement-bar-2 .navigation-topbar {
      position: absolute;
      z-index: 1;
      top: 50%;
      transform: translateY(-50%);
      width: 30px;
      height: 30px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .wrap-announcement-bar-2 .navigation-topbar .icon {
      color: var(--white);
      font-size: 12px;
    }
    .wrap-announcement-bar-2 .navigation-topbar.nav-next-topbar {
      left: 0;
    }
    .wrap-announcement-bar-2 .navigation-topbar.nav-prev-topbar {
      right: 0;
    }
    
    @keyframes slide-har {
      0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
      }
      100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
      }
    }
    .announcement-bar-item {
      display: inline-block;
      padding-right: 46px;
      position: relative;
    }
    .announcement-bar-item p {
      font-size: 12px;
      padding: 10px 0px;
      font-weight: 600;
      color: var(--white);
      white-space: nowrap;
      padding-left: 23px;
    }
    .announcement-bar-item::after {
      height: 1px;
      width: 22px;
      background-color: var(--white);
      content: "";
      position: absolute;
      z-index: 1;
      top: 0;
      right: 0;
      bottom: 0;
      margin: auto;
    }
    
    
    
      .fa-sign-in {
        font-size: 20px; /* Adjust to the desired size */
    }
      .login-container{
        position: fixed; 
        right: 30%; 
        left: 30%; 
        bottom: 50px;
        top: 50px; 
        z-index: 9; 
        background: #fff; 
        
        border-radius: 5px; 
        padding: 10px 5% ;
        box-shadow: 0 0 10px rgba(0,0,0,.2)
      }
    
     
      .theme-btn{
        background: #f78054;
        color: white;
        font-weight: 600;
      }
    .theme-btn:hover{
      background:white;
        color:  #f78054;
      border: #f78054 1px solid;
      border-radius: 5px;
    }
      
      .close-cart{
              display: none;
          }
     
      .logo-icon{
        height: 100px;
      }
      @media(max-width: 425px) {
          .close-cart{
              display: block;
              position: absolute; 
              top: 0px; 
              left: 10px;
          }
      }
   
    
      ul{
        list-style-type: none;
        padding: 0;
        margin: 0;
      }
    
      #whatsapp{
        background-color: #25d366;
        color: white;
        position: fixed;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        text-decoration: none;
        border-radius: 50%;
        animation-name: pulse;
        animation-duration: 1.5s;
        animation-timing-function: ease-out;
        animation-iteration-count: infinite;
        z-index: 100;
      }
      @keyframes pulse {
        0% {
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
        }
        
        80% {
          box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
        } 
      }
        .shopping-cart-dropdown {
            position: fixed;
            top: 0;
            right: -360px; /* Initially hidden outside of the viewport */
            width: 350px;
            height: 100%;
            background-color: #ffffff;
            box-shadow: -3px 0 5px rgba(0, 0, 0, 0.2);
            
            transition: right 0.5s ease-in-out;
            z-index: 99;
            bottom: 0;
        }
    
        .overlay-cart{
           position: fixed;
           top: 0;
           left: 0;
           width: 100%;
           height: 100%;
           background-color: rgba(0, 0, 0, 0.8);
           z-index: 90;
           display: none;
        }
        .overlay-auth-modal{
           position: fixed;
           top: 0;
           left: 0;
           width: 100%;
           height: 100%;
           background-color:  rgba(0, 0, 0, 0.8);
           z-index:2;
           display: none;
        }
    .overlay-profile-menu{
      position: fixed;
           top: 0;
           left: 0;
           width: 100%;
           height: 100%;
           background-color:  rgba(144, 144, 144, 0.546);
           z-index:2;
           display: none;
    }
        .overlay-auth-modal.open{
           display: block;
        }
        /* Cart visible state */
        .shopping-cart-dropdown.open {
            right: 0; /* When open, cart is visible on the right */
        }
        .overlay-cart.open {
            display: block;
        }
        .cart-item{
        display: flex;
        justify-content: space-between;
        gap: 10px;
        margin: 10px 0;
        padding:5px 8px
    
        }
        .cart-item:hover{
        background-color: #f0f0f0;
        cursor: pointer;
        
        }
    
        @media(max-width: 992px){
        .login-container{
          
    display: none;
        }
        .overlay-auth-modal.open{
          display: none;
        }
      }
      .product-name{
        font-size:14px; 
        font-weight: 600; 
        margin:10px;
        margin-left: 0;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
      }
        /* Button Styling (Optional) */
      .product-price{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
    
      .item-quantity{
        display: flex;
        justify-content: space-between;
        gap: 8px;
      background-color: rgb(225, 225, 225);
        align-items: center;
      padding: 2px 8px;
      }
      .item-quantity svg{
       cursor: pointer;
      }
      .item-quantity span{
       margin: 0;
       font-size: 14px;
       font-weight: 600;
       background: white;
       padding: 0 5px;
      }
      .empty-cart{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        padding: 10px;
        justify-content: center;
        align-items: center;
        background-color: #f8f9fa;
        color: #343a40;
        font-size: 18px;
        font-weight: 600;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease-in-out;
      }
    
    
    
      .product-item{
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 15px;
        transition: all 0.3s ease;
        padding-right: 5px;
      }
    
      .product-item .image{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        gap: 10px;
        flex-shrink: 0;
        padding: 5px;
        border-radius: 10px;
        background: #EFF4F8
      }
    
      #box-content-search li{
        list-style: none;
      }
    
      #box-content-search .product-item{
        margin-bottom: 10px
      }
    
   
        /* Preloader styles */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #fff; /* Background color while loading */
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }
        #preloader img {
            width: 100px; /* Adjust size as needed */
            height: auto;
        }
   
   
    #header {
      padding-top: 8px;
      padding-bottom: 8px;
    }

    .logo__image {
      max-width: 220px;
    }
    #whatsapp:hover{
      cursor: pointer;

    }
   #contact{
    display:none;	position: fixed;
    bottom: 63px;
    right: 88px;
    z-index: 9;
    background: white;
    border: 1px solid #b7b6b6;
    padding: 5px 10px;
    border-radius: 5px 20px;
    box-shadow: 4px 3px;
    font-size: 15px;
    font-weight: 500;
    }
    