:root {
	--t369-bg: #050706;
	--t369-bg-soft: #0b0f0c;
	--t369-surface: #101610;
	--t369-surface-2: #151d16;
	--t369-input-bg: #080c09;
	--t369-header-bg: rgba(5, 7, 6, 0.94);
	--t369-footer-bg: #030503;
	--t369-line: rgba(204, 255, 60, 0.18);
	--t369-line-soft: rgba(255, 255, 255, 0.11);
	--t369-text: #f3f7ef;
	--t369-muted: #a8b4a2;
	--t369-lime: #c7ff2e;
	--t369-lime-2: #8ddc1f;
	--t369-amber: #ffb545;
	--t369-red: #ff5a4f;
	--t369-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
	--t369-radius: 8px;
	--t369-radius-sm: 6px;
	--t369-container: 1240px;
	--t369-transition: 160ms ease;
}

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

html {
	min-width: 320px;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--t369-bg);
	color: var(--t369-text);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: 0;
	overflow-x: hidden;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background:
		linear-gradient(rgba(199, 255, 46, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(199, 255, 46, 0.03) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 70%);
}

img,
svg,
video,
iframe {
	max-width: 100%;
}

img {
	height: auto;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.22em;
}

a:hover {
	color: var(--t369-lime);
}

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

button,
a,
input,
textarea,
select {
	outline-offset: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 2px solid var(--t369-lime);
	outline-offset: 4px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--t369-text);
	line-height: 1.08;
	margin: 0 0 0.65em;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

h1 {
	font-size: 48px;
}

h2 {
	font-size: 32px;
}

h3 {
	font-size: 20px;
}

p {
	margin: 0 0 1em;
}

.t369-container {
	width: min(100% - 40px, var(--t369-container));
	margin-inline: auto;
}

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

.skip-link:focus {
	position: fixed;
	top: 16px;
	left: 16px;
	z-index: 9999;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto;
	color: var(--t369-bg);
	background: var(--t369-lime);
	border-radius: var(--t369-radius-sm);
	font-weight: 800;
}

.t369-promo-bar {
	background: var(--t369-lime);
	color: #061006;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
}

.t369-promo-bar p {
	margin: 0;
	padding: 9px 0;
	text-align: center;
}

.t369-site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--t369-header-bg);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--t369-line-soft);
}

.t369-header-inner {
	display: grid;
	grid-template-columns: auto minmax(220px, 1fr) minmax(260px, 360px) auto;
	align-items: center;
	gap: 22px;
	min-height: 82px;
}

.t369-brand {
	min-width: 0;
}

.custom-logo-link,
.t369-logo-fallback {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--t369-text);
	text-decoration: none;
	font-weight: 900;
	text-transform: uppercase;
}

.custom-logo {
	display: block;
	max-width: 210px;
	max-height: 58px;
	width: auto;
	height: auto;
}

.t369-logo-mark {
	display: inline-grid;
	place-items: center;
	width: 52px;
	height: 38px;
	border: 1px solid var(--t369-lime);
	color: var(--t369-lime);
	border-radius: var(--t369-radius-sm);
	box-shadow: 0 0 22px rgba(199, 255, 46, 0.16);
}

.t369-logo-text {
	max-width: 160px;
	overflow-wrap: anywhere;
}

.t369-primary-nav,
.t369-menu,
.t369-header-actions {
	display: flex;
	align-items: center;
}

.t369-primary-nav {
	gap: 18px;
	min-width: 0;
}

.t369-menu,
.t369-mobile-menu,
.t369-footer-menu,
.t369-social-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.t369-menu {
	gap: 18px;
	flex-wrap: wrap;
}

.t369-menu a,
.t369-shop-link {
	color: var(--t369-text);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
}

.t369-menu a:hover,
.t369-shop-link:hover {
	color: var(--t369-lime);
}

.t369-header-search {
	min-width: 0;
}

.t369-search-form,
.woocommerce-product-search {
	display: flex;
	align-items: stretch;
	width: 100%;
	border: 1px solid var(--t369-line-soft);
	background: var(--t369-input-bg);
	border-radius: var(--t369-radius);
	overflow: hidden;
}

.t369-search-form label,
.woocommerce-product-search label {
	flex: 1;
	min-width: 0;
}

.t369-search-form input,
.woocommerce-product-search input[type="search"] {
	width: 100%;
	min-height: 44px;
	border: 0;
	background: transparent;
	color: var(--t369-text);
	padding: 0 14px;
}

.t369-search-form button,
.woocommerce-product-search button {
	display: inline-grid;
	place-items: center;
	width: 48px;
	border: 0;
	border-left: 1px solid var(--t369-line-soft);
	color: #071008;
	background: var(--t369-lime);
	cursor: pointer;
}

.t369-search-form svg,
.woocommerce-product-search svg,
.t369-action-icon svg,
.t369-button svg,
.t369-benefit-icon svg,
.t369-video-placeholder svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.t369-header-actions {
	gap: 10px;
	justify-content: flex-end;
}

.t369-action-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	color: var(--t369-text);
	background: var(--t369-surface);
	border: 1px solid var(--t369-line-soft);
	border-radius: var(--t369-radius);
	text-decoration: none;
	transition: border-color var(--t369-transition), color var(--t369-transition), background var(--t369-transition);
}

.t369-action-link:hover {
	color: var(--t369-lime);
	border-color: var(--t369-line);
	background: #0d140d;
}

.t369-cart-link {
	gap: 9px;
	padding: 0 12px;
}

.t369-cart-meta {
	display: grid;
	gap: 0;
	text-align: left;
	line-height: 1.1;
}

.t369-cart-count {
	color: var(--t369-lime);
	font-size: 13px;
	font-weight: 900;
}

.t369-cart-total {
	color: var(--t369-muted);
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
}

.t369-menu-toggle {
	display: none;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0;
	color: var(--t369-text);
	background: var(--t369-surface);
	border: 1px solid var(--t369-line-soft);
	border-radius: var(--t369-radius);
	cursor: pointer;
}

.t369-icon-close {
	display: none;
}

.is-menu-open .t369-icon-open {
	display: none;
}

.is-menu-open .t369-icon-close {
	display: inline-flex;
}

.t369-mobile-panel {
	border-top: 1px solid var(--t369-line-soft);
	background: var(--t369-bg-soft);
}

.t369-mobile-panel[hidden] {
	display: none;
}

.t369-mobile-panel .t369-container {
	padding-block: 18px 22px;
}

.t369-mobile-search {
	margin-bottom: 16px;
}

.t369-mobile-menu {
	display: grid;
	gap: 8px;
}

.t369-mobile-menu a,
.t369-mobile-shop-link {
	display: block;
	padding: 12px 0;
	color: var(--t369-text);
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
	border-bottom: 1px solid var(--t369-line-soft);
}

.t369-button,
.button,
.wp-element-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 46px;
	padding: 12px 18px;
	border-radius: var(--t369-radius);
	border: 1px solid transparent;
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: transform var(--t369-transition), background var(--t369-transition), color var(--t369-transition), border-color var(--t369-transition);
}

.t369-button:hover,
.button:hover,
.wp-element-button:hover {
	transform: translateY(-1px);
}

.t369-button-primary,
.button,
.wp-element-button {
	background: var(--t369-lime);
	color: #071008;
	box-shadow: 0 0 24px rgba(199, 255, 46, 0.16);
}

.t369-button-primary:hover,
.button:hover,
.wp-element-button:hover {
	color: #071008;
	background: #d6ff58;
}

.t369-button-secondary {
	color: var(--t369-text);
	border-color: var(--t369-line);
	background: rgba(199, 255, 46, 0.06);
}

.t369-button-secondary:hover {
	color: var(--t369-lime);
	background: rgba(199, 255, 46, 0.1);
}

.t369-hero {
	padding: 84px 0 70px;
	border-bottom: 1px solid var(--t369-line-soft);
}

.t369-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
	align-items: center;
	gap: 46px;
}

.t369-hero-copy {
	max-width: 720px;
}

.t369-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 14px;
	color: var(--t369-lime);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.t369-eyebrow::before {
	content: "";
	width: 28px;
	height: 2px;
	background: var(--t369-lime);
	box-shadow: 0 0 16px rgba(199, 255, 46, 0.6);
}

.t369-hero h1 {
	max-width: 820px;
	margin-bottom: 18px;
}

.t369-hero-text {
	max-width: 650px;
	color: var(--t369-muted);
	font-size: 18px;
}

.t369-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.t369-hero-media {
	min-width: 0;
}

.t369-hero-image,
.t369-hero-placeholder {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--t369-radius);
	border: 1px solid var(--t369-line);
	box-shadow: var(--t369-shadow);
}

.t369-hero-placeholder {
	display: grid;
	place-items: center;
	align-content: center;
	gap: 12px;
	padding: 28px;
	background:
		linear-gradient(135deg, rgba(199, 255, 46, 0.14), rgba(255, 255, 255, 0.03)),
		var(--t369-surface);
	text-align: center;
}

.t369-hero-placeholder span {
	display: grid;
	place-items: center;
	width: 112px;
	height: 82px;
	color: var(--t369-lime);
	border: 2px solid currentColor;
	border-radius: var(--t369-radius);
	font-size: 34px;
	font-weight: 900;
}

.t369-hero-placeholder strong {
	max-width: 280px;
	text-transform: uppercase;
}

.t369-section {
	padding: 76px 0;
	border-bottom: 1px solid var(--t369-line-soft);
}

.t369-section-heading {
	max-width: 760px;
	margin-bottom: 28px;
}

.t369-section-heading-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	max-width: none;
}

.t369-section-note {
	max-width: 320px;
	margin: 0 0 0.6em;
	color: var(--t369-muted);
	font-size: 14px;
}

.t369-category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.t369-category-card {
	display: grid;
	grid-template-rows: auto 1fr;
	min-height: 100%;
	overflow: hidden;
	color: var(--t369-text);
	background: var(--t369-surface);
	border: 1px solid var(--t369-line-soft);
	border-radius: var(--t369-radius);
	text-decoration: none;
	transition: transform var(--t369-transition), border-color var(--t369-transition), box-shadow var(--t369-transition);
}

.t369-category-card:hover {
	transform: translateY(-2px);
	border-color: var(--t369-line);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.t369-category-media {
	display: block;
	aspect-ratio: 4 / 3;
	background: var(--t369-input-bg);
}

.t369-category-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.t369-category-placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	color: var(--t369-lime);
	font-size: 32px;
	font-weight: 900;
}

.t369-category-content {
	display: grid;
	gap: 6px;
	padding: 16px;
}

.t369-category-content strong {
	font-size: 18px;
	text-transform: uppercase;
}

.t369-category-content small {
	color: var(--t369-muted);
	font-size: 13px;
	font-weight: 700;
}

.t369-product-section-alt {
	background: rgba(255, 255, 255, 0.015);
}

.t369-product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.t369-product-card {
	position: relative;
	display: grid;
	grid-template-rows: auto 1fr;
	min-width: 0;
	overflow: hidden;
	background: var(--t369-surface);
	border: 1px solid var(--t369-line-soft);
	border-radius: var(--t369-radius);
	transition: transform var(--t369-transition), border-color var(--t369-transition), box-shadow var(--t369-transition);
}

.t369-product-card:hover {
	transform: translateY(-2px);
	border-color: var(--t369-line);
	box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
}

.t369-product-media {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	background: #f4f6f2;
	overflow: hidden;
}

.t369-product-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 14px;
	transition: transform var(--t369-transition);
}

.t369-product-card:hover .t369-product-media img {
	transform: scale(1.03);
}

.t369-sale-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 5px 9px;
	color: #071008;
	background: var(--t369-lime);
	border-radius: var(--t369-radius-sm);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.t369-product-body {
	display: grid;
	gap: 10px;
	padding: 16px;
}

.t369-product-body h3 {
	margin: 0;
	font-size: 17px;
	line-height: 1.25;
	text-transform: none;
}

.t369-product-body h3 a {
	color: var(--t369-text);
	text-decoration: none;
}

.t369-product-body h3 a:hover {
	color: var(--t369-lime);
}

.t369-price,
.price {
	color: var(--t369-text);
	font-size: 18px;
	font-weight: 900;
}

.t369-price del,
.price del {
	color: var(--t369-muted);
	font-size: 0.85em;
	opacity: 0.72;
}

.t369-price ins,
.price ins {
	color: var(--t369-lime);
	text-decoration: none;
}

.t369-stock {
	margin: 0;
	font-size: 13px;
	font-weight: 800;
}

.t369-stock.is-in-stock,
.stock.in-stock {
	color: var(--t369-lime);
}

.t369-stock.is-out-of-stock,
.stock.out-of-stock {
	color: var(--t369-red);
}

.t369-card-actions {
	margin-top: auto;
}

.t369-card-actions .button {
	width: 100%;
	min-height: 44px;
}

.t369-rating .star-rating {
	float: none;
	margin: 0;
}

.t369-empty-state {
	padding: 20px;
	background: rgba(255, 255, 255, 0.035);
	border: 1px dashed var(--t369-line);
	border-radius: var(--t369-radius);
	color: var(--t369-muted);
}

.t369-empty-state p {
	margin: 0;
}

.t369-benefits-section {
	background: var(--t369-bg-soft);
}

.t369-benefits-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.t369-benefit {
	padding: 20px;
	background: var(--t369-surface);
	border: 1px solid var(--t369-line-soft);
	border-radius: var(--t369-radius);
}

.t369-benefit-icon {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-bottom: 16px;
	color: var(--t369-lime);
	border: 1px solid var(--t369-line);
	border-radius: var(--t369-radius-sm);
}

.t369-benefit h2 {
	margin-bottom: 8px;
	font-size: 18px;
}

.t369-benefit p {
	margin: 0;
	color: var(--t369-muted);
	font-size: 14px;
}

.t369-video-grid,
.t369-newsletter-box {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
	align-items: center;
	gap: 36px;
}

.t369-video-grid p,
.t369-newsletter-box p {
	color: var(--t369-muted);
}

.t369-video-frame {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--t369-input-bg);
	border: 1px solid var(--t369-line);
	border-radius: var(--t369-radius);
	box-shadow: var(--t369-shadow);
}

.t369-video-frame iframe,
.t369-video-frame video {
	display: block;
	width: 100%;
	height: 100%;
}

.t369-video-placeholder {
	display: grid;
	place-items: center;
	align-content: center;
	gap: 12px;
	width: 100%;
	height: 100%;
	color: var(--t369-lime);
	text-align: center;
}

.t369-video-placeholder span {
	display: grid;
	place-items: center;
	width: 62px;
	height: 62px;
	border: 1px solid var(--t369-line);
	border-radius: 50%;
}

.t369-newsletter-box {
	padding: 30px;
	background: var(--t369-surface);
	border: 1px solid var(--t369-line);
	border-radius: var(--t369-radius);
}

.t369-newsletter-form-slot form {
	display: grid;
	gap: 12px;
}

.t369-newsletter-form-slot input[type="email"],
.t369-newsletter-form-slot input[type="text"] {
	width: 100%;
	min-height: 48px;
	color: var(--t369-text);
	background: var(--t369-input-bg);
	border: 1px solid var(--t369-line-soft);
	border-radius: var(--t369-radius-sm);
	padding: 0 14px;
}

.t369-site-footer {
	padding: 58px 0 24px;
	background: var(--t369-footer-bg);
	border-top: 1px solid var(--t369-line-soft);
}

.t369-footer-grid {
	display: grid;
	grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(0, 1fr));
	gap: 34px;
}

.t369-footer-brand p,
.t369-footer-company p,
.t369-muted {
	color: var(--t369-muted);
}

.t369-footer-nav h2,
.t369-footer-company h2 {
	margin-bottom: 14px;
	font-size: 15px;
}

.t369-footer-menu {
	display: grid;
	gap: 9px;
}

.t369-footer-menu a,
.t369-footer-email,
.t369-social-list a {
	color: var(--t369-muted);
	text-decoration: none;
}

.t369-footer-menu a:hover,
.t369-footer-email:hover,
.t369-social-list a:hover {
	color: var(--t369-lime);
}

.t369-social-list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 16px;
}

.t369-footer-bottom {
	margin-top: 34px;
	padding-top: 18px;
	border-top: 1px solid var(--t369-line-soft);
	color: var(--t369-muted);
	font-size: 13px;
}

.t369-footer-bottom p {
	margin: 0;
}

.t369-page,
.t369-woo-page {
	padding: 54px 0 76px;
}

.t369-content-narrow {
	max-width: 920px;
}

.t369-entry {
	padding: 28px;
	background: var(--t369-surface);
	border: 1px solid var(--t369-line-soft);
	border-radius: var(--t369-radius);
}

.t369-entry-content {
	color: var(--t369-muted);
}

.t369-entry-content a {
	color: var(--t369-lime);
}

.t369-entry-content img {
	border-radius: var(--t369-radius);
}

.t369-legal-entry {
	background: var(--t369-input-bg);
}

.t369-legal-doc {
	color: var(--t369-text);
}

.t369-legal-intro {
	margin-bottom: 26px;
	padding: 16px 18px;
	background: rgba(199, 255, 46, 0.06);
	border: 1px solid var(--t369-line);
	border-radius: var(--t369-radius);
}

.t369-legal-intro p {
	margin: 0;
	color: var(--t369-lime);
	font-size: 18px;
	text-transform: uppercase;
}

.t369-legal-section {
	padding: 24px 0;
	border-top: 1px solid var(--t369-line-soft);
}

.t369-legal-section:first-of-type {
	border-top: 0;
}

.t369-legal-section h2 {
	margin-bottom: 14px;
	font-size: 22px;
	text-transform: none;
}

.t369-legal-section p,
.t369-legal-section li {
	color: var(--t369-muted);
}

.t369-legal-section strong {
	color: var(--t369-text);
}

.t369-legal-section a {
	color: var(--t369-lime);
	font-weight: 800;
}

.t369-legal-section ul {
	display: grid;
	gap: 8px;
	margin: 0 0 1em;
	padding-left: 22px;
}
