body{
    margin:0;
    font-family: Arial;
    background:#ebebeb;
}

/* HEADER AMARILLO */
.header{
    background:#ffe600;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 20px;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:bold;
}

.logo img{
    width:40px;
}

/* SEARCH */
.search-bar{
    display:flex;
    flex:1;
    margin:0 20px;
}

.search-bar input{
    width:100%;
    padding:10px;
    border:none;
    outline:none;
}

.search-bar button{
    padding:10px;
    border:none;
    background:white;
    cursor:pointer;
}

/* NAV */
.nav a{
    margin-left:15px;
    text-decoration:none;
    color:black;
    font-size:14px;
}

/* BANNER */
.banner{
    background:white;
    margin:15px;
    padding:30px;
    border-radius:10px;
    text-align:center;
}

/* PRODUCTOS */
.productos{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
    gap:15px;
    padding:20px;
}

.card{
    background:white;
    padding:15px;
    border-radius:10px;
    transition:0.2s;
}

.card:hover{
    transform:scale(1.03);
}

.card span{
    display:block;
    margin-top:10px;
    font-weight:bold;
    color:green;
}