* {
	box-sizing: border-box;
}

html {
	background: #f6f9fc;
}

body {
	margin: 0;
	background: #f6f9fc;
	color: #162233;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.45;
}

body div,
body td {
	font-size: inherit;
}

a {
	color: #b4232e;
	font-family: inherit;
	text-decoration: none;
}

a:hover,
a:focus {
	color: #111827;
	text-decoration: underline;
}

img {
	max-width: 100%;
	height: auto;
}

input,
select,
button,
textarea {
	font: inherit;
}

.site-shell {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.site-header {
	position: relative;
	min-height: 250px;
	background:
		linear-gradient(90deg, rgba(0, 6, 12, 0.98) 0%, rgba(0, 9, 17, 0.92) 22%, rgba(2, 19, 34, 0.58) 39%, rgba(6, 43, 70, 0.18) 58%, rgba(6, 43, 70, 0) 74%),
		linear-gradient(180deg, rgba(0, 8, 15, 0.05) 0%, rgba(0, 8, 15, 0.18) 58%, rgba(0, 8, 15, 0.58) 100%),
		url("/images/header/modern-hero-narrow.jpg") right top / auto 100% no-repeat;
	color: #fff;
	background-color: #020b13;
	box-shadow: 0 8px 26px rgba(16, 24, 32, 0.18);
}

.site-header__inner {
	max-width: 1600px;
	margin: 0 auto;
	padding: 18px 26px 10px;
}

.site-header__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	min-height: 128px;
}

.site-brand {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: clamp(8px, 1vw, 16px);
	color: #fff;
	text-decoration: none;
	isolation: isolate;
}

.site-brand:hover,
.site-brand:focus {
	color: #fff;
	text-decoration: none;
}

.site-brand::before {
	content: "";
	position: absolute;
	inset: -24px -140px -30px -26px;
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(0, 5, 10, 0.72) 0%, rgba(0, 10, 19, 0.5) 48%, rgba(10, 54, 83, 0.18) 74%, rgba(10, 54, 83, 0) 100%),
		radial-gradient(ellipse at 24% 44%, rgba(0, 0, 0, 0.54) 0%, rgba(0, 9, 17, 0.34) 52%, rgba(0, 22, 38, 0) 82%);
	pointer-events: none;
}

.site-brand img {
	display: block;
	width: clamp(210px, 25.6vw, 350px);
	height: auto;
	filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.46));
}

.site-brand__snowboarder {
	color: #fff;
	font-family: "Barlow Condensed", "Bebas Neue", "Arial Narrow", Impact, sans-serif;
	font-size: clamp(24px, 2.44vw, 38px);
	font-weight: 600;
	letter-spacing: 1px;
	line-height: 0.92;
	text-transform: uppercase;
	text-shadow: 0 3px 14px rgba(0, 0, 0, 0.72);
	transform: translateY(9px);
}

.site-tools {
	display: flex;
	align-items: center;
	gap: 12px;
}

.site-translate select {
	max-width: 190px;
	min-height: 38px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 6px;
	background-color: rgba(5, 14, 23, 0.88);
	color: #fff;
	padding: 7px 34px 7px 12px;
	font-size: 14px;
}

.site-nav-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: 0;
}

.site-nav {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0;
	overflow: hidden;
	border-radius: 6px;
	background: rgba(7, 15, 24, 0.84);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.site-nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 106px;
	min-height: 52px;
	padding: 10px 19px;
	border-right: 1px solid rgba(255, 255, 255, 0.07);
	color: #edf5fb;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus {
	background: rgba(255, 255, 255, 0.11);
	color: #fff;
	text-decoration: none;
}

.site-nav a.site-nav__home {
	min-width: 74px;
	background: #0877d8;
	color: #fff;
	font-size: 0;
}

.site-nav a.site-nav__home::before {
	content: "";
	width: 24px;
	height: 24px;
	background: url("/images/header/home-icon.svg") center / contain no-repeat;
}

.site-search {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: min(26vw, 330px);
	margin: 0;
	padding: 0;
}

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

.site-search input[type="text"] {
	width: 100%;
	min-height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.62);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.72);
	color: #17212b;
	padding: 8px 42px 8px 14px;
	font-size: 15px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(2px);
}

.site-search button {
	position: absolute;
	right: 0;
	top: 0;
	width: 42px;
	min-height: 42px;
	border: 0;
	border-radius: 6px;
	background: transparent;
	color: #0877d8;
	padding: 0;
	font-size: 0;
	font-weight: 800;
	cursor: pointer;
}

.site-search button::before {
	content: "";
	position: absolute;
	top: 12px;
	left: 11px;
	width: 12px;
	height: 12px;
	border: 2px solid currentColor;
	border-radius: 50%;
}

.site-search button::after {
	content: "";
	position: absolute;
	top: 25px;
	left: 25px;
	width: 8px;
	height: 2px;
	background: currentColor;
	transform: rotate(45deg);
	transform-origin: left center;
}

.site-search button:hover,
.site-search button:focus {
	color: #0b5ea5;
}

.site-main {
	width: 100%;
	max-width: 1540px;
	margin: 0 auto;
	padding: 28px 30px 28px;
	flex: 1 0 auto;
}

.site-content {
	font-size: 13px;
	min-height: 560px;
	overflow-x: auto;
	border: 1px solid #dbe5ed;
	border-radius: 9px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 10px 26px rgba(17, 24, 39, 0.09);
}

.site-content > *:first-child {
	margin-top: 0;
}

.site-content div,
.site-content td {
	font-size: inherit;
}

.site-content .siteNews {
	font-size: 14px;
}

.site-footer {
	flex-shrink: 0;
	background: #07111b;
	color: #aeb9c4;
}

.site-footer__inner {
	max-width: 1540px;
	margin: 0 auto;
	padding: 16px 30px;
	display: flex;
	justify-content: space-between;
	gap: 16px;
	font-size: 13px;
}

.site-footer a {
	color: #d7e2eb;
	font-style: normal;
}

.site-brand-strip {
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 34px;
	padding: 14px 34px;
	background: #fff;
	border-top: 1px solid #e5edf3;
	border-bottom: 1px solid #d9e3eb;
}

.site-brand-strip img {
	width: auto;
	max-width: 150px;
	max-height: 34px;
	object-fit: contain;
	filter: grayscale(1) contrast(1.15);
	opacity: 0.82;
}

.rHeader,
.pollHeader {
	background-color: #dceaf6;
	background-image: none;
	color: #17212b;
}

.rBody {
	background-color: rgba(255, 255, 255, 0.82);
	background-image: none;
}

#tabmenu a,
#tabmenu a.active {
	font-family: inherit;
}

.modern-page {
	padding: clamp(18px, 3vw, 34px);
}

.modern-page__header {
	max-width: 850px;
	margin: 0 0 24px;
}

.eyebrow {
	margin: 0 0 6px;
	color: #b4232e;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.modern-page h1 {
	margin: 0 0 10px;
	color: #111827;
	font-size: clamp(32px, 4vw, 44px);
	line-height: 1.05;
}

.modern-page h2 {
	margin: 0 0 12px;
	color: #17212b;
	font-size: 21px;
	line-height: 1.2;
}

.modern-page h3 {
	margin: 0;
	font-size: 16px;
	line-height: 1.25;
}

.modern-page__header p:last-child {
	margin: 0;
	color: #526273;
	font-size: 17px;
}

.text-action,
.button-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	font-weight: 800;
}

.button-action {
	border: 1px solid #0877d8;
	border-radius: 6px;
	background: #0877d8;
	color: #fff;
	padding: 8px 14px;
	text-decoration: none;
}

.button-action:hover,
.button-action:focus {
	background: #075fae;
	color: #fff;
	text-decoration: none;
}

.button-action--secondary {
	border-color: #cbd8e3;
	background: #fff;
	color: #17212b;
}

.button-action--secondary:hover,
.button-action--secondary:focus {
	background: #eef5fb;
	color: #17212b;
}

.search-tabs,
.guide-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 18px;
}

.search-tabs a,
.guide-categories a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	border: 1px solid #d5e1eb;
	border-radius: 6px;
	background: #fff;
	color: #17212b;
	padding: 8px 13px;
	font-weight: 800;
	text-decoration: none;
	cursor: pointer;
}

.search-tabs a.active,
.search-tabs a:hover,
.guide-categories a:hover {
	border-color: #0877d8;
	background: #eaf5ff;
	color: #0b5ea5;
	text-decoration: none;
}

.gear-search-form {
	margin: 0;
}

.search-primary {
	display: grid;
	grid-template-columns: minmax(180px, 1fr) auto;
	gap: 10px;
	margin: 0 0 18px;
}

.search-primary label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

.search-primary input,
.resort-tools input {
	min-height: 46px;
	border: 1px solid #cbd8e3;
	border-radius: 6px;
	background: #fff;
	color: #17212b;
	padding: 10px 13px;
}

.search-primary button,
.filter-panel button {
	min-height: 46px;
	border: 0;
	border-radius: 6px;
	background: #b4232e;
	color: #fff;
	padding: 10px 16px;
	font-weight: 800;
	cursor: pointer;
}

.gear-search-layout {
	display: grid;
	grid-template-columns: minmax(210px, 270px) minmax(0, 1fr);
	gap: 22px;
	align-items: start;
}

.filter-panel,
.equipment-panel {
	border: 1px solid #dbe5ed;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
}

.filter-panel {
	position: sticky;
	top: 12px;
	padding: 16px;
}

.filter-field {
	display: grid;
	gap: 7px;
	margin-bottom: 15px;
}

.filter-field label,
.filter-label,
.resort-tools label {
	color: #334155;
	font-size: 13px;
	font-weight: 800;
}

.filter-field select {
	width: 100%;
	min-height: 116px;
	border: 1px solid #cbd8e3;
	border-radius: 6px;
	padding: 7px;
}

.filter-field input[type="radio"] {
	margin-right: 6px;
}

.results-summary {
	margin: 0 0 12px;
	color: #526273;
	font-weight: 800;
}

.gear-result-list,
.affiliate-results {
	display: grid;
	gap: 12px;
}

.gear-result-list {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gear-result-card {
	display: grid;
	grid-template-columns: 124px minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	border: 1px solid #dbe5ed;
	border-radius: 8px;
	background: #fff;
	padding: 14px;
}

.gear-result-card.is-thumbnail,
.gear-result-card.is-compact {
	grid-template-columns: 1fr;
	align-content: start;
}

.gear-result-card.is-compact {
	grid-template-columns: 64px minmax(0, 1fr);
	padding: 10px 12px;
}

.gear-result-card.is-compact .gear-result-card__image {
	min-height: 54px;
}

.gear-result-card.is-detail,
.affiliate-card {
	grid-column: 1 / -1;
}

.gear-result-card__image {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 108px;
	border-radius: 6px;
	background: #f4f8fb;
}

.gear-result-card__image img {
	max-height: 118px;
	object-fit: contain;
}

.gear-result-card.is-compact .gear-result-card__image img {
	max-height: 54px;
}

.gear-result-card.is-thumbnail .gear-result-card__image img {
	max-height: 150px;
}

.gear-result-card__meta {
	margin: 0 0 4px;
	color: #64748b;
	font-size: 13px;
	font-weight: 800;
}

.gear-result-card h2 {
	margin-bottom: 8px;
	font-size: 18px;
}

.gear-result-card p {
	margin: 0 0 8px;
}

.rating-line {
	min-height: 20px;
}

.old-price {
	text-decoration: line-through;
	color: #64748b;
}

.empty-state {
	border: 1px solid #dbe5ed;
	border-radius: 8px;
	background: #f8fbfd;
	padding: 22px;
}

.empty-state h1,
.empty-state h2,
.empty-state p {
	margin: 0 0 8px;
}

.modern-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
	color: #64748b;
	font-size: 13px;
	font-weight: 800;
}

.modern-breadcrumbs span::after {
	content: "/";
	margin-left: 8px;
	color: #a7b4c1;
}

.equipment-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
	gap: 26px;
	align-items: stretch;
	margin-bottom: 22px;
}

.equipment-hero__content,
.equipment-hero__image {
	border: 1px solid #dbe5ed;
	border-radius: 8px;
	background: #fff;
	padding: clamp(18px, 3vw, 28px);
	box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
}

.equipment-hero__image {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 360px;
	background: #f8fbfd;
}

.equipment-hero__image img {
	max-height: 520px;
	object-fit: contain;
}

.brand-mark {
	display: flex;
	align-items: center;
	min-height: 52px;
	margin-bottom: 16px;
}

.brand-mark img {
	max-width: 220px;
	max-height: 58px;
	object-fit: contain;
}

.equipment-meta,
.equipment-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
}

.equipment-meta span {
	border: 1px solid #d5e1eb;
	border-radius: 999px;
	background: #f4f8fb;
	padding: 6px 10px;
	color: #334155;
	font-size: 13px;
	font-weight: 800;
}

.equipment-rating {
	margin-top: 16px;
	color: #334155;
	font-weight: 700;
}

.equipment-content-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr) 190px;
	gap: 18px;
	align-items: start;
	margin-bottom: 18px;
}

.equipment-panel {
	padding: 18px;
}

.equipment-description {
	font-size: 15px;
	line-height: 1.6;
}

.equipment-specs table,
.affiliate-panel table,
.reviews-panel table {
	width: 100% !important;
	max-width: 100%;
}

.equipment-specs th {
	text-align: left;
}

.suggested-items {
	display: grid;
	gap: 14px;
	justify-items: center;
}

.equipment-lower {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 468px);
	gap: 18px;
	align-items: start;
}

.review {
	margin: 0 0 14px;
	border: 1px solid #dbe5ed;
	border-radius: 8px;
	background: #fff;
	padding: 14px;
}

.reviewer {
	margin-bottom: 8px;
	color: #334155;
	font-weight: 800;
}

.review span {
	font-weight: 800;
}

.related-heading {
	margin-top: 24px !important;
}

.related-review-item {
	margin: 12px 0;
	border: 1px solid #dbe5ed;
	border-radius: 8px;
	padding: 12px;
}

.review-thanks {
	margin: 0 0 14px;
	color: #526273;
	font-style: italic;
}

.suggested-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 18px;
}

.guide-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.guide-card {
	border: 1px solid #dbe5ed;
	border-radius: 8px;
	background: #fff;
	padding: 18px;
	box-shadow: 0 8px 20px rgba(17, 24, 39, 0.05);
}

.guide-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.guide-card__meta span {
	border-radius: 999px;
	background: #eef5fb;
	color: #334155;
	padding: 5px 9px;
	font-size: 12px;
	font-weight: 800;
}

.guide-card p {
	color: #526273;
}

.modern-ad-slot {
	margin: 22px auto 0;
	text-align: center;
}

.resort-tools {
	display: grid;
	gap: 7px;
	max-width: 520px;
	margin-bottom: 18px;
}

.resort-layout {
	display: grid;
	grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
	gap: 20px;
	align-items: start;
}

.resort-map {
	position: sticky;
	top: 12px;
	overflow: hidden;
	border: 1px solid #dbe5ed;
	border-radius: 8px;
	background: #eaf1f7;
}

#map_canvas {
	width: 100%;
	height: 520px;
}

.resort-list {
	display: grid;
	gap: 18px;
}

.resort-region {
	display: grid;
	gap: 8px;
}

.resort-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	border: 1px solid #dbe5ed;
	border-radius: 8px;
	background: #fff;
	padding: 12px 14px;
}

.resort-row p {
	margin: 3px 0 0;
	color: #64748b;
	font-size: 13px;
}

@media (max-width: 760px) {
	body {
		font-size: 15px;
	}

	.site-header__inner {
		padding: 12px;
	}

	.site-header {
		min-height: 290px;
		background-position: 64% top;
		background-size: auto 100%;
	}

	.site-header__top,
	.site-nav-row,
	.site-footer__inner {
		align-items: stretch;
		flex-direction: column;
	}

	.site-header__top {
		min-height: 108px;
	}

	.site-brand {
		max-width: 100%;
		width: fit-content;
	}

	.site-brand img {
		width: min(82vw, 288px);
	}

	.site-brand__snowboarder {
		font-size: clamp(19px, 6.4vw, 27px);
	}

	.site-tools {
		align-items: stretch;
	}

	.site-translate select {
		width: 100%;
		max-width: none;
	}

	.site-nav {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0;
	}

	.site-nav a {
		min-width: 0;
		justify-content: center;
	}

	.site-search {
		min-width: 0;
		width: 100%;
	}

	.site-main {
		padding: 14px 12px 20px;
	}

	.site-content {
		border-radius: 6px;
	}

	.site-brand-strip {
		flex-wrap: wrap;
		gap: 18px 28px;
	}

	.site-brand-strip img {
		max-width: 110px;
	}

	.modern-page {
		padding: 16px;
	}

	.search-primary,
	.gear-search-layout,
	.equipment-hero,
	.equipment-content-grid,
	.equipment-lower,
	.resort-layout,
	.guide-grid,
	.suggested-grid {
		grid-template-columns: 1fr;
	}

	.gear-result-list {
		grid-template-columns: 1fr;
	}

	.filter-panel,
	.resort-map {
		position: static;
	}

	.gear-result-card,
	.gear-result-card.is-thumbnail,
	.gear-result-card.is-compact {
		grid-template-columns: 86px minmax(0, 1fr);
	}

	.gear-result-card__image {
		min-height: 82px;
	}

	.gear-result-card__image img {
		max-height: 82px;
	}

	.equipment-hero__image {
		min-height: 260px;
	}

	#map_canvas {
		height: 340px;
	}
}
