.mwdf-search-wrapper {
    max-width: 720px;
    margin: 2.5rem auto;
    padding: 1.5rem 1.75rem;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.mwdf-search-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, #2596be, #16a34a);
    z-index: -1;
    opacity: 0.8;
}

.mwdf-search-inner {
    background: #ffffff;
    border-radius: inherit;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.25rem 0.25rem 0.25rem 0.75rem;
    width: 100%;
}

.mwdf-search-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #2596be;
    white-space: nowrap;
}

.mwdf-search-input {
    flex: 1 1 auto;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 0.4rem 0.25rem;
    background: transparent;
}

.mwdf-search-input::placeholder {
    color: #9ca3af;
}

.mwdf-search-button {
    border: none;
    border-radius: 999px;
    padding: 0.55rem 1.3rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(135deg, #2596be, #16a34a);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
}

.mwdf-search-button svg {
    width: 1rem;
    height: 1rem;
}

@media (max-width: 768px) {
    .mwdf-search-wrapper {
        margin: 1.5rem 1rem;
        padding: 1.25rem 1.25rem;
        border-radius: 1.5rem;
    }

    .mwdf-search-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 0.25rem;
        gap: 0.4rem;
    }

    .mwdf-search-label {
        font-size: 0.7rem;
    }

    .mwdf-search-button {
        justify-content: center;
        width: 100%;
    }
}
