.productos {
    padding: 40px;
    background-color: #f5f5f5;
}

.contenedor-productos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.producto {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.producto img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.producto .precio {
    font-weight: bold;
    margin: 10px 0;
    color: #22a6b3;
}

.btn-agregar {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.btn-agregar:hover {
    background-color: #0056b3;
}
