*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    background-color: #3F3F3F;
    color: #FFF;
}

.container{
    max-width: 1080px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;

}

h1{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 40px;
    line-height: 1.5;
    font-weight: 600;
    color: #FFF;
}
h2{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 600;
    color: #FFF;
}

h3{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    color: #FFF;
}

a{ 
    text-decoration: none;
    color: #FFF;
}

.smartphone{
    width: 28px;
    margin-left: 20px;
    display: none;
}

.row{
    align-items: center;
    position: center;
}

/*-----------------Featured Categories-----------------*/

.categories{
    margin: 70px 0;
}

/*------column 1 design------*/

.col-1{
    display: grid;
    place-items: center;
    max-width: 1080px;
    flex-basis: 30%;
    min-width: 250px;
    margin-bottom: 30px;
    transition: transform 0.5s;
}


.col-1 img{
    max-width: 400px;
    position: center;
    width: 100%;
}

.small-container{
    max-width: 1080px;
    margin: auto;
    padding-left: 30px;
    padding-right: 30px;

}

/*-----------------responsive menu for smartphones-----------------*/

@media only screen and (max-width: 600px){
    /*General*/
    .row{
        text-align: center;
        align-items: center;
    }
    .col-1{
        flex-basis: 100%;
    }

    /*Footer*/
    .footer-col{
        margin-bottom: 30px;
    }

    .footer-col h3::after{
       position: unset;
    }

    /*Product detail*/
    .single-product .row{
        text-align: left;
    }

    .single-product .col-2{
        padding: 20px 0;
    }

    .single-product h1{
        font-size: 26px;
        line-height: 32px;
    }

    /*Cart*/
    .cart-info p{
        display: none;
    }
}










