/* ===== SEARCH BAR FULL WIDTH ===== */
.search-header {
    width: 100%;
    background-color: #ffffff;
    /* border-bottom: 1px solid #EAECF0; */
}

.search-header .search-wrapper {
    width: 100%;
    position: relative;
}

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

.search-header input {
    width: 100%;
    height: 56px;
    border-radius: 28px;
    padding-left: 56px;
    padding-right: 48px;
    border: 1px solid #D0D5DD;
    background-color: #ffffff;
    font-size: 16px;
    color: #101828;
}

.search-header input:disabled {
    background-color: #ffffff;
    opacity: 1;
}

.search-header .icon-search {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #667085;
    font-size: 16px;
}

.search-header .icon-clear {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #667085;
    font-size: 14px;
    cursor: pointer;
    background: transparent;
    border: 0;
    padding: 0;
    line-height: 1;
}

.search-header .btn-submit {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.search-header .suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #EAECF0;
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(16, 24, 40, 0.08);
    z-index: 20;
    display: none;
    overflow: hidden;
}

.search-header .suggestion-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    text-decoration: none;
    border-bottom: 1px solid #F2F4F7;
    color: #101828;
}

.search-header .suggestion-item:last-child {
    border-bottom: 0;
}

.search-header .suggestion-item:hover {
    background: #F9FAFB;
}

.search-header .suggestion-item.active {
    background: #F2F4F7;
}

.search-header .suggestion-title {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #101828;
    line-height: 1.4;
}

.search-header .suggestion-icon {
    font-size: 14px;
    color: #667085;
    width: 16px;
    text-align: center;
    flex: 0 0 16px;
}

.search-header .suggestion-title strong {
    font-weight: 700;
}

/* ===== RESULT COPY ===== */
.search-result-copy h1 {
    font-size: 28px;
    font-weight: 700;
    color: #101828;
}

.search-result-copy p {
    font-size: 14px;
    color: #667085;
    margin-bottom: 0;
}

@media (max-width: 575.98px) {
    .search-result-copy h1 {
        font-size: 22px;
    }

    .search-header input {
        height: 52px;
        font-size: 15px;
    }
}
