/* =========================================
   Beat Bikers - FAQ Search
   ========================================= */

.bb-faq-search-wrapper {
    width: 100%;
    max-width: 390px;
    margin: 0 auto 32px auto;
}

.bb-faq-search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.bb-faq-input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    font-size: 15px;
    font-family: inherit;
    color: #333;
    background: #fff;
    border: 1px solid white;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.bb-faq-input::placeholder {
    color: #878282;
    font-style: italic;
}

.bb-faq-input:focus {
    border-color: #e63946; /* rojo Beat Bikers */
    box-shadow: 0 2px 12px rgba(230,57,70,0.15);
}

.bb-faq-search-icon {
    position: absolute;
    right: 18px;
    color: #e63946;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.bb-faq-search-icon svg{
    fill: white!important;
}

.bb-faq-no-results {
    text-align: center;
    color: #888;
    font-size: 14px;
    margin-top: 16px;
    padding: 5px;
}

/* =========================================
   Ocultar items del acordeón de Elementor
   cuando no coinciden con la búsqueda
   ========================================= */

/* Clase que añadimos via JS a items que NO coinciden */
.bb-faq-hidden {
    display: none !important;
}

/* Highlight del texto encontrado */
.bb-faq-highlight {
    background-color: rgba(230, 57, 70, 0.15);
    border-radius: 2px;
    font-weight: 600;
}
