/**
 * "Where to Buy" map + shop list. Light styling that borrows the Organic Store palette
 * (cream #FEF9E1 / orange #FD9800) and the site fonts (inherited from Astra).
 */

.thurkas-wtb {
	margin: 0 auto;
}

.thurkas-wtb__map {
	width: 100%;
	height: 460px;
	border-radius: 10px;
	border: 2px solid #FD9800;
	box-shadow: 0 4px 18px rgba( 15, 23, 42, 0.08 );
	margin-bottom: 2.5rem;
}

.thurkas-wtb__empty {
	background: #FEF9E1;
	border-radius: 10px;
	padding: 1.5rem;
	text-align: center;
	color: #454F5E;
}

.thurkas-wtb__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 280px, 1fr ) );
	gap: 1.5rem;
}

.thurkas-wtb__item {
	display: flex;
	gap: 1rem;
	background: #FEF9E1;
	border-radius: 10px;
	padding: 1.25rem;
	border: 1px solid rgba( 253, 152, 0, 0.25 );
}

.thurkas-wtb__logo {
	flex: 0 0 64px;
}

.thurkas-wtb__logo img {
	width: 64px;
	height: 64px;
	object-fit: contain;
	border-radius: 8px;
	background: #fff;
}

.thurkas-wtb__body {
	flex: 1 1 auto;
	min-width: 0;
}

.thurkas-wtb__name {
	margin: 0 0 0.35rem;
	font-size: 1.1rem;
	color: #0F172A;
}

.thurkas-wtb__address {
	margin: 0 0 0.35rem;
	color: #454F5E;
	font-size: 0.95rem;
}

.thurkas-wtb__phone,
.thurkas-wtb__website {
	margin: 0 0 0.25rem;
	font-size: 0.95rem;
}

.thurkas-wtb__phone a,
.thurkas-wtb__website a {
	color: #FD9800;
	text-decoration: none;
	font-weight: 600;
}

.thurkas-wtb__phone a:hover,
.thurkas-wtb__website a:hover {
	color: #E98C00;
	text-decoration: underline;
}

/* Keep Leaflet popups on-brand and legible. */
.leaflet-popup-content {
	color: #454F5E;
	font-size: 0.95rem;
	line-height: 1.5;
}

.leaflet-popup-content a {
	color: #FD9800;
	font-weight: 600;
}

/* "Where to Buy" strip under the description on single product pages. */
.thurkas-wtb-strip {
	background: #FEF9E1;
	border: 1px solid rgba( 253, 152, 0, 0.25 );
	border-radius: 10px;
	margin: 2.5rem 0;
	padding: 2rem 1.5rem;
	text-align: center;
	clear: both;
}

.thurkas-wtb-strip__title {
	margin: 0 0 0.5rem;
	color: #0F172A;
}

.thurkas-wtb-strip__text {
	margin: 0 auto 1.25rem;
	max-width: 640px;
	color: #454F5E;
}

.thurkas-wtb-strip__button {
	display: inline-block;
	background: #FD9800;
	color: #fff;
	border-radius: 4px;
	padding: 0.65rem 1.6rem;
	text-decoration: none;
	font-weight: 600;
}

.thurkas-wtb-strip__button:hover,
.thurkas-wtb-strip__button:focus {
	background: #E98C00;
	color: #fff;
}
