/* ============================================================================
   Visit Our Showroom page (Views/Home/VisitOurShowroom.cshtml).
   Showroom hero, video background, location cards, embedded map skin.
   Includes page-scoped design tokens under :root { --bq-* }.
   ============================================================================ */

:root {
	--bq-green: #1a7a5e;
	--bq-green-dark: #135f49;
	--bq-charcoal: #1a1a1a;
	--bq-mid: #4a4a4a;
	--bq-muted: #7a7a7a;
	--bq-rule: #e0e0e0;
	--bq-bg-off: #f6f6f6;
	--bq-white: #ffffff;
	--bq-radius: 10px;
	--bq-transition: 0.22s ease;
}

/* ── Hero ── */
#why-hero {
	position: relative;
	height: 340px;
	background-image: url('https://cdn.bqwatches.com/images/04951d26-31b4-4c71-bda0-de0dff411187.png');
	background-size: cover;
	background-position: right center;
	display: flex;
	align-items: center;
}

	#why-hero .why-hero__text {
		border-left: 4px solid var(--bq-green);
		padding-left: 1.25rem;
	}

	#why-hero h1 {
		font-size: clamp(1.6rem, 3.2vw, 2.6rem);
		font-weight: 600;
		color: var(--bq-charcoal);
		letter-spacing: -0.02em;
		line-height: 1.15;
		margin: 0 0 6px;
		text-transform: uppercase;
	}

	#why-hero .why-hero__sub {
		font-size: clamp(0.9rem, 1.4vw, 1.1rem);
		font-weight: 600;
		color: var(--bq-mid);
		text-transform: uppercase;
		margin: 0;
		letter-spacing: 0.04em;
	}

@media (min-width: 768px) {
	#why-hero {
		height: 420px;
		background-image: url('https://cdn.bqwatches.com/images/f21a5668-64c5-4435-ae0a-4019c8187ab1.png');
	}
}

@media (max-width: 767.98px) {
	#why-hero {
		height: 280px;
		align-items: flex-end;
		padding-bottom: 38px;
	}

		#why-hero h1 {
			font-size: 1.5rem;
		}

		#why-hero .why-hero__sub {
			font-size: 0.85rem;
		}
}

/* ── Shared section ── */
.why-section {
	padding: 56px 0;
}

.why-section--white {
	background: var(--bq-white);
}

.why-section--grey {
	background: var(--bq-bg-off);
}

.why-section h2 {
	font-size: clamp(1.3rem, 2.2vw, 1.8rem);
	font-weight: 700;
	color: var(--bq-charcoal);
	margin-bottom: 1rem;
	letter-spacing: -0.01em;
}

.why-section h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--bq-charcoal);
	margin-bottom: 0.5rem;
}

.why-section p {
	font-size: 0.95rem;
	line-height: 1.8;
	color: var(--bq-mid);
}

@media (max-width: 767.98px) {
	.why-section {
		padding: 36px 0;
	}
}

/* ── Kicker ── */
.why-kicker {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--bq-green);
	margin-bottom: 0.6rem;
}

/* ── Trust cards ── */
.why-trust-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 2rem;
}

.why-trust-card {
	background: var(--bq-white);
	border: 1px solid var(--bq-rule);
	border-radius: var(--bq-radius);
	padding: 1.5rem 1.25rem;
	text-align: center;
	transition: box-shadow var(--bq-transition), border-color var(--bq-transition);
}

	.why-trust-card:hover {
		box-shadow: 0 6px 24px rgba(0,0,0,.07);
		border-color: #c8c8c8;
	}

	.why-trust-card i {
		font-size: 2rem;
		color: var(--bq-green);
		margin-bottom: 1rem;
		display: block;
	}

	.why-trust-card h3 {
		font-size: 0.9rem;
		font-weight: 700;
		color: var(--bq-charcoal);
		text-transform: uppercase;
		letter-spacing: 0.04em;
		margin-bottom: 0.5rem;
	}

	.why-trust-card p {
		font-size: 0.86rem;
		color: var(--bq-muted);
		line-height: 1.6;
		margin: 0;
	}

@media (max-width: 767.98px) {
	.why-trust-grid {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 576px) and (max-width: 767.98px) {
	.why-trust-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ── USP cards ── */
.why-usp-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 2rem;
}

.why-usp-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.6rem;
	padding: 1.4rem 1.2rem;
	background: var(--bq-bg-off);
	border: 1px solid var(--bq-rule);
	border-radius: var(--bq-radius);
	transition: box-shadow var(--bq-transition), border-color var(--bq-transition);
}

	.why-usp-item:hover {
		border-color: #c5c5c5;
		box-shadow: 0 4px 18px rgba(0,0,0,0.06);
	}

	.why-usp-item i {
		font-size: 1.5rem;
		color: var(--bq-green);
	}

	.why-usp-item h3 {
		font-size: 0.88rem;
		font-weight: 700;
		color: var(--bq-charcoal);
		text-transform: uppercase;
		letter-spacing: 0.04em;
		margin: 0;
	}

	.why-usp-item p {
		font-size: 0.86rem;
		color: var(--bq-muted);
		line-height: 1.6;
		margin: 0;
	}

@media (max-width: 767.98px) {
	.why-usp-grid {
		grid-template-columns: 1fr;
	}
}

/* ── Video ── */
.why-video-wrap {
	position: relative;
	border-radius: var(--bq-radius);
	overflow: hidden;
	background: #000;
	aspect-ratio: 16/9;
}

	.why-video-wrap iframe,
	.why-video-wrap video {
		width: 100%;
		height: 100%;
		display: block;
	}

/* ── Showroom images ── */
.why-showroom-img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	border-radius: var(--bq-radius);
	display: block;
}

/* ── Map ── */
.why-map-wrap {
	height: 420px;
	border-radius: var(--bq-radius);
	overflow: hidden;
	border: 1px solid var(--bq-rule);
}

	.why-map-wrap gmpx-store-locator {
		width: 100%;
		height: 100%;
		--gmpx-color-surface: #fff;
		--gmpx-color-on-surface: #212121;
		--gmpx-color-on-surface-variant: #757575;
		--gmpx-color-primary: #1967d2;
		--gmpx-color-outline: #e0e0e0;
		--gmpx-fixed-panel-width-row-layout: 28.5em;
		--gmpx-fixed-panel-height-column-layout: 35%;
		--gmpx-font-family-base: "Roboto", sans-serif;
		--gmpx-font-family-headings: "Roboto", sans-serif;
		--gmpx-font-size-base: 0.875rem;
		--gmpx-hours-color-open: #188038;
		--gmpx-hours-color-closed: #d50000;
		--gmpx-rating-color: #ffb300;
		--gmpx-rating-color-empty: #e0e0e0;
	}

/* ── FAQ ── */
.why-faq .accordion-item {
	border: 1px solid var(--bq-rule);
	border-radius: var(--bq-radius) !important;
	overflow: hidden;
	margin-bottom: 0.6rem;
	background: var(--bq-white);
}

.why-faq .accordion-button {
	background: var(--bq-white);
	color: var(--bq-charcoal);
	font-weight: 600;
	font-size: 0.93rem;
	box-shadow: none !important;
	padding: 1.1rem 1.25rem;
	border-radius: var(--bq-radius) !important;
}

	.why-faq .accordion-button:not(.collapsed) {
		background: var(--bq-bg-off);
		color: var(--bq-charcoal);
	}

	.why-faq .accordion-button:focus {
		box-shadow: none;
		outline: none;
	}

.why-faq .accordion-body {
	font-size: 0.93rem;
	line-height: 1.8;
	color: var(--bq-mid);
	padding: 0.85rem 1.25rem 1.25rem;
	border-top: 1px solid var(--bq-rule);
}

/* ── Checklist ── */
.why-checklist {
	list-style: none;
	padding: 0;
	margin: 1.25rem 0 0;
}

	.why-checklist li {
		display: flex;
		align-items: flex-start;
		gap: 0.6rem;
		font-size: 0.93rem;
		color: var(--bq-mid);
		line-height: 1.6;
		padding: 0.4rem 0;
		border-bottom: 1px solid var(--bq-rule);
	}

		.why-checklist li:last-child {
			border-bottom: none;
		}

		.why-checklist li i {
			color: var(--bq-green);
			font-size: 0.85rem;
			margin-top: 3px;
			flex-shrink: 0;
		}
