:root {
	--bg: #0e1111;
	--bg-soft: #151a18;
	--panel: #1d2321;
	--panel-2: #232b28;
	--text: #e8ece8;
	--muted: #b6beb8;
	--olive: #5e7a5e;
	--coyote: #9d8b68;
	--alert: #be2d2d;
	--line: #2d3833;
	--radius: 14px;
	--container: 1240px;
	--shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Barlow Condensed", "Segoe UI", sans-serif;
	font-size: 19px;
	line-height: 1.5;
	color: var(--text);
	background: radial-gradient(circle at 20% -10%, #3c4f3f 0%, transparent 35%),
		radial-gradient(circle at 100% 0%, #4d4336 0%, transparent 25%), var(--bg);
}

a {
	color: inherit;
	text-decoration: none;
}

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

.container {
	width: min(100% - 2.2rem, var(--container));
	margin: 0 auto;
}

.section {
	padding: 3.4rem 0;
}

.section__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.section__head h2 {
	margin: 0;
	font-family: "Teko", sans-serif;
	font-size: clamp(2rem, 4vw, 3rem);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.section__head a {
	color: var(--coyote);
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.top-strip {
	background: linear-gradient(90deg, #1c231f, #272f2b);
	border-bottom: 1px solid var(--line);
	font-size: 0.92rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.top-strip__inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.8rem;
	padding: 0.55rem 0;
}

.top-strip__inner p {
	margin: 0;
	color: var(--muted);
	text-align: center;
}

.nav-wrap {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1.2rem;
	padding: 1rem 0;
}

.site-title {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	font-family: "Teko", sans-serif;
	font-size: 2.2rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
}

.site-title img {
	width: 52px;
	height: 52px;
	object-fit: cover;
	border-radius: 50%;
}

.site-branding img {
	max-height: 62px;
	width: auto;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 1.2rem;
}

.main-navigation a {
	font-family: "Teko", sans-serif;
	font-size: 1.35rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #f3f5f2;
	position: relative;
}

.main-navigation a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	height: 2px;
	width: 100%;
	transform: scaleX(0);
	transform-origin: left center;
	background: var(--alert);
	transition: transform 0.28s ease;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after {
	transform: scaleX(1);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.header-action {
	padding: 0.45rem 0.75rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--muted);
}

.header-action--cart span {
	display: inline-grid;
	place-items: center;
	width: 22px;
	height: 22px;
	margin-left: 0.45rem;
	border-radius: 50%;
	background: var(--alert);
	color: #fff;
	font-size: 0.82rem;
}

.menu-toggle {
	display: none;
	background: transparent;
	border: 0;
	padding: 0;
}

.menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: #fff;
	margin: 5px 0;
}

.hero {
	position: relative;
	min-height: 68svh;
	display: flex;
	align-items: center;
	background:
		linear-gradient(120deg, rgba(5, 8, 7, 0.86), rgba(5, 8, 7, 0.25)),
		url("https://images.unsplash.com/photo-1604881991720-f91add269bed?auto=format&fit=crop&w=1800&q=80");
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.hero--custom-bg {
	background-size: cover;
	background-position: right center;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(
		-35deg,
		rgba(255, 255, 255, 0.03),
		rgba(255, 255, 255, 0.03) 1px,
		transparent 1px,
		transparent 15px
	);
	mix-blend-mode: soft-light;
}

.hero__content {
	position: relative;
	z-index: 2;
	max-width: 560px;
	margin-left: auto;
	margin-right: 4.5rem;
	padding: 4rem 0;
}

.hero__kicker {
	margin: 0 0 0.35rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--coyote);
}

.hero h1 {
	margin: 0;
	font-family: "Teko", sans-serif;
	font-size: clamp(3rem, 6.6vw, 5.1rem);
	line-height: 0.93;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.hero p {
	max-width: 520px;
	font-size: 1.2rem;
	color: #fff;
}

.hero__actions {
	display: flex;
	gap: 0.8rem;
	margin-top: 1.2rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.72rem 1.08rem;
	border-radius: 999px;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	border: 1px solid transparent;
}

.btn:hover {
	transform: translateY(-1px);
}

.btn--primary {
	background: linear-gradient(90deg, #be2d2d, #ca4032);
	color: #fff;
	box-shadow: 0 8px 24px rgba(190, 45, 45, 0.35);
}

.btn--ghost {
	border-color: #6f7d73;
	color: #e4e8e4;
}

.btn--small {
	padding: 0.5rem 0.84rem;
	font-size: 0.86rem;
	border-color: var(--line);
	color: #e0e5e0;
}

.hero__stats {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.hero__stats li {
	padding: 0.5rem 0.7rem;
	background: rgba(11, 14, 13, 0.66);
	border: 1px solid rgba(158, 168, 160, 0.2);
	border-radius: 8px;
	font-size: 0.95rem;
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.category-card {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background:
		radial-gradient(circle at 50% 26%, rgba(184, 255, 120, 0.18), transparent 24%),
		linear-gradient(180deg, rgba(14, 22, 19, 0.94), rgba(10, 15, 13, 0.97)),
		repeating-linear-gradient(
			0deg,
			rgba(173, 255, 111, 0.035) 0,
			rgba(173, 255, 111, 0.035) 1px,
			transparent 1px,
			transparent 24px
		),
		repeating-linear-gradient(
			90deg,
			rgba(173, 255, 111, 0.03) 0,
			rgba(173, 255, 111, 0.03) 1px,
			transparent 1px,
			transparent 24px
		);
	border: 1px solid rgba(204, 255, 171, 0.28);
	border-radius: 24px;
	min-height: 470px;
	box-shadow:
		0 28px 60px rgba(0, 0, 0, 0.4),
		inset 0 0 0 1px rgba(227, 255, 205, 0.04),
		inset 0 0 32px rgba(129, 255, 95, 0.06);
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
	transform: translateY(-5px);
	border-color: rgba(204, 255, 171, 0.6);
	box-shadow:
		0 34px 70px rgba(0, 0, 0, 0.48),
		inset 0 0 0 1px rgba(227, 255, 205, 0.08),
		inset 0 0 38px rgba(129, 255, 95, 0.1);
}

.category-card::before,
.category-card::after {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	height: 1px;
	background: linear-gradient(90deg, rgba(185, 255, 121, 0.6), transparent 16%, transparent 84%, rgba(185, 255, 121, 0.6));
	opacity: 0.7;
}

.category-card::before {
	top: 46px;
}

.category-card::after {
	bottom: 54px;
}

.category-card__image {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.06;
	mix-blend-mode: screen;
}

.category-card__content {
	position: relative;
	z-index: 1;
	padding: 0 1.6rem 2rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	text-align: center;
	gap: 0.55rem;
	height: auto;
}

.category-card__icon {
	position: relative;
	z-index: 1;
	display: block;
	width: min(78%, 210px);
	height: 150px;
	margin: 4.4rem auto 0.8rem;
	background-image: var(--category-icon);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	filter:
		drop-shadow(0 0 10px rgba(196, 255, 130, 0.55))
		drop-shadow(0 0 22px rgba(181, 255, 112, 0.28));
}

.category-card--rifle {
	--category-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 160' fill='none' stroke='%23c5ff77' stroke-width='4.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M24 88h122l34-14h88'/%3E%3Cpath d='M52 88V62h34l24 12h46v14'/%3E%3Cpath d='M140 88l-10 30h18l10-24'/%3E%3Cpath d='M182 74v44'/%3E%3Cpath d='M210 74v44'/%3E%3Cpath d='M244 74v20h32V74'/%3E%3Cpath d='M268 74V58h20v16'/%3E%3Cpath d='M288 84h18v8h-18'/%3E%3C/svg%3E");
}

.category-card--vest {
	--category-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 180' fill='none' stroke='%23c5ff77' stroke-width='4.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M58 28h32l8 16h24l8-16h32l16 22-10 34v56l-18 20H70l-18-20V84L42 50l16-22z'/%3E%3Cpath d='M88 44v34h44V44'/%3E%3Cpath d='M74 96h72'/%3E%3Cpath d='M74 116h72'/%3E%3Cpath d='M84 136v24'/%3E%3Cpath d='M110 136v24'/%3E%3Cpath d='M136 136v24'/%3E%3C/svg%3E");
}

.category-card--optic {
	--category-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 280 160' fill='none' stroke='%23c5ff77' stroke-width='4.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M26 100h34V72H26z'/%3E%3Cpath d='M60 90h24V64H60'/%3E%3Crect x='84' y='52' width='82' height='56' rx='8'/%3E%3Ccircle cx='125' cy='80' r='19'/%3E%3Cpath d='M166 66h38v28h-38'/%3E%3Cpath d='M102 108l-18 18h108'/%3E%3Cpath d='M218 52l8-10h20l8 10v56l-8 10h-20l-8-10z'/%3E%3Ccircle cx='236' cy='80' r='18'/%3E%3C/svg%3E");
}

.category-card--ammo {
	--category-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 170' fill='none' stroke='%23c5ff77' stroke-width='4.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M72 34h18l6 14v92H66V48z'/%3E%3Cpath d='M72 34h18'/%3E%3Cpath d='M96 82H66'/%3E%3Cpath d='M82 58h1'/%3E%3Cpath d='M82 94h1'/%3E%3Cpath d='M82 118h1'/%3E%3Cpath d='M176 74h72l16 8v40l-16 8h-72z'/%3E%3Cpath d='M164 84h12v36h-12z'/%3E%3Cpath d='M180 34h52l12 8v24l-12 8h-52l-12-8V42z'/%3E%3Cpath d='M222 34v40'/%3E%3C/svg%3E");
}

.category-card h3 {
	margin: 0;
	font-family: "Teko", sans-serif;
	font-size: clamp(2.15rem, 3.2vw, 3rem);
	letter-spacing: 0.04em;
	line-height: 0.95;
	text-transform: uppercase;
	color: #f2f4ee;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}

.category-card p {
	margin: 0;
	color: rgba(231, 238, 230, 0.84);
	font-size: 1.1rem;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.product-card {
	background: linear-gradient(145deg, #181d1b, #212825);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	box-shadow: var(--shadow);
}

.product-card__image {
	position: relative;
	display: block;
	background: #0f1312;
}

.product-card__image img {
	width: 100%;
	height: 240px;
	object-fit: contain;
	padding: 1rem;
}

.product-card__badge {
	position: absolute;
	top: 0.7rem;
	left: 0.7rem;
	background: var(--alert);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 700;
	padding: 0.2rem 0.5rem;
	border-radius: 4px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.product-card__body {
	padding: 0.9rem 1rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.product-card h3 {
	margin: 0;
	font-family: "Teko", sans-serif;
	font-size: 1.55rem;
	letter-spacing: 0.02em;
	line-height: 1;
}

.product-card__meta {
	margin: 0;
	font-size: 0.9rem;
	color: #95c697;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.product-card__price {
	margin: 0;
	font-weight: 700;
	color: #fff;
}

.product-card--placeholder {
	justify-content: center;
	padding: 1.1rem;
}

.section--arrival .arrival-timeline {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.8rem;
}

.arrival-card {
	background: linear-gradient(135deg, #171c1a, #1f2623);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1rem;
}

.arrival-card__date {
	margin: 0;
	font-size: 0.88rem;
	color: var(--coyote);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.arrival-card h3 {
	margin: 0.3rem 0 0.55rem;
	font-family: "Teko", sans-serif;
	font-size: 1.7rem;
	line-height: 1;
}

.arrival-card p {
	margin: 0;
	color: var(--muted);
	font-size: 1rem;
}

.section--benefits .benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.9rem;
}

.benefits-grid article {
	background: linear-gradient(130deg, #212925, #2a322e);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.1rem;
}

.benefits-grid h3 {
	margin: 0 0 0.45rem;
	font-family: "Teko", sans-serif;
	font-size: 1.8rem;
	line-height: 1;
	text-transform: uppercase;
}

.benefits-grid p {
	margin: 0;
	color: var(--muted);
}

.brand-strip {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0.75rem;
}

.brand-strip span {
	padding: 0.9rem 0.5rem;
	background: #161b19;
	border: 1px solid var(--line);
	border-radius: 10px;
	text-align: center;
	font-family: "Teko", sans-serif;
	font-size: 1.45rem;
	letter-spacing: 0.04em;
	color: #d7ddd8;
}

.site-footer {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid var(--line);
	background: linear-gradient(180deg, #121614 0%, #0d100f 100%);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1fr;
	gap: 1rem;
}

.footer-col h4,
.footer-widget-title {
	margin: 0 0 0.5rem;
	font-family: "Teko", sans-serif;
	font-size: 1.5rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.35rem;
}

.footer-col p,
.footer-col li {
	margin: 0;
	color: var(--muted);
}

.footer-bottom {
	padding: 0.8rem 0 1rem;
	margin-top: 1rem;
	border-top: 1px solid var(--line);
	color: #aab2ad;
	font-size: 0.88rem;
}

.content-shell {
	max-width: 980px;
}

.content-article {
	background: linear-gradient(135deg, #151a18, #1e2522);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.4rem;
}

.content-article h1 {
	margin-top: 0;
	font-family: "Teko", sans-serif;
	font-size: clamp(2.2rem, 4vw, 3rem);
	letter-spacing: 0.02em;
	line-height: 1;
	text-transform: uppercase;
}

.content-meta {
	color: var(--coyote);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.content-article__thumb {
	margin-bottom: 1rem;
	overflow: hidden;
	border-radius: 10px;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.9rem;
}

.post-card {
	background: linear-gradient(145deg, #171d1b, #222a27);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}

.post-card__thumb img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.post-card__content {
	padding: 0.9rem;
}

.post-card__content p {
	margin: 0;
	color: var(--muted);
}

.post-card h2 {
	margin: 0.25rem 0 0.45rem;
	font-family: "Teko", sans-serif;
	font-size: 1.8rem;
	line-height: 1;
}

.archive-head {
	margin-bottom: 1.2rem;
}

.archive-head h1 {
	margin: 0;
	font-family: "Teko", sans-serif;
	font-size: clamp(2.2rem, 4.5vw, 3.4rem);
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.archive-desc {
	color: var(--muted);
}

.not-found {
	text-align: center;
}

.not-found h1 {
	margin: 0;
	font-family: "Teko", sans-serif;
	font-size: 7rem;
	line-height: 0.9;
}

.not-found p {
	margin-top: 0.4rem;
	color: var(--muted);
}

.empty-state {
	background: linear-gradient(145deg, #181d1b, #232b28);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1rem;
}

.woo-breadcrumb {
	margin-bottom: 1rem;
	font-size: 0.92rem;
	color: var(--muted);
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	background: linear-gradient(145deg, #171d1b, #202825);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 0.8rem;
}

.woocommerce span.onsale {
	background: var(--alert);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	background: linear-gradient(90deg, #be2d2d, #ca4032);
	border: 0;
	color: #fff;
	border-radius: 999px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@media (max-width: 1080px) {
	.top-strip__inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.nav-wrap {
		grid-template-columns: auto auto;
	}

	.menu-toggle {
		display: inline-block;
		justify-self: end;
	}

	.main-navigation {
		grid-column: 1 / -1;
		display: none;
		border-top: 1px solid var(--line);
		padding-top: 0.8rem;
	}

	.main-navigation.is-open {
		display: block;
	}

	.main-navigation ul {
		flex-wrap: wrap;
	}

	.header-actions {
		display: none;
	}

	.category-grid,
	.product-grid,
	.section--arrival .arrival-timeline {
		grid-template-columns: repeat(2, 1fr);
	}

	.category-card {
		min-height: 410px;
	}

	.category-card__icon {
		height: 126px;
		margin-top: 3.6rem;
	}

	.brand-strip {
		grid-template-columns: repeat(3, 1fr);
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.post-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 700px) {
	body {
		font-size: 18px;
	}

	.hero {
		min-height: 74svh;
	}

	.hero__content {
		margin-right: 0;
		padding: 2.6rem 0;
	}

	.hero__actions {
		flex-direction: column;
		align-items: flex-start;
	}

	.category-grid,
	.product-grid,
	.section--arrival .arrival-timeline,
	.section--benefits .benefits-grid,
	.brand-strip,
	.footer-grid,
	.post-grid {
		grid-template-columns: 1fr;
	}

	.category-card {
		min-height: 360px;
	}

	.category-card__icon {
		height: 110px;
		margin-top: 3rem;
	}
}
