body{
font-family:Arial,sans-serif;
margin:0;
padding:0;
background:#f5f5f5;
}

/* ENCABEZADO */

header{
background:white;
text-align:center;
padding:25px;
border-bottom:3px solid #40E0D0;
}

header h1{
color:#40E0D0;
margin:0;
}

header p{
color:#666;
}

/* MENÚ */

nav{
background:#40E0D0;
padding:15px;
text-align:center;
}

nav a{
color:white;
text-decoration:none;
margin:15px;
font-weight:bold;
}

nav a:hover{
color:#f5f5f5;
}

/* TÍTULOS */

.titulo{
text-align:center;
color:#40E0D0;
margin-top:25px;
}

/* CATEGORÍAS */

.categorias{
text-align:center;
margin:20px;
}

.categorias button{
background:#40E0D0;
color:white;
border:none;
padding:10px 20px;
margin:5px;
border-radius:20px;
cursor:pointer;
font-weight:bold;
}

.categorias button:hover{
background:#2bbfaf;
}

/* PRODUCTOS */

.productos{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
padding:20px;
}

.producto{
background:white;
padding:15px;
border-radius:15px;
text-align:center;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.producto img{
width:100%;
height:220px;
object-fit:cover;
border-radius:10px;
}

.producto h3{
color:#40E0D0;
}

.producto p{
color:#555;
}

button{
background:#40E0D0;
color:white;
border:none;
padding:10px 20px;
border-radius:20px;
cursor:pointer;
}

button:hover{
background:#2bbfaf;
}

/* FORMULARIOS */

input,
textarea{
width:100%;
padding:12px;
margin-top:10px;
margin-bottom:15px;
border:1px solid #ccc;
border-radius:8px;
box-sizing:border-box;
}

/* CONTENEDORES */

.contenedor{
max-width:700px;
margin:30px auto;
background:white;
padding:25px;
border-radius:15px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

/* PIE DE PÁGINA */

footer{
background:white;
text-align:center;
padding:20px;
margin-top:30px;
border-top:3px solid #40E0D0;
}

footer h3{
color:#40E0D0;
}
.contenedor{
max-width:900px;
margin:auto;
padding:20px;
}

#listaCarrito .producto{
margin-bottom:15px;
}

#listaCarrito button{
background:#ff5c5c;
margin-top:10px;
}