header{
     transition: top 0.5s;
}
/*Login tip*/
.login-tip{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    width: 80%;
    aspect-ratio: 1/0.45;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #FFFFFF;
    border-radius: 5px;
    z-index: 1000001;
    position: absolute;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    font-weight: 400;


}
.login-tip-content{
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-bottom: thin solid rgb(0, 0, 0, 0.1);

}
.login-tip-text{
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-bottom: thin solid rgb(0, 0, 0, 0.1);
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.login-tip-confirmation{
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.login-tip-confirmation span{
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-tip-cancel{
    border-right: thin solid rgb(0, 0, 0, 0.1);
    color: #414141;
}
.login-tip-cancel:hover{
    background-color: rgb(0, 0, 0, 0.1);
}

.login-tip-confirm{
    color: rgba(124, 24, 157, 0.78);
}
.login-tip-confirm:hover{
    background-color: rgb(0, 0, 0, 0.1);
}
/*End of login tip*/

/*Cart Update*/
.cart{
    background-color: #eaeaea;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000001;
    position: fixed;
    top: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    left: -100%;
    transition: left 0.25s ease;
}
.cart_header{
    background-color: #ffffff;
    width: 100%;
    height: 7.5%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
}
.cart_loader{
    position: absolute;
    bottom: -220%;
    width: 20%;
    height: 6vh;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    font-weight: 300;
    z-index: 1;
    border-radius: 5px;
    background-color: transparent;

}
.icon-gradient {
  background: linear-gradient(to left,#000000,  rgba(0, 0, 0, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.close-cart{
    position: absolute;
    left: 2.5%;
    font-size: 17px;
    height: 40px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}
.close-cart:hover{
    background-color: rgb(0, 0, 0, 0.75);
    color: #FFFFFF;
}
.cart_body{
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #bbbbbb;
    width: 100%;
    height: 80%;
    border-radius: 0 0 5px 5px;
    overflow-y: scroll;
    position: relative;
    opacity: 0;


}
.cart-notification{
    position: absolute;
    top: -80%;
    width: 95%;
    height: 6vh;
    background-color: #FFFFFF;
    display: none;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 12px;
    font-weight: 300;
    border: thin solid rgba(0, 0, 0, 0.08);
    z-index: 1;
    border-radius: 5px;
}
.note-icon{
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;

}
.casava_info{
    width: 90%;
    margin: 2vh;
    height: 7vh;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 5px;
    flex-shrink: 0;
}
.casava_info_span{
    height: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    border-radius: 5px;
}
.casava_info_span img{
    height: 70%;
    aspect-ratio: 1/1;
}
.info{
    margin-left: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 12px;
    font-weight: 300;
}
.cart_products_no{
    width: 90%;
    height: 3vh;
    display: flex;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 11px;
    color: #656565;
    flex-shrink: 0;
}
.cart_items{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-shrink: 0;
}
.cart_item{
    background-color: black;
    width: 90%;
    height: 22.5vh;
    display: flex;
    align-items: center;
    justify-content: end;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    margin-top: 2vh;
    transition: transform 0.8s ease;
    will-change: transform, opacity;
}
.cart_item.slide-out {
    transform: translateX(-100%); /* or -100% for left */
}
.cart_close_button{
    height: 90%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}
.cart_close_button:hover{
    background-color: rgb(0, 0, 0, 0.2);
}
.cart-save{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    width: 25.6%;
    background-color: #984c00;
    color: #FFFFFF;
    font-weight: 200;
    font-size: 13px;
    transition: background-color 0.3s ease;
}
.cart-save:hover{
    background-color: rgba(184, 95, 0, 0.5);
}
.cart-remove{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    width: 25%;
    background-color: #000000;
    color: #FFFFFF;
    font-weight: 200;
    font-size: 13px;
    transition: background-color 0.3s ease;
}
.cart-remove:hover{
    background-color: rgba(30, 30, 30, 0.9);
}
.up-statement{
    font-size: 13px;
}
.cart_details{
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 5px;
    transition: transform 0.2s ease;
    transform: translateX(0);
}
.cart_product{
    width: 35%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.cart-img{
    display:flex;
    align-items: center;
    justify-content: center;
    height: 70%;
    width: 100%;
}
.cart-img img{
    height: 80%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 5px;
}
.factor-cart{
    display:flex;
    align-items: center;
    justify-content: space-around;
    height: 30%;
    width: 100%;
}
.factor{
    font-size: 25px;
    height: auto;
    font-weight: 200;
    transition: background-color 0.3s ease;
}
.factor:hover{
    background-color: rgb(0, 0, 0, 0.1);

}
.circle-no{
    border: thin solid rgb(0, 0, 0, 0.2);
    border-radius: 3px;
    height: 50%;
    aspect-ratio: 1/1;
    display: flex ;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 300;

}
.cart-product-info{
    width: 65%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.cart_close{
    width: 95%;
    height: 25%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 22px;
    font-weight: 200;
}
.portf{
    width: 95%;
    height: 15%;
    display: flex;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 12px;
    flex-shrink: 0;
}
.product_quantity, .product_price{
    font-weight: 300;
}
.cart_product_total{
    width: 95%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: end;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 12px;
    flex-shrink: 0;
    font-weight: 300;
}
.cart_footer{
    width: 100%;
    height: 10%;
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;

}
.cart_checkout{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    height: 65%;
    width: 95%;
    background-color: #ffffff;
    border: none;
    border-radius: 5px;

}
.order_summary{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    margin-top: 2.5vh;
    background-color: #FFFFFF;
    margin-bottom: 2vh;
    flex-shrink: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.summaries{
    display: flex;
    align-items: center;
    width: 90%;
    height: 4vh;
}
.summaries_text{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 12px;
}
.summary_value{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    font-size: 10px;
    font-weight: 300;
}

.end_smoke{
    display: flex;
    align-items: center;
    height: 10vh;
    width: 95%;
    flex-shrink: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}
.secured-payment{
    border-bottom: thin solid #b0b0b0;

}
.the_end_icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25%;
    height: 100%;
    font-size: 30px;
}
.decls{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 75%;
    height: 100%;
    font-size: 13px;

}
.decl_value{
    font-size: 9px;
    font-weight: 300;
}
/*End updated cart*/

/* empty cart*/

.empty_carte{
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100vh;
    background: #000000;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    z-index: 10000;
    transition: right 0.25s ease;

}
.empty_cart_close{
    box-sizing: border-box;
    display: flex;
    align-items: center;
    width: 100%;
    height: 7.5%;
    padding: 10px;
    font-size: 17px;
    background-color: #FFFFFF;
    border-bottom: thin solid rgba(0,0,0,0.02);
}
.ecc{
    font-size: 20px;
}
.empty_cart_body{
    height: 77.5%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0 0 10px 10px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgb(255, 255, 255, 0.2);
    background-blend-mode: overlay;
}

.empty_cart_name{
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 15px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.empty_cart_icon{
    display: flex;
    justify-content: center;
    align-items: end;
    width: 100%;
    height: 30vh;
    font-size: 30px;
}
.empty_cart_text{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 10vh;
    font-size: 17px;
}
.empty_cart_button{
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    bottom: 0;
    height: 15%;
    font-size: 15px;
}

.empty_cart_button button{
    top: -70%;
    width: 85%;
    height: 5.5vh;
    border-radius: 5px;
    color: rgb(231, 231, 231);
    font-size: 15px;
    position: absolute;
    background-color: black;
    border: none;
}



/*end of empty cart*/


/*start of search*/
.search_overlay{
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000;
    display: none;
    transition: background-color 0.3s ease;
}
.search_casava{
    width: 100%;
    height: auto;
    display: none;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    z-index: 1000001;
    transition: 1s;
    position: fixed;
    background-color: transparent;
    top: 0;

}
.search_holder{
    width: 100%;
    height: 7vh;
    align-items: center;
    padding: 15px;
}
.search_config{
    width: 100%;
    height: 6vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search_config input{
    width: 85%;
    height: 100%;
    border: none;
    outline: none;
    background-color: #FFFFFF;
    border-radius: 0 15px 15px 0;
}

.close_search{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10%;
    height: 100%;
    border: none;
    cursor: pointer;
    font-size: 30px;
    background-color: #FFFFFF;
    border-radius: 15px 0 0 15px;
}
.search_results{
    display: flex;
    flex-direction: column;
    width: 97.5%;
    height: 30vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}
.suggestions{
    display: none;
    align-items: center;
    width: 100%;
    height: 5vh;
    color: #FFFFFF;
    font-size: 13px;
    padding-left: 10px;

}
.search_item_container{
    display: flex;
    align-items: center;
    width: 100%;
    height: 25vh;
    color: #FFFFFF;
    font-size: 13px;
    overflow-x: scroll;
}
.search_item{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: auto;
    height: 100%;
    font-size: 13px;
    margin-left: 10px;
}
.search_item_image{
    height: 80%;
    aspect-ratio: 1/1;
    border-radius: 10px;
}

.np{
    height: 10%;
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 12px;
}
.search_item_name {
  white-space: nowrap;         /* Prevent line break */
  overflow: hidden;            /* Hide overflowed text */
  text-overflow: ellipsis;     /* Add "..." if too long */
  display: block;              /* Ensure it behaves like a box */
  max-width: 100%;             /* Respect container width */
}
.no-result{
    display: none;
    height: 4vh;
    width: 90%;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 13px;
    font-family: "Segoe UI", system-ui, sans-serif;

}
.suggetions-results{
    display: flex;
    flex-direction: column;
    height: 14vh;
    width: 90%;
    align-items: center;
    justify-content: space-around;
    color: #FFFFFF;
    font-size: 13px;
    font-family: "Segoe UI", system-ui, sans-serif;
}
.suggetions-results p{
    display: flex;
    align-items: center;
    width: 100%;
    height: 4vh;

}
.p_item_image{
    height: 100%;
    aspect-ratio: 1/1;
}
/* end of search*/
/* custom login*/
.account-window{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f1ebeb;
    display: none;
    flex-direction: column;
    align-items: center;
    z-index: 1000001;
    overflow-y: scroll;
    margin-bottom: 7.5vh;

}
.window-header{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 17px;
    font-weight: 300;
    background-color: transparent;
    width: 100%;
    height: 7vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: fixed;
    top: 0;
    color: #FFFFFF;
}
.close-account-window{
    position: absolute;
    left: 10px;
}
.redirect{
    width: 85%;
    height: 5vh;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 10px;
    font-weight: 300;
    border-radius: 15px;
    border: thin solid #FFFFFF;
    text-decoration: none;
    margin-top: 3vh;
    color: #ffffff;
    flex-shrink: 0;

}
.redirect:last-child{
    margin-bottom: 2vh;
}
.g_id_signin {
    width: 85% !important; /* change width */
    height: 7vh !important; /* optional height */
    margin-top: 4vh;
    flex-shrink: 0;
    margin-bottom: 2vh;
  }
/*Footer*/
footer{
    display: flex;
    height: auto;
    width: 100%;
    margin-top: 40vh;
    flex-wrap:wrap;
    justify-content: center;
    margin-bottom: 5vh;
    transition: margin-top 0.8s ease;
    flex-shrink: 0;
}
.subscription{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 50vh;
    }
    .subscribes{
      flex-direction: column;
      align-items: center;
      width: 85%;
      height: 45vh;
      display: flex;
      border: thin solid rgba(0, 0, 0, 0.5);
    }
    .subscribe-text{
      display: flex;
      align-items: center;
      text-align: center;
      height: 7.5vh;
      width: 90%;
      font-size: 10px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    #subs-email{
      width: 90%;
      height: 5vh;
      font-size: 10px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin-top: 1.5vh;
      margin-bottom: 1.5vh;
      outline: none;
      padding: 0;
    }
    #subs-number{
      width: 80%;
      height: 98%;
      font-size: 10px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      outline: none;
      padding: 0;
      margin: 0;
      border: none;
    }
    .country-code{
      width: 14%;
      height: 80%;
      font-size: 5px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      outline: none;
      display: flex;
      align-items: center;
      padding-left: 1%;

    }
    .number_holder {
      display: flex;
      width: 90%;
      height: 5vh;
      font-size: 10px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin-top: 1.5vh;
      margin-bottom: 1.5vh;
      align-items: center;
      justify-content: space-around;
      border: thin solid rgba(0, 0, 0, 0.5);
    }
    .subscribe-btn{
      width: 90%;
      height: 5vh;
      font-size: 10px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin-top: 1.5vh;
      margin-bottom: 1.5vh;
      background-color: black;
      border: none;
      color: #ffffff;
    }
    .subscribe-disclaimer{
      width: 90%;
      height: 10vh;
      font-size: 9px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin-top: 1.5vh;
      margin-bottom: 1.5vh;
        text-align: center;
        font-weight: 300;
    }
.inBOTTOM{
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    color: #000000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 2vh;
    border-bottom: thin solid rgba(0, 0, 0, 0.1);
    border-top: thin solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;

}
.inSITE{
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 27vh;
    color: #000000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    flex-shrink: 0;

}
.BOTNAME{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 7vh;
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    flex-shrink: 0;
}
.bothelp{
    display: flex;
    align-items: center;
    height: 6vh;
    width: 85%;
    position: relative;
    border-bottom: thin solid rgba(0, 0, 0, 0.1);
    font-size: 13px;
    flex-shrink: 0;

}
.botfirst{
    border-top: thin solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}
.botlast{
    border-bottom: none;
    flex-shrink: 0;
}
.collapsable{
    position: absolute;
    height: 100%;
    aspect-ratio: 1/0.75;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    flex-shrink: 0;
}
.asite{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3vh;
    width: 90%;
    text-align: center;
    font-size: 8px;
    flex-shrink: 0;
}
.asite:hover{
    color: #233acc;
}
.mapinf:hover{
    color: #cc2323;
}
.map{
    height: 7vh;
}
/*End cart*/
.catShow{
    position: absolute;
    left: 20px;
    display: flex;
    height: 50%;
    aspect-ratio: 1/1;
    align-items: center;
    justify-content: center;
    color: #000000;
    cursor: pointer;


}
.catClose{
    position: absolute;
    left: 20px;
    display: none;
    height: 50%;
    aspect-ratio: 1/1;
    align-items: center;
    justify-content: center;
    color: #000000;
    cursor: pointer;
    font-size: 35px;

}

.overlayer {
    position: fixed;
    top: 7.5vh;
    left: 0;
    width: 300px;
    height: 92.5vh;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 10000;
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow-y: scroll;
  }

  .overlayer.active {
    transform: translateX(0);
    overflow-y: scroll;
  }

  .backdrop {
    position: fixed;
    height: 92.5vh;
    top:7.5vh;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 9999;
  }
.subs{
    display: flex;
    align-items: center;
    height: 7.5%;
    width: 92.5%;
    font-size: 15px;
    border-bottom: thin solid rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 300;
    padding-left: 5px;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}
.subs:hover{
    background-color: rgba(0, 0, 0, 0.2);
}
.subs:first-child{
    position: sticky;
    top: 0;
    background-color: #FFFFFF;
}
.represent-sub{
    height: 70%;
    aspect-ratio: 1/1;
    width: auto;
    border-radius: 5px;
}
.opener{
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 15vh;
    width: 85%;
    font-size: 10px;
    border-bottom: thin solid rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 300;
    padding-left: 5px;
    background-color: #ececec;
    flex-shrink: 0;
}
/*search below*/

.search-below{
    position: absolute;
    bottom: 4vh;
    right: 10%;
    width: 10%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    background: linear-gradient(to right, rgba(0, 83, 194, 0.64), #ad3400, #b05b5b, #91b491);
    transition: transform 0.5s ease, opacity 0.5s ease;
    color: #FFFFFF;

}

/*end below search*/
