:root{
    --backgrnd_color:rgb(255, 255, 255);
    --dot1_color:#F46530;
    --dot2_color:#f18e55;
    --outline_color:#f5b692;
    --dot3_color:#F46530;
    --btn_color:#F46530;
    --boxes_coloring:#F5F5F5;
    --highlighted_zones:#ecebeb;
    --gray_zones:gray;
    --modern_font_color:#595557;
    --modern_font_color2:#666;
    /*--modern_font_color:#434444;*/
    --font_fam:Roboto, Helvetica, Arial, sans-serif;
    --new_font_fam2: Helvetica Neue, Helvetica, Arial, sans-serif;
    --system_font:'Poppins', sans-serif;
    --new_font_fam: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    
    
    --outfit-font-fam:'Outfit', sans-serif;
    --poppins-font-fam:'Poppins', sans-serif;
    --inter-font-fam:'Inter', sans-serif;
    --roboto-font-fam:'Roboto', sans-serif;
    --lora-font-fam:'Lora', sans-serif;
    --dancing-font-fam:'Great Vibes', cursive;
    
    --blue-theme-background: #e7f1f7;
    
}


body {
    width: 100vw;
    height: 100vh; /* Ensures full viewport height #f18e55 f1b999 */
    margin: 0;
    padding: 0;
    padding-top: 150px;
    box-sizing: border-box;
    font-family: var(--new_font_fam);
    overflow-x: hidden !important; /* Prevent horizontal scrolling */
    overflow-y: auto; /* Enables vertical scrolling only when necessary */
    background-color: var(--backgrnd_color);
    
    /* Center content */
    display: flex;
    flex-direction: column;
    align-items: center;
}

body::-webkit-scrollbar {
    width: 5px;  
}

body::-webkit-scrollbar-track {
    background: var(--dot1_color); 
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
    background: var(--backgrnd_color);  
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
    background: var(--deep-backgrnd-clr2);
}



.header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: var(--backgrnd_color);
    box-shadow: 0px 2px 2px -1px var(--btn_color);
    
    
    
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.info_div{
    width: 100%;
    height: 35px;
    background-color: var(--boxes_coloring);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
}
.info_p{
    font-size: 14px;
    color: var(--modern_font_color);
    margin-left: 10px;
    margin-right: 20px;
}
.info_icon{
    width: 16px;
    height: 16px;
}
.header_div{
    width: 100%;
    height:auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.logo-holder{
    height: 50px;
    width: auto;
}
.logo{
    height: 100%;
    width: auto;
}
.header_search_div{
    width: 60%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.search_input{
    width: 80%;
    height: 31px;
    border: solid 1.4px var(--btn_color);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    
    color: var(--modern_font_color);
    padding-left: 5px;
}
.search_input:focus {
    outline: none;
    
}
.search_btn{
    width: 10%;
    background-color: var(--btn_color);
    border: solid 1.3px var(--btn_color);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.search_btn:hover{
    background-color: var(--dot2_color);
    
}

.search_icon{
    width: 15px;
    height: 15px;
}
.header_mobile_search_div{
    padding: 7px 7px;
    display: none;
    cursor: pointer;
}

.header_mobile_search_icon{
    width: 19px;
    height: 19px;
}
.header_mobile_menu_div{
    padding: 7px 7px;
    display: none;
    cursor: pointer;
}

.header_mobile_menu_icon{
    width: 19px;
    height: 19px;
}

.header_mobile_search_div:hover{
    background-color: var(--boxes_coloring);
    border-radius: 5px;
}
.header_mobile_menu_div:hover{
    background-color: var(--boxes_coloring);
    border-radius: 5px;
}

.header_cart_a{
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: center;
    text-decoration: none;
    color: var(--modern_font_color);
    cursor: pointer;
    padding: 7px 7px;
    border-radius: 5px;
    text-align: center;
}
.header_cart_a:hover{
    background-color: var(--boxes_coloring); 
}
.header_cart_p{
    margin: 0;
    font-family: var(--poppins-font-fam);
    font-weight: 500px;
    font-size: 14px;
    color: var(--modern_font_color);
}
.header_account_a{
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: center;
    margin-right: 20px;
    text-decoration: none;
    color: var(--modern_font_color);
    cursor: pointer;
    padding: 7px 7px;
    border-radius: 5px;
}
.header_account_a:hover{
    background-color: var(--boxes_coloring);
    
}
.header_icon{
    width: 25px;
    margin-right: 5px;
}
.header_cart_number{
    margin: 0;
    margin-left: 5px;
    background-color: var(--btn_color);
    color: white;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    font-size: 12px;
}

.header_menu_wrapper{
    width: 94%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

}
.header_menu_scroll_div{
    width: 90%;
    height:50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow-x: scroll; 
    scrollbar-width: none; 
    -ms-overflow-style: none;
    scroll-behavior: smooth; 
    flex: 1;
}
.header_menu_scroll_div::-webkit-scrollbar {
    display: none; 
}
.scroll_arrow{
    height: 16px;
    cursor: pointer;
    margin-left: 5px;
}
.scroll_arrow:hover{
    background-color: var(--boxes_coloring);
    border-radius: 5px;
}

.scroll_menu_a{
    text-decoration: none;
    color: var(--modern_font_color);
    padding: 7px 7px;
    margin-right: 10px;
    border-radius: 5px;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 0 0 auto;
    

}
.scroll_menu_a:hover{
    background-color: var(--boxes_coloring);
}
.scroll_menu_icon{
    width: 16px;
    margin-right: 5px;
}

/*MOBILE MENU*/
.mobile_menu_body{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    align-items:center;
    justify-content:top;
    overflow: hidden;
    background-color: var(--backgrnd_color);
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 1000;
}


.mobile_menu_top_div{
    width: 100%;
    height: 7vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    padding-top: 10px;
    border-bottom: solid 1px var(--modern_font_color);
}
.mobile_menu_logo{
    width: 30%;
    height: auto;
    margin-left: 20px;
}
.mobile_menu_close{
    width: 5%;
    height: auto;
    margin-right: 30px;
    background-color: var(--highlighted_zones);
    padding: 7px 7px;
    border-radius: 5px;
    cursor: pointer;
}
.mobile_menu_close:hover{
    background-color: var(--boxes_coloring);
}

.mobile_menu_middle_div{
    width: 100%;
    height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: top;
    overflow-y: auto;
}

.mobile_menu_a_cont{
    width: 80%;
    padding-top: 10px;
    padding-bottom: 10px;
    text-decoration: none;
    border-bottom: solid 1px var(--highlighted_zones);
}
.mobile_menu_a_cont a{
    text-decoration: none;
    font-family: var(--new_font_fam);
    font-size: 14px;
    color: var(--modern_font_color);
}
.mobile_menu_a_cont a:hover{
    color: var(--btn_color);
}
.mobile_menu_bottom_div{
    width: 100%;
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--highlighted_zones);
}
.mobile_menu_footer_p{
    font-size: 12px;
    font-family: var(--new_font_fam);
    color: var(--modern_font_color2);

}


@media(max-width:768px){
    .info_p{
        font-size: 1.8vw;
    }
   
    .header_cart_p{
        display: none;
    }
    .logo-holder{
        width: 17%;
        box-sizing: border-box;
    }
    .logo{
        width: 100%;
        height: auto;
    }
    
    .scroll_menu_a{
        font-size: 2.2vw;
    }
    .scroll_menu_icon{
        width: 3vw;
    }
   
   
    
}
@media(max-width:568px){
    .header_mobile_search_div{
        display: flex;
        align-items: center;
        justify-content: center;   
    }
    .header_mobile_menu_div{
        display: flex;
        align-items: center;
        justify-content: center;   
    }
    .header_search_div{
        display: none;
    }
    .logo-holder{
        width: 20%;
        box-sizing: border-box;
    }
    .logo{
        width: 100%;
    }
}


/*NEW HEADER SCROLL SECTION*/


.new_header_menu_wrapper{
    width: 100%;
    height: auto;
    padding: 7px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: max-height 0.5s ease-in-out 0.25s;
    max-height: auto; 
    opacity: 1;
    background-color: rgb(31, 33, 46);
    box-sizing: border-box;
   
}

.new_header_menu_wrapper.hide {
    max-height: 0;
    opacity: 0;
    margin: 0;
}




.new_scroll_arrow{
    width: 22px;
    height: 22px;
    cursor: pointer;
    background-color: #ADB5BD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px var(--highlighted_zones);
    color: rgb(31, 33, 46);
}
.new_scroll_arrow:hover{
    background-color: var(--highlighted_zones);
}


.scroll_mask {
  width: 94%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
  z-index: 1;
}
.scroll_mask::-webkit-scrollbar {
  display: none;
}

/* MENU LIST */
.new_header_scroll_menu {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}








.new_category{
    position: relative;
    padding: 7px 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    flex: 0 0 auto;
    
    font-family: var(--roboto-font-fam);
    font-weight: 600;
    font-size: 14px;
    color: #ADB5BD;
    letter-spacing: 0.02em;
    text-decoration: none;
}
.new_category:hover{
    color: var(--dot1_color);
}

.new_header_scroll_submenu {
    display: none;
    position: fixed;
    background-color: var(--backgrnd_color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border-radius: 8px;
    padding: 10px;
    flex-direction: column;
    flex-wrap: wrap; 
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: auto;
    width: 250px;
    max-height: 300px;
    z-index: 5000;
    
  
}



/* LINKS INSIDE DROPDOWN */
.new_header_scroll_submenu a {
    display: inline-block;
    width: auto;
    text-decoration: none;
    font-family: var(--poppins-font-fam);
    font-weight: 400;
    font-size: 14px;
    color: #333;
    margin-bottom: 7px;
    
}
.new_header_scroll_submenu a:hover {
  background: var(--highlighted_zones);
  color: var(--dot1_color);
}






.header-dropdown-card{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 10px;
    box-sizing: border-box;
}
.header-dropdown-card span{
    font-family: var(--poppins-font-fam);
    font-weight: 500px;
    font-size: 14px;
    color: var(--dot2_color);
}
.header-dropdown-card a {
    font-family: var(--poppins-font-fam);
    font-weight: 500px;
    font-size: 14px;
    color: var(--modern_font_color);
    text-decoration: none;
}

.new_header_scroll_submenu a:hover{
    background-color: var(--boxes_coloring);
    border-radius: 3px;
    
}

@media screen and (max-width: 768px) {
    .new_header_scroll_menu{
        width: 100%;
        box-sizing: border-box;
    }
   
    .new_scroll_arrow{
        display: none;
    }
}




/*HOME BODY CSS*/
/* HOME TOP DIV*/
.home_top_div{
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background-color: green;
}
.home_top_div_left{
    width: 20%;
    height: 100%;
    overflow-y: auto;
    background-color: var(--boxes_coloring);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding: 10px;
    gap: 10px;
    box-sizing: border-box;
}



.home_top_div_left::-webkit-scrollbar {
    width: 5px;  
}

.home_top_div_left::-webkit-scrollbar-track {
    background: var(--dot1_color); 
    border-radius: 10px;
}

.home_top_div_left::-webkit-scrollbar-thumb {
    background: var(--backgrnd_color);  
    border-radius: 10px;
}

.home_top_div_left::-webkit-scrollbar-thumb:hover {
    background: var(--deep-backgrnd-clr2);
}





.home_top_div_right{
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: var(--backgrnd_color); 
    box-sizing: border-box;
}
.home-sidebar-card{
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    background-color: var(--backgrnd_color);
    border-radius: 10px;
    border: solid 1px var(--highlighted_zones);
    margin-bottom: 10px;
    box-sizing: border-box;
}
.home-sidebar-card img{
    height: 35px;
    width: auto;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.home-sidebar-card a{
    font-family: var(--poppins-font-fam);
    font-weight: 400;
    font-size: 14px;
    color: var(--modern_font_color);
    text-decoration: none;
}
.home-sidebar-card a:hover{
    color: var(--dot1_color);
}

.home_sidebar_a{
    width: 80%;
    height: 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    padding-left: 10px;
    margin-top: 5px;
}
.home_sidebar_a:hover{
    background-color: var(--highlighted_zones);
    border-radius: 5px;
}
.home_sidebar_icon{
    width: 18px;
    height: 18px;
    margin-right: 5px;
}
.home_slider_p{
    font-size: 14px;
    color: var(--modern_font_color);
}
.home_top_div_child1{
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
}
.home_top_div_child2{
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
}


@media (max-width: 868px) and (min-width: 669px) {
    .home_top_div_child2 {
        display: none;
    }
    .home_top_div_child1 {
        width: 100%;
    }
    .home_top_div_left {
        width: 30%; 
    }
    .home_top_div_right {
        width: 69%;
    }
}


@media (max-width: 668px) {
    .home_top_div_left {
        display: none;
    }
    .home_top_div_right {
        width: 100%;
        border-radius: 5px;
        min-height: 200px; 
        display: flex; 
        justify-content: center; 
        align-items: center;
    }
    .home_top_div_child2 {
        display: none;
    }
    .home_top_div_child1 {
        width: 100%;
    }
}

/*intersection banners*/
.intersection-bunners{
    width: 80%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

@media(max-width:768px){
    .intersection-bunners{
        width: 98%;
    }
}




/*HOME DIV 2*/
.home_div2_wrapper{
    width: 100%;
    background-color: var(--blue-theme-background);
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px;
    gap: 10px;
    box-sizing: border-box;
}
.home_div_2{
    width: calc(100% - 130px);
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    padding:0;
    gap: 10px;
    overflow-x: scroll; 
    scrollbar-width: none; 
    -ms-overflow-style: none;
    scroll-behavior: smooth; 
    flex: 1;
    box-sizing: border-box;
}
.header_menu_scroll_div::-webkit-scrollbar {
    display: none; 
}
.home_div2_wrapper_left_arrow{
    width: 20px;
    height: 20px;
    cursor: pointer;
    padding: 5px;
    background-color: var(--backgrnd_color);
    border-radius: 50%;
    color: var(--dot1_color);
    box-shadow: 0px 2px 2px -1px var(--highlighted_zones);
    display: flex;
    align-items: center;
    justify-content: center;
}
.home_div2_wrapper_right_arrow{
    width: 20px;
    height: 20px;
    cursor: pointer;
    padding: 5px;
    background-color: var(--backgrnd_color);
    border-radius: 50%;
    color: var(--dot1_color);
    box-shadow: 0px 2px 2px -1px var(--highlighted_zones);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home_div_2_a{
    width: auto;
    height: 150px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    cursor: pointer;
    color: var(--modern_font_color);
    
    border-radius: 5px;
    background-color: var(--backgrnd_color);
    border: solid 1px var(--highlighted_zones);
    gap: 10px;
    box-sizing: border-box;
}
.home_div_2_a:hover{
    box-shadow: 0px 2px 2px -1px var(--highlighted_zones);
}
.home_div_2_icon{
    height: 80%;
    width: auto;
    object-fit: cover;
}
.home_div_2_span{
    font-family: var(--poppins-font-fam);
    font-weight: 400;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}

@media (max-width: 668px){
    .home_div_2{
        width: 100%;
    }
    .home_div2_wrapper_right_arrow,
    .home_div2_wrapper_left_arrow{
        display: none;
        
    }
    
}












/*FOOTER CSS */
.footer{
    width: 100vw;
    height: auto;
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--backgrnd_color);
    border-top: solid 1px var(--highlighted_zones);
}
.footer_top{
    width: 60%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.footer_top_card{
    width: 20%;
    aspect-ratio: 1/0.5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}
.footer_top_card_icon{
    width: 50%;
    height: auto;
}
.footer_top_card_p{
    font-family: var(--poppins-font-fam);
    font-weight: 400;
    font-size: 10px;
    color: var(--modern_font_color);
}

.footer_middle_div{
    width: 100%;
    height: auto;
    background-color: var(--btn_color);
    display: flex;
    flex-direction: row;
    align-items: top;
    justify-content: space-between;
    border-top-left-radius: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.footer_middle_div_inner{
    width: 20%;
    max-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-left: 10px;
    overflow-y: auto;
    gap: 10px;
    box-sizing: border-box;
}

.footer_middle_div_inner::-webkit-scrollbar {
    width: 5px;  
}

.footer_middle_div_inner::-webkit-scrollbar-track {
    background: var(--modern_font_color); 
    border-radius: 10px;
}

.footer_middle_div_inner::-webkit-scrollbar-thumb {
    background: var(--backgrnd_color);  
    border-radius: 10px;
}

.footer_middle_div_inner::-webkit-scrollbar-thumb:hover {
    background: var(--deep-backgrnd-clr2);
}







.footer_logo{
    width: 60%;
    height: auto;
    margin: 10px;
}
.footer_description{
    font-family: var(--poppins-font-fam);
    font-weight: 400;
    font-size: 14px;
    color: white;
}
.footer_location_on_map{
    width: 80%;
    padding: 7px 7px;
    text-decoration: none;
    background-color: var(--backgrnd_color);
    border: solid 1px var(--backgrnd_color);
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer_location_on_map p{
    font-family: var(--new_font_fam);
    color: var(--modern_font_color2);
    margin: 0;
}
.footer_location_on_map:hover{
    background-color: var(--modern_font_color);
    border: solid 1px var(--modern_font_color);
}
.footer_location_on_map:hover p {
    color: white;
}
.footer_middle_div_headers{
    font-family: var(--new_font_fam);
    color: var(--modern_font_color2);
}
.footer_site_email{
    width: 100%;
    font-family: var(--poppins-font-fam);
    font-weight: 400;
    font-size: 14px;
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    
}
.footer_site_email img{
    width: 16px;
    height: auto;
    margin-right: 5px;
}
.footer_site_email p{
    color: var(--backgrnd_color);
    margin: 0;
}

.footer_link_a{
    font-family: var(--poppins-font-fam);
    font-weight: 400;
    font-size: 14px;
    color: white;
    text-decoration: none;
}
.footer_link_a:hover{
    color: var(--modern_font_color2);
}
.footer_newsletter_form{
    width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-bottom: solid 1.5px var(--backgrnd_color);
}
.footer_newsletter_form img{
    width: 18px;
    height: auto;
    margin-right: 5px;
}
.footer_newsletter_input{
    background-color: transparent;
    border: none;
    color: var(--backgrnd_color);
}
.footer_newsletter_input:focus {
    border: none;
    outline: none;
}
.footer_newsletter_input::placeholder {
    color: var(--backgrnd_color); 
    opacity: 1; 
}
.footer_newsletter_submit{
    background-color: transparent;
    color: var(--backgrnd_color);
    border: none;
    cursor: pointer;
    font-size: 20px;
}
.footer_socials_div{
    width: 97%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 30px;
}
.footer_socials_a{
    text-decoration: none;
    margin-right: 10px;
}
.footer_socials_a img{
    width: 30px;
    height: 30px;
}
.footer_div_bottom{
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: var(--btn_color);
    border-top: solid 1px var(--modern_font_color2);
}
.footer_copyright_p{
    font-size: 12px;
    font-family: var(--new_font_fam);
    color: var(--backgrnd_color);
    margin-left: 20px;
    margin-right: 20px;

}


@media(max-width:768px){
    .footer_top{
        width: 98%;
    }
    .footer_top_card_p{
        font-size: 1.6vw;
    }
    .footer_middle_div{
        flex-direction: column;
    }
    .footer_middle_div_inner{
        width: 97%;
        margin-left: 0;
        margin-bottom: 10px;
        align-items: center;
    }
    .footer_description{
        width: 90%;
        text-align: center;
    }
    .footer_site_email{
        justify-content: center;
    }
    .footer_newsletter_form{
        width: 50%;
    }
    .footer_socials_div{
        width: 60%;
        justify-content: center;
    }
    .footer_div_bottom{
        flex-direction: column;
        
    }
}




/*SUCCESS ALERT CSS*/
.success_status_div{
    position: absolute;
    padding: 10px;
    top: 20px;
    left: 10%;
    width: 80%;
    height: auto;
    background-color: rgb(176, 242, 176);
    border: solid 1px rgb(176, 242, 176);
    border-radius: 5px;
    z-index: 1000;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.status_icon{
    width: 3vw;
    height: 3vw;
}
.status_btn{
    background-color: transparent;
    padding:0;
    color: gray;
    font-family: inherit;
    border: none;
    cursor: pointer;
}
.status_p{
    color: gray;
    font-family: inherit;
    padding: 0;
    margin: 0;

}

@media (max-width:768px){
    .success_status_div{
        left: 5%;
    }
    .status_p{
        font-size: 2vw;
    }

}


/*ERROR ALERT CSS*/
.error_status_div, .exist_status_div{
    position: absolute;
    padding: 10px;
    top: 20px;
    left: 10%;
    width: 80%;
    height: auto;
    background-color: var(--dot2_color);
    border: solid 1px var(--dot2_color);
    border-radius: 5px;
    z-index: 1000;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.status_icon{
    width: 3vw;
    height: 3vw;
}
.error_status_btn, .exist_status_btn{
    background-color: transparent;
    padding:0;
    color: white;
    font-family: inherit;
    border: none;
    cursor: pointer;
}
.status_p{
    color: white;
    font-family: inherit;
    padding: 0;
    margin: 0;

}

@media (max-width:768px){
    .error_status_div{
        left: 5%;
    }
    .status_p{
        font-size: 2vw;
    }

}



/*LANDING PAGE CSS*/

.landing_body{
    width: 100vw;
    height: 100vh; 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--new_font_fam);
    overflow-x: hidden; 
    overflow-y: auto; 
    background-color: var(--highlighted_zones);
    
    /* Center content */
    display: flex;
    flex-direction: column;
    align-items: center;
}
.landing_head_div{
    width: 96%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--backgrnd_color);
    border-radius: 5px;
    border: solid 1px var(--highlighted_zones);
    padding-bottom: 10px;
}
.landing_logo{
    width: 35%;
    height: auto;
}

.landing_product_title {
    width: 80%;
    font-family: var(--new_font_fam);
    font-size: 30px;
    text-align: center;
    background: linear-gradient(to right, var(--btn_color), var(--modern_font_color2));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}


.checkout_p{
    font-family: var(--new_font_fam);
    font-size: 2vw;
    font-weight: 500;
    color: var(--modern_font_color2);
}


.landing_body_div{
    margin-top: 20px;
    width: 98%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.landing_body_div_left{
    width: 48%;
    padding: 10px;
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: var(--backgrnd_color);
    border-radius: 5px;
    border: solid 1px var(--highlighted_zones);

}
.landing_body_div_content{
    width: 96%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    
    
    
    
}

.landing_body_div_client_feedback{
    width: 96%;
    padding: 10px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--highlighted_zones);
    border-radius: 5px;
    border: solid 1px var(--highlighted_zones);
    margin-bottom: 10px;
}

.landing_body_div_content_feature{
    position: relative;
    max-width: 70%;
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--backgrnd_color);
    border-radius: 5px;
    border: solid 1px var(--highlighted_zones);
    overflow-x: hidden;
}
.landing_body_div_content_feature img{
    min-width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.landing_feature_shade{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: flex;
    align-items: flex-end;      
    justify-content: flex-start;
    /*background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));-->*/
    background-color: transparent;
}
.landing_feature_shade div{
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin: 20px;
}
.landing_new_header{
    font-family: "Gentium Basic", serif;
    font-weight: 400;
    font-size: 35px;
    color: var(--btn_color);
    text-transform: lowercase;
}
.landing_new_header::first-letter {
    text-transform: uppercase;
}

.landing_new_header_min{
    font-family: "Gentium Basic", serif;
    font-weight: 200;
    font-size: 18px;
    color: white;
    text-transform: lowercase;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.landing_new_header_min::first-letter {
    text-transform: uppercase;
}
.landing_like_btn{
    width: auto;
    height: auto;
    background-color: transparent;
    border: none;
    margin-left: 10px;
}

.landing_like_btn img{
    width: 25px;
    height: 25px;
    margin: 2px;
    cursor: pointer;
}

#landing_like_icon {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}


@media(max-width:769px){
    .landing_new_header{
        font-size: 25px;
    }
    .landing_logo{
        width: 50%;
        height: auto;
    }
    .landing_body_div_content_feature{
        width: 98%;
    }
    
    .landing_new_header_min{
        font-size: 14px;
    }
    .landing_new_header_min_icon{
        width: 18px;
        height: 18px;
        margin-left: 10px;
    }
    
    
}




.landing_body_div_content_description{
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: column;
    background-color: var(--backgrnd_color);
    border-radius: 5px;
    border: solid 1px var(--highlighted_zones);
    padding: 20px;
    box-sizing: border-box;

}

.landing_new_content_title{
  font-family: var(--new_font_fam);
  font-weight: 200;
  font-size: 18px;
  color: var(--btn_color);
  /*color: #46414b;*/
  line-height: 2;
    
}
.landing_new_content_text{
  font-family: var(--new_font_fam);
  font-weight: 200;
  font-size: 16px;
  color: #46414b;
  line-height: 2;
    
}




.landing_body_div_client_feedback_inner{
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: top;
    background-color: var(--backgrnd_color);
    border-radius: 5px;
    border: solid 1px var(--highlighted_zones);
    padding-left: 10px;
}

.landing_feature_img{
    width: 98%;
    aspect-ratio: 1/1;
    border-radius: 5px;
}

.landing_client_response_img{
    width: 95%;
    height: auto;
    object-fit: contain;
    margin: 0;
}


.landing_p{
    font-family: var(--new_font_fam);
    font-size: 14px;
    color: var(--modern_font_color);
    margin: 10px;
}
.landing_span{
    font-family: var(--new_font_fam);
    font-size: 10px;
    color: green;
    margin: 10px;

}

.landing_body_div_gallery{
    width: 70%;
    padding: 10px;
    box-sizing: border-box;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--backgrnd_color);
    border-radius: 5px;
    border: solid 1px var(--highlighted_zones);
    margin-bottom: 10px;
}

.landing_gallery_img{
    width: 80%;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .landing_body_div_gallery {
        width: 98%;
    }
    .landing_gallery_img{
        width: 98%;
    }
}

.landing_body_h{
    font-family: var(--new_font_fam);
    font-size: 18px;
    font-weight: 400;
    color: var(--btn_color);
}
.landing_body_subh{
    font-family: var(--new_font_fam);
    font-size: 14px;
    font-weight: 400;
    color: var(--btn_color);
}
.landing_form-group{
    width: 93%;
    display: flex;
    flex-direction: column;
    height: auto;
    border-radius: 5px;
    padding: 5px;
    margin-top: 20px;
}

.landing_form-group_row{
    width: 97%;
    display: flex;
    flex-direction: row;

}

.landing_form-group_mini{
    width: 47%;
    display: flex;
    flex-direction: column;
    height: auto;
    border-radius: 5px;
    padding: 5px;
    margin-top: 20px;
}


.landing_form-input{
    border: none;
    border-radius: 5px;
    font-family: var(--new_font_fam);
    font-size: 13px;
    color: var(--modern_font_color);
    padding: 7px 7px;
    margin-top: 5px;
    border: solid 1px var(--highlighted_zones);
    background-color: var(--boxes_coloring);
}
.landing_form-input:focus{
    outline: 0;
}
.landing_form-group:focus{
    border: solid 1px var(--modern_font_color2);
}
.landing_label{
    font-family: var(--new_font_fam);
    font-size: 14px;
    color: var(--modern_font_color2);

}
.landing_required{
    color: var(--btn_color);
}

.landing_payment_options_div{
    width: 93%;
    display: flex;
    flex-direction: column;
    height: auto;
    border-radius: 5px;
    padding: 5px;
    margin-top: 20px;

}
.landing_payment_option{
    width: 100%;
    background-color: var(--boxes_coloring);
    padding: 5px;
}
.landing_payment_icon{
    width: 14px;
    height: 14px;
    margin-right: 5px;
}


.landing_order_details_1{
    width: 95%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: solid 1px var(--highlighted_zones);
}

.landing_order_details_body{
    width: 95%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    border-bottom: solid 1px var(--highlighted_zones);
}
.landing_product_p1{
    font-family: var(--new_font_fam);
    font-size: 14px;
    color: var(--modern_font_color2);
    width: 55%;
}
.landing_product_p2{
    font-family: var(--new_font_fam);
    font-size: 14px;
    color: var(--modern_font_color2);
    width: 15%;
}

.landing_product_img{
    width: 10%;
    height: auto;
}

.landing_place_order_btn{
    width: 97%;
    padding: 15px 7px;
    background-color: var(--btn_color);
    border: solid 1px var(--btn_color);
    border-radius: 5px;
    color: white;
    cursor: pointer;
    margin-top: 10px;
}
.landing_place_order_btn:hover{
    background-color: var(--dot2_color);
    border: solid 1px var(--dot2_color);
}

.landing_footer{
    width: 97%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.landing_footer_p{
    font-family: var(--new_font_fam);
    font-size: 14px;
    color: var(--modern_font_color2);
}

.landing_till_icon{
    width: 50%;
    height: auto;
}

.landing_options_div{
    width: 99%;
    height: auto;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    background-color: var(--backgrnd_color);
    margin-bottom: 10px;
}

@media (max-width: 200px) {
    .landing_options_div {
        grid-template-columns: 1fr; 
    }
}





.landing_option_label{
    display: block;
    width: 90%;
    height: 200px;
    background-color: var(--boxes_coloring);
    display: flex;
    flex-direction: column;
    align-items: top;
    cursor: pointer;
    border-radius: 5px;
    border: solid 1px var(--highlighted_zones);
}
.landing_option_label_top{
    width: 100%;
    height: 60%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}
.landing_option_label_bottom{
    width: 100%;
    height: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}
.landing_option_label_image{
    width: 40%;
    height: auto;
    margin-right: 5px;
}

.landing_option_label_p{
    width: 90%;
    font-family: var(--new_font_fam);
    font-size: 10px;
    color: var(--gray_zones);
}

.landing_compatibility_div{
    width: 100%;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
}
.landing_compatibility_label{
    width: 80%;
    display: flex;
    flex-direction: row; 
    cursor: pointer;
}
.landing_compatibility_label:hover{
    background-color: var(--highlighted_zones);
    border-radius: 5px;
}

.landing_summary_div{
    width: 98%;
    height: auto;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    background-color: var(--boxes_coloring);
    border-radius: 5px;
}
.landing_summary_div_inner{
    width: 95%;
    height: auto;
    display: flex;
    flex-direction:row;
    justify-content: space-between;
}
.landing_input{
    width: 30%;
    padding: 7px 7px;
    background-color: var(--highlighted_zones);
    border: solid 1px var(--gray_zones);
    border-radius: 5px;
}
.landing_support_icons_div{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-top: solid 1px var(--highlighted_zones);
}
.landing_support_icons{
    width: 45%;
    height: auto;
    margin: 10px;
}

.lp_select_county{
    padding: 10px 10px;
    background-color: var(--highlighted_zones);
    border: solid 1px gray;
    border-radius: 5px;
}






@media(max-width:768px){
    .landing_body_div_left{
        width: 97%;
        margin-top: 20px;
    }
    .landing_body_div_content{
        width: 97%;
        order: -1;
        flex-direction: column;
    }
    .landing_body_div_content_feature, .landing_body_div_content_description{
        width: 96%;
        margin-bottom: 10px;
    }

    .landing_body_div_client_feedback{
        width: 97%;
        flex-direction: column;
    }
    
    .landing_body_div_client_feedback_inner{
        width: 96%;
        margin-bottom: 10px;
    }


    .landing_product_p1{
        font-size: 2.2vw;
    }
    .landing_product_p2{
        font-size: 2.2vw;
    }
    .landing_label{
        font-size: 2.2vw;

    }
    .landing_footer{
        font-size: 2.2vw;
    }
    .landing_p{
        font-size: 2.3vw;
    }
    .landing_span{
        font-size: 1.8vw;

    }
    .product_desc_numbering{
        font-size: 2vw;
    }

}

/*END OF LANDING PAGE CSS*/


/*THANKYOU PAGE CSS*/
.thankyou_body{
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    
}
.thankyou_data_div{
    width: 90%;
    height: 50vh;
    margin-top: 10px;
    margin-bottom: 10px;
    overflow-y: auto;
    background-color: var(--highlighted_zones);
    border-radius: 5px;
    display: flex;
    justify-content: center;
   
}
.thankyou_container{
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}
.thankyou_container_inner{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: solid 1px var(--backgrnd_color);
}

.thankyou_container_inner_head{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: solid 1px var(--modern_font_color);
}
.thankyou_container_inner_foot{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-top: solid 1px var(--modern_font_color);
}
.thankyou_column1{
    width: 70%;
    font-size: 14px;
    font-family: var(--new_font_fam);
    color: var(--modern_font_color);
    margin: 0;
    line-height: 2;
}
.thankyou_column2{
    width: 14%;
    font-size: 14px;
    font-family: var(--new_font_fam);
    color: var(--modern_font_color);
    margin: 0;
    line-height: 2;
}
.thankyou_column3{
    width: 14%;
    font-size: 14px;
    font-family: var(--new_font_fam);
    color: var(--modern_font_color);
    margin: 0;
    line-height: 2;
}
.thankyou_h{
    font-size: 25px;
    font-family: var(--new_font_fam);
    color: var(--btn_color);
}

@media(max-width:768px){
    .thankyou_data_div{
        height: 80vh;
    }
    .thankyou_container{
        width: 95%;
    }
    .thankyou_column1, .thankyou_column2, .thankyou_column3{
        font-size: 2vw;
    }
    .thankyou_h{
        font-size: 2.5vw;
    }
}




/*PRODUCT VARIATIONS SECTION*/
.product_detail_variations {
    width: 95%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .product_detail_variations_inner{
    width: 98%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    margin: 0;

  }
  
 /* .product_detail_variations input[type="radio"] {
    display: none;
  }       */
  
  .product_detail_variations label {
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    color: var(--modern_font_color);
  }  
  
  /*.product_detail_variations input[type="radio"]:checked + label {
    background-color: var(--btn_color);
    color: white;
    border-color: var(--btn_color);
  }    */

  @media(max-width:768px){
    .product_detail_variations label, .product_detail_color-options label{
        font-size: 8px;
    }

  }


  /*END OF PRODUCT VARIATIONS*/
  
  
  /*MOBILE SEARCH POPUP*/

.mobile_search_popup{
    position: absolute;
    display: none;
    top: 2;
    margin-left: 10px;
    width: 90vw;
    height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: var(--backgrnd_color);
    box-shadow: 1px 1px 3px var(--gray_zones);
    border: solid 1px var(--backgrnd_color);
    border-radius: 5px;
    z-index: 1000;
    padding: 5px;
}
.mobile_search_popup input{
    width: 80%;
    padding: 7px 7px;
    background-color: var(--highlighted_zones);
    border: solid 1px var(--highlighted_zones);
    border-radius: 5px;
    color: var(--modern_font_color2);
    font-size: 12px;

}
.mobile_search_popup input:focus {
    outline: none;
    box-shadow: 1px 1px 3px var(--gray_zones); 
    border-radius: 5px;
}
.mobile_search_popup img{
    width: 5%;
    height: auto;
    cursor: pointer;
}




/*MAP DISPLAY CSS*/
 #map-container {
    display: none; 
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: white;
    border: 2px solid black;
    z-index: 1000;
    padding: 10px;
}

#map {
    width: 100%;
    height: 100%;
}

.mapclose-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 1000;
}


/*SUBCATEGORY PART*/

.header_scroll_menu {
    list-style: none;
    padding: 0;
    width: 99%;
    height:auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow-x: scroll;
    scrollbar-width: none; 
    -ms-overflow-style: none;
    scroll-behavior: smooth; 
    flex: 1;
    position: relative; 
}

.header_scroll_menu > li {
    
    padding: 7px 7px;
    cursor: pointer;
    margin-right: 10px;
    color: var(--modern_font_color);
    font-family: var(--new_font_fam2);
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}
#header_scroll_menu_a{
    padding: 7px 7px;
    cursor: pointer;
    margin-right: 10px;
    color: var(--modern_font_color);
    font-family: var(--new_font_fam2);
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.header_scroll_menu > li:hover {
    background-color: var(--highlighted_zones);
    border-radius: 5px;
}

.header_scroll_submenu {
    list-style: none;
    display: none;
    position: fixed;  
    background: var(--backgrnd_color);
    border: 1px solid var(--highlighted_zones);
    box-shadow: 1px 1px 3px var(--gray_zones);
    border-radius: 5px;
    padding: 10px;
    width: 50vw;
    height: auto;
    z-index: 1000;
    flex-direction: column;
}

.header_scroll_submenu li {
    width: 45%;
    padding: 10px;
    color: var(--modern_font_color2);
    font-size: 12px;
}

.header_scroll_submenu a {
   text-decoration: none;
   color: #355b4d;
}

.header_scroll_submenu li:hover {
    background: var(--boxes_coloring);
    color: var(--btn_color);
    border-radius: 5px;
}

@media(max-width:768px){
    .header_scroll_submenu li{
        width: 90%;
    }
    
}


/*WHATSAPP*/
.whatsapp-iconlink {
    position: fixed;
    bottom: 40px;
    right: 105px;
    padding:5px;
    font-family: var(--new_font_fam2);
    font-size: 14px;
    color:gray;
    background-color:white;
    border-radius:5px;
    z-index: 1000;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.whatsapp-icon {
    position: fixed;
    bottom: 40px;
    right: 40px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    z-index: 1000;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
/*END OF WHATSAPP*/

/*product review*/
.review_product_id{
    width: 97%;
    background-color:var(--boxes_coloring);
    margin-top: 20px;
    border-radius: 5px;
}

#review-summary{
    font-family: var(--new_font_fam2);
    font-size: 14px;
    color: var(--modern_font_color2);
    margin-left: 10px;
}

#reviews-list{
    width: 100%;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
}

.review{
    padding: 10px 10px;
    box-shadow: 1px 1px 3px var(--gray_zones);
    border-radius: 5px;
    background-color: var(--backgrnd_color);
    margin: 10px;
}
.review h3{
    font-family: var(--new_font_fam2);
    font-size: 18px;
    color: var(--modern_font_color2);
}
.review p{
    font-family: var(--new_font_fam2);
    font-size: 10px;
    color: var(--modern_font_color2);
}
.star{
    color:var(--btn_color);
}


/*end of product review*/


/*START OF LOADING EFFECT*/

.loading-shield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F5F5F5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999; 
    color: var(--grayzones);
}

/*
.spinner {
    position: relative;
    width: 50px;
    height: 50px;
    border: 5px solid #ccc; 
    border-top: 5px solid var(--btn_color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.spinner img{
    width: 50%;
    height: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-0deg);
    animation: counter-spin 2s linear infinite;
}   */


.spinner {
    position: relative;
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top: 5px solid var(--btn_color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.spinner-img-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: counter-spin 1s linear infinite;
}

.spinner-img-wrapper img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}



@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes counter-spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(-360deg); }
}




.loading_text{
    margin-top: 5px;
    font-family: var(--new_font_fam2);
    font-size: 14px;
    color: var(--modern_font_color2);
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}






@media(max-width:768px){
    .product-details-display-tab{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 2.5vw;
    }
    
}





.product_edit_form_details{
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width:50vw;
    height: auto;
    padding: 20px;
    box-sizing: border-box;
    z-index: 1000;
    background-color: var(--highlighted_zones);
    border-radius: 5px;
    box-shadow: 1px 1px 3px gray;
}


.product_edit_form_h{
    margin-bottom: 10px;
    color: var(--modern_font_color);
    font-size: 16px;
    
}

.product_edit_form_input{
    width: 50%;
    padding: 7px 7px;
    background-color: var(--backgrnd_color);
    border: solid 1px var(--highlighted_zones);
    border-radius: 5px;
    color: var(--gray_zones);
    margin-bottom: 10px;
    font-family: var(--new_font_fam);
    color: var(--modern_font_color);
    font-size: 13px;

}

.product_edit_form_btn{
    padding: 7px 7px;
    background-color: var(--dot2_color);
    border: solid 1px var(--dot2_color);
    border-radius: 5px;
    color: white;
    font-family: inherit;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 10px;
    
}
.product_edit_form_close{
    margin-bottom: 10px;
    color: var(--dot2_color);
    font-size: 16px;
    cursor: pointer;
    
}

.product_edit_form_select{
    margin: 10px;
    background-color: var(--backgrnd_color);
    border-radius: 5px;
}

@media (max-width:768px){
    .p_details_icon{
        width: 3vw;
        height: 3vw;
    }
    .product_edit_form_details{
        width: 95vw;
    }

}




/*EMPTY RETURN CSS*/
.empty_return_div{
    width: 100%;
    min-height: 200px;
    height: auto;
    background-color: var(--backgrnd_color);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.empty_return_icon{
    width: 15%;
    height: auto;
}
.empty_return_title{
    font-size: 16px;
    margin: 0;
    line-height: 2;
}
.empty_return_desc{
    font-size: 12px;
    margin: 0;
    line-height: 2;
}

@media(max-width:768px){
    .empty_return_icon{
        width: 25%;
    }

}



/*STATUS DISPLAY CSS*/
.status_display_invalid, .status_display_duplicate, .status_display_error, .status_display_null{
    display: none;
    font-size: 12px;
    color: var(--btn_color);
}




@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.status_display_wrongpass {
    display: none;
    font-size: 12px;
    background-color: var(--btn_color);
    color: white;
    padding: 7px 7px;
    border-radius:3px;
    animation: blink 1s infinite;
}





/*ONLINE STATUS DOT*/

.user_icon_wrapper {
    position: relative;
    display: inline-block;
}

.user_status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background-color: green;
    border-radius: 50%;
    border: 2px solid white;
}

/*ONLINE STATUS DOT*/


/*NEW PAYMENT TERMS*/
.payment_notify_div{
    width: 95%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.payment_notify_div h2{
    font-family: 'Poppins', sans-serif;
    color: #606060;
    font-size: 20px;
}
.payment_notify_div h2 span{
    font-family: 'Poppins', sans-serif;
    color: #0099ff;
    font-size: 20px;
}
.payment_notify_card{
    width: 100%;
    height: auto;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: rgb(208, 248, 248);
    padding: 20px;
    box-sizing: border-box;
    border: solid 1px gray;
    border-radius: 10px;
}
.payment_notify_card_inner{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content:flex-start;
    margin-top: 10px;
}
.payment_notify_card_inner img{
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.payment_notify_card_inner span{
    font-family: 'Poppins', sans-serif;
    color: #606060;
    font-size: 20px;
}
.payment_notify_card_inner p{
    font-family: 'Poppins', sans-serif;
    color: #606060;
    font-size: 14px;
    margin: 0;
    line-height: 2;
}

.payment_notify_card_inner p span{
    font-family: 'Poppins', sans-serif;
    color: #0099ff;
    font-size: 14px;
    margin: 0;
    line-height: 2;
}
    
    /*not found*/
.not-found-cont{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
    pointer-events: none;
}
.not-found-cont img{
    width: 150px;
    height: auto; 
}
.not-found-cont span{
    font-family: var(--poppins-font-fam);
    font-weight: 300;
    color: var(--modern_font_color);
    font-size: 16px;
    text-decoration: none;
}



/*CLIENT LOGIN POPUP*/
.client_login_div{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    max-width: 100vw;
    max-height: 100vh;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.client_login_close_div{
    width: 98%;
    height: 10%;
    display: flex;
    align-items: center;
    justify-content: right;
}
.client_login_close_icon{
    width: 25px;
    height: 25px;
    margin: 20px;
    cursor: pointer;
}
.client_login_cont{
    width: 80%;
    height: 80%;
    border-radius: 3px;
    background-color: var(--blue-theme-background);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.client_login_header{
    font-family: var(--poppins-font-fam);
    font-weight: 300;
    font-size: 30px;
    color: var(--modern_font_color);
}
.client_login_header span{
    color: var(--dot1_color);
}
.client_login_form{
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   
}

.client_account-input-container {
    display: flex;
    flex-direction: column;
    width: 95%;
    margin: 10px;
    gap: 5px;
    box-sizing: border-box;
}

.client_account-input-label {
    font-family: var(--poppins-font-fam);
    font-weight: 300;
    font-size: 14px;
    color: var(--dot1_color);
}

.client_account-styled-input {
    width: 90%;
    padding: 10px;
    border: 1px solid var(--highlighted_zones);
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: var(--poppins-font-fam);
    font-weight: 300;
    font-size: 16px;
    color: var(--modern_font_color);
}

.client_account-styled-input:focus {
    border: none;
    background-color: var(--highlighted_zones);
}

.client_login_btn{
    width: 50%;
    padding: 10px;
    background-color: var(--dot1_color);
    border: solid 1px var(--dot1_color);
    cursor: pointer;
    border-radius: 5px;
    margin: 10px;
    font-family: var(--poppins-font-fam);
    font-weight: 300;
    font-size: 14px;
    color: white;
}
.client_login_btn:hover{
    background-color: var(--dot3_color);
    border: solid 1px var(--dot3_color);
}
.client_login_service_div{
    width: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.client_login_service_div a{
    font-family: var(--poppins-font-fam);
    font-weight: 300;
    font-size: 14px;
    color: #0099ff;
    text-decoration: none;
}
.client_login_service_div a:hover{
    color: var(--dot1_color);
}

@media(max-width:768px){
    .client_login_cont{
        width: 98%;
    }
    .client_login_form{
        width: 98%;
       
    }
    .client_login_btn{
        width: 90%;
    }
    .client_login_service_div{
        width: 90%;
    }

}
/*Client Login popup*/

/*rearranged css*/
.rearranged-section-top{
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: var(--backgrnd_color);
    border: solid 1px var(--highlighted_zones);
    border-radius: 10px;
    box-sizing: border-box;
    
}
.rearranged-top-holder{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.rearranged-title{
    font-family: var(--lora-font-fam);
    font-weight: 600;
    font-size: 18px;
    color: var(--modern_font_color);
}
.rearranged-title span{
    color: var(--dot2_color);
}

.rearranged-section-top a{
    font-family: var(--lora-font-fam);
    font-weight: 600;
    font-size: 12px;
    color: var(--dot2_color);
    cursor: pointer;
    text-decoration: none;
}
.rearranged-not-found-holder{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 10px;
    border: solid 1px var(--highlighted_zones);
    padding: 10px;
    background-color: var(--backgrnd_color);
    box-sizing: border-box;
}
.rearranged-not-found-holder img{
    width: 150px;
    height: auto;
}
.rearranged-not-found-holder span{
    font-family: var(--lora-font-fam);
    font-weight: 500;
    font-size: 12px;
    color: var(--modern_font_color);
    text-decoration: none;
    
}






@media(max-width:768px){
    .rearranged-title{
        font-size: 14px;
    }
    
}




/*PRODUCTS CONTAINER CSS*/
.product_div{
    margin-top: 10px;
    width: 100%;
    height: auto;
    background-color: var(--blue-theme-background);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
}
.product_div_top{
    width: 100%;
    height: 50px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 10px;
}
.product_div_top_cont{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.product_div_top_icon{
    width: 30px;
    height: 30px;
    margin-right: 10px;
}
.product_div_top_p{
    font-size: 15px;
    font-family: var(--poppins-font-fam);
    font-weight: 400px;
    color: var(--modern_font_color);
    text-decoration: none;
}

.product_container{
    width: 100%;
    height: auto;
}

/*corousel home*/
.carousel {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  padding: 10px 0;
}

/* Buttons on the sides */
.carousel-btn {
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Product track area */
.carousel-wrapper {
  overflow: hidden;
  flex: 1;
  max-width: 90%;
  min-width: 90%;
  width: 90%;
}

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease-in-out;
  padding: 10px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  gap: 8px;
  width: 100%;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.carousel-dot.active {
  background-color: #333;
}

@media (max-width: 768px) {
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
 
 
}

@media (max-width: 500px) {
    .product_container{
        padding: 0;
        padding-top: 10px;
    }
    .carousel{
        padding: 0;
        gap: 0;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .carousel-wrapper{
        max-width: 100%;
        width: 100%;
        padding: 0;
        margin: 0;
        
        overflow-x: auto;                
        scroll-behavior: smooth;         
        -webkit-overflow-scrolling: touch; 
        flex: 1;
    }
    .carousel-track{
        display: flex;
        gap: 16px;
        padding: 0;
        margin: 0;
        flex-wrap: nowrap;
        max-width: 100%;
        width: 100%;
    }
    .carousel-btn {
        display: none;
    
    }
    .carousel-wrapper::-webkit-scrollbar {
        display: none;                   
    }
    .carousel-dot{
        width: 6px;
        height: 6px;
    }
}




.product_card{
    position: relative;
    flex: 0 0 200px;
    aspect-ratio: 1/1.4;
    background-color: var(--backgrnd_color);
    border: solid 1px var(--highlighted_zones);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    margin-right: 10px;
    padding: 10px;
    box-sizing: border-box;
}
.product_discount_p{
    position: absolute;
    padding: 7px 7px;
    background-color: var(--btn_color);
    border-radius: 5px;
    color: white;
    font-size: 10px;
    z-index: 500;
    top: 5px;
    right: 5px;
}


.product_card:hover{
    box-shadow: 1px 1px 3px var(--gray_zones);
}
.product_img_div{
    width: 100%;
    height: 60%;
    overflow: hidden; 
}

.product_img{
    width: 100%;
    height: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    object-fit:scale-down;
}

.product_info_div{
    width: 100%;
    height: 40%; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.product_title{
    width: 100%;
    margin: 0;
    font-size: 13px;
    font-family: var(--poppins-font-fam);
    font-weight: 500px;
    color: #333;
    text-decoration: none;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    box-sizing: border-box;
}
.product_pricing_div{
    width: 90%;
    height: 30%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
    margin: 0;
}
.product_price_before{
    font-size: 13px;
    font-family: var(--poppins-font-fam);
    font-weight: 500px;
    color: var(--dot1_color);
    text-decoration: line-through;
}
.product_price_after{
    font-size: 13px;
    font-family: var(--poppins-font-fam);
    font-weight: 500px;
    color: green;
    text-decoration: none;
}
.product_stock_div{
    width: 95%;
    height: 30%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.product_stock_p{
    font-size: 12px;
    font-family: var(--poppins-font-fam);
    font-weight: 500px;
    color: #333;
    text-decoration: none;
}
.product_socials_div{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.product_socials_icon{
    width: 12px;
    height: 12px;
    margin-right: 5px;
}

.no_product_p{
    font-size: 16px;
    font-family: var(--poppins-font-fam);
    font-weight: 500px;
    color: var(--modern_font_color);
    text-decoration: none;

}

@media (min-width: 769px) and (max-width: 1268px){

    .product_price_before{
        font-size: 14px;
    }
    .product_price_after{
        font-size: 14px;
    }
    .product_stock_p{
        font-size: 12px;
    }
    .product_title{
        font-size: 12px;
    }
}

@media (min-width: 569px) and (max-width: 768px){

    .product_price_before{
        font-size: 1.8vw;
    }
    .product_price_after{
        font-size: 1.8vw;
    }
    .product_stock_p{
        font-size: 1.6vw;
    }
    .product_title{
        font-size: 2vw;
    }
    .product_discount_p{
        font-size: 1.8vw;
    }
}

@media(max-width:568px){
    
    .product_price_before{
        font-size: 10px;
    }
    .product_price_after{
        font-size: 10px;
    }
    .product_stock_p{
        font-size: 2.1vw;
    }
    .product_title{
        font-size: 9px;
    }
    .product_discount_p{
        font-size: 2vw;
    }
}




















