/*
 Theme Name:   PremiumPress Child
 Theme URI:    https://sensualexchange.com
 Description:  Child theme for PremiumPress Dating Theme
 Author:       Dan
 Author URI:   https://sensuaLEexchange.com
 Template:     DA10
 Version:      1.0.0
 Text Domain:  premiumpress-child
*/

/* Import parent theme styles */
@import url("../premiumpress/style.css");

/* Add your custom CSS below */
/* Hide the Looking for section if needed */
.profile-looking-for,
.looking-for-section,
[class*="looking-for"],
[data-field*="looking"] {
    display: none !important;
}
/* Hide the hard-coded Looking for field */
.form-group:has(label:contains("Looking for a")),
.form-group:has(label:contains("Looking for a *")),
div:has(> label:contains("Looking for a")) {
    display: none !important;
}

/* Alternative selectors if above doesn't work */
label:contains("Looking for a"),
label[for*="looking"],
div:has(input[name="looking_for"]):not(:has(input[type="checkbox"])) {
    display: none !important;
}