:root {
	--brand-red: #ff1a1a;
	--brand-red-dark: #b30000;
	--site-black: #000;
	--site-black-soft: #0a0a0a;
	--site-border: #181818;
	--site-text: #fff;
	--site-muted: #bdbdbd;
	--panel: #fff;
	--panel-text: #111;
	--panel-muted: #555;
	--max-width: 1360px;
}

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

html {
	overflow-x: hidden;
}

body {
	margin: 0;
	background: var(--site-black);
	color: var(--site-text);
	font-family: "Inter", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
}

body.admin-bar .site-header {
	top: 32px;
}

a {
	color: inherit;
}

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

button,
input {
	font: inherit;
}

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

.topbar {
	width: 100%;
	background: var(--brand-red);
	color: #fff;
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.5px;
	padding: 10px 16px;
}

.home .topbar,
.front-page .topbar {
	display: none;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 28px;
	width: 100%;
	min-height: 78px;
	padding: 0 45px;
	background: #000;
	border-bottom: 1px solid #111;
}

.site-logo {
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
	color: #fff;
	font-family: "Oswald", Arial, sans-serif;
	font-size: clamp(24px, 2vw, 32px);
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

.site-logo strong {
	color: var(--brand-red);
	font-weight: 700;
}

.primary-navigation {
	display: flex;
	justify-content: center;
	min-width: 0;
}

.primary-menu,
.footer-menu {
	display: flex;
	gap: 22px;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-menu li + li::before {
	content: "";
	display: inline-block;
	width: 3px;
	height: 3px;
	margin: 0 22px 4px 0;
	border-radius: 50%;
	background: #555;
	vertical-align: middle;
}

.primary-menu a {
	color: #fff;
	font-family: "Oswald", Arial, sans-serif;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 1px;
	text-decoration: none;
	transition: color 0.25s ease;
}

.primary-menu a:hover,
.primary-menu a:focus {
	color: var(--brand-red);
}

.header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
	min-width: 0;
}

.site-search input[type="search"] {
	width: 190px;
	height: 42px;
	padding: 0 15px;
	background: #111;
	color: #fff;
	border: 1px solid #333;
	border-radius: 12px;
	outline: none;
	font-size: 14px;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-search input[type="search"]::placeholder {
	color: #ddd;
}

.site-search input[type="search"]:hover,
.site-search input[type="search"]:focus {
	border-color: var(--brand-red-dark);
	box-shadow: 0 0 12px rgba(179, 0, 0, 0.35);
}

.account-link,
.cart-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-family: "Oswald", Arial, sans-serif;
	font-size: 16px;
	text-decoration: none;
	transition: color 0.25s ease, transform 0.25s ease;
}

.account-link:hover,
.account-link:focus,
.cart-link:hover,
.cart-link:focus {
	color: var(--brand-red);
	transform: translateY(-1px);
}

.account-link i,
.cart-link i {
	font-size: 22px;
}

.cart-link {
	position: relative;
}

.tsc-cart-count {
	position: absolute;
	top: -11px;
	right: -13px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--brand-red-dark);
	color: #fff;
	font-family: "Inter", Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.site-main {
	min-height: 55vh;
}

.hero {
	position: relative;
	min-height: calc(100vh - 78px);
	padding: 46px 0 74px;
	background: #000;
	text-align: center;
	overflow: hidden;
}

.hero-inner {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.hero-art {
	width: min(100vw, 1914px);
	max-width: none;
	margin: 0 auto;
}

.hero-copy {
	width: min(100%, 760px);
	margin: clamp(-220px, -11vw, -120px) auto 0;
	padding: 0 24px;
	position: relative;
	z-index: 2;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 25px;
	margin-bottom: 46px;
	filter: drop-shadow(0 0 18px rgba(255, 0, 0, 0.25));
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 190px;
	min-height: 51px;
	padding: 15px 38px;
	border-radius: 0;
	font-family: "Inter", Arial, sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0;
	text-decoration: none;
	transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.button-outline {
	border: 2px solid var(--brand-red-dark);
	color: #fff;
	background: transparent;
}

.button-outline:hover,
.button-outline:focus {
	border-color: var(--brand-red);
	background: var(--brand-red-dark);
	color: #fff;
	transform: translateY(-2px);
}

.subtitle {
	margin: 0 0 15px;
	color: #ddd;
	font-size: 20px;
	letter-spacing: 2px;
}

.meta {
	margin: 0;
	color: #aaa;
	font-size: 14px;
	letter-spacing: 2px;
}

.trust-bar {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	background: #121212;
	border-top: 1px solid #151515;
	border-bottom: 1px solid #151515;
}

.trust-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 82px;
	padding: 18px;
	background: #050505;
	color: #fff;
	font-family: "Oswald", Arial, sans-serif;
	font-size: 18px;
	letter-spacing: 1px;
}

.trust-item i {
	color: var(--brand-red);
	font-size: 22px;
}

.page-main {
	padding: 90px 24px;
	background: #fff;
	color: #111;
}

.content-card {
	width: min(100%, 1000px);
	margin: 0 auto;
	padding: clamp(28px, 5vw, 52px);
	border: 1px solid #d9d9d9;
	border-radius: 8px;
	background: #fff;
	color: #111;
}

.entry-title {
	margin: 0 0 28px;
	color: #111;
	font-family: "Oswald", Arial, sans-serif;
	font-size: clamp(36px, 6vw, 54px);
	line-height: 1.05;
}

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

.entry-content > *:last-child {
	margin-bottom: 0;
}

.entry-content h2,
.entry-content h3 {
	color: var(--brand-red-dark);
	font-family: "Oswald", Arial, sans-serif;
}

.entry-content a {
	color: var(--brand-red-dark);
}

.site-footer {
	background: #000;
	color: #fff;
	border-top: 1px solid #111;
}

.footer-main {
	display: grid;
	grid-template-columns: 1.3fr repeat(3, 0.8fr) 1.2fr;
	gap: 34px;
	width: min(100%, var(--max-width));
	margin: 0 auto;
	padding: 44px 24px 28px;
}

.footer-col h2,
.footer-col h3 {
	margin: 0 0 16px;
	font-family: "Oswald", Arial, sans-serif;
	letter-spacing: 1px;
}

.footer-col h2 {
	font-size: 24px;
}

.footer-col h2 span {
	color: var(--brand-red);
}

.footer-col h3 {
	color: #fff;
	font-size: 14px;
}

.footer-col p {
	margin: 0;
	color: #bdbdbd;
	font-size: 13px;
}

.footer-col a,
.footer-menu a {
	display: block;
	width: fit-content;
	color: #bdbdbd;
	font-size: 13px;
	text-decoration: none;
	transition: color 0.25s ease;
}

.footer-col a + a,
.footer-menu li + li {
	margin-top: 9px;
}

.footer-menu {
	display: block;
}

.footer-col a:hover,
.footer-col a:focus,
.footer-menu a:hover,
.footer-menu a:focus {
	color: var(--brand-red);
}

.newsletter-box {
	display: flex;
	gap: 8px;
	margin-top: 14px;
}

.newsletter-box input {
	min-width: 0;
	flex: 1;
	padding: 12px;
	border: 1px solid #333;
	border-radius: 8px;
	background: #111;
	color: #fff;
	font-size: 13px;
}

.newsletter-box button {
	padding: 12px 14px;
	border: 0;
	border-radius: 8px;
	background: var(--brand-red-dark);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.25s ease;
}

.newsletter-box button:hover,
.newsletter-box button:focus {
	background: var(--brand-red);
}

.footer-bottom {
	width: min(100%, var(--max-width));
	margin: 0 auto;
	padding: 18px 24px 28px;
	border-top: 1px solid #111;
	color: #777;
	font-size: 12px;
}

.footer-bottom p {
	margin: 0;
}

@media (max-width: 1180px) {
	.site-header {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 20px 28px;
	}

	.primary-navigation,
	.header-actions {
		justify-content: center;
	}

	.primary-menu {
		flex-wrap: wrap;
		justify-content: center;
		row-gap: 10px;
	}

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

@media (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}
}

@media (max-width: 720px) {
	.topbar {
		font-size: 12px;
	}

	.site-header {
		position: relative;
		top: auto;
		padding: 18px;
	}

	body.admin-bar .site-header {
		top: auto;
	}

	.site-logo {
		justify-content: center;
	}

	.primary-menu {
		gap: 14px;
	}

	.primary-menu li + li::before {
		display: none;
	}

	.primary-menu a {
		font-size: 17px;
	}

	.header-actions {
		flex-wrap: wrap;
		gap: 14px;
	}

	.site-search {
		width: 100%;
	}

	.site-search input[type="search"] {
		width: 100%;
	}

	.account-link span {
		display: none;
	}

	.hero {
		min-height: 620px;
		padding: 52px 0 56px;
	}

	.hero-art {
		width: 150vw;
		margin-left: -25vw;
	}

	.hero-copy {
		margin-top: -92px;
	}

	.hero-actions {
		gap: 12px;
		margin-bottom: 34px;
	}

	.button {
		width: min(100%, 280px);
		min-width: 0;
		padding: 13px 20px;
		font-size: 13px;
	}

	.subtitle {
		font-size: 16px;
	}

	.meta {
		font-size: 12px;
	}

	.trust-bar,
	.footer-main {
		grid-template-columns: 1fr;
	}

	.trust-item {
		min-height: 66px;
	}

	.newsletter-box {
		display: block;
	}

	.newsletter-box button {
		width: 100%;
		margin-top: 8px;
	}
}
