.elasticsearch-search-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.search-form-elastic .form-control,
.search-form-elastic .form-select {
    border: none;
    padding: 0.75rem 1rem;
}

.search-input-elastic {
    border-radius: 8px 0 0 8px;
}

.category-filter-elastic {
    max-width: 200px;
}

/* Recherche Elasticsearch */
.elasticsearch-search-wrapper {
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    margin-bottom: 1.5rem;
}

.elasticsearch-search-form {
    width: 100%;
}

.search-group {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
    min-width: 0;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none;
}

.search-input-elastic {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.search-input-elastic:focus {
    outline: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.category-select-elastic {
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background: white;
    font-size: 1rem;
    cursor: pointer;
    min-width: 200px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.category-select-elastic:focus {
    outline: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-search-elastic {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
    transition: all 0.3s ease;
}

.btn-search-elastic:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 87, 108, 0.6);
}

.btn-search-elastic:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .search-group {
        flex-direction: column;
    }
    
    .category-select-elastic {
        min-width: 100%;
    }
    
    .btn-search-elastic {
        width: 100%;
    }
}

.search-bar {
    margin-top: 1rem;
}
