body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f9fafb;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #1F2A44;
    color: #fff;
}

.menu {
    display: none;
}

.acciones a {
    margin-left: 1rem;
    color: #fff;
    text-decoration: none;
}

/* Móvil */
@media (max-width: 768px) {
    .menu {
        display: none;
    }

    .acciones {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }
}

/* Desktop */
@media (min-width: 769px) {
    .menu {
        display: flex;
        gap: 1rem;
    }
}
#modalProducto {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
    padding: 1rem;
}

#modalProducto.flex {
    display: flex;
}

#contenedorModal {
    background: #0c0d10;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}