/* WonderLab Store Locator — frontend styles
 * Two-pane layout: sidebar (filter + cards) on the left, map iframe on the right.
 * Brand cream + burgundy palette, mobile-friendly. */

.wl-store-locator {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 0;
	min-height: 600px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* --- Sidebar --- */
.wl-sl-sidebar {
	background: #f5efe8;
	overflow-y: auto;
	max-height: 650px;
}

.wl-sl-header {
	padding: 28px 24px 20px;
	text-align: center;
	border-bottom: 1px solid #e0d6ca;
}

.wl-sl-header h2 {
	font-size: 22px;
	font-weight: 700;
	color: #833528;
	margin: 0 0 16px 0;
	line-height: 1.3;
}

.wl-sl-filter {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #c9b99a;
	border-radius: 8px;
	background: #fff;
	font-size: 14px;
	color: #333;
	cursor: pointer;
	appearance: auto;
}

.wl-sl-filter:focus {
	outline: 2px solid #833528;
	outline-offset: 1px;
}

.wl-sl-count {
	font-size: 12px;
	color: #999;
	padding: 10px 24px 0;
}

/* --- Store cards --- */
.wl-sl-list { padding: 0; }

.wl-sl-card {
	padding: 20px 24px;
	border-bottom: 1px solid #e0d6ca;
	cursor: pointer;
	transition: background 0.2s;
}

.wl-sl-card:hover { background: #ece4d8; }

.wl-sl-card.active {
	background: #e2d6c5;
	border-left: 3px solid #833528;
}

.wl-sl-card-image {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 6px;
	margin: 0 0 14px 0;
	display: block;
	background: #e8e0d5;
}

.wl-sl-card-name {
	font-size: 14px;
	font-weight: 700;
	color: #833528;
	text-transform: uppercase;
	margin: 0 0 8px 0;
	letter-spacing: 0.3px;
}

.wl-sl-card-address {
	font-size: 12px;
	color: #666;
	line-height: 1.5;
	margin: 0 0 6px 0;
	text-transform: uppercase;
}

.wl-sl-card-hours {
	font-size: 12px;
	color: #999;
	margin: 0;
}

.wl-sl-card-directions {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 8px;
	font-size: 12px;
	color: #833528;
	text-decoration: none;
	font-weight: 600;
}

.wl-sl-card-directions:hover { text-decoration: underline; }

.wl-sl-chevron {
	transition: transform 0.2s ease;
	stroke: #833528;
}

.wl-sl-card-directions:hover .wl-sl-chevron {
	transform: translateX(3px);
}

.wl-sl-empty,
.wl-sl-loading {
	padding: 40px 24px;
	text-align: center;
	color: #999;
	font-size: 14px;
}

/* --- Map --- */
.wl-sl-map {
	min-height: 600px;
	background: #e8e0d5;
}

.wl-sl-map iframe {
	width: 100%;
	height: 100%;
	min-height: 600px;
	border: none;
}

/* --- Mobile --- */
@media (max-width: 768px) {
	.wl-store-locator {
		grid-template-columns: 1fr;
		min-height: auto;
	}
	.wl-sl-map {
		min-height: 350px;
		order: -1;
	}
	.wl-sl-map iframe { min-height: 350px; }
	.wl-sl-sidebar { max-height: 400px; }
	.wl-sl-chevron { width: 12px; height: 12px; }
}
