/* Header Search Styles */
.header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.header-search {
    flex: 1;
    max-width: 400px;
}

.header-search-form {
    display: flex;
    gap: 0.5rem;
}

.header-search-input {
    flex: 1;
    padding: 0.5rem 1rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.header-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.header-search-btn {
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.header-search-btn:hover {
    background: #2980b9;
}

@media (max-width: 968px) {
    .header-search {
        order: 3;
        flex: 1 1 100%;
        max-width: none;
    }
}
