.ev-hp-search-wrapper {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.ev-hp-search-form {
    background: #ffffff;
    border-radius: 12px;
    padding: 12px;
    display: inline-block;
    max-width: 800px;
    width: 100%;
}

.ev-hp-search-fields {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: nowrap;
}

.ev-hp-field {
    flex: 1;
    min-width: auto;
}

.ev-hp-field.ev-hp-btn-wrap {
    flex: 0 0 auto;
}

.ev-hp-input {
    width: 100% !important;
    padding: 14px 16px !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    color: #374151 !important;
    background: #f9fafb !important;
    box-sizing: border-box !important;
    outline: none !important;
    transition: background 0.3s !important;
}

.ev-hp-input:focus {
    background: #f1f5f9 !important;
}

.ev-hp-search-btn {
    background: #FADC06;
    color: #233C7E;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 16px rgba(35, 60, 126, 0.2);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ev-hp-search-btn:hover {
    background: #f5d700;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(35, 60, 126, 0.3);
}

@media (max-width: 768px) {
    .ev-hp-search-wrapper {
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 10px !important;
    }

    .ev-hp-search-form {
        width: 100% !important;
        box-sizing: border-box !important;
        display: block !important;
        padding: 16px !important;
    }

    .ev-hp-search-fields {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
    }

    .ev-hp-field,
    .ev-hp-field.ev-hp-btn-wrap {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .ev-hp-search-btn {
        width: 100% !important;
        box-sizing: border-box !important;
        margin-top: 8px !important;
        padding: 16px 32px !important;
    }
}