/*  Buscador de productos – Ferretería Omega */

.search-products {
    max-width: 500px;
    margin: 1.5rem auto;
}

.search-products form {
    display: flex;
    align-items: center;
    border: 1px solid #e0e4ff;
    border-radius: 50px;
    overflow: hidden;
    background-color: #ffffff;
    transition: box-shadow 0.3s ease;
}

.search-products form:focus-within {
    box-shadow: 0 0 0 3px rgba(30, 45, 191, 0.2);
}

.search-products input.form-controls {
    flex: 1;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 15px;
    outline: none;
    color: #121a77;
}

.search-products button {
    background: transparent;
    border: none;
    padding: 0.75rem 1rem;
    color: #121a77;
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-products button:hover {
    color: #e36414;
}

/*  Sugerencias */
#searchSuggestions {
    background: #fff;
    border: 1px solid #e0e4ff;
    border-radius: 10px;
    margin-top: 4px;
    overflow: hidden;
}

#searchSuggestions a {
    font-size: 14px;
    color: #121a77;
    transition: background-color 0.2s ease;
}

#searchSuggestions a:hover {
    background-color: rgba(249, 115, 22, 0.05);
    color: #e36414;
}

#searchSuggestions span {
    color: #e36414;
    font-weight: 600;
}

/*  efecto visual cuando cambian los productos*/
#store-container {
    transition: opacity 0.3s ease;
}