/*
Theme Name: Goated Builds
Theme URI: https://goatedbuilds.com
Author: Goated Builds
Description: Lightweight WooCommerce storefront for Goated Builds.
Version: 1.1.1
Text Domain: goated-builds
Requires at least: 6.6
Requires PHP: 8.1
*/

:root {
	--gb-bg: #07080b;
	--gb-bg-soft: #0d0f14;
	--gb-surface: #11141a;
	--gb-surface-raised: #151820;
	--gb-red: #ff2b2b;
	--gb-red-hover: #ff4545;
	--gb-red-dark: #b5121b;
	--gb-white: #fff;
	--gb-text: #a9afbb;
	--gb-muted: #727986;
	--gb-border: rgba(255, 255, 255, 0.08);
	--gb-red-glow: rgba(255, 43, 43, 0.2);
	--gb-success: #55d187;
	--gb-warning: #ffbf47;
	--gb-max: 1440px;
	--gb-radius: 20px;
	--gb-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

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

html {
	background: var(--gb-bg);
	scroll-behavior: smooth;
	scroll-padding-top: 96px;
}

body {
	margin: 0;
	min-width: 320px;
	background:
		radial-gradient(circle at 75% -5%, rgba(255, 43, 43, 0.11), transparent 30rem),
		var(--gb-bg);
	color: var(--gb-text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	overflow-x: hidden;
}

body.gb-menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

button,
.button,
[type="submit"] { cursor: pointer; }

:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.92);
	outline-offset: 3px;
}

::selection { background: var(--gb-red); color: var(--gb-white); }

h1, h2, h3, h4 {
	margin: 0 0 0.7em;
	color: var(--gb-white);
	font-family: "Space Grotesk", Sora, ui-sans-serif, system-ui, sans-serif;
	font-weight: 750;
	letter-spacing: -0.035em;
	line-height: 1.05;
}

h1 { font-size: clamp(2.55rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { margin: 0 0 1.2em; }

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

.screen-reader-text:focus {
	top: 8px;
	left: 8px;
	z-index: 100000;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: var(--gb-white);
	color: var(--gb-bg);
}

.gb-shell {
	width: min(calc(100% - 32px), var(--gb-max));
	margin-inline: auto;
}

.gb-section { position: relative; padding: clamp(72px, 8vw, 124px) 0; }
.gb-section--tight { padding-block: clamp(42px, 6vw, 72px); }
.gb-section--surface { background: var(--gb-bg-soft); border-block: 1px solid var(--gb-border); }

.gb-section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: clamp(28px, 5vw, 48px);
}

.gb-section-heading > div { max-width: 780px; }
.gb-section-heading h2 { margin-bottom: 0.28em; }
.gb-section-heading p { max-width: 54ch; margin: 0; }

.gb-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	color: var(--gb-red);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.gb-kicker::before {
	content: "";
	width: 20px;
	height: 2px;
	background: currentColor;
}

.gb-button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.gb-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wp-element-button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 12px 20px;
	border: 1px solid transparent;
	border-radius: 12px;
	font-weight: 750;
	line-height: 1.15;
	text-align: center;
	text-decoration: none;
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.gb-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.wp-element-button:hover { transform: translateY(-2px); }

.gb-button--primary,
.woocommerce a.button,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.wp-element-button {
	background: var(--gb-red);
	color: var(--gb-white);
	box-shadow: 0 12px 30px var(--gb-red-glow);
}

.gb-button--primary:hover,
.woocommerce a.button:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.wp-element-button:hover { background: var(--gb-red-hover); color: var(--gb-white); }

.gb-button--ghost,
.woocommerce button.button,
.woocommerce input.button {
	border-color: var(--gb-border);
	background: rgba(255, 255, 255, 0.045);
	color: var(--gb-white);
	box-shadow: none;
}

.gb-button--ghost:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover { border-color: rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.08); color: var(--gb-white); }

.gb-announcement {
	position: relative;
	z-index: 31;
	padding: 8px 16px;
	background: var(--gb-red);
	color: var(--gb-white);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.075em;
	line-height: 1.4;
	text-align: center;
	text-transform: uppercase;
}

.gb-header {
	position: sticky;
	top: 0;
	z-index: 30;
	border-bottom: 1px solid var(--gb-border);
	background: rgba(7, 8, 11, 0.9);
	backdrop-filter: blur(18px);
}

.gb-header__inner { display: flex; min-height: 72px; align-items: center; justify-content: space-between; gap: 24px; }

.gb-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--gb-white);
	font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
	font-size: 1.14rem;
	font-weight: 850;
	letter-spacing: -0.025em;
	text-decoration: none;
	text-transform: uppercase;
}

.gb-brand__mark {
	position: relative;
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border: 2px solid var(--gb-red);
	border-radius: 50%;
	box-shadow: inset 0 0 0 3px var(--gb-bg), 0 0 18px var(--gb-red-glow);
	font-size: 0.75rem;
	font-weight: 900;
}

.gb-brand__mark::after { content: ""; position: absolute; width: 2px; height: 100%; background: var(--gb-red); transform: rotate(38deg); opacity: 0.8; }

.gb-nav { display: flex; align-items: center; gap: 28px; }
.gb-nav ul { display: flex; align-items: center; gap: 26px; margin: 0; padding: 0; list-style: none; }
.gb-nav a { color: var(--gb-text); font-size: 0.92rem; font-weight: 650; text-decoration: none; }
.gb-nav a:hover, .gb-nav .current-menu-item > a { color: var(--gb-white); }

.gb-cart-link { position: relative; display: inline-flex; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; border: 1px solid var(--gb-border); border-radius: 12px; color: var(--gb-white); text-decoration: none; }
.gb-cart-link svg { width: 20px; height: 20px; }
.gb-cart-count { position: absolute; top: -6px; right: -6px; display: grid; min-width: 20px; height: 20px; padding: 0 5px; place-items: center; border: 2px solid var(--gb-bg); border-radius: 999px; background: var(--gb-red); color: var(--gb-white); font-size: 0.67rem; font-weight: 850; line-height: 1; }

.gb-menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--gb-border); border-radius: 12px; background: transparent; color: var(--gb-white); }
.gb-menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }

.gb-hero {
	position: relative;
	display: grid;
	min-height: min(760px, calc(100vh - 106px));
	align-items: center;
	overflow: hidden;
	border-bottom: 1px solid var(--gb-border);
}

.gb-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(7, 8, 11, 0.98) 0%, rgba(7, 8, 11, 0.84) 48%, rgba(7, 8, 11, 0.26) 100%),
		repeating-linear-gradient(90deg, transparent 0 119px, rgba(255, 255, 255, 0.025) 120px),
		repeating-linear-gradient(0deg, transparent 0 119px, rgba(255, 255, 255, 0.025) 120px);
}

.gb-hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr); align-items: center; gap: clamp(52px, 6vw, 100px); padding-block: clamp(88px, 10vw, 150px); }
.gb-hero__copy { max-width: 820px; }
.gb-hero h1 { margin-bottom: 18px; font-size: clamp(4rem, 8vw, 8rem); text-transform: uppercase; }
.gb-hero h1 span { display: block; color: var(--gb-red); }
.gb-hero__positioning { display: block; margin-bottom: 14px; color: var(--gb-white); font-family: "Space Grotesk", sans-serif; font-size: clamp(1.05rem, 1.6vw, 1.35rem); letter-spacing: .055em; text-transform: uppercase; }
.gb-hero__lead { max-width: 62ch; margin-bottom: 34px; color: #c7cbd3; font-size: clamp(1.08rem, 1.45vw, 1.32rem); }
.gb-hero__fine { margin-top: 20px; color: var(--gb-muted); font-size: 0.82rem; }

.gb-ball {
	position: relative;
	width: min(39vw, 560px);
	aspect-ratio: 1;
	justify-self: end;
	border: 2px solid rgba(255, 43, 43, 0.7);
	border-radius: 50%;
	background:
		radial-gradient(circle at 36% 30%, rgba(255, 91, 91, 0.85), var(--gb-red-dark) 40%, #380609 78%),
		var(--gb-red-dark);
	box-shadow: inset -40px -30px 80px rgba(0, 0, 0, 0.52), 0 0 100px rgba(255, 43, 43, 0.22);
	overflow: hidden;
}

.gb-ball::before, .gb-ball::after { content: ""; position: absolute; inset: -10%; border: 4px solid rgba(7, 8, 11, 0.65); border-radius: 50%; }
.gb-ball::before { transform: translateX(-47%); }
.gb-ball::after { transform: translateX(47%); }
.gb-ball__line { position: absolute; top: 49%; left: -5%; width: 110%; height: 4px; background: rgba(7, 8, 11, 0.65); transform: rotate(-18deg); }
.gb-ball__content { position: absolute; z-index: 2; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--gb-white); text-align: center; text-shadow: 0 3px 20px rgba(0, 0, 0, 0.45); }
.gb-ball__content strong { font-family: "Space Grotesk", sans-serif; font-size: clamp(4rem, 9vw, 7.5rem); letter-spacing: -0.08em; line-height: 0.8; }
.gb-ball__content span { margin-top: 18px; font-size: 0.74rem; font-weight: 900; letter-spacing: 0.2em; text-transform: uppercase; }

.gb-trust-strip { position: relative; z-index: 3; margin-top: -1px; border-bottom: 1px solid var(--gb-border); background: rgba(13, 15, 20, 0.93); }
.gb-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.gb-trust-item { display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding: 26px clamp(16px, 3vw, 34px); border-right: 1px solid var(--gb-border); }
.gb-trust-item:last-child { border-right: 0; }
.gb-trust-item__icon { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 12px; background: rgba(255, 43, 43, 0.1); color: var(--gb-red); font-weight: 900; }
.gb-trust-item strong { display: block; color: var(--gb-white); font-size: 0.95rem; }
.gb-trust-item span { font-size: 0.8rem; line-height: 1.4; }

.gb-vc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 1.7vw, 26px); }
.gb-vc-card { position: relative; display: flex; min-width: 0; min-height: 410px; flex-direction: column; padding: clamp(28px, 2.4vw, 38px); overflow: hidden; border: 1px solid var(--gb-border); border-radius: 24px; background: linear-gradient(160deg, rgba(255,255,255,.045), transparent 46%), var(--gb-surface); box-shadow: var(--gb-shadow); }
.gb-vc-card::after { content: ""; position: absolute; top: -60px; right: -60px; width: 130px; height: 130px; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 50%; }
.gb-vc-card.is-featured { border-color: rgba(255, 43, 43, 0.48); background: linear-gradient(160deg, rgba(255,43,43,.12), transparent 50%), var(--gb-surface-raised); }
.gb-vc-card__label { align-self: flex-start; margin-bottom: 52px; padding: 6px 11px; border: 1px solid rgba(255, 43, 43, 0.25); border-radius: 999px; background: rgba(255, 43, 43, 0.08); color: var(--gb-red); font-size: 0.7rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.gb-vc-card__amount { position: relative; z-index: 1; color: var(--gb-white); font-family: "Space Grotesk", sans-serif; font-size: clamp(3.4rem, 5vw, 5.1rem); font-weight: 850; letter-spacing: -0.07em; line-height: .9; }
.gb-vc-card p { min-height: 4.5em; margin: 20px 0; font-size: 0.95rem; }
.gb-vc-card__price { min-height: 48px; margin: auto 0 18px; color: var(--gb-white); font-size: 1.1rem; font-weight: 800; }
.gb-vc-card__price del { color: var(--gb-muted); font-size: 0.8em; }
.gb-vc-card__price ins { text-decoration: none; }

.gb-home-platforms { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-bottom: 42px; }
.gb-home-platform { position: relative; display: flex; min-height: 178px; flex-direction: column; justify-content: flex-end; padding: 28px 32px; overflow: hidden; border: 1px solid var(--gb-border); border-radius: 22px; background: var(--gb-surface); text-decoration: none; }
.gb-home-platform::after { content: ""; position: absolute; top: -90px; right: -45px; width: 220px; height: 220px; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; }
.gb-home-platform.is-selected { border-color: rgba(255,43,43,.48); background: radial-gradient(circle at 100% 0, rgba(255,43,43,.18), transparent 45%), var(--gb-surface-raised); }
.gb-home-platform.is-disabled { opacity: .68; }
.gb-home-platform strong { position: relative; z-index: 1; color: var(--gb-white); font-family: "Space Grotesk", sans-serif; font-size: clamp(2.1rem, 3vw, 3.2rem); line-height: 1; }
.gb-home-platform small { position: relative; z-index: 1; margin-top: 9px; color: var(--gb-text); font-size: .82rem; }
.gb-home-platform .gb-status { position: absolute; z-index: 2; top: 22px; left: 28px; margin: 0; }
.gb-shop-subheading { display: flex; align-items: center; gap: 18px; margin: 0 0 24px; }
.gb-shop-subheading > span { display: grid; width: 46px; height: 46px; flex: 0 0 46px; place-items: center; border: 1px solid rgba(255,43,43,.3); border-radius: 14px; background: rgba(255,43,43,.08); color: var(--gb-red); font-weight: 850; }
.gb-shop-subheading strong { display: block; color: var(--gb-white); font-family: "Space Grotesk", sans-serif; font-size: clamp(1.5rem, 2.4vw, 2.2rem); }
.gb-shop-subheading p { margin: 2px 0 0; font-size: .88rem; }

.gb-platform-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.gb-platform-card { position: relative; min-height: 240px; padding: clamp(28px, 5vw, 48px); overflow: hidden; border: 1px solid var(--gb-border); border-radius: var(--gb-radius); background: var(--gb-surface); }
.gb-platform-card::after { content: ""; position: absolute; right: -80px; bottom: -130px; width: 320px; height: 320px; border: 2px solid rgba(255,255,255,.05); border-radius: 50%; box-shadow: inset 0 0 0 28px var(--gb-surface), inset 0 0 0 30px rgba(255,255,255,.035); }
.gb-platform-card--active { background: radial-gradient(circle at 100% 100%, rgba(255,43,43,.18), transparent 50%), var(--gb-surface-raised); border-color: rgba(255,43,43,.33); }
.gb-platform-card--locked { opacity: 0.72; }
.gb-status { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 30px; color: var(--gb-success); font-size: 0.7rem; font-weight: 850; letter-spacing: 0.11em; text-transform: uppercase; }
.gb-status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 12px currentColor; }
.gb-status--soon { color: var(--gb-warning); }
.gb-platform-card h3 { font-size: clamp(2rem, 5vw, 3.3rem); }

.gb-steps, .gb-reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: steps; }
.gb-step, .gb-reason { padding: 28px; border: 1px solid var(--gb-border); border-radius: var(--gb-radius); background: var(--gb-surface); }
.gb-step { counter-increment: steps; }
.gb-step::before { content: "0" counter(steps); display: block; margin-bottom: 40px; color: var(--gb-red); font-family: "Space Grotesk", sans-serif; font-size: 0.86rem; font-weight: 850; }
.gb-step p, .gb-reason p { margin: 0; font-size: 0.9rem; }
.gb-reason__icon { display: grid; width: 46px; height: 46px; margin-bottom: 26px; place-items: center; border: 1px solid rgba(255,43,43,.25); border-radius: 14px; background: rgba(255,43,43,.08); color: var(--gb-red); font-weight: 900; }

.gb-coming-soon { padding: clamp(36px, 6vw, 60px); overflow: hidden; border: 1px solid var(--gb-border); border-radius: 28px; background: radial-gradient(circle at 90% 10%, rgba(255,43,43,.11), transparent 34%), var(--gb-surface); }
.gb-coming-soon > p { max-width: 64ch; }
.gb-locked-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px; }
.gb-locked-card { min-height: 150px; padding: 22px; border: 1px solid var(--gb-border); border-radius: 16px; background: rgba(7,8,11,.55); filter: grayscale(1); opacity: 0.62; }
.gb-locked-card span { display: block; width: 72%; height: 9px; margin-bottom: 12px; border-radius: 10px; background: rgba(255,255,255,.1); }
.gb-locked-card span:nth-child(2) { width: 42%; height: 28px; }
.gb-locked-card span:nth-child(3) { width: 90%; }
.gb-locked-card strong { display: block; margin-top: 22px; color: var(--gb-muted); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }

.gb-faq-list { border-top: 1px solid var(--gb-border); }
.gb-faq { border-bottom: 1px solid var(--gb-border); }
.gb-faq summary { display: flex; min-height: 72px; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 2px; color: var(--gb-white); font-weight: 750; cursor: pointer; list-style: none; }
.gb-faq summary::-webkit-details-marker { display: none; }
.gb-faq summary span { display: grid; width: 32px; height: 32px; flex: 0 0 32px; place-items: center; border: 1px solid var(--gb-border); border-radius: 50%; color: var(--gb-red); font-size: 1.25rem; transition: transform 180ms ease; }
.gb-faq[open] summary span { transform: rotate(45deg); }
.gb-faq__answer { max-width: 760px; padding: 0 54px 22px 2px; }

.gb-final-cta { position: relative; padding: clamp(42px, 7vw, 78px); overflow: hidden; border: 1px solid rgba(255,43,43,.28); border-radius: 28px; background: linear-gradient(120deg, rgba(255,43,43,.16), transparent 55%), var(--gb-surface); text-align: center; }
.gb-final-cta::after { content: "VC"; position: absolute; right: -20px; bottom: -70px; color: rgba(255,255,255,.025); font-family: "Space Grotesk", sans-serif; font-size: 16rem; font-weight: 900; line-height: 1; }
.gb-final-cta > * { position: relative; z-index: 1; }
.gb-final-cta p { max-width: 620px; margin: 0 auto 24px; }
.gb-final-cta .gb-button-row { justify-content: center; }

.gb-page-hero { padding: clamp(70px, 10vw, 126px) 0 clamp(42px, 7vw, 76px); border-bottom: 1px solid var(--gb-border); background: radial-gradient(circle at 75% 0, rgba(255,43,43,.12), transparent 35%); }
.gb-page-hero h1 { max-width: 900px; margin: 0; font-size: clamp(2.7rem, 7vw, 5rem); }
.gb-page-content { min-height: 45vh; padding: clamp(48px, 8vw, 92px) 0; }
.gb-prose { max-width: 880px; }
.gb-prose > *:first-child { margin-top: 0; }
.gb-prose-card { padding: clamp(24px, 4vw, 38px); border: 1px solid var(--gb-border); border-radius: var(--gb-radius); background: var(--gb-surface); }
.gb-notice { padding: 16px 18px; border: 1px solid rgba(255,191,71,.25); border-radius: 12px; background: rgba(255,191,71,.07); color: #d8c9a5; }

.gb-product { padding: clamp(54px, 8vw, 96px) 0; }
.gb-product__grid { display: grid; grid-template-columns: minmax(0, .84fr) minmax(500px, 1.16fr); align-items: start; gap: clamp(48px, 6vw, 94px); }
.gb-product-visual { position: sticky; top: 112px; display: grid; min-height: 650px; place-items: center; overflow: hidden; border: 1px solid var(--gb-border); border-radius: 30px; background: radial-gradient(circle at 50% 40%, rgba(255,43,43,.2), transparent 34%), linear-gradient(150deg, rgba(255,255,255,.04), transparent 50%), var(--gb-surface); }
.gb-product-visual::before, .gb-product-visual::after { content: ""; position: absolute; width: 460px; height: 460px; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; }
.gb-product-visual::before { top: -230px; left: -150px; }
.gb-product-visual::after { right: -220px; bottom: -210px; box-shadow: inset 0 0 0 24px var(--gb-surface), inset 0 0 0 25px rgba(255,255,255,.04); }
.gb-product-visual__vc { position: relative; z-index: 2; color: var(--gb-white); font-family: "Space Grotesk", sans-serif; font-size: clamp(6rem, 14vw, 10rem); font-weight: 900; letter-spacing: -0.1em; line-height: .78; text-shadow: 0 14px 50px rgba(0,0,0,.4); }
.gb-product-visual__vc::after { content: "Xbox account"; display: block; margin-top: 30px; color: var(--gb-red); font-family: Inter, sans-serif; font-size: .68rem; font-weight: 850; letter-spacing: .18em; text-align: center; text-transform: uppercase; }
.gb-product__summary h1 { margin-bottom: 18px; font-size: clamp(3rem, 4.7vw, 5rem); }
.gb-product__lead { max-width: 62ch; color: #c8ccd4; font-size: clamp(1rem, 1.2vw, 1.12rem); }
.gb-platform-badge { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; padding: 6px 10px; border: 1px solid rgba(85,209,135,.24); border-radius: 999px; background: rgba(85,209,135,.07); color: var(--gb-success); font-size: .69rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.gb-product-facts { display: grid; gap: 8px; margin: 24px 0; padding: 0; list-style: none; }
.gb-product-facts li { position: relative; padding-left: 24px; font-size: .91rem; }
.gb-product-facts strong { color: var(--gb-white); }
.gb-product-facts li::before { content: "✓"; position: absolute; left: 0; color: var(--gb-red); font-weight: 900; }
.gb-product-notice { margin: 26px 0; padding: 17px 18px; border-left: 3px solid var(--gb-red); border-radius: 0 12px 12px 0; background: rgba(255,43,43,.07); color: #d9dce2; font-size: .88rem; }
.gb-purchase-panel { padding: clamp(24px, 2.3vw, 34px); border: 1px solid rgba(255,255,255,.11); border-radius: 24px; background: var(--gb-surface); box-shadow: 0 22px 60px rgba(0,0,0,.24); }
.gb-purchase-step { margin-bottom: 26px; }
.gb-purchase-step__heading { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.gb-purchase-step__heading > span { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid rgba(255,43,43,.25); border-radius: 9px; background: rgba(255,43,43,.08); color: var(--gb-red); font-size: .7rem; font-weight: 850; }
.gb-purchase-step__heading strong { color: var(--gb-white); font-size: .9rem; letter-spacing: .03em; text-transform: uppercase; }
.gb-purchase-step__heading--purchase { margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--gb-border); }
.gb-platform-selector { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.gb-platform-option { display: flex; min-height: 72px; flex-direction: column; align-items: flex-start; justify-content: center; padding: 13px 16px; border: 1px solid var(--gb-border); border-radius: 13px; background: rgba(255,255,255,.035); color: var(--gb-white); text-align: left; }
.gb-platform-option strong { font-size: 1.05rem; }
.gb-platform-option span { margin-top: 3px; color: var(--gb-muted); font-size: .63rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.gb-platform-option.is-selected { border-color: var(--gb-red); background: rgba(255,43,43,.1); box-shadow: 0 0 0 1px var(--gb-red); }
.gb-platform-option.is-selected span { color: var(--gb-success); }
.gb-platform-option.is-coming-soon { cursor: not-allowed; opacity: .55; }
.gb-purchase-panel__top { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: end; margin-bottom: 20px; }
.gb-purchase-panel__label { display: block; color: var(--gb-muted); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.gb-live-price { display: block; min-height: 31px; color: var(--gb-white); font-size: 1.35rem; font-weight: 850; }
.gb-live-meta { color: var(--gb-muted); font-size: .78rem; text-align: right; }
.gb-live-meta span { display: block; }

.gb-variation-buttons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 18px; }
.gb-variation-button { min-height: 72px; padding: 12px 8px; border: 1px solid var(--gb-border); border-radius: 13px; background: rgba(255,255,255,.035); color: var(--gb-white); font-size: 1.05rem; font-weight: 850; transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease; }
.gb-variation-button span { display: block; margin-top: 2px; color: var(--gb-muted); font-size: .58rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.gb-variation-button:hover { border-color: rgba(255,255,255,.2); }
.gb-variation-button.is-selected { border-color: var(--gb-red); background: rgba(255,43,43,.1); box-shadow: 0 0 0 1px var(--gb-red), 0 8px 20px var(--gb-red-glow); }
.gb-variation-button[aria-disabled="true"] { opacity: .66; }

.gb-purchase-panel table.variations { position: absolute; width: 1px !important; height: 1px; margin: -1px !important; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.gb-purchase-panel .reset_variations { display: none !important; }
.gb-purchase-panel .woocommerce-variation-description { display: none; }
.gb-purchase-panel .woocommerce-variation-price, .gb-purchase-panel .woocommerce-variation-availability { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.gb-purchase-panel .woocommerce-variation-add-to-cart { display: grid; grid-template-columns: 72px 1fr 1fr; gap: 9px; margin-top: 16px; }
.gb-purchase-panel .quantity .qty { width: 100%; height: 50px; border: 1px solid var(--gb-border); border-radius: 11px; background: var(--gb-bg-soft); color: var(--gb-white); text-align: center; }
.gb-purchase-panel .single_add_to_cart_button, .gb-buy-now { min-height: 50px; border: 0; border-radius: 11px; font-weight: 800; }
.gb-purchase-panel .single_add_to_cart_button.disabled, .gb-purchase-panel .single_add_to_cart_button:disabled, .gb-buy-now:disabled { cursor: not-allowed; opacity: .42; transform: none; }
.gb-buy-now { padding: 12px; background: var(--gb-white); color: var(--gb-bg); }
.gb-buy-now:hover { background: #eceef2; }
.gb-delivery-message { display: flex; gap: 10px; margin: 16px 0 0; padding-top: 16px; border-top: 1px solid var(--gb-border); color: var(--gb-muted); font-size: .78rem; }
.gb-delivery-message strong { color: var(--gb-white); }

.gb-benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gb-benefit-card { min-height: 230px; padding: 30px; border: 1px solid var(--gb-border); border-radius: 20px; background: linear-gradient(150deg, rgba(255,255,255,.035), transparent 55%), var(--gb-surface); }
.gb-benefit-card > span { display: block; margin-bottom: 48px; color: var(--gb-red); font-size: .74rem; font-weight: 850; letter-spacing: .12em; }
.gb-benefit-card h3 { max-width: 12ch; }
.gb-benefit-card p { margin: 0; font-size: .9rem; }
.gb-important-info { display: grid; grid-template-columns: minmax(260px,.8fr) minmax(0,1.2fr); gap: 46px; margin-top: 24px; padding: clamp(28px,4vw,48px); border: 1px solid rgba(255,43,43,.34); border-radius: 22px; background: linear-gradient(120deg, rgba(255,43,43,.12), transparent 50%), var(--gb-surface-raised); }
.gb-important-info h3 { margin: 0; font-size: clamp(1.5rem,2.4vw,2.25rem); }
.gb-important-info ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.gb-important-info li { position: relative; padding-left: 22px; }
.gb-important-info li::before { content: "!"; position: absolute; left: 0; color: var(--gb-red); font-weight: 900; }

.gb-sticky-buy { position: fixed; z-index: 40; right: 0; bottom: 0; left: 0; display: none; padding: 10px max(16px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left)); border-top: 1px solid var(--gb-border); background: rgba(7,8,11,.95); box-shadow: 0 -14px 34px rgba(0,0,0,.35); backdrop-filter: blur(18px); transform: translateY(105%); transition: transform 200ms ease; }
.gb-sticky-buy.is-visible { transform: translateY(0); }
.gb-sticky-buy__inner { display: grid; grid-template-columns: 1fr minmax(145px, auto); align-items: center; gap: 12px; }
.gb-sticky-buy__selection { display: block; overflow: hidden; color: var(--gb-white); font-weight: 800; line-height: 1.3; text-overflow: ellipsis; white-space: nowrap; }
.gb-sticky-buy__price { display: block; color: var(--gb-muted); font-size: .75rem; }
.gb-sticky-buy button { min-height: 46px; padding: 10px 16px; border: 0; border-radius: 11px; background: var(--gb-red); color: var(--gb-white); font-weight: 850; }
.gb-sticky-buy button:disabled { cursor: not-allowed; opacity: .45; }

.gb-footer { border-top: 1px solid var(--gb-border); background: #050609; }
.gb-footer__main { display: grid; grid-template-columns: minmax(230px, 1.4fr) repeat(2, 1fr); gap: clamp(30px, 6vw, 80px); padding: 64px 0 44px; }
.gb-footer__brand p { max-width: 40ch; margin-top: 20px; font-size: .86rem; }
.gb-footer h2 { margin-bottom: 18px; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.gb-footer ul { margin: 0; padding: 0; list-style: none; }
.gb-footer li + li { margin-top: 9px; }
.gb-footer a { color: var(--gb-text); font-size: .86rem; text-decoration: none; }
.gb-footer a:hover { color: var(--gb-white); }
.gb-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; border-top: 1px solid var(--gb-border); color: var(--gb-muted); font-size: .72rem; }

/* WooCommerce base integration */
.woocommerce .woocommerce-breadcrumb { margin: 0 0 24px; color: var(--gb-muted); font-size: .8rem; }
.woocommerce .woocommerce-breadcrumb a { color: var(--gb-text); }
.woocommerce-info, .woocommerce-message, .woocommerce-error { border: 1px solid var(--gb-border); border-top-color: var(--gb-red); border-radius: 12px; background: var(--gb-surface); color: var(--gb-text); }
.woocommerce-error { border-top-color: var(--gb-warning); }
.woocommerce form .form-row label { color: var(--gb-white); font-size: .85rem; font-weight: 700; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select, .select2-container--default .select2-selection--single { min-height: 48px; border: 1px solid var(--gb-border); border-radius: 10px; background: var(--gb-surface); color: var(--gb-white); }
.select2-dropdown { border-color: var(--gb-border); background: var(--gb-surface); color: var(--gb-white); }
.select2-container--default .select2-results__option--highlighted[aria-selected] { background: var(--gb-red); }
.woocommerce table.shop_table { border-color: var(--gb-border); border-radius: 14px; background: var(--gb-surface); }
.woocommerce table.shop_table th, .woocommerce table.shop_table td { border-color: var(--gb-border); }
.woocommerce table.shop_table td.product-name a { color: var(--gb-white); }
.woocommerce-cart table.cart img { width: 76px; border-radius: 10px; }
.woocommerce .quantity .qty { color: var(--gb-white); }
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment { border: 1px solid var(--gb-border); border-radius: 14px; background: var(--gb-surface); }
#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box { background: var(--gb-bg-soft); color: var(--gb-text); }
#add_payment_method #payment div.payment_box::before, .woocommerce-cart #payment div.payment_box::before, .woocommerce-checkout #payment div.payment_box::before { border-bottom-color: var(--gb-bg-soft); }
.woocommerce-account .woocommerce-MyAccount-navigation ul { margin: 0 0 24px; padding: 0; border: 1px solid var(--gb-border); border-radius: 14px; overflow: hidden; list-style: none; }
.woocommerce-account .woocommerce-MyAccount-navigation li a { display: block; padding: 12px 16px; border-bottom: 1px solid var(--gb-border); color: var(--gb-text); text-decoration: none; }
.woocommerce-account .woocommerce-MyAccount-navigation li:last-child a { border-bottom: 0; }
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a { background: rgba(255,43,43,.1); color: var(--gb-white); }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--gb-white); }
.wc-block-components-sidebar-layout { gap: 32px; }
.wc-block-components-order-summary, .wc-block-components-totals-wrapper { color: var(--gb-text); }

@media (max-width: 1024px) {
	.gb-vc-grid { grid-template-columns: repeat(2, 1fr); }
	.gb-trust-grid { grid-template-columns: repeat(2, 1fr); }
	.gb-trust-item:nth-child(2) { border-right: 0; }
	.gb-trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--gb-border); }
	.gb-hero__inner { grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); }
	.gb-product__grid { grid-template-columns: minmax(300px, .85fr) minmax(390px, 1.15fr); gap: 38px; }
	.gb-product-visual { min-height: 500px; }
	.gb-benefit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
	.gb-menu-toggle { display: block; }
	.gb-nav { position: fixed; inset: 105px 0 auto; display: none; padding: 24px 16px 32px; border-bottom: 1px solid var(--gb-border); background: rgba(7,8,11,.98); }
	.gb-nav.is-open { display: block; }
	.gb-nav ul { align-items: stretch; flex-direction: column; gap: 0; }
	.gb-nav a { display: block; padding: 13px 4px; border-bottom: 1px solid var(--gb-border); color: var(--gb-white); font-size: 1rem; }
	.gb-header__actions { display: flex; align-items: center; gap: 10px; }
	.gb-hero { min-height: auto; }
	.gb-hero__inner { grid-template-columns: 1fr; }
	.gb-ball { position: absolute; z-index: -1; right: -120px; bottom: -60px; width: 380px; opacity: .42; }
	.gb-trust-grid { grid-template-columns: 1fr; }
	.gb-trust-item { border-right: 0; border-bottom: 1px solid var(--gb-border); }
	.gb-trust-item:last-child { border-bottom: 0; }
	.gb-product__grid { grid-template-columns: 1fr; }
	.gb-product-visual { position: relative; top: auto; min-height: 430px; }
	.gb-benefit-grid { grid-template-columns: 1fr; }
	.gb-important-info { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 680px) {
	.gb-shell { width: min(calc(100% - 24px), var(--gb-max)); }
	.gb-section-heading { align-items: start; flex-direction: column; }
	.gb-section-heading .gb-button { width: 100%; }
	.gb-platform-grid, .gb-steps, .gb-reasons, .gb-home-platforms { grid-template-columns: 1fr; }
	.gb-locked-grid { grid-template-columns: 1fr; }
	.gb-locked-card { min-height: 110px; }
	.gb-footer__main { grid-template-columns: 1fr 1fr; }
	.gb-footer__brand { grid-column: 1 / -1; }
	.gb-footer__bottom { align-items: start; flex-direction: column; }
	.gb-sticky-buy { display: block; }
	body.single-product { padding-bottom: 78px; }
}

@media (max-width: 480px) {
	.gb-announcement { font-size: .66rem; }
	.gb-header__inner { min-height: 64px; }
	.gb-nav { top: 96px; }
	.gb-brand { font-size: 1rem; }
	.gb-brand__mark { width: 30px; height: 30px; }
	.gb-hero h1 { font-size: clamp(3rem, 17vw, 4.35rem); }
	.gb-hero__inner { padding-block: 72px 100px; }
	.gb-button-row > .gb-button { width: 100%; }
	.gb-vc-grid { grid-template-columns: 1fr; }
	.gb-vc-card p { min-height: auto; }
	.gb-vc-card { min-height: 350px; }
	.gb-product-visual { min-height: 330px; }
	.gb-product-visual__vc { font-size: 7rem; }
	.gb-product__summary h1 { font-size: 2.65rem; }
	.gb-purchase-panel { padding: 16px; }
	.gb-variation-buttons { grid-template-columns: repeat(2, 1fr); }
	.gb-purchase-panel .woocommerce-variation-add-to-cart { grid-template-columns: 64px 1fr; }
	.gb-purchase-panel .gb-buy-now { grid-column: 1 / -1; }
	.gb-footer__main { grid-template-columns: 1fr; }
	.gb-footer__brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
