:root{
    --color-primary:#00b53f;
    --color-primary2: #00831e;
    --color-secondary: #fea03c;
    --default-font: "Roboto",  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";
    --heading-font: "Nunito",  sans-serif;
    --nav-font: "Inter",  sans-serif;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--heading-font);
}

body{
    background-color: #f8f9fa;
}

.mainPage .header{
    background: linear-gradient(160.29deg,var(--color-primary) .67%, var(--color-primary2) 100.93%);
    padding: 0;
}

.mainPage .topmost{
    background-color: var(--color-primary);
}


.mainPage .topmost .menus h4{
    display: inline-block;
    margin: 20px;
}




.mainPage  .searchBar input{
    width: 450px;
    padding:15px;
    border-radius: 5px;
    border: 1px solid #ccc;

}

.mainPage .searchBar svg{
    transform: translatex(-40px);
    font-size: 20px;
}

.orange{
    background-color: var(--color-secondary);
    color: white;
}
.ca-text-secondary{
    color: var(--color-secondary);
}
.ca-text-primary{
    color: var(--color-primary);
}

.ca-bg-secondary{
    background-color: var(--color-secondary);
}
.ca-bg-primary{
    background-color: var(--color-primary);
}


.products .img{
    width: 219px;
    height: 218px;
}

.cat .left img{
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

.mainPage .left{
    display: flex;
}

.cat .left .cat-name{
    font-size:13px;
}
.cat .left .no-of-ads{
    font-size:10px;
}

.ca-bg-indigo{
    background-color: var(--bs-indigo);
    color: white;
}
.ca-bg-blue{
    background-color: var(--bs-blue);
    color: white;
}
.ca-bg-red{
    background-color: var(--bs-red);
    color: white;
}
.ca-bg-green{
    background-color: var(--bs-green);
    color: white;
}
.ca-bg-orange{
    background-color: var(--bs-orange);
    color: white;
}
.ca-bg-purple{
    background-color: var(--bs-purple);
    color: white;
}
.ca-text-indigo{
color:var(--bs-indigo);
}
.ca-text-blue{
color:var(--bs-blue);
}
.ca-text-red{
color:var(--bs-red);
}
.ca-text-green{
color:var(--bs-green);
}
.ca-text-orange{
color:var(--bs-orange);
}
.ca-text-purple{
color:var(--bs-purple);
}

.topIcons{
    width: 30px;
    height: 30px;
    background-color: #d2d7db;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 10px;
}


.products .card-title{
    font-size: 15px;
    font-weight: 500px;
}
.products .card-text{
    font-size: 13px;
    font-weight: bold;
    color: var(--color-primary);
}

.products .card-body svg{
    font-size: 15px;
}

.categoriesPage .categoriesName{
    padding: 15px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 5px;
}

#mainCarousel .carousel-item img{
    width: 100%;
    height: 300px;
}

.productPage .productName{
    line-height: 1.4em;
    max-height: 2.6em;
    overflow: hidden;
    font-size: 26px;
    font-weight: bold;
    color: #464b4f;
}

.productPage  .promotedIn{
    font-size: 13px;
    color: #464b4f;
}

.productPage .promotedIn{
    font-size: 12px;
}
.productPage .promotedIn strong{
    padding:5px;
    font-size: 10px;
}

.productPage .views{
    font-size: 13px;
    color: #464b4f;
}

.productPage .description{
    font-size: 15px;
    line-height: 1.6em;
    color: #464b4f;
}

.productPage .attribute .attr-value{
    font-size: 17px;
    color: black;
}
.productPage .attribute .attr-key{
    font-size: 14px;
    color: grey;
}

.productPage .showSocial a{
    padding: 5px;
    border-radius: 5px;
    margin: 0 5px;
}
.productPage .showSocial a svg{
    font-size: 20px;
}

.productPage .productImages .productImage{
    width:100px;
    height:100px;
    border-radius: 10px;
}

@media (max-width:780px){
    body{
        font-size: 14px;
    }
    .mainPage .left{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .left > div{
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
    }
    .dgap{
        gap: 15px;
        display: flex;
        justify-content: center;
    }

    .cat{
        justify-content: center !important;
        border: 1px solid grey;
    }
    .cat .left img{
        width: 75px;
        height: 75px;
        margin-right: 5px;
    }
    .cat .left .cat-name{
        font-size:13px;
        text-align: center;
    }
    .cat .left .no-of-ads{
        display: none;
    }

    .cat .fa-angle-right{
        display: none;
    }

   .mainPage .searchBar input{
    width: 300px;
   }
}