*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.navbar
{
    display: flex;
    align-items: center;
    padding: 20px;
}
nav{
    flex: 1;
    text-align: right;
}
nav ul{
    display: inline-block;
    list-style-type: none;
}
nav ul li{
    display: inline-block;
    margin-right: 25px;
    font-size: large;
}
a{
    text-decoration: none;
    color: #252726;
}
p{
    color: #555;
}
.container{
    max-width: 1350px;
    margin: auto;
    padding-left: 25px;
    padding-right: 30px;
}
.row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}
.col-2{
    flex-basis: 50%;
    min-width: 300px;
}
.col-2 img{
    max-width: 100%;
    padding: 50px 0;
}
.col-2 h1{
    font-size: 40px;
    line-height: 60px;
    margin: 25px 0;
}
.btn{
    display: inline-block;
    background: #e28b54;
    color: #fff;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    transition: background 0.5s;
}
.btn:hover{
    background: #5e6f7d;
}
/* .header{
    background: radial-gradient(#fff, #93c8dc);
} */
.header .row{
    margin-top: 0px;
}
.categories{
    margin: 0px 0;
}
.col-3{
    flex-basis: 30%;
    min-width: 250px;
    margin-bottom: 30px;
}
.col-3 img{
    width: 96%;
}
.small-container{
    max-width: 1450px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}
.col-4{
    flex-basis: 25%;
    padding: 10px;
    min-width: 200px;
    margin-bottom: 50px;
    transition: transform 0.5s;
}
.col-4 img{
    width: 100%;
}
.title{
    text-align: center;
    margin: 0 auto 35px;
    position: relative;
    line-height: 60px;
    color: #675050;
}
.title::after{
    content: '';
    background: #ee8849;
    width: 80px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.h4{
    color: #555;
    font-weight: normal;

}
.col-4 p{
    font-size: 18px;
}
.col-4 :hover{
    transform: translateY(-5px);
}
.offer{
    background: radial-gradient(#b2b4b5, #373747);
    margin-top: 80px;
    padding: 30px 0;
}
.col-2 .offer-img{
    
    max-width: 630px;
    padding: 50px 0;
}
small{
    color: rgb(229, 224, 222);
}
.footer{
    width: 100%;
    background: #000;
    color: #8a8a8a;
    font-size: 14px;
    padding: 10px 0 10px;
}
.footer p{
    color: #8a8a8a;
}
.footer h3{
    color: #b1aeae;
    margin-bottom: 20px;
}
.footer-col-1, .footer-col-2, .footer-col-3, .footer-col-4{
    min-width: 250px;
    margin-bottom: 20px;
}
.footer-col-1{
    flex-basis: 30%;
    
}
.footer-col-2{
    flex-basis: 1;
    text-align: center;

}
.footer-col-2 img{
    width: 195px;
    margin-bottom: 20px;
}
.footer-col-3, .footer-col-4{
    flex-basis: 12%;
    text-align: center;
}
ul{
    list-style-type: none;
}
.app-logo{
    margin-top: 20px;
}
.app-logo img{
    width: 140px;
}
.footer hr{
    border: none;
    background: #8e8787;
    height: 1px;
    margin: 9px 0;
}
.copyright{
    font-size: 9.8px;
    text-align: center;
    background: #000;
}
.menu-icon{
    width: 28px;
    margin-left: 20px;
    display: none;
}
.single-product{
    background: radial-gradient(#dfdcdc, #0a0a0b);
}
.single-product .col-2 img{
    padding: 0;
}
.single-product .col-2{
    padding: 100px;
}
.single-product h4{
    margin: 0px;
    font-size: 25px;
    font-weight: bold;
}
.single-product select{
    background-color: #c6c4c4;
    color: #201f1f;
    display: block;
    padding: 10px;
    margin: 20px;
}
.single-product input{
    width: 50px;
    height: 40px;
    padding-left: 10px;
    font-size: 20px;
    margin-right: 10px;
    border: 1px solid #ff523b;
}
input:focus{
    outline: none;
}
.small-img-row{
    display: flex;
    justify-content: space-between;
}
.small-img-col{
    flex-basis: 24%;
    cursor: pointer;
}
.cart-page{
    margin: 80ps auto;
}
table{
    width: 100%;
    border-collapse: collapse;
}
.cart-info{
    display: flex;
    flex-wrap: wrap;
}
th{
    text-align: left;
    padding: 5px;
    color: #0e0e0e;
    background: #8a8a8a;
    font-weight: normal;
}
td{
    padding: 10px 5px;
}
td input{
    width: 40px;
    height: 30px;
    padding: 5px;
}
td a{
    color: #111212;
    font-size: 12px;
}
td img{
    width: 190px;
    height: 200px;
    margin-right: 10px;
}
.total-price{
    display: flex;
    justify-content: flex-end;
}
.total-price table{
    border-top: 3px solid #0d0c0c;
    width: 100%;
    max-width: 478px;
}
td :last-child{
    text-align: right;
}
th :last-child{
    text-align: right;
}
.account-page{
    padding: 50px 0;
    background: radial-gradient(#261a1a, #090909);
}
.form-container{
    background: #fff;
    width: 300px;
    height: 400px;
    position: relative;
    text-align: center;
    padding: 20px 0;
    margin: auto;
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.1);
}
.form-container span{
    font-weight: bold;
    padding: 0 10px;
    color: #555;
    cursor: pointer;
    width: 100px;
    display: inline-block;
}
.form-btn {
    display: flex;
    justify-content: space-around;
    position: relative;
    margin: 10px 0 30px;
}
.form-btn :focus{
    outline: none;
}
.form-container form{
    max-width: 300px;
    padding: 0 20px;
    position: absolute;
    top: 110px;
}
form input{
    width: 100%;
    height: 30px;
    margin: 10px 0;
    padding: 0 10px;
    border: 1px solid #ccc;
}
.form-btn span {
    font-weight: bold;
    cursor: pointer;
    padding: 10px 30px;
}

#indicator {
    width: 100px;
    height: 1px;
    background: #a39290;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.4s ease;
}



@media only screen and (max-width: 800px){
    nav ul{
        position: absolute;
        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 only screen and (max-width: 600px){
    .row{
        text-align: center;
    }
    .col-2, .col-3, .col-4{
        flex-basis: 100%;
    }
    /* .cart-info p{
        display: none;
    } */
   
}

