/* Estilos para la página de búsqueda */

/* Encabezado de la página */
.page-header {
    background: linear-gradient(135deg, #1976d2 0%, #4fc3f7 100%);
    color: #fff;
    padding: 2rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1rem;
}

/* Estilos para mensajes de no resultados */
.no-results {
    text-align: center;
    padding: 3rem 1rem;
    background: #f9f9f9;
    border-radius: 10px;
    margin: 2rem auto;
    max-width: 800px;
}

.no-results p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.no-results ul {
    list-style-position: inside;
    text-align: left;
    max-width: 500px;
    margin: 1rem auto;
    color: #666;
}

.no-results li {
    margin-bottom: 0.5rem;
}

/* Rejilla de productos */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .page-header {
        padding: 1.5rem 0;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
}
