/* Farmland Traditions - Store Locator styles (matches site's navy/cream theme) */
#wpsl-wrap {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.wpsl-search.wpsl-filter {
	background: #f5f5f0;
	padding: 20px;
	border-bottom: 2px solid #333f49;
}

#ft-locator-form {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: flex-end;
	max-width: 1100px;
	margin: 0 auto;
}

.ft-field {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ft-field label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #333f49;
}

#ft-search-input {
	min-width: 220px;
}

#ft-search-input,
#ft-radius,
#ft-category {
	padding: 10px 12px;
	border: 1px solid #c9c9c0;
	border-radius: 4px;
	font-size: 15px;
	background: #fff;
	color: #333f49;
}

.ft-buttons {
	flex-direction: row;
	gap: 8px;
}

#ft-search-btn,
#ft-locate-btn {
	padding: 10px 20px;
	border: none;
	border-radius: 999px;
	background: #333f49;
	color: #fff;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.15s ease;
}

#ft-search-btn:hover,
#ft-locate-btn:hover {
	background: #4a5a68;
}

#ft-locate-btn {
	background: transparent;
	color: #333f49;
	border: 1px solid #333f49;
}

#ft-locate-btn:hover {
	background: #333f49;
	color: #fff;
}

#ft-status {
	max-width: 1100px;
	margin: 10px auto 0;
	font-size: 14px;
	color: #333f49;
	min-height: 1.2em;
}

#ft-status.ft-error {
	color: #b33a3a;
	font-weight: 600;
}

#wpsl-gmap.wpsl-gmap-canvas {
	height: 500px;
	width: 100%;
}

#ft-map {
	height: 100%;
	width: 100%;
}

#wpsl-result-list {
	max-height: 500px;
	overflow-y: auto;
	background: #fff;
}

#ft-store-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

#ft-store-list li.ft-store-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 14px 20px;
	border-bottom: 1px solid #eee;
	cursor: pointer;
	transition: background 0.1s ease;
}

#ft-store-list li.ft-store-row:hover,
#ft-store-list li.ft-store-row.ft-active {
	background: #f5f5f0;
}

.ft-store-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.ft-store-name {
	font-weight: 700;
	color: #333f49;
}

.ft-store-meta {
	font-size: 13px;
	color: #666;
}

.ft-store-distance {
	font-size: 13px;
	font-weight: 700;
	color: #333f49;
	white-space: nowrap;
}

.ft-store-empty {
	padding: 30px 20px;
	text-align: center;
	color: #666;
}

.ft-popup h4 {
	margin: 0 0 6px;
	color: #333f49;
}

.ft-popup p {
	margin: 2px 0;
	font-size: 13px;
}

.ft-popup a {
	color: #333f49;
	font-weight: 700;
}

@media (max-width: 782px) {
	#ft-locator-form {
		flex-direction: column;
		align-items: stretch;
	}
	#ft-search-input {
		min-width: 0;
	}
	#wpsl-gmap.wpsl-gmap-canvas {
		height: 360px;
	}
}
