: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:#F46530;
    --themed-clr-2:#f18e55;
    --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;
}



.shop-main{
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
}
.shop-burner{
    width: 100%;
    height: 20vh;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    background-color: var(--background-clr);
}
.shop-burner-content{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
}
.shop-burner-content-span1{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    box-sizing: border-box;
}
.shop-burner-content-span1 a{
    font-family: var(--poppins-font-fam);
    font-weight: bold;
    font-size: 16px;
    color: var(--font-clr);
    text-decoration: none;
    cursor: pointer;
}
.shop-burner-content-span1 i{
    font-size: 16px;
    color: var(--font-clr);
}
.shop-burner-content-span1 a:hover{
    color: var(--themed-clr);
}
.shop-burner-content-span2{
    font-family: var(--lora-font-fam);
    font-weight: bold;
    font-size: 25px;
    color: var(--faded-font-clr);
    text-decoration: none;
}
.shop-burner-content-span2 span{
    color: var(--themed-clr);
}
.shop-burner-img{
    width: 30%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
@media(max-width:769px){
    .shop-burner{
        background-color: var(--highlighted-clr-3);
    }
    .shop-burner-img{
        display: none;
    }
}

.shop-body{
    margin-top: 20px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    box-sizing: border-box;
}
.shop-sidebar{
    width: 20%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    padding: 10px;
    box-sizing: border-box;
}


.shop-sidebar-header{
    width: 100%;
    padding-bottom: 5px;
    border-bottom: solid 2px var(--faded-font-clr);
    font-family: var(--poppins-font-fam);
    font-weight: bold;
    font-size: 16px;
    color: var(--font-clr);
    text-decoration: none;
}
.sidebar-group{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 7px;
    box-sizing: border-box;
}
.shop-sidebar-category{
    width: 100%;
}
.shop-sidebar-category button{
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    font-family: var(--poppins-font-fam);
    font-weight: 300;
    font-size: 14px;
    color: var(--font-clr);
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
}
#active button{
    padding: 2px;
    background-color: var(--green-theme2);
    border-radius: 5px;
}
.shop-sidebar-category button i{
    margin-right: 3px;
}
.shop-sidebar-category button:hover{
    color: var(--themed-clr);
}

.shop-mainbar{
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
}
.shop-mainbar-top{
    order: 1;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    box-sizing: border-box;
    background-color: var(--blue-theme-background);
}
.shop-mainbar-top-span1{
    font-family: var(--poppins-font-fam);
    font-weight: 300;
    font-size: 14px;
    color: var(--font-clr);
    text-decoration: none;
}


@media(min-width:770px){
    .shop-sidebar{
        position: sticky;
        top: 50px;
    }
}


@media(max-width:769px){
    .shop-body{
        flex-direction: column;
    }
    
    .shop-sidebar{
        width: 100%;
        padding: 5px;
    }
    .sidebar-group{
        flex-direction: row;
        gap: 5px;
        overflow-x: auto;
    }
    .shop-mainbar{
        width: 100%;
    }
    .shop-sidebar-header span{
        font-size: 12px;
    }
    .shop-sidebar-category button i{
        font-size: 12px;
       
    }
    .shop-sidebar-category button{
        font-size: 12px;
        margin: 0;
    }
    .shop-mainbar-top-span1{
        font-size: 12px;
    }

}

/*product box*/

/*featured products*/
.product_div{
    order: 2;
    margin-top: 10px;
    width: 100%;
    height: auto;
    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(4, 1fr); 
    }
}
@media (min-width: 801px) and (max-width: 1068px) {
    .product_container {
        grid-template-columns: repeat(3, 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;
    }
}



/*pagination*/
.pagination-holder{
    order: 3;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    box-sizing: border-box;
}
.pagination-holder button {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    color: var(--faded-font-clr);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
    outline: none;
    border: none;
    box-sizing: border-box;
}
.pagination-holder button:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}
.pagination-holder button.active{
    background-color: orange;
    color: white;
}














