/**
 * SHOP BJ - Styles pour la nouvelle barre de recherche transparente
 */

/* Style de la barre de recherche globale */
.global-search-bar {
    background-color: transparent;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    padding: 10px 0;
    z-index: 100;
    box-shadow: none;
}

/* Conteneur du champ de recherche */
.search-input-container {
    max-width: 600px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Champ de saisie */
.search-input {
    border: 1px solid #ced4da;
    border-right: none;
    height: 48px;
    padding-left: 15px;
    background-color: rgba(255, 255, 255, 0.9);
}

.search-input:focus {
    box-shadow: none;
    border-color: var(--primary-color);
    background-color: white;
}

/* Bouton de recherche */
.search-button {
    border-radius: 0 5px 5px 0;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 500;
    background-color: var(--primary-color);
}

.search-button:hover {
    background-color: var(--primary-dark);
}

/* Ajustements pour les écrans mobiles */
@media (max-width: 767.98px) {
    .search-input-container {
        max-width: 100%;
    }
    
    .search-input {
        height: 42px;
    }
}
