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

body{
    font-family: 'Poppins', sans-serif;
    background:#f8f8f8;
    color:#333;
}

/* CONTAINER */
.container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.small-container{
    max-width:1100px;
    margin:80px auto;
    padding:0 20px;
}

/* NAVBAR */
.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px 0;
}

nav ul{
    list-style:none;
    display:flex;
    gap:25px;
}

nav ul li a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover{
    color:#ff523b;
}

.menu-icon{
    display:none;
    cursor:pointer;
}

/* HEADER */
.header{
    background:radial-gradient(#fff,#ffd6d6);
    padding:60px 0;
}

.row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:40px;
}

.col-2{
    flex:1;
    min-width:300px;
}

.col-2 img{
    width:100%;
    max-width:500px;
}

/* BUTTON */
.btn{
    display:inline-block;
    background:#ff523b;
    color:#fff;
    padding:10px 30px;
    border-radius:30px;
    text-decoration:none;
    margin-top:20px;
    transition:.3s;
}

.btn:hover{
    background:#563434;
}

/* CATEGORY */
.categories img{
    width:100%;
    border-radius:10px;
}

/* PRODUCTS */
.title{
    text-align:center;
    margin-bottom:50px;
    font-size:28px;
    position:relative;
}

.title::after{
    content:'';
    width:80px;
    height:4px;
    background:#ff523b;
    display:block;
    margin:8px auto;
}

.col-4{
    flex:1 1 220px;
    background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    text-align:center;
    transition:.3s;
}

.col-4 img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:10px;
}

.col-4:hover{
    transform:translateY(-8px);
}

.rating span{
    color:#ff523b;
}

/* OFFER */
.offer{
    background:radial-gradient(#fff,#ffd6d6);
    padding:60px 0;
}

.offer-img{
    max-width:350px;
}

/* TESTIMONIAL */
.testimonial .col-3{
    flex:1 1 250px;
    background:#fff;
    padding:30px;
    text-align:center;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
    transition:.3s;
}

.testimonial .col-3:hover{
    transform:translateY(-5px);
}

.testimonial img{
    width:60px;
    border-radius:50%;
    margin-top:15px;
}

/* BRANDS */
.brands{
    margin:80px auto;
}

.col-5{
    flex:1 1 120px;
    text-align:center;
}

.col-5 img{
    width:100px;
    filter:grayscale(100%);
    transition:.3s;
}

.col-5 img:hover{
    filter:grayscale(0%);
    transform:scale(1.1);
}

/* FOOTER */
.footer{
    background:#111;
    color:#bbb;
    padding:60px 0 20px;
}

.footer .row{
    align-items:flex-start;
}

.footer-col-1,
.footer-col-2,
.footer-col-3,
.footer-col-4{
    flex:1 1 220px;
    margin-bottom:30px;
}

.footer h2,
.footer h3{
    color:#fff;
    margin-bottom:15px;
}

.footer ul{
    list-style:none;
}

.footer ul li{
    margin-bottom:8px;
    cursor:pointer;
    transition:.3s;
}

.footer ul li:hover{
    color:#ff523b;
}

.footer img{
    width:120px;
    margin-top:10px;
}

.footer hr{
    border:none;
    background:#333;
    height:1px;
    margin:30px 0;
}

.copy-right{
    text-align:center;
    font-size:14px;
}

/* RESPONSIVE */
@media(max-width:900px){

    nav ul{
        position:absolute;
        top:70px;
        right:0;
        background:#111;
        flex-direction:column;
        width:200px;
        padding:20px;
        display:none;
    }

    nav ul li a{
        color:#fff;
    }

    .menu-icon{
        display:block;
    }

    .row{
        flex-direction:column;
        text-align:center;
    }

    .col-2 img{
        max-width:350px;
    }
}