/* ==========================================================================
   Gameodrop — design enhancements
   Loaded after the Woodmart stylesheet. Groups:
     1  Brand tokens
     2  Palette unification (kills Woodmart's neutral #1a1a1a / #0f0f0f darks)
     3  Buttons
     4  Product cards
     5  Section headings
     6  Category pills / navigation
     7  Forms & search  (incl. the white-on-white mobile search fix)
     8  Motion states used by gd-motion.js
     9  Legal pages
    10  Misc polish
   ========================================================================== */

/* 1 — Brand tokens ------------------------------------------------------- */

:root {
	--gd-bg-900: #07051a;
	--gd-bg-800: #0c0a1f;
	--gd-bg-700: #100e28;
	--gd-bg-600: #141236;
	--gd-bg-500: #181539;
	--gd-bg-400: #1e1a4a;

	--gd-line: #241b4c;
	--gd-line-2: #2f2870;

	--gd-purple: #7b5cff;
	--gd-purple-2: #a48cff;
	--gd-purple-3: #5f43e0;
	--gd-gold: #ffe94a;
	--gd-gold-2: #f6ba2d;

	--gd-text: #fff;
	--gd-muted: #9a93cf;

	--gd-grad: linear-gradient(135deg, #7b5cff 0%, #a48cff 100%);
	--gd-grad-hover: linear-gradient(135deg, #8d70ff 0%, #b9a5ff 100%);
	--gd-grad-gold: linear-gradient(135deg, #ffd94a 0%, #f6ba2d 100%);
	--gd-glow: 0 10px 30px -10px rgba(123, 92, 255, .55);
	--gd-glow-strong: 0 16px 44px -12px rgba(123, 92, 255, .75);

	--gd-r: 12px;
	--gd-r-lg: 16px;
	--gd-ease: cubic-bezier(.22, 1, .36, 1);
}

/* 2 — Palette unification ------------------------------------------------ */

/* Woodmart's dark scheme paints these neutral grey-black; make them brand navy */
:root {
	--wd-main-bgcolor: var(--gd-bg-700);
}

.website-wrapper {
	background-color: var(--gd-bg-700);
}

body {
	background-color: var(--gd-bg-700);
}

.wd-dropdown,
.wd-dropdown-menu,
.wd-dropdown-results,
.wd-search-results,
.cart-widget-side,
.wd-side-hidden,
.mobile-nav,
.wd-popup,
.mfp-content .wd-popup,
.wd-quick-view .wd-popup,
.wd-cart-drawer,
.wd-toolbar,
.wd-dropdown-account,
.wd-dropdown-cart {
	background-color: var(--gd-bg-600) !important;
	border-color: var(--gd-line) !important;
	color: rgba(255, 255, 255, .85);
}

.wd-toolbar {
	border-top: 1px solid var(--gd-line) !important;
	box-shadow: 0 -8px 26px rgba(0, 0, 0, .45);
}

.wd-dropdown:after,
.wd-dropdown-menu:after {
	border-bottom-color: var(--gd-bg-600) !important;
}

/* separators inside those panels */
.wd-dropdown li + li,
.mobile-nav .wd-nav-mobile > li,
.cart-widget-side .wd-cart-item,
.wd-side-hidden .widget {
	border-color: var(--gd-line) !important;
}

/* generic light-on-dark surfaces the theme still paints white */
.wd-scroll-content,
.widget_shopping_cart_content,
.wd-empty-page {
	background-color: transparent;
}

/* 3 — Buttons ------------------------------------------------------------ */

/*  Hierarchy after this file:
 *    primary   purple gradient   — Add to basket, Shop deals, submit
 *    express   gold gradient     — Buy now (one per screen)
 *    ghost     outlined purple   — View all / See more / Browse more
 *    quiet     muted outline     — Read more on out-of-stock items
 */

.btn,
.button,
button,
input[type="submit"],
.elementor-button,
.wd-buy-now-btn,
.single_add_to_cart_button,
.add_to_cart_button,
.wd-checkout-steps a {
	transition: transform .25s var(--gd-ease), box-shadow .25s var(--gd-ease),
		background .25s var(--gd-ease), color .2s ease, border-color .2s ease;
}

/* shine sweep — added to anything carrying .gd-shine (JS tags the CTAs) */
.gd-shine {
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.gd-shine::after {
	content: "";
	position: absolute;
	inset: 0 auto 0 -140%;
	width: 60%;
	z-index: 1;
	background: linear-gradient(100deg,
			transparent 0%,
			rgba(255, 255, 255, .38) 50%,
			transparent 100%);
	transform: skewX(-18deg);
	pointer-events: none;
	opacity: 0;
}

.gd-shine:hover::after {
	animation: gd-sweep .75s var(--gd-ease) forwards;
}

@keyframes gd-sweep {
	0% { left: -140%; opacity: 0; }
	12% { opacity: 1; }
	100% { left: 160%; opacity: 0; }
}

/* primary */
.single_add_to_cart_button,
.add_to_cart_button,
.wd-add-btn > a,
.woocommerce-cart .checkout-button,
.wc-proceed-to-checkout .button,
form.woocommerce-form-login .button,
form.woocommerce-form-register .button,
.wpcf7-submit,
.gd-btn-primary {
	background-image: var(--gd-grad) !important;
	background-color: transparent !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: var(--gd-r) !important;
	font-weight: 600 !important;
	letter-spacing: .01em;
	box-shadow: var(--gd-glow);
}

.single_add_to_cart_button:hover,
.add_to_cart_button:hover,
.wd-add-btn > a:hover,
.woocommerce-cart .checkout-button:hover,
.wc-proceed-to-checkout .button:hover,
.wpcf7-submit:hover,
.gd-btn-primary:hover {
	background-image: var(--gd-grad-hover) !important;
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: var(--gd-glow-strong);
}

.single_add_to_cart_button:active,
.add_to_cart_button:active,
.gd-btn-primary:active {
	transform: translateY(0);
	box-shadow: 0 6px 18px -8px rgba(123, 92, 255, .6);
}

/* express — Buy now */
.wd-buy-now-btn,
.wd-buy-now-btn.button {
	background-image: var(--gd-grad-gold) !important;
	background-color: transparent !important;
	color: #17122e !important;
	border: 0 !important;
	border-radius: var(--gd-r) !important;
	font-weight: 700 !important;
	box-shadow: 0 10px 30px -12px rgba(246, 186, 45, .6);
}

.wd-buy-now-btn:hover {
	filter: brightness(1.06);
	color: #17122e !important;
	transform: translateY(-2px);
	box-shadow: 0 16px 40px -14px rgba(246, 186, 45, .8);
}

/* ghost — section "see more" links */
.gd-btn-ghost,
.wd-products-shop-more .btn,
.wd-products-element .wd-products-shop-more a {
	background: transparent !important;
	background-image: none !important;
	color: var(--gd-purple-2) !important;
	border: 1px solid rgba(123, 92, 255, .45) !important;
	border-radius: var(--gd-r) !important;
	font-weight: 600 !important;
	box-shadow: none !important;
}

.gd-btn-ghost:hover,
.wd-products-shop-more .btn:hover,
.wd-products-element .wd-products-shop-more a:hover {
	background: rgba(123, 92, 255, .14) !important;
	border-color: var(--gd-purple) !important;
	color: #fff !important;
	transform: translateY(-1px);
}

/* quiet — out of stock */
.product-grid-item .outofstock .button,
.wd-product.outofstock .add-to-cart-loop,
.outofstock a.button {
	background: transparent !important;
	background-image: none !important;
	color: var(--gd-gold) !important;
	border: 1px solid rgba(255, 233, 74, .35) !important;
	box-shadow: none !important;
	border-radius: var(--gd-r) !important;
}

.outofstock a.button:hover {
	background: rgba(255, 233, 74, .12) !important;
	border-color: var(--gd-gold) !important;
}

/* Elementor CTAs inside the hero / banners */
.elementor-button-wrapper .elementor-button {
	border-radius: var(--gd-r) !important;
	font-weight: 600;
}

.elementor-button-wrapper .elementor-button:hover {
	transform: translateY(-2px);
	box-shadow: var(--gd-glow);
}

/* keyboard focus — visible on every control */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.button:focus-visible {
	outline: 2px solid var(--gd-purple-2);
	outline-offset: 2px;
	border-radius: 6px;
}

/* 4 — Product cards ------------------------------------------------------ */

.product-grid-item {
	border-radius: var(--gd-r-lg);
	background: linear-gradient(180deg, rgba(30, 26, 74, .55) 0%, rgba(16, 14, 40, .55) 100%);
	border: 1px solid var(--gd-line);
	padding: 10px 10px 14px;
	transition: transform .35s var(--gd-ease), box-shadow .35s var(--gd-ease),
		border-color .35s var(--gd-ease), background .35s var(--gd-ease);
	will-change: transform;
}

.product-grid-item:hover {
	transform: translateY(-6px);
	border-color: rgba(123, 92, 255, .55);
	background: linear-gradient(180deg, rgba(41, 34, 96, .7) 0%, rgba(19, 16, 48, .7) 100%);
	box-shadow: 0 22px 50px -22px rgba(0, 0, 0, .9), 0 0 0 1px rgba(123, 92, 255, .18),
		0 10px 40px -18px rgba(123, 92, 255, .55);
}

.product-grid-item .product-element-top,
.product-grid-item .product-image-link,
.product-grid-item .wd-product-img {
	border-radius: var(--gd-r);
	overflow: hidden;
}

.product-grid-item .product-element-top img {
	transition: transform .55s var(--gd-ease), filter .35s ease;
}

.product-grid-item:hover .product-element-top img {
	transform: scale(1.06);
	filter: saturate(1.08);
}

/* products with no artwork get a branded placeholder instead of a void */
.product-grid-item .product-element-top:empty,
.product-grid-item .wd-product-img:empty,
.product-grid-item .product-image-link:not(:has(img)) {
	display: block;
	min-height: 170px;
	background:
		radial-gradient(120% 90% at 20% 0%, rgba(123, 92, 255, .35) 0%, transparent 60%),
		repeating-linear-gradient(135deg, rgba(255, 255, 255, .035) 0 12px, transparent 12px 24px),
		var(--gd-bg-500);
	position: relative;
}

.product-grid-item .product-image-link:not(:has(img))::after {
	content: "GAMEODROP";
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--wd-title-font, inherit);
	font-size: 13px;
	letter-spacing: .22em;
	color: rgba(255, 255, 255, .28);
}

.product-grid-item .price {
	font-weight: 700;
}

.product-grid-item .wd-product-cats,
.product-grid-item .wd-product-sku {
	color: var(--gd-muted);
}

/* stock states read at a glance */
.product-grid-item .wd-product-stock.in-stock,
.wd-product-stock.in-stock {
	color: #4ade80;
}

.product-grid-item .wd-product-stock.out-of-stock,
.wd-product-stock.out-of-stock {
	color: var(--gd-gold-2);
}

/* 5 — Section headings --------------------------------------------------- */

.gd-heading-accent {
	position: relative;
	display: inline-block;
	padding-bottom: 10px;
}

.gd-heading-accent::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 3px;
	width: 100%;
	border-radius: 3px;
	background: var(--gd-grad);
	/* defaults to drawn: the script only animates it from 0 when it can
	   guarantee an observer will finish the job */
	transform: scaleX(var(--gd-underline, 1));
	transform-origin: left center;
}

/* 6 — Category pills / navigation --------------------------------------- */

/* the PC / Nintendo / PlayStation row under the hero */
.gd-pill,
.wd-cats-element .wd-cat,
.elementor-widget-wd_categories .category-grid-item {
	transition: transform .3s var(--gd-ease), box-shadow .3s var(--gd-ease),
		border-color .3s var(--gd-ease), background .3s var(--gd-ease);
}

.gd-pill:hover,
.wd-cats-element .wd-cat:hover,
.elementor-widget-wd_categories .category-grid-item:hover {
	transform: translateY(-3px);
	border-color: rgba(123, 92, 255, .6);
	box-shadow: var(--gd-glow);
}

/* Main nav.
   A tab indicator pinned to the bottom edge of the header row — no pill, no
   glow. The rule wipes in from the left on hover and retracts to the right
   on the way out, which is what makes it feel deliberate rather than blinky. */

.whb-header .wd-nav > li {
	position: relative;
}

.whb-header .wd-nav > li::after {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 0;
	height: 2px;
	border-radius: 2px 2px 0 0;
	background: var(--gd-purple);
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform .45s var(--gd-ease), background .3s ease;
}

.whb-header .wd-nav > li:hover::after {
	transform: scaleX(1);
	transform-origin: left center;
}

.whb-header .wd-nav > li.current-menu-item::after,
.whb-header .wd-nav > li.current-menu-ancestor::after {
	transform: scaleX(1);
	transform-origin: left center;
	background: linear-gradient(90deg, var(--gd-purple), var(--gd-purple-2));
}

.whb-header .wd-nav > li > a {
	transition: color .25s ease;
}

.whb-header .wd-nav > li > a:hover,
.whb-header .wd-nav > li.current-menu-item > a,
.whb-header .wd-nav > li.current-menu-ancestor > a {
	color: #fff !important;
}

.whb-header .wd-nav > li > a img,
.whb-header .wd-nav > li > a svg {
	transition: opacity .25s ease;
	opacity: .72;
}

.whb-header .wd-nav > li:hover > a img,
.whb-header .wd-nav > li:hover > a svg,
.whb-header .wd-nav > li.current-menu-item > a img,
.whb-header .wd-nav > li.current-menu-item > a svg {
	opacity: 1;
}

/* header gains depth once the page scrolls (class set by gd-motion.js) */
.whb-header {
	transition: background-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}

.gd-scrolled .whb-header .whb-row {
	background-color: rgba(20, 18, 54, .82) !important;
	backdrop-filter: saturate(1.4) blur(14px);
	-webkit-backdrop-filter: saturate(1.4) blur(14px);
	box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .95);
}

/* 7 — Forms & search ----------------------------------------------------- */

/* Mobile header search rendered white text on a white field — unreadable. */
.searchform.wd-style-with-bg-2 input[type="text"],
.searchform.wd-style-with-bg-2 input[type="search"],
.searchform.wd-style-with-bg-2 .s,
.wd-search-form .searchform input.s {
	background-color: var(--gd-bg-900) !important;
	color: #fff !important;
	border: 1px solid var(--gd-line) !important;
	border-radius: 35px !important;
	-webkit-text-fill-color: #fff;
}

.searchform.wd-style-with-bg-2 input::placeholder,
.wd-search-form .searchform input.s::placeholder {
	color: var(--gd-muted) !important;
	opacity: 1;
}

.searchform input:focus,
.searchform.wd-style-with-bg-2 input:focus {
	border-color: var(--gd-purple) !important;
	box-shadow: 0 0 0 3px rgba(123, 92, 255, .18) !important;
}

/* generic inputs */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="number"],
select,
textarea {
	background-color: rgba(11, 6, 36, .8);
	border: 1px solid var(--gd-line);
	color: #fff;
	border-radius: 10px;
	transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--gd-purple);
	box-shadow: 0 0 0 3px rgba(123, 92, 255, .16);
	background-color: rgba(11, 6, 36, 1);
}

/* browser autofill kept on-brand instead of Chrome's blue-white */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
	-webkit-text-fill-color: #fff;
	-webkit-box-shadow: 0 0 0 1000px var(--gd-bg-900) inset;
	caret-color: #fff;
	transition: background-color 5000s ease-in-out 0s;
}

/* 8 — Motion states ------------------------------------------------------ */

/* gd-motion.js sets the "from" state itself, so content stays visible
   if JavaScript never runs. These only tune how it feels. */

html.gd-motion .gd-reveal,
html.gd-motion .gd-reveal-item {
	will-change: transform, opacity;
}

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

	.gd-shine::after {
		display: none;
	}
}

/* 9 — Legal pages -------------------------------------------------------- */

.gd-legal {
	max-width: 900px;
	margin: 0 auto;
	padding: 10px 0 60px;
	font-size: 15.5px;
	line-height: 1.75;
	color: rgba(255, 255, 255, .82);
}

.gd-legal-hero {
	position: relative;
	margin: 0 0 26px;
	padding: 34px 0 26px;
	border-bottom: 1px solid var(--gd-line);
}

.gd-legal-kicker {
	display: inline-block;
	font-family: var(--wd-title-font, inherit);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--gd-purple-2);
	margin-bottom: 12px;
}

.gd-legal-hero h1 {
	margin: 0;
	font-size: clamp(30px, 4.4vw, 46px);
	line-height: 1.1;
	color: #fff;
	letter-spacing: -.01em;
}

.gd-legal-sub {
	margin: 12px 0 0;
	font-size: 16px;
	color: var(--gd-muted);
}

.gd-legal h2 {
	margin: 46px 0 14px;
	font-size: 24px;
	line-height: 1.3;
	color: #fff;
	padding-top: 22px;
	border-top: 1px solid var(--gd-line);
}

.gd-legal h2:first-of-type {
	border-top: 0;
	padding-top: 0;
}

.gd-legal h3 {
	margin: 26px 0 10px;
	font-size: 17px;
	color: #fff;
}

.gd-legal p {
	margin: 0 0 14px;
}

.gd-legal ul,
.gd-legal ol {
	margin: 0 0 18px;
	padding-left: 22px;
}

.gd-legal li {
	margin-bottom: 8px;
}

.gd-legal ul li::marker {
	color: var(--gd-purple-2);
}

.gd-legal ol li::marker {
	color: var(--gd-purple-2);
	font-weight: 700;
}

.gd-legal a {
	color: var(--gd-gold);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: rgba(255, 233, 74, .4);
}

.gd-legal a:hover {
	color: #fff;
	text-decoration-color: currentColor;
}

.gd-legal-meta {
	display: inline-block;
	font-size: 13px;
	color: var(--gd-muted);
	background: rgba(123, 92, 255, .1);
	border: 1px solid var(--gd-line);
	border-radius: 999px;
	padding: 7px 16px;
	margin-bottom: 22px;
}

.gd-legal-lead {
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255, 255, 255, .92);
	margin-bottom: 28px;
}

.gd-legal-card {
	background: linear-gradient(180deg, rgba(30, 26, 74, .6), rgba(16, 14, 40, .6));
	border: 1px solid var(--gd-line);
	border-left: 3px solid var(--gd-purple);
	border-radius: var(--gd-r-lg);
	padding: 22px 26px;
	margin: 0 0 32px;
}

.gd-legal-card h3 {
	margin-top: 0;
	font-size: 15px;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--gd-purple-2);
}

.gd-legal-card ul {
	margin-bottom: 0;
	list-style: none;
	padding-left: 0;
}

.gd-legal-card--action {
	border-left-color: var(--gd-gold-2);
	text-align: left;
}

.gd-legal-card--action h3 {
	color: var(--gd-gold);
}

.gd-legal-card--action .gd-btn-primary {
	display: inline-block;
	padding: 12px 26px;
	margin-top: 6px;
	text-decoration: none !important;
	color: #fff !important;
}

.gd-legal-callout {
	background: rgba(123, 92, 255, .1);
	border: 1px solid rgba(123, 92, 255, .32);
	border-radius: var(--gd-r-lg);
	padding: 18px 22px;
	margin: 26px 0;
}

.gd-legal-callout p:last-child {
	margin-bottom: 0;
}

.gd-legal-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 26px;
	font-size: 14.5px;
	display: block;
	overflow-x: auto;
}

.gd-legal-table thead th {
	background: rgba(123, 92, 255, .16);
	color: #fff;
	text-align: left;
	font-weight: 600;
	padding: 12px 14px;
	border-bottom: 1px solid var(--gd-line-2);
	white-space: nowrap;
}

.gd-legal-table td {
	padding: 12px 14px;
	border-bottom: 1px solid var(--gd-line);
	vertical-align: top;
}

.gd-legal-table tbody tr:hover td {
	background: rgba(123, 92, 255, .06);
}

.gd-legal-badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 999px;
	vertical-align: middle;
	margin-left: 8px;
	background: rgba(255, 255, 255, .08);
	color: var(--gd-muted);
	border: 1px solid var(--gd-line);
}

.gd-legal-badge--on {
	background: rgba(74, 222, 128, .14);
	color: #4ade80;
	border-color: rgba(74, 222, 128, .3);
}

@media (max-width: 768px) {
	.gd-legal {
		font-size: 15px;
	}

	.gd-legal h2 {
		font-size: 21px;
		margin-top: 36px;
	}

	.gd-legal-card {
		padding: 18px;
	}
}

/* 9b — Product trust strip ----------------------------------------------- */

.gd-trust {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 22px;
	margin: 18px 0 22px;
	padding: 16px 18px;
	border-radius: var(--gd-r-lg);
	border: 1px solid var(--gd-line);
	background: linear-gradient(120deg, rgba(123, 92, 255, .12) 0%, rgba(16, 14, 40, .5) 60%);
}

.gd-trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.gd-trust-ico {
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	border-radius: 10px;
	color: var(--gd-purple-2);
	background: rgba(123, 92, 255, .16);
	border: 1px solid rgba(123, 92, 255, .3);
}

.gd-trust-ico svg {
	width: 18px;
	height: 18px;
	display: block;
}

.gd-trust-copy {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.gd-trust-copy strong {
	font-family: var(--wd-title-font, inherit);
	font-size: 13.5px;
	font-weight: 600;
	color: #fff;
}

.gd-trust-copy span {
	font-size: 12px;
	color: var(--gd-muted);
}

.gd-trust-link {
	margin-left: auto;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--gd-gold) !important;
	white-space: nowrap;
}

.gd-trust-link:hover {
	color: #fff !important;
}

@media (max-width: 560px) {
	.gd-trust {
		gap: 14px;
	}

	.gd-trust-link {
		margin-left: 0;
	}
}

/* 9bb — About page statement row ------------------------------------------ */

/* the counters used to occupy four cells of an Elementor grid; the single
   widget that replaced them has to span the whole row */
.elementor-widget:has(.gd-facts) {
	grid-column: 1 / -1 !important;
	width: 100% !important;
}

.gd-facts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	width: 100%;
	border-top: 1px solid var(--gd-line);
}

.gd-fact {
	padding: 30px 38px 6px 0;
	border-right: 1px solid var(--gd-line);
}

.gd-fact + .gd-fact {
	padding-left: 38px;
}

.gd-fact:last-child {
	border-right: 0;
	padding-right: 0;
}

.gd-fact-i {
	display: block;
	margin-bottom: 16px;
	font-family: var(--wd-title-font, inherit);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .24em;
	color: var(--gd-purple-2);
}

.gd-fact strong {
	display: block;
	margin-bottom: 9px;
	font-family: var(--wd-title-font, inherit);
	font-size: 19px;
	font-weight: 600;
	line-height: 1.25;
	color: #fff;
	letter-spacing: -.01em;
}

.gd-fact-text {
	display: block;
	max-width: 34ch;
	font-size: 14px;
	line-height: 1.6;
	color: var(--gd-muted);
}

@media (max-width: 900px) {
	.gd-facts {
		grid-template-columns: 1fr;
	}

	.gd-fact,
	.gd-fact + .gd-fact {
		padding: 22px 0 22px;
		border-right: 0;
		border-bottom: 1px solid var(--gd-line);
	}

	.gd-fact:last-child {
		border-bottom: 0;
	}

	.gd-fact-i {
		margin-bottom: 10px;
	}
}

/* 9c — Footer -------------------------------------------------------------- */

/* the theme's own footer block is switched off in inc/footer.php */
.copyrights-wrapper,
.wd-prefooter {
	display: none !important;
}

.gd-fband {
	position: relative;
	overflow: hidden;
	background: #06041a;
	border-top: 1px solid var(--gd-line);
	color: rgba(255, 255, 255, .6);
	font-size: 14px;
	line-height: 1.6;
}

.gd-fband-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 84px 24px 0;
}

/* shared micro-label */
.gd-flabel {
	margin: 0 0 22px;
	font-family: var(--wd-title-font, inherit);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--gd-purple-2);
}

/* -- statement + navigation ---------------------------------------------- */

.gd-ftop {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.3fr);
	gap: 64px;
	align-items: start;
	padding-bottom: 64px;
}

.gd-fclaim {
	margin: 0 0 34px;
	font-family: var(--wd-title-font, inherit);
	font-size: clamp(28px, 3.2vw, 46px);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -.025em;
	color: #fff;
}

.gd-fclaim em {
	font-style: normal;
	color: var(--gd-purple-2);
}

/* the big email link — underline draws from the left on hover */
.gd-fmail {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	font-family: var(--wd-title-font, inherit);
	font-size: clamp(16px, 1.5vw, 20px);
	font-weight: 500;
	color: #fff !important;
	letter-spacing: -.01em;
	padding-bottom: 6px;
	background-image: linear-gradient(var(--gd-gold), var(--gd-gold));
	background-repeat: no-repeat;
	background-position: 0 100%;
	background-size: 0 1px;
	transition: background-size .5s var(--gd-ease), color .25s ease;
}

.gd-fmail:hover {
	background-size: 100% 1px;
	color: var(--gd-gold) !important;
}

.gd-fmail svg {
	width: 19px;
	height: 19px;
	transition: transform .4s var(--gd-ease);
}

.gd-fmail:hover svg {
	transform: translateX(6px);
}

/* the other inboxes */
.gd-fchan {
	list-style: none;
	margin: 38px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, max-content));
	gap: 20px 52px;
}

.gd-fchan .k {
	display: block;
	margin-bottom: 4px;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: #7b74b4;
}

.gd-fchan a,
.gd-fnav a {
	color: rgba(255, 255, 255, .72) !important;
	background-image: linear-gradient(rgba(255, 255, 255, .45), rgba(255, 255, 255, .45));
	background-repeat: no-repeat;
	background-position: 0 100%;
	background-size: 0 1px;
	padding-bottom: 2px;
	transition: background-size .4s var(--gd-ease), color .25s ease;
}

.gd-fchan a:hover,
.gd-fnav a:hover {
	color: #fff !important;
	background-size: 100% 1px;
}

/* navigation columns */
.gd-fnav {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
	gap: 40px;
}

.gd-fnav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 11px;
}

.gd-fnav a {
	font-size: 14px;
}

.gd-fsocial {
	display: flex;
	gap: 10px;
}

.gd-fsocial a {
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	border: 1px solid var(--gd-line);
	border-radius: 10px;
	color: rgba(255, 255, 255, .62);
	background: none !important;
	padding: 0;
	transition: color .25s ease, border-color .25s ease, transform .3s var(--gd-ease);
}

.gd-fsocial a svg {
	width: 17px;
	height: 17px;
}

.gd-fsocial a:hover {
	color: #fff;
	border-color: rgba(123, 92, 255, .55);
	transform: translateY(-2px);
}

/* -- company spec strip --------------------------------------------------- */

.gd-fspec {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	margin: 0;
	padding: 26px 0;
	border-top: 1px solid rgba(255, 255, 255, .08);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.gd-fspec-cell {
	padding: 0 26px;
	border-left: 1px solid rgba(255, 255, 255, .08);
}

.gd-fspec-cell:first-child {
	padding-left: 0;
	border-left: 0;
}

.gd-fspec-cell.is-wide {
	grid-column: span 2;
}

.gd-fspec dt {
	margin: 0 0 7px;
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: #7b74b4;
}

.gd-fspec dd {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.5;
	color: rgba(255, 255, 255, .84);
}

.gd-fspec-foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px 40px;
	margin-top: 16px;
}

.gd-fspec-note {
	margin: 0;
	font-size: 12px;
	line-height: 1.6;
	color: #7a739f;
	max-width: 68ch;
}

/* accepted payment marks */
.gd-fpay {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: 0 0 auto;
}

.gd-fpay-label {
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: #7b74b4;
	white-space: nowrap;
}

.gd-fpay img {
	display: block;
	height: 24px;
	width: auto;
	opacity: .9;
}

@media (max-width: 782px) {
	.gd-fspec-foot {
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
	}

	.gd-fpay img {
		height: 21px;
	}
}

/* -- oversized wordmark, clipped, lit once on first sight ----------------- */

.gd-fmarkwrap {
	position: relative;
	height: .58em;
	font-size: min(13.9vw, 204px);
	margin: 26px 0 0;
	overflow: hidden;
	pointer-events: none;
	user-select: none;
}

/* Filled, not stroked. -webkit-text-stroke outlines every contour in the
   glyph, and at this size Lexend Deca's internal path segments showed through
   as stray hairlines inside the letters. A gradient fill clipped to the text
   gives the same backdrop effect with clean letterforms. */
.gd-fmark {
	position: absolute;
	inset: 0;
	display: block;
	text-align: center;
	white-space: nowrap;
	font-family: var(--wd-title-font, inherit);
	font-size: 1em;
	font-weight: 700;
	line-height: .82;
	letter-spacing: -.035em;
	color: transparent;
	-webkit-text-fill-color: transparent;
	background-image: linear-gradient(180deg,
			rgba(158, 136, 242, .20) 0%,
			rgba(158, 136, 242, .03) 86%);
	-webkit-background-clip: text;
	background-clip: text;
}

/* second copy carries the sweep so the outline stays intact underneath */
.gd-fmark-sheen {
	-webkit-text-stroke: 1px transparent;
	background-image: linear-gradient(100deg,
			transparent 40%,
			rgba(214, 200, 255, .95) 50%,
			transparent 60%);
	background-repeat: no-repeat;
	background-size: 260% 100%;
	background-position: -90% 0;
	-webkit-background-clip: text;
	background-clip: text;
	opacity: 0;
}

.gd-fmarkwrap.is-lit .gd-fmark-sheen {
	animation: gd-sheen 1.35s cubic-bezier(.45, .05, .35, 1) forwards;
}

.gd-fmarkwrap.is-lit .gd-fmark:not(.gd-fmark-sheen) {
	animation: gd-mark-glow 1.35s ease-in-out forwards;
}

@keyframes gd-sheen {
	0% { opacity: 0; background-position: -80% 0; }
	10% { opacity: 1; }
	80% { opacity: 1; }
	100% { opacity: 0; background-position: 180% 0; }
}

@keyframes gd-mark-glow {
	0%, 100% { filter: brightness(1); }
	45% { filter: brightness(2.4); }
}

/* -- bottom line ---------------------------------------------------------- */

.gd-fcolophon {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px 40px;
	padding: 20px 0 32px;
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.gd-fcolophon-note {
	margin: 0;
	font-size: 12px;
	line-height: 1.6;
	color: #7a739f;
	max-width: 82ch;
}

.gd-fcolophon-links {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px 20px;
}

.gd-fcolophon-links a,
.gd-fcolophon-links button {
	appearance: none;
	border: 0;
	background: none;
	padding: 0;
	font: inherit;
	font-size: 12.5px;
	font-weight: 500;
	color: #9a93cf !important;
	cursor: pointer;
	white-space: nowrap;
	transition: color .22s ease;
}

.gd-fcolophon-links a:hover,
.gd-fcolophon-links button:hover {
	color: #fff !important;
}

@media (max-width: 1100px) {
	.gd-ftop {
		grid-template-columns: 1fr;
		gap: 52px;
	}

	.gd-fspec {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 22px 0;
	}

	.gd-fspec-cell:nth-child(odd) {
		padding-left: 0;
		border-left: 0;
	}

	.gd-fspec-cell.is-wide {
		grid-column: span 2;
		padding-left: 0;
		border-left: 0;
	}
}

@media (max-width: 782px) {
	.gd-fband-inner {
		padding: 58px 18px 0;
	}

	.gd-fnav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 34px;
	}

	.gd-fchan {
		grid-template-columns: 1fr 1fr;
		gap: 18px 24px;
	}

	.gd-fmarkwrap {
		height: .6em;
	}

	.gd-fcolophon {
		padding-bottom: 76px; /* clears the mobile toolbar */
	}
}

@media (max-width: 520px) {
	.gd-fspec {
		grid-template-columns: 1fr;
	}

	.gd-fspec-cell,
	.gd-fspec-cell.is-wide {
		padding-left: 0;
		border-left: 0;
	}

	.gd-fchan {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gd-fmarkwrap.is-lit .gd-fmark-sheen,
	.gd-fmarkwrap.is-lit .gd-fmark:not(.gd-fmark-sheen) {
		animation: none;
	}
}

/* 10 — Misc polish ------------------------------------------------------- */

/* scrollbar */
* {
	scrollbar-color: var(--gd-purple) var(--gd-bg-800);
	scrollbar-width: thin;
}

::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

::-webkit-scrollbar-track {
	background: var(--gd-bg-800);
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, var(--gd-purple), var(--gd-purple-3));
	border-radius: 999px;
	border: 2px solid var(--gd-bg-800);
}

::-webkit-scrollbar-thumb:hover {
	background: var(--gd-purple-2);
}

/* selection */
::selection {
	background: rgba(123, 92, 255, .45);
	color: #fff;
}

/* footer */
.footer-container a:hover {
	color: var(--gd-gold) !important;
}

.footer-container .wd-sub-menu li a,
.footer-container .menu li a {
	transition: color .2s ease, padding-left .25s var(--gd-ease);
}

.footer-container .wd-sub-menu li a:hover,
.footer-container .menu li a:hover {
	padding-left: 5px;
}

/* breadcrumbs */
.wd-breadcrumbs a:hover,
.woocommerce-breadcrumb a:hover {
	color: var(--gd-gold);
}

/* the promo strip on single product pages, if it stays, at least on-brand */
.wd-single-product-promo,
.single-product .wd-promo-banner {
	border-radius: var(--gd-r-lg);
}

/* pagination */
.page-numbers li a,
.page-numbers li span {
	border-radius: 10px !important;
	transition: background .2s ease, color .2s ease, transform .2s var(--gd-ease);
}

.page-numbers li a:hover {
	background: rgba(123, 92, 255, .18) !important;
	transform: translateY(-2px);
}

.page-numbers li .current {
	background-image: var(--gd-grad) !important;
	color: #fff !important;
}
