/* Gold Detectors Landing Page — scoped to .gdlp */

.gdlp {
	color: #1f2937;
	overflow-x: hidden;
}

.gdlp-section {
	scroll-margin-top: 4.75rem;
}

.gdlp-hero {
	position: relative;
	background-color: #1d3186;
	background-size: cover;
	background-position: center;
	color: #fff;
}

.gdlp-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(16, 28, 82, 0.88) 0%, rgba(29, 49, 134, 0.82) 100%);
}

.gdlp-hero__inner {
	position: relative;
	z-index: 1;
}

.gdlp-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #f3c27a;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.gdlp-nav {
	position: sticky;
	top: 0;
	z-index: 40;
	background: #1d3186;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.gdlp-nav__list {
	display: flex;
	gap: 0.35rem;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	padding: 0.65rem 0;
	scrollbar-width: thin;
}

.gdlp-nav__list a {
	flex: 0 0 auto;
	white-space: nowrap;
	color: #fff;
	font-size: 0.9rem;
	padding: 0.4rem 0.85rem;
	border-radius: 999px;
	border: 1px solid transparent;
}

.gdlp-nav__list a:hover,
.gdlp-nav__list a:focus-visible {
	background: rgba(226, 133, 46, 0.2);
	border-color: #e2852e;
	outline: none;
}

.gdlp-card {
	background: #fff;
	border: 1px solid #dcdcdc;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(29, 49, 134, 0.06);
	height: 100%;
}

.gdlp-card--muted {
	background: #f5f5f5;
}

.gdlp-icon {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #eef4ff;
	color: #263c98;
	flex-shrink: 0;
}

.gdlp-check li {
	position: relative;
	padding-inline-start: 1.6rem;
	margin-bottom: 0.55rem;
}

.gdlp-check li::before {
	content: "";
	position: absolute;
	inset-inline-start: 0;
	top: 0.45rem;
	width: 0.7rem;
	height: 0.7rem;
	border-radius: 50%;
	background: #e2852e;
}

.gdlp-highlight {
	border-radius: 16px;
	border: 1px solid rgba(226, 133, 46, 0.35);
	background: #fff8ef;
	color: #1d3186;
}

.gdlp-cta-banner {
	background: #1d3186;
	color: #fff;
	border-radius: 18px;
}

.gdlp-product__media {
	background: #f8fafc;
	border-bottom: 1px solid #dcdcdc;
	min-height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
	border-radius: 16px 16px 0 0;
}

.gdlp-product__media img {
	max-height: 180px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}

.gdlp-product__placeholder {
	color: #263c98;
	font-size: 2.25rem;
}

.gdlp-compare {
	display: grid;
	gap: 1rem;
}

@media (min-width: 768px) {
	.gdlp-compare {
		grid-template-columns: 1fr 1fr;
	}
}

.gdlp-compare__wrong {
	border-radius: 16px;
	border: 1px solid #fecaca;
	background: #fef2f2;
}

.gdlp-compare__right {
	border-radius: 16px;
	border: 1px solid #bbf7d0;
	background: #f0fdf4;
}

.gdlp-step {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.gdlp-step__num {
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 999px;
	background: #263c98;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	flex-shrink: 0;
}

.gdlp details summary::-webkit-details-marker {
	display: none;
}

.gdlp-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 1px solid #dcdcdc;
	background: #fff;
	color: #1f2937;
	border-radius: 14px;
	padding: 0.7rem 0.9rem;
	font-weight: 700;
	min-height: 3rem;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.gdlp-chip:hover,
.gdlp-chip:focus-visible {
	border-color: #263c98;
	outline: none;
}

.gdlp-chip[aria-pressed="true"] {
	background: #263c98;
	border-color: #263c98;
	color: #fff;
}

.gdlp-select,
.gdlp-input {
	width: 100%;
	border: 1px solid #dcdcdc;
	border-radius: 12px;
	background: #fff;
	padding: 0.8rem 0.95rem;
	font: inherit;
	color: inherit;
}

.gdlp-select:focus,
.gdlp-input:focus {
	outline: 2px solid #263c98;
	outline-offset: 1px;
}

.gdlp-btn-gold {
	background: #e2852e;
	color: #fff;
}

.gdlp-btn-gold:hover,
.gdlp-btn-gold:focus-visible {
	background: #c86f1d;
	color: #fff;
}

.gdlp .btn-outline {
	border: 1px solid #263c98;
	color: #263c98;
	background: #fff;
}

.gdlp .btn-outline:hover,
.gdlp .btn-outline:focus-visible {
	background: #eef4ff;
	color: #1d3186;
}

.gdlp .sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.gdlp-submit {
	width: 100%;
}

@media (min-width: 768px) {
	.gdlp-submit {
		width: auto;
	}
}

@media (max-width: 767px) {
	.gdlp-hero h1 {
		font-size: 1.7rem;
		line-height: 1.45;
	}

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

	.gdlp-actions a,
	.gdlp-actions button {
		width: 100%;
	}
}
