body{
    font-family: Arial;
    margin:0;
    background:#f2f2f2;
}

/* HEADER */
header{
    background:#000;
    color:white;
    text-align:center;
    padding:20px;
}

/* NAV */
nav ul{
    display:flex;
    justify-content:center;
    background:#222;
    padding:10px;
}

nav li{
    list-style:none;
    margin:0 15px;
    color:white;
}

/* BUSCADOR */
#buscador{
    display:block;
    margin:20px auto;
    padding:10px;
    width:300px;
}

/* CATÁLOGO */
.catalogo{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
}

.producto{
    background:white;
    margin:15px;
    padding:15px;
    width:200px;
    text-align:center;
    border-radius:10px;
    box-shadow:0 5px 10px rgba(0,0,0,0.2);
    transition:0.3s;
}

.producto:hover{
    transform:scale(1.05);
}

.producto img{
    width:100%;
}

.producto button{
    background:black;
    color:white;
    border:none;
    padding:10px;
    cursor:pointer;
}

/* CARRITO */
.carrito{
    background:white;
    margin:20px;
    padding:20px;
    border-radius:10px;
}

.carrito ul{
    list-style:none;
    padding:0;
}

.carrito li{
    margin:10px 0;
}

/* BOTONES */
button{
    margin:5px;
    padding:10px;
    cursor:pointer;
}