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


.col-4{
    flex-basis: 22%;
    margin-bottom: 30px;
    transition: transform 0.5s;
}
.col-4 img{
    width: 90%;
}
.col-4 p{
    font-size: 16px;
}
.col-4:hover{
    transform: translateY(-5px);
}


.user-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30%;
    box-sizing: border-box;
    overflow: auto;
}
.user-info img{
    width: 80%;
    border: 1px solid #555;
    margin: auto;
}
.container-inner {
    display: flex;
    flex-direction: column;
    justify-content: start;
    width: 50%;
    overflow: auto;
}
.post-description {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    border: 1px solid #555;
    background-color: #948b4f;
    box-sizing: border-box;
    overflow: auto;
}
.post-content {
    justify-content: left;
    align-items: center;
    box-sizing: border-box;
    overflow: auto;
    padding-top: 10px;
}



.navbar{
    display: flex;
    align-items: center;
    padding: 20px;
    margin-left: -30px;
}
.logo{
    margin-right: 50px;
}
nav{
    flex: 1;
    text-align: right;
}
nav ul{
    display: inline-block;
    list-style-type: none;
}
nav ul li{
    display: inline-block;
    margin-right: 20px;
}
a{
    text-decoration: none;
    color: #dfd8d8;
}
.col-1 a{
    color: #555
}
p{
    color: #948b4f;
}
.col-1{
    margin-bottom: -200px;
}
.col-2 h1{
    color: #121212;
}
.col-1 p{
    color: #555;
    text-align: left;
}
.header p{
    color: #dfd8d8;
}
h2{
    color: #948b4f;
}
h3{
    color: #555;
    font-size: 16px;
}
.containter{
    max-width: 1280px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 25px;
}
.row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.col-1{
    padding-bottom: 300px;
}
.col-2{
    flex-basis: 50%;
    min-width: 300px;
}
.col-2 img{
    max-width: 100%;
    padding: 50px 0;
}
.col-2 h1{
    font-size: 50px;
    line-height: 60px;
    margin: 25px 0;
    text-shadow: -1px 0 #555, 0 1px #555, 1px 0 #555, 0 -1px #555;
}
.btn{
    display: inline-block;
    background: #948b4f;
    color: #fff;
    padding: 8px 30px;
    margin: 30px 0px;
    border-radius: 30px;
    transition: background 0.5s;
}
.btn:hover{
    background: #563434;
}

.header{
    background: radial-gradient(#7e7b7b,#000000);
}
.header .row{
    margin-top: 30px;
}
.categories{
    margin: 70px 0;
}

.small-container{
    max-width: 1080px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}
.small-container h2{
    font-size: 24px;
}

.title{
    text-align: center;
    position: relative;
    line-height: 60px;
    color: #555;
    margin: 0 auto 70px;
}
.title::after{
    content: '';
    background: #948b4f;
    width: 80px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

h4{
    color: #555;
    font-weight: normal;
}
.col-3{
    flex-basis: 30%;
    margin-bottom: 30px;
    transition: transform 0.5s;
}
.col-3 img{
    width: 90%;
}
.col-3 p{
    font-size: 14px;
}
.col-3:hover{
    transform: translateY(-5px);
}



/*-------- footer --------*/
.footer{
    background: #000;
    color: #8a8a8a;
    font-size: 14px;
    padding: 60px 0 20px;
}
.footer p{
    color: #8a8a8a;
}
.footer h2{
    color: #fff;
    font-size: 30px;
    margin-bottom: 20px;
}

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



/*-------- single product details --------*/
.single-product{
    margin-top: 80px;
}
.single-product .col-2 img{
    padding: 0;
}
.single-product .col-2{
    padding: 20px;
}
.single-product h4{
    margin: 20px 0;
    font-size: 22px;
    font-weight: bold;
}
.single-product select{
    display: block;
    padding: 10px;
    margin-top: 20px;
}
.single-product input{
    width: 50px;
    height: 40px;
    padding-left: 10px;
    font-size: 20px;
    margin-right: 10px;
    border: 1px solid #948b4f;
}
input:focus{
    outline: none;
}
.single-product .fa{
    color: #948b4f;
    margin-left: 10px;
}

.small-img-row{
    display: flex;
    justify-content: space-between;
}
.small-img-col{
    flex-basis: 24%;
    cursor: pointer;
}

img[src*="https://cdn.000webhost.com/000webhost/logo/footer-powered-by-000webhost-white2.png"] {
    display: none;
}


/*-------- media query for menu --------*/
@media only screen and (max-width: 800px){

    nav ul{
        position: static;
        top: 70px;
        left: 0;
        background: #333;
        width: 100%;
        overflow: hidden;
        transition: max-height 0.5s;
    }
    nav ul li{
        display: block;
        margin-right: 50px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    nav ul li a{
        color: #fff;
    }
    .menu-icon{
        display: block;
        cursor: pointer;
    }
}

/*---media query for responsive screen size---*/

@media only screen and (max-width: 768px){
    .row{
        text-align: center;
    }
    .col-2, .col-3, .col-4{
        flex-basis: 47%;
    }
    .single-product .row{
        text-align: left;
    }
    .single-product .col-2{
        padding: 20px 0;
    }
    .single-product h1{
        font-size: 26px;
        line-height: 32px;
    }

    .cart-info p{
        display: none;
    }
}

@media only screen and (max-width: 480px){
    .row{
        text-align: center;
    }
    .col-2, .col-3, .col-4{
        flex-basis: 47%;
    }
    .single-product .row{
        text-align: left;
    }
    .single-product .col-2{
        padding: 20px 0;
    }
    .single-product h1{
        font-size: 26px;
        line-height: 32px;
    }

    .cart-info p{
        display: none;
    }
}

@media only screen and (max-width: 359px){
    .row{
        text-align: center;
    }
    .col-2, .col-3, .col-4{
        flex-basis: 90%;
    }
    .single-product .row{
        text-align: left;
    }
    .single-product .col-2{
        padding: 20px 0;
    }
    .single-product h1{
        font-size: 26px;
        line-height: 32px;
    }

    .cart-info p{
        display: none;
    }
}










