/*
Theme Name: Goodwin Fox
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/


.fusion-main-menu #menu-primary-menu #menu-item-55 a span {
	background-color: #ffffff;
	color: #838585;
	padding: 10px;
}
.fusion-main-menu #menu-primary-menu #menu-item-55 a:after {
	display: none;
	visibility: hidden;
}

/*.fusion-page-title-bar-center .fusion-page-title-captions {
	text-shadow: 0px 0px 1px rgba(0,0,0,1);
}*/

/* search listings */

.property-search-container {
	max-width: 1200px;
	margin: 0 auto;
}

.property-search-form {
	background: #f8f8f8;
	padding: 30px;
	border-radius: 8px;
	margin-bottom: 40px;
}

.search-row {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
	flex-wrap: wrap;
}

.search-field {
	flex: 1;
	min-width: 200px;
}

.property-select, .property-input {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	background: white;
}

.search-submit {
	text-align: right;
	margin-top: 10px;
}

.property-submit-btn {
	background: #8BC34A;
	color: white;
	padding: 12px 40px;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	text-transform: uppercase;
}

.property-submit-btn:hover {
	background: #7CB342;
}

.results-title {
	color: #666;
	font-size: 24px !important;
	margin-bottom: 30px;
	font-weight: normal;
}

.property-grid {
	display: grid;
	gap: 30px;
	margin-bottom: 30px;
}

.property-grid.columns-1 {
	grid-template-columns: 1fr;
}

.property-grid.columns-2 {
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.property-grid.columns-3 {
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

@media(max-width:420px) {
	.property-grid {
		grid-template-columns: 1fr !important;
	}
}



.property-card {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
}

.property-card:hover {
	transform: translateY(-5px);
}

.property-image {
	position: relative;
	height: 200px;
	overflow: hidden;
}

.property-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.property-price {
	position: absolute;
	top: 15px;
	left: 15px;
	background: #8BC34A;
	color: white;
	padding: 6px 12px;
	border-radius: 4px;
	font-weight: bold;
	font-size: 14px;
}

.property-content {
	padding: 20px;
	flex:1;
	display: flex;
	flex-direction: column;
}

.property-title {
	font-size: 18px;
	margin: 0 0 10px 0;
	color: #333;
	font-weight: bold;
}

.property-address {
	color: #666;
	margin: 0 0 15px 0;
	font-size: 14px;
}

.property-details {
	margin-bottom: 20px;
}

.property-details span {
	display: inline-block;
	margin-right: 15px;
	color: #666;
	font-size: 14px;
}

.property-actions {
	display: flex;
	gap: 10px;
	margin-top:auto;
}

.property-btn {
	padding: 10px 15px;
	border-radius: 4px;
	text-decoration: none;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	flex: 1;
}

.property-details-btn {
	background: transparent;
	color: #8BC34A;
	border: 1px solid #8BC34A;
}

.property-let-btn {
	background: #8BC34A;
	color: white;
}

.property-btn:hover {
	opacity: 0.8;
}

.no-properties-found {
	text-align: center;
	padding: 40px;
	color: #666;
}

.property-pagination {
	text-align: center;
	margin-top: 30px;
}

.property-pagination a,
.property-pagination span {
	display: inline-block;
	padding: 10px 15px;
	margin: 0 5px;
	border: 1px solid #ddd;
	text-decoration: none;
	color: #666;
}

.property-pagination .current {
	background: #8BC34A;
	color: white;
	border-color: #8BC34A;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.search-row {
		flex-direction: column;
	}

	.search-field {
		min-width: 100%;
	}

	.property-grid {
		grid-template-columns: 1fr;
	}

	.property-actions {
		flex-direction: column;
	}
}

.property-stats {
	margin-bottom:20px;
}

.property-stats p {
	margin:0 !important;
}

.property-stats span {
	font-weight: bold;
}