*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#f5f1ed;
    color:#111;
}

img{
    width:100%;
    display:block;
}

.container{
    padding:16px;
    padding-bottom:100px;
}

/* NAVBAR */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.logo{
    font-size:32px;
    font-weight:bold;
}

.nav-icons{
    display:flex;
    gap:16px;
}

/* HERO */

.hero{
    background:#d9d0c7;
    border-radius:30px;
    overflow:hidden;
    padding:25px;
    margin-bottom:20px;
}

.hero-text{
    margin-bottom:20px;
}

.hero h1{
    font-size:42px;
    line-height:1;
    margin:10px 0;
}

.desc{
    margin:15px 0;
}

.hero button{
    background:black;
    color:white;
    border:none;
    padding:12px 20px;
    border-radius:10px;
}

.hero-image img{
    height:420px;
    object-fit:cover;
    border-radius:20px;
}

/* CATEGORIES */

.categories{
    display:flex;
    gap:12px;
    overflow-x:auto;
    margin-bottom:25px;
}

.category-card{
    min-width:140px;
    position:relative;
}

.category-card img{
    height:170px;
    object-fit:cover;
    border-radius:16px;
}

.category-card p{
    position:absolute;
    bottom:10px;
    left:10px;
    color:white;
    font-weight:bold;
}

/* PRODUCTS */

.section-title{
    margin-bottom:15px;
}

.products{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.product-card{
    background:white;
    border-radius:28px;
    padding:10px;
}

.product-card img{
    height:190px;
    object-fit:cover;
    border-radius:12px;
    margin-bottom:10px;
}

.product-card h3{
    font-size:14px;
}

.product-card p{
    margin-top:5px;
}

/* BOTTOM NAV */

.bottom-nav{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:white;
    display:flex;
    justify-content:space-around;
    padding:12px 0;
    border-top:1px solid #ddd;
}

.bottom-nav div{
    text-align:center;
}

.bottom-nav i{
    font-size:18px;
}

/* TABLET */

@media(min-width:768px){

    .hero{
        display:flex;
        align-items:center;
        gap:30px;
    }

    .hero-text,
    .hero-image{
        flex:1;
    }

    .hero-image img{
        height:550px;
    }

    .products{
        grid-template-columns:repeat(4,1fr);
    }
}