/* Header Search Form - Expanded permanently in top row */
.search-form-header {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.search-form-header:focus-within {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-color: var(--primary);
}

/* Icon Button */
.search-btn {
    background: transparent;
    border: none;
    width: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary);
    transition: color 0.2s;
    padding: 0;
    flex-shrink: 0;
}

.search-btn i {
    font-size: 1.1rem;
}

/* Input Styles */
.search-input {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 0.95rem;
    outline: none;
    width: calc(100% - 40px);
    height: 100%;
    padding-left: 1.25rem;
    color: var(--dark);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .header-search-container {
        width: 100%;
        margin-top: 10px;
    }

    .header-top {
        flex-direction: column;
        align-items: flex-start;
    }
}