:root{
    --main-font-clr:#161718;
    --font-clr:#4D4D4D;
    --font-clr2:#ccc;
    /*--faded-font-clr:#ADB5BD;*/
    --faded-font-clr:#4D4D4D;

    --highlighted-clr-1:#F9F9F9;
    --highlighted-clr-2:#F5F5F5;
    --highlighted-clr-3:#EFEFEF;
    --highlighted-clr-3:#F7FAFC;
    --highlighted-clr-4:#e3e7ea;

    /*--themed-clr:rgb(31, 33, 46);
    --themed-clr-2:#5b666d;*/
    --themed-clr:#F52787;
    --themed-clr-2:#ef64a5;
    --themed-clr-3:#fbf7f2;
    --themed-clr-4:#fac486;
    --green-theme:green;
    --green-theme2:#c5ecdc;
    --green-theme3: #eff6f3;

    --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;

    --background-clr:#ffffff;
    /*--deep-backgrnd-clr:rgb(31, 33, 46);
    --deep-backgrnd-clr2:#5b666d; */
    --deep-backgrnd-clr:#F52787;
    --deep-backgrnd-clr2:#F52787; 
    --blue-theme-background: #e7f1f7;
}



body {
    width: 100vw;
    height: 100vh; 
    margin: 0;
    padding: 0;
    padding-top: 110px;
    overflow-x: hidden !important; 
    overflow-y: auto; 
    background-color: var(--backgrnd_color);
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (max-width: 769px){
    body{
        padding-top: 100px;
    }
}

body::-webkit-scrollbar {
    width: 5px;  
}

body::-webkit-scrollbar-track {
    background: transparent; 
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
    background: var(--deep-backgrnd-clr);  
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
    background: var(--deep-backgrnd-clr2);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
    }

.bounce {
    animation: bounce 1s;
}

#content{
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}



.header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: var(--backgrnd_color);
    box-shadow: 0px 2px 2px -1px var(--highlighted-clr-4);
    width: 100vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;

    transition: transform 1s ease-in-out;
}
.header.hide {
    transform: translateY(-100%);
}
.info_div{
    width: 100%;
    height: auto;
    background-color: var(--deep-backgrnd-clr);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 5px;
    box-sizing: border-box;
}
.info_p{
    font-family: var(--poppins-font-fam);
    font-size: 13px;
    color: var(--backgrnd_color);
    margin: 0;
    margin-left: 10px;
    margin-right: 10px;
}
.info_div i{
    font-size: 13px;
    color: var(--faded-font-clr);
    margin-right: 5px;
}
.header_div{
    width: 100%;
    height:auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    gap: 10px;
    box-sizing: border-box;
}
.logo{
    width: auto;
    height: 40px;
}
.header_search_div{
    width: 60%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    border: none;
    background-color: var(--highlighted-clr-4);
    border-radius: 5px;
}

.search_input{
    width: 90%;
    height: 35px;
    border: none;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    font-family: var(--poppins-font-fam);
    font-weight: 300;
    color: var(--font-clr);
    font-size: 13px;
    padding-left: 5px;
    outline: none;
    background-color: transparent;
    box-sizing: border-box;
}
.search_input:focus {
    outline: none; 
}
.search_btn{
    width: 10%;
    background-color: var(--themed-clr);
    border: none;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-sizing: border-box;
}
.search_btn:hover{
    background-color: var(--themed-clr-2);
    
}

.search_btn{
    color: var(--faded-font-clr);
}
.header_mobile_search_div{
    padding: 7px 7px;
    display: none;
    cursor: pointer;
}

.header_mobile_search_icon{
    width: 19px;
    height: 19px;
}
.header_icon{
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}
.header_icon i{
    color:var(--dot1_color);
}
.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-holder{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
}
#header-icon,
#header_mobile_search_icon{
    font-size: 25px;
    color: var(--themed-clr);
    margin-right: 1px;
}
.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;
}
.header_account_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;
}
.header_account_a:hover{
    background-color: var(--boxes_coloring);
    
}

.header_cart_number{
    margin: 0;
    margin-left: 5px;
    background-color: var(--deep-backgrnd-clr);
    color: white;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    font-size: 12px;
}

/*mobile menu*/
.mobile_menu_body {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--backgrnd_color);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

.mobile_menu_body.active {
    transform: translateX(0); 
}


.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: 2vw;
    }
    .info_div i{
        font-size: 2.2vw;
    }
   
    .header_cart_p{
        display: none;
    }
    
    .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;
    }
    
}


/*HEADER MENU*/
.header-menu-holder{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 5px;
    box-sizing: border-box;
}
.header-menu{
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.header-menu a{
    font-family: var(--roboto-font-fam);
    font-weight: 500;
    color: var(--font-clr);
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0.5px;
    gap: 5px;

    position: relative;
    display: inline-block;
    padding-bottom: 3px;
}
.header-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: var(--faded-font-clr);
    transition: width 0.3s ease-in-out;
}

.header-menu a:hover::after {
    width: 100%;
}
.header-menu a i{
    font-size: 14px;
    color: var(--faded-font-clr);
}
@media (max-width:769px){
    .header-menu a{
        font-size: 13px;
    }
    .header-menu a i{
        font-size: 13px;
    }

}


/*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(--faded-font-clr);
}
.client_login_header span{
    color: var(--themed-clr);
}
.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(--themed-clr);
}

.client_account-styled-input {
    width: 90%;
    padding: 10px;
    border: 1px solid var(--highlighted-clr-4);
    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(--font-clr);
}

.client_account-styled-input:focus {
    border: none;
    background-color: var(--highlighted-clr-4);
}

.client_login_btn{
    width: 50%;
    padding: 10px;
    background-color: var(--themed-clr);
    border: solid 1px var(--themed-clr);
    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(--themed-clr-2);
    border: solid 1px var(--themed-clr-2);
}
.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(--themed-clr);
}

@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*/
/*whatsapp*/
.whatsapp-iconlink {
    position: fixed;
    bottom: 40px;
    right: 10px;
    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: 20px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    z-index: 1000;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
/*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(--faded-font-clr);
    font-size: 16px;
    text-decoration: none;
}

/*LOADING EFFECT*/
.loading-shield{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1500;
    width: 100vw;
    height: 100vh;
    background-color: var(--backgrnd_color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.spinner {
    position: relative;
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top: 5px solid var(--btn_color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: spin 2s linear infinite; /* Only the border spins */
}

.spinner-img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    /* NO animation at all, stationary */
    transform: rotate(0deg); 
}

.spinner-img-wrapper img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

/* Spinner border rotation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



