/* HEADER */
#desktop-header-search{
	display:none;
}
/* SELL PAGE */


/* Main Wrapper */
.hero-address-form {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 24px;
    border-radius: 60px;
    max-width: 720px;
    width: 100%;
    box-sizing: border-box;
}

/* Input Field */
.hero-address-form .wpcf7-form-control-wrap {
    flex: 1;
}

.hero-address-form input[type="text"] {
    width: 100%;
    height: 58px;
    border: 1px solid #54595F80;
    border-radius: 10px;
    padding: 0 20px;
    font-size: 24px;
    font-weight: 400;
    color: #54595F;
    outline: none;
    box-sizing: border-box;
    font-family: inherit;
}

/* Placeholder */
.hero-address-form input[type="text"]::placeholder {
    color: #54595F;
    opacity: 1;
	font-size:16px;
}

/* Submit Button */
.hero-address-form input[type="submit"] {
    height: 58px;
    min-width: 180px;
    border: none;
    border-radius: 50px;
    background: #222222;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
    padding: 0 32px;
}

/* Hover Effect */
.hero-address-form input[type="submit"]:hover {
    background: #000;
}
.hero-address-form p {
    margin: 0;
	display:flex;
	gap:12px;
}

.hero-address-form .wpcf7-spinner {
    display: none;
}
/* Success Message */
.wpcf7 form.sent .wpcf7-response-output {
    background: #D1C292;
    color: #000000;
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 16px;
    margin-top: 20px;
}

/* Error Message */
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    background: #D1C292;
    color: red;
    border: none;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 16px;
    margin-top: 20px;
}

/* Validation Message */
.wpcf7-not-valid-tip {
    color: #dc2626;
    font-size: 14px;
    margin-top: 6px;
}

/* Spam Blocked */
.wpcf7 form.spam .wpcf7-response-output {
    background: #D1C292;
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
}

/* Hide author name only */
.property-author,
.property-by,
.listing-author,
.item-author,
.author-name {
    display: none !important;
}
.property-author,
.property-by,
.listing-author,
.item-date{
    display: none !important;
}
/* Mobile Responsive */
@media (max-width: 767px) {

    .hero-address-form {
        flex-direction: column;
        padding: 14px;
        border-radius: 24px;
			gap:5px;
    }

    .hero-address-form input[type="text"] {
        height: 54px;
        font-size: 14px;
    }

    .hero-address-form input[type="submit"] {
        width: 100%;
        min-width: 100%;
        height: 54px;
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .hero-address-form {
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border-radius: 20px;
    }

    .hero-address-form .wpcf7-form-control-wrap {
        width: 100%;
			
    }

    .hero-address-form input[type="text"] {
        width: 100%;
        height: 50px;
        font-size: 12px;
    }

    .hero-address-form input[type="submit"] {
        width: 30%;
        height: 50px;
        min-width: 30%;
        font-size: 12px;
			padding:5px 5px;
			border-radius:25px
    }
	.hero-address-form input[type="text"]::placeholder {
	font-size:12px;
}
}