/* assets/css/style.css — Armor Sports (light: white bg, black text) */

:root {
	--color-bg: #ffffff;
	--color-surface: #f5f5f5;
	--color-surface-2: #ebebeb;
	--color-text: #000000;
	--color-text-muted: #5c5c5c;
	--color-accent: #000000;
	--color-accent-hover: #333333;
	--color-accent-text: #ffffff;
	--color-border: rgba(0, 0, 0, 0.12);
	--font-body: 'Inter', sans-serif;
	--font-display: 'Barlow Condensed', sans-serif;
	--space-section: clamp(3rem, 6vw, 5rem);
	--container-pad: clamp(1rem, 3vw, 2.5rem);
	--header-height: 4.5rem;
	--promo-height: 2.5rem;
	--bottom-nav-inner-height: 3.375rem;
	--bottom-nav-safe: env(safe-area-inset-bottom, 0px);
	--bottom-nav-total: calc(var(--bottom-nav-inner-height) + var(--bottom-nav-safe));
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--color-text);
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-display);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	line-height: 1.05;
	color: var(--color-text);
}

h1 {
	font-size: clamp(2.25rem, 5vw, 3.75rem);
}

h2 {
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

h3 {
	font-size: clamp(1.1rem, 2vw, 1.35rem);
}

p {
	margin: 0 0 1rem;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
	color: var(--color-text-muted);
}

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

main {
	min-height: 50vh;
}

.container-fluid {
	max-width: 1440px;
	margin: 0 auto;
	padding-left: var(--container-pad);
	padding-right: var(--container-pad);
}

.container-narrow {
	max-width: 720px;
	margin: 0 auto;
	padding-left: var(--container-pad);
	padding-right: var(--container-pad);
}

.section-pad {
	padding-top: var(--space-section);
	padding-bottom: var(--space-section);
}

.section-label {
	font-family: var(--font-display);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-text-muted);
	margin-bottom: 0.75rem;
}

.section-label--light {
	color: var(--color-text-muted);
}

.section-header {
	margin-bottom: 2rem;
}

.section-header--split {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
}

.lead {
	font-size: 1.1rem;
	color: var(--color-text-muted);
}

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-display);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-text);
}

.link-arrow:hover {
	color: var(--color-text-muted);
}

/* Buttons */
.btn {
	border-radius: 0;
	padding: 0.75rem 1.5rem;
	font-family: var(--font-display);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.btn-accent {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: var(--color-accent-text);
}

.btn-accent:hover {
	background: var(--color-accent-hover);
	border-color: var(--color-accent-hover);
	color: var(--color-accent-text);
}

.btn-outline-light,
.btn-outline-dark {
	border-color: var(--color-text);
	color: var(--color-text);
}

.btn-outline-light:hover,
.btn-outline-dark:hover {
	background: var(--color-text);
	border-color: var(--color-text);
	color: var(--color-bg);
}

/* Promo bar — inverted strip on light page */
.promo-bar {
	background: #000000;
	color: #ffffff;
	font-family: var(--font-display);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-align: center;
	position: relative;
	z-index: 1040;
}

.promo-bar.is-hidden {
	display: none;
}

.promo-bar__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: var(--promo-height);
	padding: 0.35rem var(--container-pad);
}

.promo-bar a {
	color: #ffffff;
}

.promo-bar a:hover {
	opacity: 0.75;
	color: #ffffff;
}

.promo-bar__close {
	position: absolute;
	right: var(--container-pad);
	background: transparent;
	border: none;
	color: #ffffff;
	padding: 0.25rem 0.5rem;
	cursor: pointer;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1030;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--color-border);
	backdrop-filter: blur(10px);
}

.site-header .navbar {
	padding: 0.65rem 0;
}

.site-header__inner {
	padding-left: var(--container-pad);
	padding-right: var(--container-pad);
}

.site-logo {
	padding: 0;
	margin: 0;
	line-height: 0;
}

.site-logo__img {
	display: block;
	height: 2.25rem;
	width: auto;
	max-width: 11rem;
	object-fit: contain;
}

.site-nav-list .nav-link,
.site-nav-actions .nav-link {
	color: var(--color-text);
	font-family: var(--font-display);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.5rem 0.75rem;
}

.site-nav-list .nav-link:hover,
.site-nav-actions .nav-link:hover {
	color: var(--color-text-muted);
}

.site-nav-toggle {
	border-color: var(--color-border);
}

.site-nav-toggle .navbar-toggler-icon {
	filter: none;
}

@media (max-width: 991px) {
	.site-nav-actions {
		padding-top: 0.5rem;
		border-top: 1px solid var(--color-border);
		margin-top: 0.5rem;
	}
}

/* Mobile bottom navigation */
.site-bottom-nav {
	display: none;
}

@media (max-width: 991.98px) {
	html {
		overflow-x: hidden;
	}

	body {
		overflow-x: hidden;
		overscroll-behavior-x: none;
		max-width: 100%;
	}

	main {
		overflow-x: clip;
		padding-bottom: var(--bottom-nav-total);
	}

	.site-bottom-nav {
		display: block;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 9999;
		width: 100%;
		max-width: 100%;
		margin: 0;
		padding: 0;
		padding-bottom: var(--bottom-nav-safe);
		box-sizing: border-box;
		background: #ffffff;
		border-top: 1px solid var(--color-border);
		box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
	}

	.site-bottom-nav__inner {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		align-items: center;
		height: var(--bottom-nav-inner-height);
		width: 100%;
		max-width: 100%;
	}

	.site-bottom-nav__item {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 0.15rem;
		min-height: var(--bottom-nav-inner-height);
		padding: 0.2rem 0.15rem;
		margin: 0;
		border: none;
		background: transparent;
		color: var(--color-text-muted);
		font-family: var(--font-body);
		text-decoration: none;
		cursor: pointer;
		-webkit-tap-highlight-color: transparent;
		touch-action: manipulation;
		transition: color 0.2s ease, background 0.2s ease;
	}

	.site-bottom-nav__icon {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 1.5rem;
		height: 1.5rem;
	}

	.site-bottom-nav__icon svg {
		width: 100%;
		height: 100%;
		fill: none;
		stroke: currentColor;
		stroke-width: 1.65;
		stroke-linecap: round;
		stroke-linejoin: round;
		transition: transform 0.2s ease, fill 0.2s ease, stroke 0.2s ease;
	}

	.site-bottom-nav__icon svg path,
	.site-bottom-nav__icon svg circle,
	.site-bottom-nav__icon svg rect {
		vector-effect: non-scaling-stroke;
	}

	.site-bottom-nav__icon svg rect {
		fill: none;
	}

	.site-bottom-nav__icon--filled svg {
		fill: currentColor;
		stroke: none;
	}

	.site-bottom-nav__icon--filled svg path {
		vector-effect: none;
	}

	.site-bottom-nav__label {
		font-size: 0.625rem;
		font-weight: 600;
		letter-spacing: 0.03em;
		line-height: 1.1;
	}

	.site-bottom-nav__item:hover,
	.site-bottom-nav__item:focus-visible {
		color: var(--color-text);
		background: var(--color-surface);
		outline: none;
	}

	.site-bottom-nav__item.is-active {
		color: var(--color-text);
	}

	.site-bottom-nav__item.is-active .site-bottom-nav__icon:not(.site-bottom-nav__icon--filled) svg {
		stroke-width: 2;
	}

	.site-bottom-nav__item--home.is-active .site-bottom-nav__icon svg path {
		fill: currentColor;
		stroke: currentColor;
	}

	.site-bottom-nav__item--more.is-open {
		color: var(--color-text);
		background: var(--color-surface);
	}

	.mobile-more-sheet {
		position: fixed;
		inset: 0;
		z-index: 1050;
		display: flex;
		align-items: flex-end;
		justify-content: center;
		pointer-events: none;
	}

	.mobile-more-sheet[hidden] {
		display: none;
	}

	.mobile-more-sheet.is-open {
		pointer-events: auto;
	}

	.mobile-more-sheet__backdrop {
		position: absolute;
		inset: 0;
		background: rgba(0, 0, 0, 0.45);
		opacity: 0;
		transition: opacity 0.25s ease;
	}

	.mobile-more-sheet.is-open .mobile-more-sheet__backdrop {
		opacity: 1;
	}

	.mobile-more-sheet__panel {
		position: relative;
		z-index: 1;
		width: 100%;
		max-height: min(70vh, 520px);
		background: var(--color-bg);
		border-top: 1px solid var(--color-border);
		border-radius: 12px 12px 0 0;
		padding: 1rem var(--container-pad) calc(1.25rem + var(--bottom-nav-total));
		transform: translateY(100%);
		transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		overflow-y: auto;
	}

	.mobile-more-sheet.is-open .mobile-more-sheet__panel {
		transform: translateY(0);
	}

	.mobile-more-sheet__header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 1rem;
		padding-bottom: 0.75rem;
		border-bottom: 1px solid var(--color-border);
	}

	.mobile-more-sheet__title {
		font-size: 1.25rem;
		margin: 0;
	}

	.mobile-more-sheet__close {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 2.5rem;
		height: 2.5rem;
		border: 1px solid var(--color-border);
		background: transparent;
		color: var(--color-text);
		cursor: pointer;
	}

	.mobile-more-sheet__group-label {
		font-family: var(--font-display);
		font-size: 0.75rem;
		font-weight: 600;
		letter-spacing: 0.14em;
		text-transform: uppercase;
		color: var(--color-text-muted);
		margin: 0 0 0.5rem;
	}

	.mobile-more-sheet__group-label:not(:first-child) {
		margin-top: 1.25rem;
	}

	.mobile-more-sheet__links {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.mobile-more-sheet__links a {
		display: block;
		padding: 0.65rem 0;
		font-family: var(--font-display);
		font-size: 1rem;
		font-weight: 600;
		letter-spacing: 0.06em;
		text-transform: uppercase;
		color: var(--color-text);
		border-bottom: 1px solid var(--color-border);
	}

	.mobile-more-sheet__links li:last-child a {
		border-bottom: none;
	}

	body.mobile-more-open {
		overflow: hidden;
	}
}

/* Hero home */
.hero-home {
	position: relative;
	min-height: 75vh;
	display: flex;
	align-items: flex-end;
	padding: 4rem 0;
	overflow: hidden;
	background: var(--color-bg);
}

.hero-home--image {
	min-height: clamp(28rem, 75vh, 44rem);
}

@media (max-width: 991.98px) {
	.hero-home--image {
		min-height: clamp(22rem, 68vh, 36rem);
		align-items: flex-end;
		padding: 2.5rem 0 1.75rem;
	}
}

.hero-home__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-home__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 35%;
}

.hero-home--image .hero-home__media::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		105deg,
		rgba(255, 255, 255, 0.72) 0%,
		rgba(255, 255, 255, 0.48) 32%,
		rgba(255, 255, 255, 0.18) 55%,
		rgba(255, 255, 255, 0) 78%
	);
}

@media (max-width: 575.98px) {
	.hero-home__bg {
		object-position: 62% 35%;
	}

	.hero-home--image .hero-home__media::after {
		background: linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.7) 0%,
			rgba(255, 255, 255, 0.45) 40%,
			rgba(255, 255, 255, 0.12) 100%
		);
	}
}

.hero-home__content {
	position: relative;
	z-index: 2;
	max-width: 820px;
}

.hero-home__eyebrow {
	font-family: var(--font-display);
	font-size: 0.8rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-text-muted);
	margin-bottom: 1rem;
}

.hero-home__text {
	font-size: 1.1rem;
	color: var(--color-text-muted);
	max-width: 36rem;
	margin-bottom: 1.5rem;
}

.hero-home__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.hero-home__products {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.hero-home__product-link {
	font-family: var(--font-display);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: underline;
	text-underline-offset: 4px;
	color: var(--color-text);
}

/* Promo cards */
.promo-cards {
	padding: 1.5rem 0 3rem;
}

.promo-cards .row > [class*='col-'] {
	display: flex;
}

.promo-card {
	width: 100%;
	height: 100%;
	min-height: 320px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	padding: 2rem 2rem 2.5rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.promo-card--camo {
	background: linear-gradient(135deg, #ececec, #f8f8f8);
}

.promo-card--sale {
	background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
}

.promo-card__eyebrow {
	font-family: var(--font-display);
	font-size: 0.75rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.promo-card h2 {
	margin: 0.5rem 0 1rem;
}

.promo-card p {
	color: var(--color-text-muted);
	flex: 1 1 auto;
	margin-bottom: 1.5rem;
}

.promo-card .btn {
	margin-top: auto;
	flex-shrink: 0;
}

.home-banner-stack {
	display: block;
}

/* Category showcase (Hoyt-style) */
.category-showcase {
	padding: 2rem 0 var(--space-section);
}

.category-showcase__card {
	display: block;
	color: var(--color-text);
	text-decoration: none;
	border: 1px solid var(--color-border);
	border-radius: 6px;
	overflow: hidden;
	background: var(--color-bg);
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.category-showcase__card:hover {
	color: var(--color-text);
	border-color: var(--color-text);
}

.category-showcase__media {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--color-surface);
}

.category-showcase__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-showcase__card:hover .category-showcase__media img {
	transform: scale(1.04);
}

.category-showcase__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.9rem 1rem 1rem;
	border-top: 1px solid var(--color-border);
}

.category-showcase__label {
	font-family: var(--font-display);
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 0;
	padding: 0;
}

.category-showcase__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	font-size: 0.85rem;
	transition: transform 0.25s ease;
}

.category-showcase__card:hover .category-showcase__arrow {
	transform: translateX(4px);
}

/* Horizontal auto-scroll strips (categories + products) */
.scroll-strip {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 100%;
}

.scroll-strip__track {
	display: flex;
	align-items: stretch;
	gap: 1rem;
	will-change: transform;
	animation: scroll-strip-marquee 34s linear infinite;
}

.scroll-strip__item {
	flex: 0 0 auto;
}

.scroll-strip--categories .scroll-strip__item {
	width: clamp(180px, 24vw, 320px);
}

.scroll-strip--products .scroll-strip__item {
	width: clamp(210px, 26vw, 320px);
}

.scroll-strip--products:hover .scroll-strip__track,
.scroll-strip--products:has(.scroll-strip__item:hover) .scroll-strip__track,
.scroll-strip--products:has(.product-card:hover) .scroll-strip__track,
.scroll-strip--products:has(.product-card__link:focus-visible) .scroll-strip__track {
	animation-play-state: paused;
}

@keyframes scroll-strip-marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@media (max-width: 991.98px) {
	.scroll-strip--products.scroll-strip--swipe {
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior-x: contain;
		scroll-snap-type: x mandatory;
		scroll-padding-inline: var(--container-pad);
		touch-action: pan-x;
		scrollbar-width: none;
	}

	.scroll-strip--products.scroll-strip--swipe::-webkit-scrollbar {
		display: none;
	}

	.scroll-strip--products.scroll-strip--swipe .scroll-strip__track {
		animation: none;
		transform: none;
		will-change: auto;
	}

	.scroll-strip--products.scroll-strip--swipe .scroll-strip__item[aria-hidden='true'] {
		display: none;
	}

	.scroll-strip--products.scroll-strip--swipe .scroll-strip__item {
		scroll-snap-align: start;
		width: clamp(200px, 72vw, 280px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.scroll-strip {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
	}

	.scroll-strip__track {
		animation: none;
	}

	.scroll-strip__item {
		scroll-snap-align: start;
	}
}

/* Feature blocks */
.feature-block {
	padding: var(--space-section) 0;
	border-top: 1px solid var(--color-border);
}

.feature-block--dark {
	background: var(--color-surface);
}

.feature-block--builder {
	background: linear-gradient(90deg, #f0f0f0, #ffffff);
}

.feature-block--accent {
	background: linear-gradient(90deg, #e8e8e8, #fafafa);
}

.feature-block__eyebrow {
	font-family: var(--font-display);
	font-size: 0.75rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.feature-block__inner {
	max-width: 640px;
}

.feature-block h2 {
	margin: 0.5rem 0 1rem;
}

.feature-block p {
	color: var(--color-text-muted);
	margin-bottom: 1.5rem;
}

/* Product grid */
.product-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
	.product-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1200px) {
	.product-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.product-card__link {
	display: block;
	color: inherit;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	transition: border-color 0.25s ease;
}

.product-card__link:hover {
	border-color: var(--color-text);
	color: inherit;
}

.product-card__media {
	position: relative;
	aspect-ratio: 1;
	background: var(--color-surface);
	overflow: hidden;
}

.product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.5s ease;
}

.product-card__link:hover .product-card__media img {
	transform: scale(1.03);
}

.product-card__badge {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 2;
	background: #000000;
	color: #ffffff;
	font-family: var(--font-display);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0.25rem 0.5rem;
}

.product-card__body {
	padding: 1rem 1.25rem 1.25rem;
}

.product-card__meta {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-text-muted);
	margin-bottom: 0.35rem;
}

.product-card__price {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 0.5rem;
}

.product-card__cta {
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

/* Product detail */
.product-detail-hero {
	padding-top: calc(var(--header-height) + 1rem);
	padding-bottom: var(--space-section);
}

.product-detail-hero__media {
	position: relative;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
}

.product-detail-hero__media img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	object-position: center;
	background: var(--color-surface);
}

.product-detail-hero__price {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 1rem;
}

.product-detail-hero__specs {
	font-size: 0.9rem;
	color: var(--color-text-muted);
}

.product-detail-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

/* Page hero */
.page-hero {
	padding-top: calc(var(--header-height) + 1.5rem);
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--color-border);
}

.page-hero__subtitle {
	max-width: 40rem;
}

/* Testimonials */
.testimonials-carousel__nav {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.testimonials-carousel__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border: 1px solid var(--color-border);
	background: var(--color-bg);
	color: var(--color-text);
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.testimonials-carousel__btn:hover,
.testimonials-carousel__btn:focus-visible {
	background: var(--color-text);
	border-color: var(--color-text);
	color: var(--color-bg);
	outline: none;
}

.testimonials-carousel__viewport {
	overflow: hidden;
}

.testimonials-carousel__track {
	display: flex;
	transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

.testimonials-carousel__slide {
	flex: 0 0 100%;
	min-width: 0;
}

.testimonials-carousel__row > [class*='col-'] {
	display: flex;
}

.testimonial-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	padding: 2rem;
	margin: 0;
	height: 100%;
}

.testimonial-card__quote {
	font-size: 1.1rem;
	line-height: 1.55;
	margin-bottom: 1.25rem;
}

.testimonial-card cite {
	font-style: normal;
	font-weight: 600;
	display: block;
}

.testimonial-card span {
	font-size: 0.85rem;
	color: var(--color-text-muted);
}

@media (prefers-reduced-motion: reduce) {
	.testimonials-carousel__track {
		transition: none;
	}
}

/* CTA */
.cta-banner {
	background: var(--color-surface);
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
	padding: var(--space-section) 0;
}

.cta-banner__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
}

.cta-banner__subtitle {
	max-width: 32rem;
	color: var(--color-text-muted);
	margin: 0;
}

/* Support */
.support-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
	.support-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.support-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 1.25rem;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	color: inherit;
	transition: border-color 0.25s ease;
}

.support-card:hover {
	border-color: var(--color-text);
	color: var(--color-text);
}

.support-card i {
	font-size: 1.25rem;
	color: var(--color-text);
}

.support-card span {
	font-family: var(--font-display);
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

/* Contact form */
.contact-form .form-control,
.contact-form .form-select {
	background: var(--color-bg);
	border-color: var(--color-border);
	color: var(--color-text);
	border-radius: 0;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
	background: var(--color-bg);
	border-color: var(--color-text);
	color: var(--color-text);
	box-shadow: none;
}

.contact-form .form-label {
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* Footer */
.site-footer {
	background: var(--color-surface);
	border-top: 1px solid var(--color-border);
	padding: var(--space-section) 0 2rem;
}

.site-footer__logo {
	display: inline-block;
	line-height: 0;
	margin-bottom: 0.75rem;
}

.site-footer__logo-img {
	display: block;
	height: 2.5rem;
	width: auto;
	max-width: 12.5rem;
	object-fit: contain;
}

.site-footer__tagline {
	color: var(--color-text-muted);
	font-size: 0.95rem;
	max-width: 22rem;
	margin-bottom: 1.5rem;
}

.site-footer__label {
	font-family: var(--font-display);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-text-muted);
	margin-bottom: 1rem;
}

.site-footer__links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-footer__links li {
	margin-bottom: 0.4rem;
}

.site-footer__links a {
	color: var(--color-text-muted);
	font-size: 0.9rem;
}

.site-footer__links a:hover {
	color: var(--color-text);
}

.footer-newsletter .form-control {
	background: var(--color-bg);
	border-color: var(--color-border);
	color: var(--color-text);
	border-radius: 0;
}

.footer-newsletter .form-label {
	font-family: var(--font-display);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.site-footer__social {
	display: flex;
	gap: 1rem;
	margin-top: 1.25rem;
}

.site-footer__social a {
	color: var(--color-text-muted);
	font-size: 1.1rem;
}

.site-footer__social a:hover {
	color: var(--color-text);
}

.site-footer__bottom {
	margin-top: 2.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--color-border);
	text-align: center;
}

.site-footer__bottom small {
	color: var(--color-text-muted);
}

.empty-state {
	color: var(--color-text-muted);
	text-align: center;
	padding: 3rem 0;
}

/* Bootstrap overrides */
.alert-success {
	background: var(--color-surface);
	border-color: var(--color-border);
	color: var(--color-text);
}

.alert-danger {
	background: var(--color-surface);
	border-color: var(--color-text);
	color: var(--color-text);
}

.btn-close {
	filter: none;
}

.page-error {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.page-error main {
	flex: 1;
}

@media (max-width: 991.98px) {
	.page-error {
		padding-bottom: 0;
	}
}

.error-page {
	width: 100%;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.error-page__section {
	width: 100%;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(3rem, 8vw, 6rem) 0;
	background: var(--color-surface);
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}

.error-page__inner {
	width: 100%;
	max-width: 100%;
	text-align: center;
	padding-left: var(--container-pad);
	padding-right: var(--container-pad);
}

.error-page__code {
	font-family: var(--font-display);
	font-size: clamp(4rem, 18vw, 12rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.02em;
	color: var(--color-text-muted);
	margin: 0 0 1rem;
	opacity: 0.35;
}

.error-page__title {
	font-size: clamp(2rem, 6vw, 4rem);
	margin: 0 0 1.25rem;
}

.error-page__message {
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	color: var(--color-text-muted);
	max-width: 40rem;
	margin: 0 auto 2rem;
}

/* Scroll reveal */
[data-reveal] {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	[data-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.product-card__media img {
		transition: none;
	}
}
