#sendSearchProfileForm.kowboy-search-profile-form {
    --kowboy-form-bg: linear-gradient(180deg, #fffdf9 0%, #f6f6f6 100%);
    --kowboy-panel-bg: rgba(255, 255, 255, 0.92);
    --kowboy-border: #000000;
    --kowboy-border-strong: #000000;
    --kowboy-text: #2f1b12;
    --kowboy-muted: #6f5a47;
    --kowboy-shadow: 0 24px 60px rgba(69, 37, 19, 0.12);
    background: var(--kowboy-form-bg);
    border: 1px solid rgb(0 0 0 / 25%);
    box-shadow: var(--kowboy-shadow);
    color: var(--kowboy-text);
    margin: 24px auto;
    max-width: 980px;
    padding: 28px;
}

#sendSearchProfileForm .kowboy-search-profile-form__header {
    margin-bottom: 24px;
}

#sendSearchProfileForm .kowboy-search-profile-form__eyebrow {
    color: #000;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin: 0 0 10px;
    text-transform: uppercase;
}

#sendSearchProfileForm h3,
#sendSearchProfileForm h4,
#sendSearchProfileForm label,
#sendSearchProfileForm p,
#sendSearchProfileForm small {
    color: var(--kowboy-text);
}

#sendSearchProfileForm h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    margin: 0 0 10px;
}

#sendSearchProfileForm .kowboy-search-profile-form__intro {
    color: var(--kowboy-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 42rem;
}

#sendSearchProfileForm .kowboy-search-profile-form__section {
    background: var(--kowboy-panel-bg);
    border: 1px solid #000;
    margin-top: 18px;
    padding: 22px;
}

#sendSearchProfileForm h4 {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin: 0 0 18px;
    text-transform: uppercase;
}

#sendSearchProfileForm .kowboy-search-profile-form__grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

#sendSearchProfileForm .kowboy-search-profile-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#sendSearchProfileForm .kowboy-search-profile-form__field label {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

#sendSearchProfileForm .kowboy-search-profile-form__field small {
    color: #353535;
    font-size: 0.82rem;
    line-height: 1.5;
}

#sendSearchProfileForm input,
#sendSearchProfileForm select,
#sendSearchProfileForm textarea {
    background: #fff;
    border: 1px solid #000;
	border-radius: 0;
    box-sizing: border-box;
    color: var(--kowboy-text);
    font-size: 1rem;
    min-height: 56px;
    padding: 14px 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    width: 100%;
}

#sendSearchProfileForm select[multiple] {
    min-height: 150px;
    padding: 10px 12px;
}

#sendSearchProfileForm input:focus,
#sendSearchProfileForm select:focus,
#sendSearchProfileForm textarea:focus {
    border-color: var(--kowboy-border-strong);
    box-shadow: 0 0 0 4px rgba(182, 139, 94, 0.16);
    outline: none;
    transform: translateY(-1px);
}

#sendSearchProfileForm .kowboy-search-profile-form__actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 22px;
}

#sendSearchProfileForm button[type="submit"] {
    background: #000;
    border: 0;
    border-radius: 0px;
    box-shadow: 0 16px 32px rgba(61, 34, 23, 0.2);
    color: #fff;
    cursor: pointer;
    font-size: 0.98rem;
    font-weight: 700;
    min-height: 54px;
    padding: 0 26px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

#sendSearchProfileForm button[type="submit"]:hover,
#sendSearchProfileForm button[type="submit"]:focus {
    box-shadow: 0 18px 36px rgba(61, 34, 23, 0.26);
    opacity: 0.98;
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    #sendSearchProfileForm.kowboy-search-profile-form {
        padding: 18px;
    }

    #sendSearchProfileForm .kowboy-search-profile-form__section {
        padding: 18px;
    }

    #sendSearchProfileForm .kowboy-search-profile-form__grid {
        grid-template-columns: 1fr;
    }
}