body {
    margin:0;
    font-family: 'Segoe UI', Arial;
    background:#f4f4f4;
}

/* HEADER */
.top-header{
    background:#ff6a00;
    display:flex;
    align-items:center;
    padding:10px 20px;
    color:white;
}

.logo{
    font-size:24px;
    font-weight:bold;
}

.search-box{
    flex:1;
    margin:0 20px;
    padding:8px;
    border:none;
    border-radius:4px;
}

nav a{
    color:white;
    margin-left:15px;
    text-decoration:none;
}

/* BANNER */
.banner{
    width:100%;
    height:220px;
    background:url('../images/banner.jpg') center/cover;
}

/* PRODUCTS */
.products{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
    gap:15px;
    padding:20px;
}

.product{
    background:white;
    border-radius:6px;
    padding:10px;
    text-align:center;
}

.product img{
    width:100%;
    height:160px;
    object-fit:cover;
}

.price{
    color:green;
    font-weight:bold;
}

button{
    background:#ff6a00;
    border:none;
    padding:8px;
    color:white;
    width:100%;
    border-radius:4px;
}

/* FOOTER */
.footer{
    background:#222;
    color:white;
    padding:20px;
}

.footer-cols{
    display:flex;
    justify-content:space-between;
}
