

/* HOME TOP DIV*/
.home_top_div{
    width: 100%;
    height: 65vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px;
    gap: 10px;
    box-sizing: border-box;
    background-color: var(--blue-theme-background);
}
.home_top_div_left{
    width: 20%;
    height: 100%;
    overflow-y: auto;
    background-color: var(--background-clr);
    padding: 10px;
    box-sizing: border-box;
}

.home_top_div_left::-webkit-scrollbar {
    width: 5px;  
}

.home_top_div_left::-webkit-scrollbar-track {
    background: var(--faded-font-clr); 
    border-radius: 10px;
}

.home_top_div_left::-webkit-scrollbar-thumb {
    background: var(--themed-clr);  
    border-radius: 10px;
}

.home_top_div_left::-webkit-scrollbar-thumb:hover {
    background: var(--deep-backgrnd-clr2);
}

.home-top-div-left-cont{
    width: 100%;
    padding: 0;
    text-decoration: none;
    border: solid 1px var(--highlighted-clr-4);
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    margin-bottom: 5px;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.home-top-div-left-cont span{
    text-decoration: none;
    font-family: var(--poppins-font-fam);
    font-weight: 300;
    font-size: 13px;
    color: var(--font-clr);
    text-decoration: none;
}
.home-top-div-left-cont:hover.home-top-div-left-cont span{
    color: var(--themed-clr);
}
.home-top-div-left-cont img{
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;    
}


.home_top_div_right{
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: var(--background-clr); 
    box-sizing: border-box; 
    overflow: hidden;
}
.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%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
}

.home-top-div-span1{
    font-family: var(--poppins-font-fam);
    font-weight: 300;
    font-size: 14px;
    color: var(--faded-font-clr);
    text-decoration: none;
}
.home-top-div-span2{
    font-family: var(--lora-font-fam);
    font-weight: 500;
    font-size: 55px;
    color: var(--faded-font-clr);
    text-decoration: none;
}
.home-top-div-span2 span{
    color: var(--themed-clr);
}
.home-top-div-a{
    padding: 7px 15px;
    background-color: var(--themed-clr);
    border: solid 1px var(--themed-clr);
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--poppins-font-fam);
    font-weight: 300;
    font-size: 14px;
    color: var(--faded-font-clr);
    text-decoration: none;
}
.home-top-div-a:hover{
    background-color: var(--themed-clr-2);
    border: solid 1px var(--themed-clr-2);
}
.home-top-div-reviews{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    margin-top: 10px;
    box-sizing: border-box;
    font-family: var(--poppins-font-fam);
    font-weight: 300;
    font-size: 14px;
    color: var(--faded-font-clr);
    text-decoration: none;
}
.home-top-div-reviews i{
    color: green;
    font-size: 14px;
}

.hope-top-div-pricing{
    font-family: var(--lora-font-fam);
    font-weight: bold;
    font-size: 20px;
    color: var(--faded-font-clr);
}


.home_top_div_child2{
    position: relative;
    width: 50%;
    height: 100%;  
    box-sizing: border-box;
}
.home_top_div_child2 img{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    object-fit: cover;
}

.home_top_div_child2-shade {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        white 0%,           
        white 10%,          
        transparent 100%    
    );
    padding: 10px;
    overflow: hidden;
}
.home_top_div_child2-shade-span1{
    font-family: var(--lora-font-fam);
    font-weight: bold;
    font-size: 40px;
    color: var(--faded-font-clr);
    text-decoration: none;
}
.home_top_div_child2-shade-span1 i{
    color: orange;
}

@media (max-width: 1068px) and (min-width: 869px) {
    .home-top-div-left-cont a{
        font-size: 12px;
    }
}
@media (max-width: 868px) and (min-width: 669px) {
    
    .home-top-div-span2{
        font-size: 30px;
    }
    .home_top_div_left {
        width: 30%; 
    }
    .home_top_div_right {
        width: 70%;
    }
    .home-top-div-left-cont a{
        font-size: 9px;
    }
}


@media (max-width: 668px) {
    .home_top_div_left{
        display: none;
    }
    .home_top_div{
        height: auto;

    }
    .home_top_div_right {
        width: 100%;
        height: auto;
        border-radius: 5px;
        min-height: 200px; 
        display: flex; 
        justify-content: center; 
        align-items: center;
        flex-direction: column;
    }
    
    .home_top_div_child1 {
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    .home-top-div-span2{
        text-align: center;
    }

    .home_top_div_child2 {
        width: 100%;
    }
    .home_top_div_child2-shade{
        background: none;

    }
   
}
/*INTERSECTION*/
.home-intersection{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
}
.home-intersection-title{
    font-family: var(--lora-font-fam);
    font-weight: bold;
    font-size: 35px;
    color: var(--faded-font-clr);
    text-decoration: none;
}
.home-intersection-title span{
    color: var(--themed-clr);
}
.home-intersection-subtitle{
    font-family: var(--poppins-font-fam);
    font-weight: 300;
    font-size: 15px;
    color: var(--font-clr);
    text-decoration: none;
}
@media(max-width:769px){
    .home-intersection-title{
        text-align: center;
    }

}







/*sub category*/

.home-subcategory-holder{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    box-sizing: border-box;
}
.home_div2_wrapper_left_arrow,
.home_div2_wrapper_right_arrow{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    border-radius: 50%;
    font-family: var(--poppins-font-fam);
    font-weight: bold;
    font-size: 25px;
    background-color: var(--backgrnd_color);
    cursor: pointer;
    color: var(--font-clr);
}
.home_subcategory_slider{
    width: calc(100% - 100px);
    height: 280px;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    gap: 15px;
    padding: 10px;
    box-sizing: border-box;
}

@media (max-width:769px){
    .home_div2_wrapper_left_arrow,
    .home_div2_wrapper_right_arrow{
        display: none;
    }
    .home_subcategory_slider{
        width: 100%;
        box-sizing: border-box;
    }
}

.home_subcategory_slider {
  -ms-overflow-style: none;       
  scrollbar-width: none;          
}

.home_subcategory_slider::-webkit-scrollbar {
  display: none;                  
}

.home_subcategory_card{
    flex-shrink: 0;
    width: 200px;
    height: 250px;
    border: solid 1px var(--highlighted-clr-4);
    border-radius: 10px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    text-decoration: none;
    gap: 5px;
}
.home_subcategory_card_i{
    width: 200px;
    height: 200px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    object-fit: contain;
    box-sizing: border-box;
}
.home_subcategory_card_span1{
    font-family: var(--poppins-font-fam);
    font-weight: bold;
    font-size: 14px;
    color: var(--font-clr);
    text-decoration: none;
}
.home_subcategory_card_span2{
    font-family: var(--poppins-font-fam);
    font-weight: bold;
    font-size: 10px;
    color: var(--faded-font-clr);
    text-decoration: none;
}

/*featured products*/
.product_div{
    margin-top: 10px;
    width: 100%;
    height: auto;
    background-color: var(--backgrnd_color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
}

.product_container{
    height: auto;
    display: grid; 
    gap: 10px; 
    padding: 10px;
    box-sizing: border-box;
}

@media (min-width: 1069px) {
    .product_container {
        grid-template-columns: repeat(5, 1fr); 
    }
}
@media (min-width: 801px) and (max-width: 1068px) {
    .product_container {
        grid-template-columns: repeat(4, 1fr); 
    }
}

@media (min-width: 601px) and (max-width: 800px) {
    .product_container {
        grid-template-columns: repeat(3, 1fr); 
    }
}


@media (max-width: 600px) {
    .product_container {
        grid-template-columns: repeat(2, 1fr); 
    }
}


.product_card{
    position: relative;
    width: 100%;
    height: auto;
    background-color: var(--backgrnd_color);
    border: solid 1px var(--highlighted_zones);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 5px;
    gap: 5px;
    overflow: hidden;
    box-sizing: border-box;
}
.product_discount_span{
    position: absolute;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--backgrnd_color);
    border: solid 1px var(--highlighted-clr-4);
    border-radius: 50%;
    font-family: var(--poppins-font-fam);
    color: var(--faded-font-clr);
    font-weight: bold;
    font-size: 10px;
    z-index: 50;
    top: 7px;
    right: 7px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


.product_card:hover{
    background-color: var(--blue-theme-background);
}
.product_img_div{
    width: 100%;
    height: 60%;
    overflow: hidden; 
    box-sizing: border-box;
}

.product_img{
    width: 100%;
    height: auto;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    object-fit:contain;
}

.product_info_div{
    width: 100%;
    height: 40%; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.product_title{
    font-family: var(--poppins-font-fam);
    font-weight: bold;
    font-size: 14px;
    color: var(--font-clr);
    width: 100%;
    margin: 0;
    text-align: left;
    box-sizing: border-box;
}
.product_pricing_div{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.product_price_before{
    font-family: var(--poppins-font-fam);
    font-weight: bold;
    font-size: 14px;
    color: var(--faded-font-clr);
    text-decoration: line-through;
}
.product_price_after{
    font-family: var(--poppins-font-fam);
    font-weight: bold;
    font-size: 14px;
    color: var(--font-clr);
}
.product_stock_div{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}
.product_stock_p{
    font-family: var(--poppins-font-fam);
    font-weight: 300;
    font-size: 12px;
    color: var(--font-clr);
}

.product_socials_div{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.product_stock_div i{
    font-size: 12px;
    color: var(--faded-font-clr);
}
.product-review-div{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
}
.product-review-div span{
    font-family: var(--poppins-font-fam);
    font-weight: 300;
    font-size: 12px;
    color: var(--font-clr);
}
.product-review-div i{
    font-size: 12px;
    color: green;
}


@media (min-width: 769px) and (max-width: 1268px){
    .product_card{
        width: 95%;

    }
   
    .product_price_before{
        font-size: 14px;
    }
    .product_price_after{
        font-size: 14px;
    }
    .product_stock_p{
        font-size: 12px;
    }
    .product_title{
        font-size: 12px;
    }
    .product-review-div span{
        font-size: 12px;
    }
}

@media (min-width: 569px) and (max-width: 768px){
    .product_container{
        gap: 5px;
        padding: 0;
    }
    .product_info_div{
        gap: 3px;
    }
    .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;
    }
    .product-review-div span{
        font-size: 1.8vw;
    }
    .product-review-div i{
        font-size: 1.8vw;
    }
}

@media(max-width:568px){
    .product_container{
        gap: 5px;
        padding: 0;
    }
    
    .product_info_div{
        gap: 3px;
    }
    .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;
    }
    .product-review-div span{
        font-size: 10px;
    }
    .product-review-div i{
        font-size: 10px;
    }
}

/*USER REVIEWS*/
.home-client-reviews{
    width: 100%;
    height: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.home-client-reviews-subtitle{
    font-family: var(--poppins-font-fam);
    font-weight: 400;
    font-size: 15px;
    color: var(--font-clr);
    text-align: center;
    margin-top: 20px;
}
.home-client-reviews-subtitle i{
    color: var(--green-theme);
}
.home-client-reviews-subtitle span{
    font-weight: bold;
}


.home-client-reviews-slider-holder{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding: 10px;
    box-sizing: border-box;
}
#home-client-reviews-left,
#home-client-reviews-right{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    border-radius: 50%;
    font-family: var(--poppins-font-fam);
    font-weight: bold;
    font-size: 30px;
    background-color: var(--backgrnd_color);
    cursor: pointer;
    color: var(--font-clr);
}
#home-client-reviews-slider{
    width: calc(100% - 100px);
    height: 230px;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 10px;
    box-sizing: border-box;
}

@media (max-width:769px){
    #home-client-reviews-left,
    #home-client-reviews-right{
        display: none;
    }
    #home-client-reviews-slider{
        width: 100%;
        box-sizing: border-box;
    }
}

#home-client-reviews-slider {
  -ms-overflow-style: none;       
  scrollbar-width: none;          
}

#home-client-reviews-slider::-webkit-scrollbar {
  display: none;                  
}

.home-client-reviews-card{
    flex-shrink: 0;
    width: 250px;
    height: 200px;
    border: solid 1px var(--highlighted-clr-4);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.home-client-reviews-card-span1{
    font-family: var(--poppins-font-fam);
    font-size: 12px;
    font-weight: bold;
    color: var(--font-clr);
    text-decoration: none;
}
.home-client-reviews-card-span1 i{
    color: var(--green-theme);
}
.home-client-reviews-card-span2{
    font-family: var(--poppins-font-fam);
    font-size: 10px;
    font-weight: 300;
    color: var(--faded-font-clr);
    text-decoration: none;
}

.home-client-reviews-card-p{
    width: 100%;
    height: 70%;
    overflow-y: auto;
    font-family: var(--poppins-font-fam);
    font-size: 12px;
    font-weight: 300;
    color: var(--font-clr);
    text-decoration: none;
}
.home-client-reviews-card-span3{
    width: 100%;
    font-family: var(--poppins-font-fam);
    font-size: 10px;
    font-weight: 300;
    color: var(--faded-font-clr);
    text-decoration: none;
    text-align: right;
}


