:root {
    --mocha: #7B4B3A;
    --caramel: #C69C6D;
    --crema: #E8CBAF;
    --marrón: #A76D4D;
    --beige: #F5E1A4;
}
body { font-family: 'Montserrat', sans-serif; background: linear-gradient(to bottom, var(--crema), var(--beige)); color: var(--mocha); margin: 0; }
header { background: var(--marrón); padding: 1rem; display: flex; justify-content: space-between; }
nav ul { display: flex; list-style: none; gap: 1rem; }
nav a { color: var(--crema); text-decoration: none; }
#hero { text-align: center; padding: 4rem; background: var(--mocha); color: var(--crema); }
.productos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; padding: 2rem; }
.producto { background: var(--crema); padding: 1rem; border-radius: 10px; text-align: center; box-shadow: 0 4px 8px rgba(0,0,0,0.1); transition: transform 0.3s; }
.producto:hover { transform: scale(1.05); }
.carrito { position: fixed; right: 2rem; top: 20%; background: var(--caramel); padding: 1rem; width: 300px; border-radius: 10px; display: none; }
button { background: var(--marrón); color: var(--crema); border: none; padding: 0.5rem 1rem; border-radius: 5px; cursor: pointer; }
table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
th, td { border: 1px solid var(--marrón); padding: 0.5rem; text-align: left; }
iframe { margin: 1rem; max-width: 100%; }
@media (max-width: 768px) { .productos-grid { grid-template-columns: 1fr; } }
