/* Life of Damon — theme styles
 * Design tokens mirror design-reference/shared/system.css.
 * Everything is scoped under utility classes + .lod- prefixes to avoid leaking.
 */

:root {
	--lod-bg-primary:    #0a0a0a;
	--lod-bg-secondary:  #0f0f0f;
	--lod-bg-alt:        #151515;
	--lod-bg-light:      #f4f3f0;
	--lod-text-primary:  #f4f3f0;
	--lod-text-secondary:#c8c8c8;
	--lod-text-muted:    #8a8a8a;
	--lod-border:        rgba(255,255,255,0.12);
	--lod-border-strong: rgba(255,255,255,0.2);
	--lod-border-hair:   rgba(255,255,255,0.1);
	--lod-error:         #e8a9a9;

	--lod-font-display:'Inter Tight','Helvetica Neue',Helvetica,Arial,sans-serif;
	--lod-font-body:   'Inter','Helvetica Neue',Helvetica,Arial,sans-serif;
	--lod-font-mono:   'JetBrains Mono',ui-monospace,'SF Mono',Menlo,monospace;
}

/* ==============================
   Base reset & utilities
============================== */
body.lod-reset,
.lod-reset,
.lod-reset * { box-sizing: border-box; }

body { margin: 0; background: var(--lod-bg-primary); color: var(--lod-text-primary); font-family: var(--lod-font-body); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

.lod-reset h1, .lod-reset h2, .lod-reset h3, .lod-reset h4, .lod-reset p, .lod-reset ul, .lod-reset figure { margin: 0; padding: 0; }
.lod-reset ul { list-style: none; }
.lod-reset button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
.lod-reset a { color: inherit; text-decoration: none; }
.lod-reset img { display: block; max-width: 100%; }

.lod-display { font-family: var(--lod-font-display); letter-spacing: -0.03em; }
.lod-mono    { font-family: var(--lod-font-mono); font-feature-settings: "ss01"; }
.lod-eyebrow { font-family: var(--lod-font-mono); text-transform: uppercase; font-size: 11px; letter-spacing: 0.12em; color: var(--lod-text-muted); }

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

/* Inline link in long copy */
.lod-inline-link { color: var(--lod-text-primary); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.lod-inline-link:hover { opacity: 0.85; }

/* Thumbnail placeholder (hatched) — mirrors .lod-thumb in prototype */
.lod-thumb {
	background:
		repeating-linear-gradient(45deg,
			rgba(255,255,255,0.04) 0 2px,
			transparent 2px 10px),
		linear-gradient(180deg, #1a1a1a, #0a0a0a);
	color: #3a3a3a;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-direction: column;
	font-family: var(--lod-font-mono);
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	position: relative;
	overflow: hidden;
	text-align: center;
	padding: 12px;
}
.lod-thumb::after {
	content: '';
	position: absolute; inset: 0;
	pointer-events: none;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

/* Brick-textured sections — background + gradient overlay are both
   applied in pure CSS so HTML block templates don't need to embed URLs. */
.lod-section--brick,
.lod-hero-home,
.lod-shop-hero,
.lod-sponsors-hero,
.lod-contact-hero,
.lod-live-banner {
	background-image: url('../img/brick.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.lod-section--brick::before,
.lod-hero-home::before,
.lod-shop-hero::before,
.lod-sponsors-hero::before,
.lod-contact-hero::before,
.lod-live-banner::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(10,10,10,0.5), rgba(10,10,10,0.85));
	z-index: 0;
}
/* Tuned overlay opacities per section */
.lod-hero-home::before      { background: linear-gradient(180deg, rgba(10,10,10,0.35), rgba(10,10,10,0.75)); }
.lod-section--brick::before { background: linear-gradient(180deg, rgba(10,10,10,0.82), rgba(10,10,10,0.88)); }
.lod-live-banner::before    { background: linear-gradient(180deg, rgba(10,10,10,0.78), rgba(10,10,10,0.92)); }
.lod-sponsors-hero::before,
.lod-contact-hero::before   { background: linear-gradient(180deg, rgba(10,10,10,0.5),  rgba(10,10,10,0.88)); }

/* Lift children above the overlay */
.lod-section--brick > *,
.lod-hero-home > *,
.lod-shop-hero > *,
.lod-sponsors-hero > *,
.lod-contact-hero > *,
.lod-live-banner > *          { position: relative; z-index: 1; }

/* Legacy helper class (still emitted by PHP templates — keep it working) */
.lod-brick-overlay { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

/* ==============================
   Sections + layout primitives
============================== */
.lod-section { padding: 72px 48px; border-bottom: 1px solid var(--lod-border); position: relative; }

.lod-section-head {
	display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 36px;
}

.lod-section-title { font-size: 56px; font-weight: 700; letter-spacing: -0.04em; line-height: 0.95; }

/* Buttons */
.lod-btn {
	display: inline-flex; align-items: center; justify-content: center;
	padding: 16px 26px;
	font-family: var(--lod-font-mono); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600;
	border: 1px solid transparent; cursor: pointer; text-decoration: none;
	transition: background .15s, color .15s, border-color .15s, opacity .15s;
}
.lod-btn--light { background: var(--lod-bg-light); color: var(--lod-bg-primary); }
.lod-btn--light:hover { opacity: 0.9; }
.lod-btn--ghost { background: transparent; color: var(--lod-text-primary); border-color: var(--lod-text-primary); }
.lod-btn--ghost:hover { background: var(--lod-text-primary); color: var(--lod-bg-primary); }
.lod-btn--outline { background: transparent; color: var(--lod-text-primary); border-color: var(--lod-border-strong); padding: 12px 18px; font-size: 11px; }
.lod-btn--outline:hover { background: rgba(255,255,255,0.06); border-color: var(--lod-border-strong); }

/* Targeted fix: when .lod-btn--light is on an <a> tag, theme.json's
   elements.link.color.text (white) wins over the class's `color` rule
   and you get white-on-white text. Force the dark foreground on EVERY
   anchor with --light. Safe to be broad because the selector only hits
   `<a>` tags — `<button class="lod-btn lod-btn--light">` (Copy Code,
   etc.) is unaffected and keeps its original styling. */
a.lod-btn--light,
a.lod-btn--light:visited,
a.lod-btn--light:hover,
a.lod-btn--cta,
a.lod-btn--cta:visited,
a.lod-btn--cta:hover {
	color: var(--lod-bg-primary) !important;
}
/* Open Item Shop button: keep the smaller outline-button dimensions
   even though it now uses .lod-btn--light for the white fill. */
.lod-creator-code-card-actions a.lod-btn--light {
	padding: 12px 18px;
	font-size: 11px;
}
.lod-btn--dark { background: var(--lod-bg-primary); color: var(--lod-text-primary); border-color: transparent; font-size: 11px; letter-spacing: 0.2em; font-weight: 700; padding: 16px 28px; }
.lod-btn--dark:hover { opacity: 0.88; }
.lod-btn--sm { padding: 10px 14px; font-size: 10px; }
.lod-btn--xl { padding: 16px 28px; font-size: 11px; letter-spacing: 0.2em; }

/* ------------------------------------------------------------------
   Gutenberg Button block — when a .wp-block-button wraps our .lod-btn
   class, we need to defeat WP's default radius, border, and element-button
   background rules. The .wp-block-button is the outer div; the <a> inside
   carries both .wp-block-button__link and our .lod-btn classes.
------------------------------------------------------------------ */
/* CRITICAL: when .lod-btn--* is applied to a wp-block-button WRAPPER (the
   outer div), strip ALL visual styling (border, background, padding) — the
   inner <a class="wp-block-button__link"> below carries the actual button
   look. Without this we get "two layered rectangles" — wrapper border +
   inner-link border. */
.wp-block-button.lod-btn,
.wp-block-button.lod-btn--ghost,
.wp-block-button.lod-btn--light,
.wp-block-button.lod-btn--outline,
.wp-block-button.lod-btn--dark,
.wp-block-button.lod-btn--sm,
.wp-block-button.lod-btn--xl {
	background: transparent !important;
	border: 0 !important;
	padding: 0 !important;
	box-shadow: none !important;
}
.wp-block-button.lod-btn { display: inline-flex; margin: 0; }
.wp-block-button.lod-btn .wp-block-button__link,
.lod-btn > .wp-block-button__link,
.wp-block-button.lod-btn-light .wp-block-button__link {
	border-radius: 0 !important;
	box-shadow: none;
	padding: 16px 26px;
	font-family: var(--lod-font-mono);
	font-size: 12px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	font-weight: 600;
	line-height: 1;
	border: 1px solid transparent;
	transition: background .15s, color .15s, border-color .15s, opacity .15s;
}
.wp-block-button.lod-btn--light .wp-block-button__link {
	background: var(--lod-bg-light) !important;
	color: var(--lod-bg-primary) !important;
	border-color: transparent;
}
.wp-block-button.lod-btn--light .wp-block-button__link:hover { opacity: 0.9; }
.wp-block-button.lod-btn--ghost .wp-block-button__link {
	background: transparent !important;
	color: var(--lod-text-primary) !important;
	border: 1px solid var(--lod-text-primary) !important;
}
.wp-block-button.lod-btn--ghost .wp-block-button__link:hover {
	background: var(--lod-text-primary) !important;
	color: var(--lod-bg-primary) !important;
}
.wp-block-button.lod-btn--outline .wp-block-button__link {
	background: transparent !important;
	color: var(--lod-text-primary) !important;
	border: 1px solid var(--lod-border-strong) !important;
	padding: 12px 18px;
	font-size: 11px;
}
.wp-block-button.lod-btn--outline .wp-block-button__link:hover { background: rgba(255,255,255,0.06) !important; }
.wp-block-buttons.lod-hero-home-ctas { gap: 12px; }
.wp-block-buttons.lod-hero-home-ctas .wp-block-button { margin: 0; }

/* ==============================
   Full-bleed safety net
   ---
   Block themes with contentSize:1440px wrap top-level blocks in a centered
   container. We rely on align:full to break out of that; these rules guarantee
   the hero, shop band, and nav bar truly span the viewport on wide displays.
============================== */
.alignfull,
.lod-home,
.lod-sponsors,
.lod-contact,
.lod-navigator,
.lod-nav-wrap,
.lod-footer {
	width: 100% !important;
	max-width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}
/* Row-level full-bleed sections. */
.lod-section,
.lod-stats-strip,
.lod-announce-band,
.lod-niche-tabs,
.lod-niche-panels,
.lod-niche-panel,
.lod-bundle-cta,
.lod-value-props,
.lod-live-banner {
	width: 100%;
	max-width: 100%;
}

/* ==============================
   Top nav (sticky pill) — native FSE blocks.
   parts/header.html now uses wp:group + wp:site-logo + wp:site-title +
   wp:navigation + [lod_cart_btn]. The Site Editor can edit the nav items
   directly. CSS below styles both the legacy shortcode markup and the
   native-block markup so either renders correctly.
============================== */
.lod-nav-wrap { width: 100%; }
.lod-top-nav {
	position: relative;
	display: grid !important;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	justify-items: stretch;
	padding: 22px 32px;
	color: var(--lod-text-primary);
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	min-height: 78px;
	gap: 0 !important;
	row-gap: 0 !important;
	column-gap: 0 !important;
}
/* When the inner nav wrapper is a wp:group it adds wp-block-group;
   strip its default block-gap and block-margin so layout stays tight. */
.lod-nav-wrap > .wp-block-group.lod-top-nav {
	margin-block: 0;
}
/* Three columns: brand (left), pill (center), cart (right). All same row. */
.lod-top-nav > .lod-brand {
	grid-column: 1;
	grid-row: 1;
	justify-self: start;
	align-self: center;
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
}
.lod-top-nav > nav.wp-block-navigation.lod-nav-pill {
	grid-column: 2;
	grid-row: 1;
	justify-self: center;
	align-self: center;
}
.lod-top-nav > .lod-nav-right {
	grid-column: 3;
	grid-row: 1;
	justify-self: end;
	align-self: center;
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
}
.lod-brand {
	display: flex; align-items: center; gap: 10px; color: inherit; text-decoration: none;
}
.lod-brand-mark {
	width: 34px; height: 34px; filter: invert(1);
}
.lod-brand-word {
	font-family: var(--lod-font-display); font-size: 17px; font-weight: 700; letter-spacing: -0.02em;
}
.lod-nav-pill {
	/* Div (not ul) → no browser padding-inline-start or margin-block defaults.
	   Sole flex child of .lod-top-nav; sits centered in the viewport.
	   inline-flex ignores whitespace between children, so items are snug. */
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	background: var(--lod-bg-light);
	color: var(--lod-bg-primary);
	border-radius: 999px;
	padding: 4px 6px;
	margin: 0;
	box-sizing: border-box;
}

/* Nav links — flex items inside .lod-nav-pill. Display:flex on the anchor
   means align-items:center reliably centers the text vertically. */
.lod-top-nav .lod-nav-pill > .lod-nav-item,
.lod-top-nav .lod-nav-pill > a,
.lod-top-nav .lod-nav-pill > a:visited {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 34px;
	padding: 0 20px;
	box-sizing: border-box;
	font-family: var(--lod-font-body) !important;
	font-size: 13px !important;
	font-weight: 500;
	letter-spacing: -0.005em;
	line-height: 1;
	color: var(--lod-bg-primary) !important;
	text-decoration: none;
	text-align: center;
	border-radius: 999px;
	transition: opacity .15s;
	white-space: nowrap;
}
.lod-top-nav .lod-nav-pill > a:hover { opacity: 0.6; color: var(--lod-bg-primary) !important; }
.lod-top-nav .lod-nav-pill > a.is-active {
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 4px;
}

/* Brand word color (brand itself is absolutely positioned above). */
.lod-top-nav .lod-brand-word { color: var(--lod-text-primary); }

/* Brand logo link shouldn't inherit the theme.json element-link color either. */
.lod-top-nav a.lod-brand,
.lod-top-nav a.lod-brand:visited { color: var(--lod-text-primary) !important; text-decoration: none; }

/* .lod-nav-right is absolutely positioned on desktop (see .lod-top-nav > .lod-nav-right above). */
.lod-cart-btn {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 8px 14px; border: 1px solid var(--lod-border-strong);
	color: var(--lod-text-primary);
	font-family: var(--lod-font-mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
	text-decoration: none;
}
.lod-cart-btn:hover { background: rgba(255,255,255,0.06); }

.lod-mobile-toggle { display: none; position: absolute; right: 20px; top: 22px; width: 36px; height: 36px; border: 1px solid var(--lod-border-strong); background: transparent; }
.lod-mobile-toggle-lines,
.lod-mobile-toggle-lines::before,
.lod-mobile-toggle-lines::after {
	display: block; width: 16px; height: 1px; background: var(--lod-text-primary); margin: 0 auto; position: relative;
}
.lod-mobile-toggle-lines::before { content: ''; position: absolute; top: -6px; left: 0; width: 16px; }
.lod-mobile-toggle-lines::after  { content: ''; position: absolute; top:  6px; left: 0; width: 16px; }

/* ==============================
   Lazy-embed wrapper — replaces eager <iframe> loads with a poster +
   tap-to-play button. Critical for mobile perf: each YouTube or Kick
   iframe normally pulls ~1.5–2 MB of JS on page load.
============================== */
.lod-lazy-embed {
	position: relative;
	overflow: hidden;
	background: #0a0a0a;
}
.lod-lazy-embed-trigger {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	border: 0;
	margin: 0;
	padding: 0;
	background: transparent;
	color: var(--lod-text-primary);
	cursor: pointer;
	width: 100%;
	height: 100%;
}
.lod-lazy-embed-poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.55;
	transition: opacity .2s;
}
.lod-lazy-embed-trigger:hover .lod-lazy-embed-poster {
	opacity: 0.75;
}
/* Play button — light pill, BLACK CSS-drawn triangle + "WATCH" text.
   We hide the ▶ unicode character (which some browsers force-render as
   a blue emoji) by zeroing the parent font-size, then draw a triangle
   via ::before that inherits currentColor cleanly. */
.lod-lazy-embed-play {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 22px;
	background: var(--lod-bg-light);
	color: var(--lod-bg-primary);
	border: 0;
	line-height: 1;
	border-radius: 0;
	box-shadow: 0 6px 24px rgba(0,0,0,0.55);
	transition: transform .15s ease, background .15s ease;
	white-space: nowrap;
	font-size: 0; /* suppresses the ▶ character node */
}
/* CSS-drawn play triangle, inherits currentColor (= dark on light pill). */
.lod-lazy-embed-play::before {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 10px solid currentColor;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	margin-right: 12px;
	vertical-align: middle;
}
.lod-lazy-embed-play::after {
	content: "WATCH";
	font-family: var(--lod-font-mono);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	vertical-align: middle;
	line-height: 1;
}
.lod-lazy-embed-trigger:hover .lod-lazy-embed-play {
	transform: translateY(-2px);
	background: #fff;
}
.lod-lazy-embed-trigger:hover .lod-lazy-embed-poster {
	opacity: 0.45;
}
.lod-lazy-embed-label {
	position: relative;
	z-index: 2;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--lod-text-primary);
	padding: 4px 10px;
}

/* ==============================
   Suppress third-party floating cart / account icons that some plugins
   (WC Cart Drawer, Side Cart, header-builder addons, etc.) inject into
   the page body outside our header. Our header already has its own cart;
   these duplicates show up under the nav in production and look broken.
   We target the common class names; if a plugin uses a different class,
   we can add it here once identified.
============================== */
.woocommerce-mini-cart-floating,
.wcmenucart-toggle-button,
.cart-drawer-toggle,
.xoo-wsc-cart-trigger,
.xoo-wsc-basket,
.ts-floating-cart,
.ts-floating-mini-cart,
.fkcart-mini,
.fkcart-floating,
.cartflows-mini-cart,
.elementor-menu-cart__toggle:not(.lod-cart-btn),
.astra-header-cart-wrap,
.header-account-link:not(.lod-account-link),
.woocommerce-MyAccount-navigation-link--floating,
.my-account-floating,
body > .floating-cart,
body > .floating-account,
body > .header-cart-floating,
body > .header-account-floating,
body > .wc-floating-cart {
	display: none !important;
}

.lod-mobile-nav { display: none; padding: 12px 24px 20px; border-bottom: 1px solid var(--lod-border); background: var(--lod-bg-primary); }
.lod-mobile-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.lod-mobile-nav a { display: block; padding: 10px 14px; color: var(--lod-text-primary); font-family: var(--lod-font-body); font-size: 14px; border: 1px solid var(--lod-border); }

/* ==============================
   Native-block overrides for the new (Site Editor) header markup
============================== */
/* Brand block — wp:group containing wp:site-logo + wp:site-title.
   The .lod-brand class is on the group; absolute-pin already inherited
   from .lod-top-nav > .lod-brand above. Strip wp-block-group defaults. */
.lod-top-nav > .wp-block-group.lod-brand {
	margin: 0;
	padding: 0;
	gap: 10px;
}
/* Brand logo — force the 34px square + invert filter the prototype uses.
   Covers both wp:site-logo (legacy) and wp:image (current parts/header.html). */
.lod-top-nav .lod-brand .wp-block-site-logo,
.lod-top-nav .lod-brand .wp-block-image,
.lod-top-nav .lod-brand figure.wp-block-image {
	margin: 0 !important;
	padding: 0;
	width: 34px !important;
	height: 34px !important;
	display: block;
	line-height: 0;
}
.lod-top-nav .lod-brand .wp-block-site-logo a,
.lod-top-nav .lod-brand .wp-block-site-logo .custom-logo-link {
	display: block; line-height: 0;
}
.lod-top-nav .lod-brand img,
.lod-top-nav .lod-brand .wp-block-site-logo img,
.lod-top-nav .lod-brand .custom-logo,
.lod-top-nav .lod-brand .wp-block-image img,
.lod-top-nav .lod-brand figure.wp-block-image img,
.lod-top-nav .lod-brand .lod-brand-mark-img,
.lod-top-nav .lod-brand img.lod-brand-mark-img {
	width: 40px !important;
	height: 40px !important;
	max-width: 40px !important;
	min-width: 40px !important;
	max-height: 40px !important;
	min-height: 40px !important;
	flex: 0 0 40px !important;
	filter: invert(1);
	display: block !important;
	object-fit: contain;
}
/* The brand shortcode wraps in a <p> by default (wp:shortcode renders as a paragraph).
   Strip that so the image sits flush in the brand flex row, and don't let
   the paragraph shrink the image's flex basis. */
.lod-top-nav .lod-brand p {
	margin: 0 !important;
	padding: 0 !important;
	line-height: 0 !important;
	flex: 0 0 auto !important;
	display: flex;
	align-items: center;
}
/* Site title — match the .lod-brand-word display style. */
.lod-top-nav .lod-brand .wp-block-site-title {
	margin: 0; padding: 0;
	font-family: var(--lod-font-display);
	font-size: 17px;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1;
	color: var(--lod-text-primary);
}
.lod-top-nav .lod-brand .wp-block-site-title a,
.lod-top-nav .lod-brand .wp-block-site-title a:visited,
.lod-top-nav .lod-brand .wp-block-site-title a:hover {
	color: var(--lod-text-primary) !important;
	text-decoration: none !important;
}

/* wp:navigation rendered as the pill. Hide WP's default container padding,
   borders, and bullets. The block outputs <ul.wp-block-navigation__container>
   inside <nav.wp-block-navigation>. We have .lod-nav-pill on the <nav>. */
.lod-top-nav nav.wp-block-navigation.lod-nav-pill {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	background: var(--lod-bg-light);
	color: var(--lod-bg-primary);
	border-radius: 999px;
	padding: 4px 6px;
	margin: 0;
	box-sizing: border-box;
	gap: 0;
	min-height: 42px;
	overflow: hidden; /* clip any inner-container corners that bleed past the rounded pill */
	--wp--style--block-gap: 0;
}
/* Kill backgrounds, borders, and shadows on every wrapper inside the pill —
   the pill itself owns the visible shape; everything inside must be transparent. */
.lod-top-nav nav.wp-block-navigation.lod-nav-pill,
.lod-top-nav nav.wp-block-navigation.lod-nav-pill * {
	box-shadow: none;
}
.lod-top-nav nav.wp-block-navigation.lod-nav-pill .wp-block-navigation__responsive-container,
.lod-top-nav nav.wp-block-navigation.lod-nav-pill .wp-block-navigation__responsive-container-content,
.lod-top-nav nav.wp-block-navigation.lod-nav-pill .wp-block-navigation__container,
.lod-top-nav nav.wp-block-navigation.lod-nav-pill .wp-block-navigation-item {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}
.lod-top-nav nav.wp-block-navigation.lod-nav-pill ul,
.lod-top-nav nav.wp-block-navigation.lod-nav-pill ul.wp-block-navigation__container {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: nowrap;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0;
}
.lod-top-nav nav.wp-block-navigation.lod-nav-pill .wp-block-navigation-item {
	margin: 0; padding: 0; list-style: none;
}
.lod-top-nav nav.wp-block-navigation.lod-nav-pill .wp-block-navigation-item__content,
.lod-top-nav nav.wp-block-navigation.lod-nav-pill a.wp-block-navigation-item__content {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 34px;
	padding: 0 20px;
	box-sizing: border-box;
	font-family: var(--lod-font-body) !important;
	font-size: 13px !important;
	font-weight: 500;
	letter-spacing: -0.005em;
	line-height: 1;
	color: var(--lod-bg-primary) !important;
	text-decoration: none;
	text-align: center;
	border-radius: 999px;
	transition: opacity .15s;
	white-space: nowrap;
	background: transparent;
}
.lod-top-nav nav.wp-block-navigation.lod-nav-pill .wp-block-navigation-item__content:hover {
	opacity: 0.6;
	color: var(--lod-bg-primary) !important;
	background: transparent;
}
.lod-top-nav nav.wp-block-navigation.lod-nav-pill .wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content,
.lod-top-nav nav.wp-block-navigation.lod-nav-pill .current-menu-item > .wp-block-navigation-item__content {
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 4px;
}

/* The right-slot group wrapper — kill block-group margins so the cart
   + account icons sit cleanly in the absolutely-pinned slot. */
.lod-top-nav > .wp-block-group.lod-nav-right {
	margin: 0; padding: 0; gap: 14px;
	display: flex !important;
	align-items: center;
}
.lod-top-nav > .wp-block-group.lod-nav-right p {
	margin: 0;
}

/* WooCommerce Customer Account + Mini-Cart blocks — blend them into the
   nav pill style instead of letting WC's default look take over. */
.lod-top-nav .lod-nav-right .wc-block-customer-account,
.lod-top-nav .lod-nav-right .lod-account-link {
	display: inline-flex;
	align-items: center;
	color: var(--lod-text-primary) !important;
	text-decoration: none;
	background: transparent !important;
	padding: 6px;
	border: 0;
	min-height: 0;
	min-width: 0;
}
.lod-top-nav .lod-nav-right .wc-block-customer-account svg,
.lod-top-nav .lod-nav-right .wc-block-customer-account__account-icon {
	width: 20px !important;
	height: 20px !important;
	color: var(--lod-text-primary) !important;
	fill: currentColor;
}
.lod-top-nav .lod-nav-right .wc-block-customer-account:hover {
	opacity: 0.7;
}

.lod-top-nav .lod-nav-right .wp-block-woocommerce-mini-cart,
.lod-top-nav .lod-nav-right .lod-mini-cart {
	margin: 0;
	padding: 0;
	display: inline-flex;
	align-items: center;
}
.lod-top-nav .lod-nav-right .wc-block-mini-cart__button {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	border: 1px solid var(--lod-border-strong);
	background: transparent !important;
	color: var(--lod-text-primary) !important;
	font-family: var(--lod-font-mono);
	font-size: 10px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	min-height: 0;
	min-width: 0;
	border-radius: 0;
	cursor: pointer;
}
.lod-top-nav .lod-nav-right .wc-block-mini-cart__button:hover {
	background: rgba(255,255,255,0.06) !important;
}
.lod-top-nav .lod-nav-right .wc-block-mini-cart__icon,
.lod-top-nav .lod-nav-right .wc-block-mini-cart__button svg {
	width: 16px !important;
	height: 16px !important;
	color: var(--lod-text-primary) !important;
	fill: currentColor;
}
.lod-top-nav .lod-nav-right .wc-block-mini-cart__badge,
.lod-top-nav .lod-nav-right .wc-block-mini-cart__quantity-badge {
	background: var(--lod-bg-light);
	color: var(--lod-bg-primary);
	font-family: var(--lod-font-mono);
	font-size: 9px;
	font-weight: 700;
}

/* ==============================
   Home page
============================== */
.lod-hero-home { padding: 100px 48px 90px; border-bottom: 1px solid var(--lod-border); }
.lod-hero-home-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.lod-hero-home-title { font-size: 120px; font-weight: 800; letter-spacing: -0.055em; line-height: 0.85; text-wrap: balance; }
.lod-hero-home-lede { font-size: 18px; margin-top: 26px; color: var(--lod-text-secondary); line-height: 1.5; max-width: 520px; }
.lod-hero-home-ctas { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.lod-hero-home-mark { display: flex; justify-content: center; align-items: center; }
/* Override WP's .wp-block-image defaults that force width:100%. Higher specificity + !important keeps the monogram at 380×380. */
.lod-hero-home .wp-block-image,
.lod-hero-home .lod-hero-home-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 0;
}
.lod-hero-home .wp-block-image img,
.lod-hero-home-mark img,
.lod-hero-home-logo img {
	width: 380px !important;
	height: 380px !important;
	max-width: 100%;
	object-fit: contain;
	filter: invert(1);
	opacity: 0.92;
}

/* Quick stats strip — raw grid, NOT inside wp:columns, so it stays a true 4-up. */
.lod-stats-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-bottom: 1px solid var(--lod-border);
	background: var(--lod-bg-primary);
}
.lod-stats-strip .lod-stat-cell { padding: 28px; border-right: 1px solid var(--lod-border); min-width: 0; }
.lod-stats-strip .lod-stat-cell:last-child { border-right: none; }
.lod-stats-strip .lod-stat-val {
	font-family: var(--lod-font-display);
	font-size: 48px;
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1;
	color: var(--lod-text-primary);
	white-space: nowrap;
}
.lod-stats-strip .lod-stat-key {
	font-family: var(--lod-font-mono);
	font-size: 10px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--lod-text-muted);
	margin-top: 8px;
}

/* Niche overview tiles */
.lod-niche-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.lod-niche-tile {
	text-align: left; padding: 20px;
	background: rgba(255,255,255,0.04);
	border: 1px solid var(--lod-border);
	color: var(--lod-text-primary);
	text-decoration: none;
	transition: background .15s;
}
.lod-niche-tile:hover { background: rgba(255,255,255,0.08); }
.lod-niche-n     { font-size: 10px; opacity: 0.5; letter-spacing: 0.15em; margin-bottom: 10px; }
.lod-niche-label { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.lod-niche-meta  { font-size: 9px; color: var(--lod-text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 6px; }

/* Merch grid (home) — wp:columns based, fully editable in Site Editor.
   Each .lod-merch-cell wraps one product card; user can replace any card
   with a real WooCommerce product block. */
.lod-section-inner { position: relative; z-index: 1; }
.lod-merch-grid { display: grid; gap: 18px; }
.lod-merch-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* When the merch grid is rendered via wp:columns, WP applies its own flex
   layout via .wp-block-columns. Override to keep the 3-col grid + gap. */
.wp-block-columns.lod-merch-grid {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 18px !important;
	margin: 0 !important;
}
.wp-block-columns.lod-merch-grid > .wp-block-column.lod-merch-cell {
	flex-basis: auto !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Card styling — minimal, intentional placeholder so the grid feels designed
   even before products are added. */
.lod-merch-card {
	background: rgba(255,255,255,0.03);
	border: 1px solid var(--lod-border);
	padding: 18px;
	transition: transform .18s, border-color .18s;
}
.lod-merch-card:hover {
	transform: translateY(-4px);
	border-color: var(--lod-border-strong);
}
.lod-merch-card-img {
	aspect-ratio: 4/5;
	margin: 0 0 16px !important;
	border: 1px solid var(--lod-border);
	background: rgba(255,255,255,0.04);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.lod-merch-card-img img {
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: 100% !important;
	object-fit: cover;
	opacity: 1;
	filter: none;
}
.lod-merch-card-cat {
	font-size: 9px;
	color: var(--lod-text-muted);
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin: 0 0 6px !important;
}
.lod-merch-card-title {
	font-size: 22px;
	font-weight: 600;
	letter-spacing: -0.01em;
	margin: 0 0 8px !important;
	color: var(--lod-text-primary);
}
.lod-merch-card-price {
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 14px !important;
	color: var(--lod-text-primary);
}

/* Legacy classes kept for any product-card markup that still uses them. */
.lod-merch-link { display: block; color: inherit; text-decoration: none; }
.lod-merch-thumb { aspect-ratio: 4/5; margin-bottom: 12px; border: 1px solid var(--lod-border); }
.lod-merch-thumb--image { background-size: cover; background-position: center; }
.lod-merch-meta { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.lod-merch-name  { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.lod-merch-tag   { font-size: 9px; color: var(--lod-text-muted); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 3px; }
.lod-merch-price { font-size: 18px; font-weight: 600; white-space: nowrap; }

/* Bio */
.lod-bio { padding: 72px 48px; }
.lod-bio-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center; }
.lod-bio-portrait-wrap { position: relative; }
.lod-bio-portrait { aspect-ratio: 4/5; border: 1px solid var(--lod-border); }
.lod-bio-portrait-img {
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
	display: block;
	border: 1px solid var(--lod-border);
}
.lod-bio-portrait-tag {
	position: absolute; bottom: 14px; left: 14px;
	padding: 4px 10px; background: var(--lod-bg-primary); color: var(--lod-text-primary);
	font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase;
}
.lod-bio-title { font-size: 44px; font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; text-wrap: balance; }
.lod-bio-copy { margin-top: 22px; display: grid; gap: 14px; font-size: 15px; line-height: 1.6; color: var(--lod-text-secondary); max-width: 580px; }
.lod-bio-facts { display: flex; gap: 28px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--lod-border); flex-wrap: wrap; }
.lod-bio-fact-k { font-size: 9px; color: var(--lod-text-muted); letter-spacing: 0.15em; text-transform: uppercase; }
.lod-bio-fact-v { font-size: 15px; font-weight: 600; margin-top: 4px; }

/* ==============================
   Navigator
============================== */
.lod-live-banner { padding: 40px 48px 44px; border-bottom: 1px solid var(--lod-border); }
.lod-live-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: stretch; position: relative; z-index: 1; }

.lod-live-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
/* Status dot — soft white when offline, red + intense pulse when the
   Kick API reports the channel is live (toggled via .is-live on the
   parent .lod-live-banner by the JS poll in nav.js). */
.lod-live-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--lod-text-secondary);
	opacity: 0.6;
	transition: background .3s ease, box-shadow .3s ease, opacity .3s ease;
	animation: none;
}
.lod-live-banner.is-live .lod-live-dot {
	background: #ff2d2d;
	opacity: 1;
	box-shadow: 0 0 0 0 rgba(255,45,45,0.6);
	animation: lodLiveDotPulse 1.4s ease-out infinite;
}
@keyframes lodLiveDotPulse {
	0%   { box-shadow: 0 0 0 0 rgba(255,45,45,0.6); transform: scale(1); }
	70%  { box-shadow: 0 0 0 12px rgba(255,45,45,0); transform: scale(1.05); }
	100% { box-shadow: 0 0 0 0 rgba(255,45,45,0); transform: scale(1); }
}
.lod-live-label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; }
/* When live, swap the eyebrow text from "STREAM HUB" → "LIVE NOW" via CSS,
   so the label matches the dot state without needing extra JS. */
.lod-live-banner.is-live .lod-live-label { color: #ff2d2d; }
.lod-live-count { font-size: 10px; color: var(--lod-text-muted); letter-spacing: 0.15em; }

.lod-live-frame { position: relative; aspect-ratio: 16/9; border: 1px solid var(--lod-border-strong); background: #000; overflow: hidden; }
.lod-live-thumb { position: absolute; inset: 0; display: flex; flex-direction: column; gap: 10px; align-items: center; justify-content: center; }
.lod-live-badge { position: absolute; top: 12px; left: 12px; padding: 5px 11px; background: var(--lod-text-primary); color: var(--lod-bg-primary); font-family: var(--lod-font-mono); font-size: 9px; letter-spacing: 0.18em; font-weight: 700; }
.lod-live-simulcast { position: absolute; top: 12px; right: 12px; padding: 5px 11px; background: rgba(0,0,0,0.65); color: var(--lod-text-primary); font-family: var(--lod-font-mono); font-size: 9px; letter-spacing: 0.1em; }

.lod-live-meta { display: flex; flex-direction: column; justify-content: space-between; gap: 28px; }
.lod-live-title { font-size: 64px; font-weight: 800; letter-spacing: -0.05em; line-height: 0.85; }
.lod-live-copy { font-size: 14px; color: var(--lod-text-secondary); margin-top: 14px; line-height: 1.5; max-width: 380px; }
.lod-live-current { margin-top: 18px; }
.lod-live-current-title { font-size: 16px; font-weight: 600; line-height: 1.3; }
.lod-live-current-meta  { font-size: 10px; color: var(--lod-text-muted); margin-top: 4px; letter-spacing: 0.12em; text-transform: uppercase; }

.lod-platform-row { display: flex; gap: 10px; flex-wrap: wrap; }
.lod-platform-link {
	display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid var(--lod-border-strong);
	color: var(--lod-text-primary);
	transition: background .15s, border-color .15s, color .15s;
}
.lod-platform-link:hover { background: var(--lod-text-primary); color: var(--lod-bg-primary); border-color: var(--lod-text-primary); }

/* ==============================
   Platform brand colors — subtle by default, intense on hover.
   Two strategies layered together:
   1) URL-attribute selectors on .lod-niche-platform-item (navigator list)
      so colors apply without any markup changes.
   2) .lod-platform-link--{id} modifier on the icon-tile variant
      (live banner, contact tiles), set by lod_platform_link() in helpers.php.
============================== */

/* --- 1. Niche platform list (navigator) — color the icon, intensify on hover --- */
.lod-niche-platform-item[href*="youtube.com"]   .lod-niche-platform-icon { color: #ff3b3b; }
.lod-niche-platform-item[href*="youtu.be"]      .lod-niche-platform-icon { color: #ff3b3b; }
.lod-niche-platform-item[href*="twitch.tv"]     .lod-niche-platform-icon { color: #a78bff; }
.lod-niche-platform-item[href*="kick.com"]      .lod-niche-platform-icon { color: #6cf24a; }
.lod-niche-platform-item[href*="rumble.com"]    .lod-niche-platform-icon { color: #92d36b; }
.lod-niche-platform-item[href*="tiktok.com"]    .lod-niche-platform-icon { color: #ff5577; }
.lod-niche-platform-item[href*="instagram.com"] .lod-niche-platform-icon { color: #e25b78; }
.lod-niche-platform-item[href*="x.com"]         .lod-niche-platform-icon { color: #f0f0f0; }
.lod-niche-platform-item[href*="twitter.com"]   .lod-niche-platform-icon { color: #6cb6ff; }
.lod-niche-platform-item[href*="facebook.com"]  .lod-niche-platform-icon { color: #6e9bff; }
.lod-niche-platform-item[href*="discord"]       .lod-niche-platform-icon { color: #8a98ff; }

/* Hover: pull the icon background, deepen the border to match brand. */
.lod-niche-platform-item[href*="youtube.com"]:hover,
.lod-niche-platform-item[href*="youtu.be"]:hover    { border-color: #ff3b3b; box-shadow: inset 0 0 0 1px rgba(255,59,59,0.25); }
.lod-niche-platform-item[href*="twitch.tv"]:hover    { border-color: #a78bff; box-shadow: inset 0 0 0 1px rgba(167,139,255,0.25); }
.lod-niche-platform-item[href*="kick.com"]:hover     { border-color: #6cf24a; box-shadow: inset 0 0 0 1px rgba(108,242,74,0.25); }
.lod-niche-platform-item[href*="rumble.com"]:hover   { border-color: #92d36b; box-shadow: inset 0 0 0 1px rgba(146,211,107,0.25); }
.lod-niche-platform-item[href*="tiktok.com"]:hover   { border-color: #ff5577; box-shadow: inset 0 0 0 1px rgba(255,85,119,0.25); }
.lod-niche-platform-item[href*="instagram.com"]:hover{ border-color: #e25b78; box-shadow: inset 0 0 0 1px rgba(226,91,120,0.25); }
.lod-niche-platform-item[href*="x.com"]:hover        { border-color: #f0f0f0; box-shadow: inset 0 0 0 1px rgba(240,240,240,0.25); }
.lod-niche-platform-item[href*="twitter.com"]:hover  { border-color: #6cb6ff; box-shadow: inset 0 0 0 1px rgba(108,182,255,0.25); }
.lod-niche-platform-item[href*="facebook.com"]:hover { border-color: #6e9bff; box-shadow: inset 0 0 0 1px rgba(110,155,255,0.25); }
.lod-niche-platform-item[href*="discord"]:hover      { border-color: #8a98ff; box-shadow: inset 0 0 0 1px rgba(138,152,255,0.25); }

/* --- 2. Icon-tile platform links (.lod-platform-link, used in live banner + contact) --- */
.lod-platform-link--youtube,
.lod-platform-link--twitch,
.lod-platform-link--kick,
.lod-platform-link--rumble,
.lod-platform-link--tiktok,
.lod-platform-link--instagram,
.lod-platform-link--x,
.lod-platform-link--facebook,
.lod-platform-link--discord {
	transition: background .18s, border-color .18s, color .18s, box-shadow .18s;
}
.lod-platform-link--youtube   { color: #ff3b3b; }
.lod-platform-link--twitch    { color: #a78bff; }
.lod-platform-link--kick      { color: #6cf24a; }
.lod-platform-link--rumble    { color: #92d36b; }
.lod-platform-link--tiktok    { color: #ff5577; }
.lod-platform-link--instagram { color: #e25b78; }
.lod-platform-link--x         { color: #f0f0f0; }
.lod-platform-link--facebook  { color: #6e9bff; }
.lod-platform-link--discord   { color: #8a98ff; }

.lod-platform-link--youtube:hover   { background: rgba(255,59,59,0.12);   border-color: #ff3b3b;  color: #ff3b3b; }
.lod-platform-link--twitch:hover    { background: rgba(167,139,255,0.12); border-color: #a78bff;  color: #a78bff; }
.lod-platform-link--kick:hover      { background: rgba(108,242,74,0.12);  border-color: #6cf24a;  color: #6cf24a; }
.lod-platform-link--rumble:hover    { background: rgba(146,211,107,0.12); border-color: #92d36b;  color: #92d36b; }
.lod-platform-link--tiktok:hover    { background: rgba(255,85,119,0.12);  border-color: #ff5577;  color: #ff5577; }
.lod-platform-link--instagram:hover { background: rgba(226,91,120,0.12);  border-color: #e25b78;  color: #e25b78; }
.lod-platform-link--x:hover         { background: rgba(240,240,240,0.10); border-color: #f0f0f0;  color: #f0f0f0; }
.lod-platform-link--facebook:hover  { background: rgba(110,155,255,0.12); border-color: #6e9bff;  color: #6e9bff; }
.lod-platform-link--discord:hover   { background: rgba(138,152,255,0.12); border-color: #8a98ff;  color: #8a98ff; }

@keyframes lodpulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%      { opacity: 0.4; transform: scale(0.8); }
}

.lod-pick-head { padding: 52px 48px 24px; }
.lod-pick-head-grid { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.lod-pick-head-title { font-size: 88px; font-weight: 800; letter-spacing: -0.055em; line-height: 0.85; }
.lod-pick-head-lede { max-width: 420px; font-size: 15px; color: var(--lod-text-secondary); line-height: 1.5; padding-bottom: 8px; }

/* Tab bar — larger gap to give each tab breathing room, matching prototype.
   overflow:visible so the active-tab underline pseudo-element can sit on the bottom border. */
.lod-niche-tabs {
	display: flex;
	border-bottom: 1px solid var(--lod-border);
	padding: 0 48px;
	gap: 32px;
	overflow: visible;
	flex-wrap: wrap;
}
.lod-niche-tab {
	padding: 20px 24px;
	background: transparent;
	color: var(--lod-text-muted);
	border: 0; border-bottom: 2px solid transparent;
	margin-bottom: -1px;
	cursor: pointer;
	text-align: left;
	transition: color .15s;
	font-family: var(--lod-font-body);
	min-width: 0;
}
.lod-niche-tab {
	position: relative;
}
/* Pseudo-element underline — sits flush with the tab bar's bottom hairline,
   invisible until .is-active flips the background color to white. */
.lod-niche-tab::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 3px;
	background: transparent;
	transition: background .15s;
	pointer-events: none;
}
.lod-niche-tab:hover { color: var(--lod-text-primary); }
.lod-niche-tab.is-active {
	color: var(--lod-text-primary) !important;
}
.lod-niche-tab.is-active::after {
	background: var(--lod-text-primary) !important;
}
.lod-niche-tab.is-active .lod-niche-tab-label { font-weight: 700; }
.lod-niche-tab.is-active .lod-niche-tab-n     { opacity: 1; }
.lod-niche-tab.is-active .lod-niche-tab-main  { opacity: 1; }
.lod-niche-tab-n     { font-size: 10px; opacity: 0.6; letter-spacing: 0.15em; margin-bottom: 4px; }
.lod-niche-tab-label { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; }
.lod-niche-tab-main  { font-size: 8px; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 3px; opacity: 0.75; }

/* Panels */
.lod-niche-panels { display: block; }
.lod-niche-panel {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 0;
}
/* Double-guarded panel visibility: hide panels that are either marked [hidden]
   or lack the .is-active class. Ensures the tab switcher's class-only and
   attribute-only toggles both produce correct display state. */
.lod-niche-panel[hidden],
.lod-niche-panel:not(.is-active) { display: none !important; }
.lod-niche-panel.is-active { display: grid !important; }
.lod-niche-panel-left  { padding: 48px; border-right: 1px solid var(--lod-border); }
.lod-niche-panel-right { padding: 48px; display: flex; flex-direction: column; gap: 36px; }

.lod-niche-panel-head { margin-bottom: 28px; }
.lod-niche-panel-title { font-size: 68px; font-weight: 800; letter-spacing: -0.05em; line-height: 0.9; }
.lod-niche-panel-desc  { font-size: 14px; color: var(--lod-text-secondary); margin-top: 10px; max-width: 440px; line-height: 1.45; }
.lod-niche-panel-meta  { font-size: 10px; color: var(--lod-text-muted); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 10px; }

.lod-niche-featured { margin-bottom: 40px; cursor: pointer; }
.lod-niche-featured-thumb { aspect-ratio: 16/9; margin-bottom: 14px; border: 1px solid var(--lod-border); background-size: cover; background-position: center; }

/* Featured video embed — full-width 16:9 iframe at the top of the niche panel. */
.lod-niche-featured-video {
	position: relative;
	aspect-ratio: 16/9;
	margin-bottom: 14px;
	border: 1px solid var(--lod-border);
	overflow: hidden;
	background: #000;
}
.lod-niche-featured-video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}
.lod-niche-featured-meta  { font-size: 10px; color: var(--lod-text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.lod-niche-featured-title { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; margin-top: 8px; line-height: 1.15; }
.lod-niche-featured-title a { color: inherit; text-decoration: none; }
.lod-niche-featured-title a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Start here */
.lod-start-here { margin-bottom: 40px; padding: 28px 28px 32px; border: 1px solid var(--lod-border); background: rgba(255,255,255,0.02); }
.lod-start-here-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.lod-start-here-badge { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; background: var(--lod-bg-light); color: var(--lod-bg-primary); padding: 4px 10px; }
.lod-start-here-sub { font-size: 9px; color: var(--lod-text-muted); letter-spacing: 0.12em; text-transform: uppercase; }
.lod-start-here-body { display: grid; grid-template-columns: 180px 1fr; gap: 20px; align-items: flex-start; }
.lod-start-here-thumb { aspect-ratio: 4/3; border: 1px solid var(--lod-border); }

/* Wider video variant — 320px 16:9 slot for YouTube iframe embeds. */
.lod-start-here-body--video { grid-template-columns: minmax(280px, 42%) 1fr; }
.lod-start-here-video {
	position: relative;
	aspect-ratio: 16/9;
	border: 1px solid var(--lod-border);
	overflow: hidden;
	background: #000;
}
.lod-start-here-video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}
@media (max-width: 767px) {
	.lod-start-here-body--video { grid-template-columns: 1fr; }
}
.lod-start-here-title { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
.lod-start-here-blurb { font-size: 13.5px; color: var(--lod-text-secondary); margin-top: 10px; line-height: 1.55; }
.lod-start-here-cta { display: flex; align-items: center; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.lod-start-here-meta { font-size: 9px; color: var(--lod-text-muted); letter-spacing: 0.12em; text-transform: uppercase; }

/* About this channel */
.lod-about-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--lod-border); border-bottom: 1px solid var(--lod-border); margin-bottom: 20px; }
.lod-about-stat { padding: 18px 20px; border-right: 1px solid var(--lod-border-hair); }
.lod-about-stat:last-child { border-right: none; }
.lod-about-stat-v { font-size: 32px; font-weight: 700; letter-spacing: -0.025em; line-height: 1; }
.lod-about-stat-k { font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--lod-text-muted); margin-top: 8px; }

.lod-best-known { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 4px 2px; }
.lod-best-known-quote { font-size: 44px; font-weight: 800; line-height: 0.8; color: rgba(244,243,240,0.3); }
.lod-best-known-text  { font-size: 18px; line-height: 1.4; font-weight: 500; letter-spacing: -0.01em; color: var(--lod-text-primary); text-wrap: pretty; }

/* Niche platform list */
.lod-niche-platforms-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; gap: 12px; flex-wrap: wrap; }
.lod-niche-platforms-count { font-size: 9px; color: var(--lod-text-muted); letter-spacing: 0.12em; }
.lod-niche-platform-list { display: grid; gap: 6px; }
.lod-niche-platform-item {
	display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px;
	padding: 14px 16px; border: 1px solid var(--lod-border);
	color: var(--lod-text-primary); text-decoration: none;
	transition: background .15s, border-color .15s;
}
.lod-niche-platform-item:hover { background: rgba(255,255,255,0.06); border-color: var(--lod-border-strong); }
.lod-niche-platform-icon { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; border: 1px solid var(--lod-border-strong); }
.lod-niche-platform-title { display: flex; align-items: baseline; gap: 10px; }
.lod-niche-platform-title .lod-display { font-size: 15px; font-weight: 600; }
.lod-niche-platform-title .lod-mono    { font-size: 9px; color: var(--lod-text-muted); letter-spacing: 0.1em; }
.lod-niche-platform-note { font-size: 9px; color: var(--lod-text-secondary); margin-top: 3px; letter-spacing: 0.08em; text-transform: uppercase; }
.lod-niche-platform-stat { display: flex; align-items: center; gap: 10px; }
.lod-niche-platform-stat .lod-mono { font-size: 10px; color: var(--lod-text-secondary); }
.lod-niche-platform-arrow { font-size: 14px; color: var(--lod-text-muted); }

/* ==============================
   Shop (apparel + design)
============================== */
.lod-shop-hero { padding: 64px 48px 40px; border-bottom: 1px solid var(--lod-border); }
.lod-shop-hero-grid { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; position: relative; z-index: 1; flex-wrap: wrap; }
.lod-shop-hero-title { font-size: 92px; font-weight: 800; letter-spacing: -0.055em; line-height: 0.85; }
.lod-shop-hero-lede  { max-width: 420px; font-size: 15px; color: var(--lod-text-secondary); line-height: 1.5; padding-bottom: 12px; }

.lod-announce-band { padding: 12px 48px; border-bottom: 1px solid var(--lod-border); display: flex; justify-content: space-between; align-items: center; background: var(--lod-bg-alt); gap: 16px; }
.lod-announce-text  { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lod-text-secondary); }
.lod-announce-count { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--lod-text-muted); }

.lod-filter-bar { padding: 22px 48px; border-bottom: 1px solid var(--lod-border); display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.lod-filter-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.lod-pill {
	padding: 8px 14px;
	background: transparent; color: var(--lod-text-primary);
	border: 1px solid var(--lod-border-strong);
	font-family: var(--lod-font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
	cursor: pointer; text-decoration: none;
	transition: background .15s, color .15s;
}
.lod-pill:hover, .lod-pill.is-active { background: var(--lod-bg-light); color: var(--lod-bg-primary); }
.lod-filter-sort { display: flex; align-items: center; gap: 12px; }
.lod-filter-sort select,
.lod-filter-sort .orderby {
	padding: 8px 12px; background: transparent; color: var(--lod-text-primary);
	border: 1px solid var(--lod-border-strong);
	font-family: var(--lod-font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
	cursor: pointer;
}
.lod-filter-sort option { background: var(--lod-bg-primary); color: var(--lod-text-primary); }

.lod-products-section { padding: 40px 48px 64px; }
/* Apparel grid uses the merch-card layout — 4 columns on wide screens,
   matches the home-page Top Merch grid. */
.lod-products-section ul.products {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid !important;
	gap: 22px;
	grid-template-columns: repeat(4, 1fr);
}
.lod-design-shop .lod-products-section ul.products,
.lod-shop--design .lod-products-section ul.products { grid-template-columns: repeat(3, 1fr); gap: 28px; }
/* Shop product cards — inherit the merch-card aesthetic. */
.lod-products-section ul.products > li.lod-merch-card {
	margin: 0;
	padding: 18px;
	background: rgba(255,255,255,0.03);
	border: 1px solid var(--lod-border);
	transition: transform .18s, border-color .18s;
	display: flex;
	flex-direction: column;
	width: auto;
}
.lod-products-section ul.products > li.lod-merch-card:hover {
	transform: translateY(-4px);
	border-color: var(--lod-border-strong);
}
.lod-products-section .lod-merch-card-link { display: block; line-height: 0; text-decoration: none; }
.lod-products-section .lod-merch-card-img {
	position: relative;
	aspect-ratio: 1 / 1;
	margin: 0 0 14px;
	border: 1px solid var(--lod-border);
	background: rgba(255,255,255,0.04);
	overflow: hidden;
}
.lod-products-section .lod-merch-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.lod-products-section .lod-merch-card-img-empty {
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
	color: var(--lod-text-muted);
	font-family: var(--lod-font-mono);
	font-size: 18px;
}
.lod-products-section .lod-merch-card-badge {
	position: absolute;
	top: 10px; left: 10px;
	padding: 4px 8px;
	background: var(--lod-bg-light);
	color: var(--lod-bg-primary);
	font-size: 9px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 700;
}
.lod-products-section .lod-merch-card-title {
	margin: 0 0 6px;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -0.01em;
	line-height: 1.25;
}
.lod-products-section .lod-merch-card-title a {
	color: var(--lod-text-primary);
	text-decoration: none;
}
.lod-products-section .lod-merch-card-title a:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}
.lod-products-section .lod-merch-card-price {
	margin: 0 0 14px;
	font-size: 16px;
	font-weight: 600;
	color: var(--lod-text-primary);
}
.lod-products-section .lod-merch-card-price del {
	color: var(--lod-text-muted);
	font-weight: 400;
	margin-right: 6px;
}
.lod-products-section .lod-merch-card-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	border: 1px solid var(--lod-border-strong);
	color: var(--lod-text-primary) !important;
	background: transparent;
	font-family: var(--lod-font-mono);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-decoration: none;
	margin-top: auto;
	transition: background .15s, color .15s;
}
.lod-products-section .lod-merch-card-btn:hover {
	background: var(--lod-bg-light);
	color: var(--lod-bg-primary) !important;
}
@media (max-width: 1100px) {
	.lod-products-section ul.products { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
	.lod-products-section ul.products { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 480px) {
	.lod-products-section ul.products { grid-template-columns: 1fr; }
}

/* Cover the WooCommerce block-based product grid too, in case any page
   renders products via the new wp:woocommerce/product-collection block
   instead of our legacy archive-product.php template. */
.wp-block-woocommerce-product-collection .wp-block-woocommerce-product-template,
.wp-block-woocommerce-product-template,
.wc-block-grid__products,
.wc-block-product-template {
	display: grid !important;
	grid-template-columns: repeat(5, 1fr) !important;
	gap: 18px !important;
	list-style: none;
	padding: 0;
}

/* HOME-PAGE TOP MERCH — auto-filled WC product-collection. Force a
   3-column row that never stacks except at <=767px (real mobile).
   The block's own flex layout otherwise tries to stack on any narrow
   container, even on desktop. */
.lod-merch-collection .wp-block-woocommerce-product-template,
.lod-merch-collection .wp-block-post-template {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 22px !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}
.lod-merch-collection .wp-block-woocommerce-product-template > li,
.lod-merch-collection .wp-block-post-template > li {
	margin: 0 !important;
	width: auto !important;
	max-width: none !important;
	flex: 0 0 auto !important;
}
/* Style each product card the same way the placeholder cards looked. */
.lod-merch-collection .lod-merch-card {
	background: rgba(255,255,255,0.03);
	border: 1px solid var(--lod-border);
	padding: 18px;
	transition: transform .18s, border-color .18s;
}
.lod-merch-collection .lod-merch-card:hover {
	transform: translateY(-4px);
	border-color: var(--lod-border-strong);
}
.lod-merch-collection .lod-merch-card-img,
.lod-merch-collection .lod-merch-card-img img {
	aspect-ratio: 1 / 1;
	width: 100% !important;
	height: auto !important;
	object-fit: cover;
	margin: 0 0 14px !important;
	border: 1px solid var(--lod-border);
	background: rgba(255,255,255,0.04);
}
.lod-merch-collection .wp-block-post-title {
	font-family: var(--lod-font-display) !important;
	font-size: 18px !important;
	font-weight: 600 !important;
	letter-spacing: -0.01em !important;
	margin: 0 0 6px !important;
	line-height: 1.25 !important;
}
.lod-merch-collection .wp-block-post-title a {
	color: var(--lod-text-primary) !important;
	text-decoration: none !important;
}
.lod-merch-collection .wp-block-post-title a:hover {
	text-decoration: underline !important;
	text-underline-offset: 3px;
}
.lod-merch-collection .wc-block-components-product-price,
.lod-merch-collection .wp-block-woocommerce-product-price {
	font-size: 16px !important;
	font-weight: 600 !important;
	color: var(--lod-text-primary) !important;
	margin: 0 0 14px !important;
	display: block;
}
.lod-merch-collection .wc-block-components-product-button,
.lod-merch-collection .wp-block-woocommerce-product-button {
	margin: 0 !important;
}
.lod-merch-collection .wc-block-components-product-button .wp-block-button__link,
.lod-merch-collection .wp-block-woocommerce-product-button .wp-block-button__link {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	padding: 10px 16px !important;
	background: transparent !important;
	color: var(--lod-text-primary) !important;
	border: 1px solid var(--lod-border-strong) !important;
	border-radius: 0 !important;
	font-family: var(--lod-font-mono) !important;
	font-size: 10px !important;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}
.lod-merch-collection .wc-block-components-product-button .wp-block-button__link:hover,
.lod-merch-collection .wp-block-woocommerce-product-button .wp-block-button__link:hover {
	background: var(--lod-bg-light) !important;
	color: var(--lod-bg-primary) !important;
}
/* Responsive: keep 3 columns as long as possible, then 2, never stack
   to a single column unless viewport is genuinely tiny (<360px). The
   block's own flex behavior tries to stack early — these rules prevent it. */
@media (max-width: 900px) {
	.lod-merch-collection .wp-block-woocommerce-product-template,
	.lod-merch-collection .wp-block-post-template {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 14px !important;
	}
	.lod-merch-collection .lod-merch-card {
		padding: 12px;
	}
	.lod-merch-collection .wp-block-post-title {
		font-size: 15px !important;
	}
	.lod-merch-collection .wc-block-components-product-price,
	.lod-merch-collection .wp-block-woocommerce-product-price {
		font-size: 14px !important;
		margin: 0 0 10px !important;
	}
}
@media (max-width: 360px) {
	.lod-merch-collection .wp-block-woocommerce-product-template,
	.lod-merch-collection .wp-block-post-template {
		grid-template-columns: 1fr !important;
	}
}

/* HARD OVERRIDE — kill any flex-based behavior on the product collection
   wrapper at any viewport. The WC block sometimes wraps products in a
   flex container that auto-stacks based on container width regardless
   of our grid rules. Force grid display unconditionally. */
.lod-merch-collection,
.lod-merch-collection .wc-block-product-template-wrapper,
.lod-merch-collection > div {
	display: block !important;
}
.lod-merch-collection .wp-block-woocommerce-product-template[style*="flex"],
.lod-merch-collection .wp-block-post-template[style*="flex"] {
	display: grid !important;
}
.wp-block-woocommerce-product-collection img,
.wp-block-woocommerce-product-template img,
.wc-block-grid__product img,
.wc-block-product-template img {
	max-width: 100% !important;
	height: auto !important;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

/* Defensive padding for WooCommerce shop / archive / single-product pages
   when WP renders them via WC's default block templates (no theme override).
   Without this, products and titles span edge-to-edge because theme.json
   has contentSize:100%. Apply consistent 48px gutters site-wide. */
body.woocommerce-page main,
body.woocommerce main,
body.archive.post-type-archive-product main,
body.tax-product_cat main,
body.tax-product_tag main,
body.single-product main {
	padding-left: 48px !important;
	padding-right: 48px !important;
	padding-top: 32px;
	padding-bottom: 64px;
	box-sizing: border-box;
}

/* Also add gutters to the WC block product collection / mini-cart /
   product grid wrappers in case the page template doesn't wrap them. */
.wp-block-woocommerce-product-collection,
.wp-block-woocommerce-product-template,
.wc-block-product-template,
.wc-block-grid,
.wc-block-grid__products,
.woocommerce-products-header,
.woocommerce-result-count,
.woocommerce-ordering,
.woocommerce-pagination,
.woocommerce-notices-wrapper {
	max-width: 100%;
	box-sizing: border-box;
}

/* ==============================
   SINGLE PRODUCT PAGE — full theme overhaul.
   Was using WooCommerce defaults (dark inputs invisible on dark page,
   generic Add-to-cart, no spacing). This block restyles everything
   to match the rest of the site's mono/dark/brand aesthetic.
============================== */
body.single-product .product,
body.single-product div.product {
	padding-left: 0 !important;
	padding-right: 0 !important;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	max-width: 100%;
	margin: 0 auto;
}
@media (max-width: 900px) {
	body.single-product .product,
	body.single-product div.product {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

/* Breadcrumbs — small mono caps */
body.single-product .woocommerce-breadcrumb {
	grid-column: 1 / -1;
	font-family: var(--lod-font-mono);
	font-size: 10px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--lod-text-muted);
	margin-bottom: 8px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--lod-border);
}
body.single-product .woocommerce-breadcrumb a {
	color: var(--lod-text-muted) !important;
	text-decoration: none;
}
body.single-product .woocommerce-breadcrumb a:hover {
	color: var(--lod-text-primary) !important;
}

/* Product gallery — dark frame instead of stark white block */
body.single-product .woocommerce-product-gallery {
	background: var(--lod-bg-secondary);
	border: 1px solid var(--lod-border);
	padding: 24px;
}
body.single-product .woocommerce-product-gallery img {
	display: block;
	width: 100%;
	height: auto;
	mix-blend-mode: normal;
}
body.single-product .woocommerce-product-gallery__trigger {
	background: var(--lod-bg-primary) !important;
	color: var(--lod-text-primary) !important;
	border: 1px solid var(--lod-border-strong) !important;
	border-radius: 0 !important;
	padding: 8px !important;
}

/* Summary column (right side) */
body.single-product .summary {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin: 0 !important;
	padding: 0 !important;
}

/* Product title */
body.single-product .product_title {
	font-family: var(--lod-font-display);
	font-size: 48px;
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1;
	margin: 0;
	color: var(--lod-text-primary);
}

/* Price */
body.single-product .price,
body.single-product .summary .price {
	font-family: var(--lod-font-display);
	font-size: 36px;
	font-weight: 700;
	color: var(--lod-text-primary);
	margin: 0;
	letter-spacing: -0.02em;
}
body.single-product .price del {
	color: var(--lod-text-muted);
	font-weight: 400;
	margin-right: 12px;
	font-size: 24px;
}
body.single-product .price ins {
	background: transparent;
	text-decoration: none;
}

/* Short description */
body.single-product .woocommerce-product-details__short-description {
	color: var(--lod-text-secondary);
	font-size: 14px;
	line-height: 1.6;
	padding-top: 16px;
	border-top: 1px solid var(--lod-border);
}
body.single-product .woocommerce-product-details__short-description p {
	margin: 0 0 10px;
}

/* Variations table (Color/Size dropdowns) */
body.single-product table.variations {
	margin: 0;
	border: 0;
	width: 100%;
}
body.single-product table.variations tr {
	background: transparent !important;
	border: 0;
}
body.single-product table.variations th,
body.single-product table.variations td {
	background: transparent !important;
	border: 0;
	padding: 8px 0;
	vertical-align: middle;
}
body.single-product table.variations th.label {
	font-family: var(--lod-font-mono);
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--lod-text-muted);
	width: 100px;
	padding-right: 16px;
	font-weight: 600;
}
body.single-product table.variations th.label label {
	color: var(--lod-text-muted);
	margin: 0;
}

/* The dropdowns themselves — make them visible AND wide enough to read. */
body.single-product .variations select {
	background: var(--lod-bg-primary) !important;
	color: var(--lod-text-primary) !important;
	border: 1px solid var(--lod-border-strong) !important;
	padding: 12px 36px 12px 14px !important;
	font-family: var(--lod-font-body) !important;
	font-size: 14px !important;
	border-radius: 0 !important;
	width: 100% !important;
	min-width: 220px !important;
	min-height: 44px !important;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23f4f3f0' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 14px center !important;
	background-size: 12px 8px !important;
}
/* Quantity input: NO chevron, just a clean dark number field */
body.single-product .quantity input.qty {
	background: var(--lod-bg-primary) !important;
	color: var(--lod-text-primary) !important;
	border: 1px solid var(--lod-border-strong) !important;
	padding: 12px 8px !important;
	font-family: var(--lod-font-body) !important;
	font-size: 16px !important;
	font-weight: 600;
	border-radius: 0 !important;
	width: 70px !important;
	min-height: 50px !important;
	text-align: center;
	-moz-appearance: textfield;
}
body.single-product .quantity input.qty::-webkit-outer-spin-button,
body.single-product .quantity input.qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
body.single-product .variations select:hover,
body.single-product .variations select:focus {
	border-color: var(--lod-text-primary) !important;
	outline: none;
}
body.single-product .variations select option {
	background: var(--lod-bg-primary);
	color: var(--lod-text-primary);
}

/* "Reset" / "Clear" link below the variations */
body.single-product .reset_variations {
	color: var(--lod-text-muted) !important;
	font-family: var(--lod-font-mono);
	font-size: 10px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-top: 8px;
	display: inline-block;
}

/* Form: stays a normal block; we DO NOT flex it because for variable
   products the form contains both the variations table AND the cart row,
   and they need to stack vertically (table on top, qty+button below). */
body.single-product form.cart,
body.single-product form.variations_form {
	display: block !important;
	margin: 8px 0 0 !important;
}

/* Variation summary (price + stock) shown after a variation is picked */
body.single-product .single_variation_wrap {
	margin-top: 16px;
}
body.single-product .woocommerce-variation {
	margin-bottom: 12px;
}

/* The qty + button row — could be inside form.cart (simple product) or
   inside .woocommerce-variation-add-to-cart (variable product) */
body.single-product form.cart > .quantity,
body.single-product form.cart > .single_add_to_cart_button,
body.single-product .woocommerce-variation-add-to-cart {
	margin: 0;
}
body.single-product .woocommerce-variation-add-to-cart,
body.single-product form.cart:not(.variations_form) {
	display: flex !important;
	align-items: stretch;
	gap: 10px;
	padding-top: 16px;
	border-top: 1px solid var(--lod-border);
}
body.single-product form.cart:not(.variations_form) {
	margin-top: 8px !important;
}
body.single-product .quantity {
	flex: 0 0 70px;
	margin: 0 !important;
}

/* Add to cart button — match lod-btn--light */
body.single-product .single_add_to_cart_button,
body.single-product button.single_add_to_cart_button,
body.single-product .summary .button.alt {
	flex: 1;
	min-height: 50px;
	padding: 14px 28px !important;
	background: var(--lod-bg-light) !important;
	color: var(--lod-bg-primary) !important;
	border: 0 !important;
	border-radius: 0 !important;
	font-family: var(--lod-font-mono) !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	letter-spacing: 0.18em !important;
	text-transform: uppercase !important;
	cursor: pointer;
	transition: opacity .15s;
}
body.single-product .single_add_to_cart_button:hover {
	opacity: 0.85;
	background: #fff !important;
}
body.single-product .single_add_to_cart_button:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

/* Product meta (Category / Tags / SKU) */
body.single-product .product_meta {
	font-family: var(--lod-font-mono);
	font-size: 10px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--lod-text-muted);
	padding-top: 16px;
	border-top: 1px solid var(--lod-border);
	margin-top: 8px;
	line-height: 1.8;
}
body.single-product .product_meta > span {
	display: block;
	margin-bottom: 4px;
}
body.single-product .product_meta a {
	color: var(--lod-text-secondary) !important;
	text-decoration: none;
	font-weight: 600;
}
body.single-product .product_meta a:hover {
	color: var(--lod-text-primary) !important;
	text-decoration: underline;
}

/* Payment installment widgets (Shop Pay / Afterpay / Klarna) — clean inline styling */
body.single-product .summary .wc-shopay-installments-summary,
body.single-product .afterpay-paragraph,
body.single-product .klarna-placement {
	color: var(--lod-text-muted) !important;
	font-size: 12px !important;
	margin: 4px 0 !important;
}

/* Product tabs (Description / Reviews) below */
body.single-product .woocommerce-tabs {
	grid-column: 1 / -1;
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--lod-border);
}
body.single-product .woocommerce-tabs ul.tabs {
	list-style: none;
	padding: 0 !important;
	margin: 0 0 24px !important;
	display: flex;
	gap: 0;
	border-bottom: 1px solid var(--lod-border) !important;
}
body.single-product .woocommerce-tabs ul.tabs::before,
body.single-product .woocommerce-tabs ul.tabs::after {
	display: none !important;
}
body.single-product .woocommerce-tabs ul.tabs li {
	background: transparent !important;
	border: 0 !important;
	border-bottom: 2px solid transparent !important;
	border-radius: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
}
body.single-product .woocommerce-tabs ul.tabs li.active {
	border-bottom-color: var(--lod-text-primary) !important;
}
body.single-product .woocommerce-tabs ul.tabs li::before,
body.single-product .woocommerce-tabs ul.tabs li::after {
	display: none !important;
}
body.single-product .woocommerce-tabs ul.tabs li a {
	color: var(--lod-text-secondary) !important;
	font-family: var(--lod-font-mono) !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 0.18em !important;
	text-transform: uppercase !important;
	padding: 14px 20px !important;
	display: block;
	text-decoration: none !important;
}
body.single-product .woocommerce-tabs ul.tabs li.active a {
	color: var(--lod-text-primary) !important;
}
body.single-product .woocommerce-Tabs-panel h2 {
	font-family: var(--lod-font-display);
	font-size: 24px;
	margin-bottom: 16px;
}
body.single-product .woocommerce-Tabs-panel p {
	color: var(--lod-text-secondary);
	line-height: 1.6;
}

/* Related products section */
body.single-product .related.products,
body.single-product .upsells.products {
	grid-column: 1 / -1;
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--lod-border);
}
body.single-product .related.products > h2,
body.single-product .upsells.products > h2 {
	font-family: var(--lod-font-display);
	font-size: 28px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0 0 24px;
}

/* Tighter gutters on smaller screens. */
@media (max-width: 1100px) {
	body.woocommerce-page main,
	body.woocommerce main,
	body.archive.post-type-archive-product main,
	body.tax-product_cat main,
	body.tax-product_tag main,
	body.single-product main {
		padding-left: 32px !important;
		padding-right: 32px !important;
	}
}
@media (max-width: 767px) {
	body.woocommerce-page main,
	body.woocommerce main,
	body.archive.post-type-archive-product main,
	body.tax-product_cat main,
	body.tax-product_tag main,
	body.single-product main {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
}

.lod-product-card { display: flex; flex-direction: column; cursor: pointer; margin: 0 !important; width: 100% !important; }
.lod-product-card .lod-product-thumb-wrap { position: relative; }
.lod-product-thumb-link { display: block; color: inherit; }
.lod-product-thumb { aspect-ratio: 1/1; margin-bottom: 10px; border: 1px solid var(--lod-border); transition: transform .18s; }
.lod-product-card--design .lod-product-thumb { aspect-ratio: 4/3; margin-bottom: 14px; font-size: 11px; }
.lod-product-thumb--image { background-size: cover; background-position: center; }
.lod-product-card:hover .lod-product-thumb { transform: translateY(-3px); }

.lod-product-badge {
	position: absolute; top: 10px; left: 10px;
	padding: 4px 8px; background: var(--lod-bg-light); color: var(--lod-bg-primary);
	font-size: 9px; letter-spacing: 0.15em; font-weight: 700;
}
.lod-product-badge--limited { background: var(--lod-bg-primary); color: var(--lod-text-primary); border: 1px solid var(--lod-text-primary); }
.lod-product-files {
	position: absolute; top: 12px; right: 12px;
	padding: 4px 9px; background: rgba(10,10,10,0.75); color: var(--lod-text-primary);
	border: 1px solid var(--lod-border-strong);
	font-size: 9px; letter-spacing: 0.12em; font-weight: 600;
}

.lod-product-quick-add {
	position: absolute; bottom: 20px; left: 10px; right: 10px;
	padding: 10px 12px; background: var(--lod-bg-light); color: var(--lod-bg-primary);
	font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
	cursor: pointer; opacity: 0; transition: opacity .18s;
	border: 0;
}
.lod-product-card--apparel:hover .lod-product-quick-add { opacity: 1; }

.lod-product-meta-row { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.lod-product-meta-left { min-width: 0; flex: 1; }
.lod-product-cat-format { font-size: 9px; color: var(--lod-text-muted); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 4px; }
.lod-product-name { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.25; overflow: hidden; text-overflow: ellipsis; }
.lod-product-card--design .lod-product-name { font-size: 18px; letter-spacing: -0.02em; line-height: 1.2; }
.lod-product-name a { color: inherit; text-decoration: none; }
.lod-product-name a:hover { text-decoration: underline; text-underline-offset: 3px; }
.lod-product-sub { font-size: 9px; color: var(--lod-text-muted); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 3px; }
.lod-product-price { font-size: 17px; font-weight: 600; white-space: nowrap; }
.lod-product-card--design .lod-product-price { font-size: 20px; font-weight: 700; }

.lod-product-blurb { font-size: 13px; color: var(--lod-text-secondary); line-height: 1.5; margin-top: 4px; flex: 1; }
.lod-product-actions { display: flex; gap: 8px; margin-top: 14px; }
.lod-product-add { flex: 1; padding: 11px 14px; font-size: 10px; letter-spacing: 0.15em; font-weight: 700; }
.lod-product-preview { padding: 11px 14px; font-size: 10px; letter-spacing: 0.15em; }

/* Bundle CTA */
.lod-bundle-cta { padding: 48px; border-top: 1px solid var(--lod-border); border-bottom: 1px solid var(--lod-border); background: var(--lod-bg-light); color: var(--lod-bg-primary); }
.lod-bundle-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: center; }
.lod-bundle-title { font-size: 68px; font-weight: 800; letter-spacing: -0.05em; line-height: 0.85; }
.lod-bundle-copy  { font-size: 15px; color: #2a2a2a; margin-top: 18px; max-width: 500px; line-height: 1.5; }
.lod-bundle-right { text-align: right; }
.lod-bundle-original { font-size: 10px; color: #4a4a4a; letter-spacing: 0.15em; text-transform: uppercase; }
.lod-bundle-original span { text-decoration: line-through; opacity: 0.6; margin-right: 6px; }
.lod-bundle-price    { font-size: 96px; font-weight: 800; letter-spacing: -0.055em; line-height: 0.85; margin-top: 6px; }
.lod-bundle-cta .lod-btn--dark { margin-top: 18px; }

/* Value props */
.lod-value-props { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--lod-border); border-bottom: 1px solid var(--lod-border); }
.lod-value-cell { padding: 28px 24px; border-right: 1px solid var(--lod-border-hair); }
.lod-value-cell:last-child { border-right: none; }
.lod-value-k { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }
.lod-value-v { font-size: 10px; color: var(--lod-text-muted); letter-spacing: 0.08em; margin-top: 6px; }

.lod-empty { padding: 60px; text-align: center; color: var(--lod-text-muted); }
.lod-empty .lod-mono { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }

/* ==============================
   Sponsors
============================== */
.lod-sponsors-hero { padding: 64px 48px 44px; border-bottom: 1px solid var(--lod-border); }
.lod-sponsors-hero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: flex-end; position: relative; z-index: 1; }
.lod-sponsors-hero-title { font-size: 92px; font-weight: 800; letter-spacing: -0.055em; line-height: 0.85; }
.lod-sponsors-hero-lede  { font-size: 15px; color: var(--lod-text-secondary); line-height: 1.55; padding-bottom: 12px; }

.lod-creator-code { padding: 64px 48px; border-bottom: 1px solid var(--lod-border); }
.lod-creator-code-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
.lod-creator-code-chip { display: inline-flex; align-items: center; gap: 10px; padding: 6px 12px; border: 1px solid var(--lod-border-strong); margin-bottom: 18px; }
.lod-creator-code-dot  { width: 7px; height: 7px; background: var(--lod-text-primary); border-radius: 50%; }
.lod-creator-code-chip .lod-mono { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; }
.lod-creator-code-title { font-size: 56px; font-weight: 800; letter-spacing: -0.05em; line-height: 0.9; }
.lod-creator-code-copy  { font-size: 14px; color: var(--lod-text-secondary); margin-top: 18px; line-height: 1.5; max-width: 440px; }

.lod-creator-code-card { border: 1px solid var(--lod-border-strong); padding: 40px; background: var(--lod-bg-secondary); position: relative; overflow: hidden; }
.lod-creator-code-card-badge { position: absolute; top: 14px; right: 14px; font-size: 9px; color: var(--lod-text-muted); letter-spacing: 0.15em; text-transform: uppercase; }
.lod-creator-code-card-label { font-size: 10px; color: var(--lod-text-muted); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 14px; }
.lod-creator-code-card-code  { font-size: 104px; font-weight: 800; letter-spacing: -0.055em; line-height: 0.85; word-break: break-all; }
.lod-creator-code-card-foot  { font-size: 10px; color: var(--lod-text-muted); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 18px; }
.lod-creator-code-card-actions { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; align-items: stretch; }
/* Both buttons SAME height + same padding/font (matches image). Only width
   differs: Copy Code wide (flex:1), Open Item Shop hugs its text. */
.lod-creator-code-card-actions button.lod-btn,
.lod-creator-code-card-actions a.lod-btn {
	padding: 18px 26px !important;
	font-size: 12px !important;
	letter-spacing: 0.18em;
	font-weight: 700;
}
.lod-creator-code-card-actions button.lod-btn { flex: 1; }
.lod-creator-code-card-actions a.lod-btn { flex: 0 1 auto; white-space: nowrap; }

.lod-sponsor-inquiry { padding: 48px; border-bottom: 1px solid var(--lod-border); background: var(--lod-bg-secondary); }
.lod-sponsor-inquiry-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.lod-sponsor-inquiry-title { font-size: 40px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.lod-sponsor-inquiry-copy  { font-size: 14px; color: var(--lod-text-secondary); margin-top: 10px; line-height: 1.5; max-width: 560px; }
.lod-sponsor-inquiry-right { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.lod-sponsor-inquiry-email { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; color: var(--lod-text-primary); text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1px; }

.lod-affiliates { padding: 64px 48px; }
.lod-affiliates-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; gap: 40px; flex-wrap: wrap; }
.lod-affiliates-title { font-size: 64px; font-weight: 800; letter-spacing: -0.05em; line-height: 0.88; }
.lod-affiliates-lede  { max-width: 420px; font-size: 14px; color: var(--lod-text-secondary); line-height: 1.5; }

.lod-affiliate-list { display: grid; gap: 20px; }
.lod-affiliate-card {
	border: 1px solid var(--lod-border);
	display: grid; grid-template-columns: 1.3fr 1.3fr auto; gap: 32px;
	padding: 32px; align-items: center;
	transition: border-color .15s, background .15s;
}
.lod-affiliate-card:hover { border-color: var(--lod-border-strong); background: rgba(255,255,255,0.02); }
.lod-affiliate-cat   { font-size: 10px; color: var(--lod-text-muted); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 8px; }
.lod-affiliate-brand { font-size: 40px; font-weight: 800; letter-spacing: -0.03em; line-height: 0.95; }
.lod-affiliate-blurb { font-size: 13.5px; color: var(--lod-text-secondary); margin-top: 12px; line-height: 1.5; max-width: 420px; }
.lod-affiliate-code-col { border-left: 1px solid var(--lod-border); padding-left: 32px; }
.lod-affiliate-code-label { font-size: 10px; color: var(--lod-text-muted); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 8px; }
.lod-affiliate-code-value { font-size: 44px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; word-break: break-all; }
.lod-btn--cta { padding: 18px 26px; font-size: 11px; letter-spacing: 0.18em; font-weight: 700; white-space: nowrap; }

.lod-affiliate-disclosure { margin-top: 32px; padding: 18px 20px; border: 1px dashed var(--lod-border-strong); }
.lod-affiliate-disclosure .lod-mono { font-size: 10px; color: var(--lod-text-muted); letter-spacing: 0.15em; text-transform: uppercase; }

/* ==============================
   Contact
============================== */
.lod-contact-hero { padding: 64px 48px 44px; border-bottom: 1px solid var(--lod-border); }
.lod-contact-hero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: flex-end; position: relative; z-index: 1; }
.lod-contact-hero-title { font-size: 92px; font-weight: 800; letter-spacing: -0.055em; line-height: 0.85; }
.lod-contact-hero-lede  { font-size: 15px; color: var(--lod-text-secondary); line-height: 1.55; padding-bottom: 12px; }

.lod-contact-body { padding: 64px 48px; display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px; }

.lod-contact-form .lod-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.lod-contact-form .lod-field { margin-bottom: 20px; }
.lod-field-label {
	display: block;
	font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
	color: var(--lod-text-muted);
	margin-bottom: 10px;
}
.lod-input {
	width: 100%;
	padding: 14px 16px;
	background: transparent;
	color: var(--lod-text-primary);
	border: 1px solid var(--lod-border-strong);
	font-family: var(--lod-font-body);
	font-size: 15px;
	outline: none;
	transition: border-color .15s;
}
.lod-input:focus { border-color: rgba(255,255,255,0.5); }
.lod-textarea { resize: vertical; min-height: 160px; line-height: 1.5; }

.lod-subject-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.lod-subject-pill input { position: absolute; opacity: 0; pointer-events: none; }
.lod-subject-pill span {
	display: inline-block;
	padding: 10px 14px;
	background: transparent; color: var(--lod-text-primary);
	border: 1px solid var(--lod-border-strong);
	font-family: var(--lod-font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
	cursor: pointer; font-weight: 500;
	transition: background .15s, color .15s;
}
.lod-subject-pill input:checked + span,
.lod-subject-pill:hover span { background: var(--lod-bg-light); color: var(--lod-bg-primary); font-weight: 700; }

.lod-contact-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.lod-btn--submit { padding: 16px 28px; font-size: 11px; letter-spacing: 0.2em; font-weight: 700; }
.lod-contact-reply-time { font-size: 10px; color: var(--lod-text-muted); letter-spacing: 0.12em; text-transform: uppercase; }

.lod-contact-success { border: 1px solid var(--lod-border-strong); padding: 48px; background: var(--lod-bg-secondary); }
.lod-contact-success-eyebrow { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--lod-text-muted); margin-bottom: 14px; }
.lod-contact-success-title   { font-size: 48px; font-weight: 800; letter-spacing: -0.04em; line-height: 0.95; }
.lod-contact-success-copy    { font-size: 15px; color: var(--lod-text-secondary); margin-top: 16px; line-height: 1.55; max-width: 500px; }
.lod-contact-success .lod-btn { margin-top: 28px; }

/* CF7 overrides when Contact Form 7 is used */
.lod-cf7-wrap .wpcf7-form { display: block; }
.lod-cf7-wrap label { display: block; font-family: var(--lod-font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lod-text-muted); margin-bottom: 10px; }
.lod-cf7-wrap input[type="text"],
.lod-cf7-wrap input[type="email"],
.lod-cf7-wrap textarea {
	width: 100%; padding: 14px 16px; background: transparent; color: var(--lod-text-primary);
	border: 1px solid var(--lod-border-strong);
	font-family: var(--lod-font-body); font-size: 15px; outline: none;
}
.lod-cf7-wrap input[type="submit"] {
	padding: 16px 28px; background: var(--lod-bg-light); color: var(--lod-bg-primary);
	border: 0; font-family: var(--lod-font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
	cursor: pointer;
}
.lod-cf7-wrap .wpcf7-list-item { display: inline-block; margin: 0 8px 8px 0; }
.lod-cf7-wrap .wpcf7-list-item-label { padding: 10px 14px; border: 1px solid var(--lod-border-strong); font-family: var(--lod-font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; }

/* Contact sidebar */
.lod-contact-sidebar { display: flex; flex-direction: column; gap: 32px; }
.lod-channel-list { list-style: none; margin: 0; padding: 0; border: 1px solid var(--lod-border); display: grid; }
.lod-channel-item { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--lod-border-hair); }
.lod-channel-item:last-child { border-bottom: none; }
.lod-channel-k { font-size: 9px; color: var(--lod-text-muted); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 4px; }
.lod-channel-v { color: var(--lod-text-primary); text-decoration: none; font-size: 14px; font-family: var(--lod-font-body); }
.lod-channel-arrow { font-size: 14px; color: var(--lod-text-muted); }

.lod-response-card { padding: 20px; border: 1px solid var(--lod-border); background: var(--lod-bg-secondary); }
.lod-response-val  { font-size: 44px; font-weight: 800; letter-spacing: -0.03em; line-height: 0.9; }
.lod-response-note { font-size: 10px; color: var(--lod-text-muted); letter-spacing: 0.12em; margin-top: 10px; line-height: 1.5; }

.lod-find-me { font-size: 11px; color: var(--lod-text-secondary); letter-spacing: 0.06em; line-height: 1.8; }

/* ==============================
   Footer
============================== */
.lod-footer { padding: 44px 48px; display: flex; justify-content: space-between; align-items: center; color: var(--lod-text-muted); border-top: 1px solid var(--lod-border); }
.lod-footer-left { display: flex; align-items: center; gap: 10px; }
.lod-footer-mark { filter: invert(1); opacity: 0.7; }
.lod-footer-copy { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; }
.lod-footer-back { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--lod-text-secondary); text-decoration: none; }
.lod-footer-back:hover { color: var(--lod-text-primary); }

/* ==============================
   Copy feedback
============================== */
.lod-btn--copy.is-copied { background: var(--lod-text-primary) !important; color: var(--lod-bg-primary) !important; border-color: var(--lod-text-primary) !important; }

/* ==============================
   Responsive
============================== */
@media (max-width: 1099px) {
	.lod-hero-home { padding: 80px 32px 70px; }
	.lod-hero-home-grid { grid-template-columns: 1fr; gap: 32px; }
	.lod-hero-home-title { font-size: 88px; }
	.lod-hero-home-mark { display: none; }

	.lod-section { padding: 56px 32px; }
	.lod-announce-band, .lod-filter-bar, .lod-products-section, .lod-live-banner, .lod-pick-head { padding-left: 32px; padding-right: 32px; }

	.lod-stats-strip { grid-template-columns: repeat(2, 1fr); }
	.lod-stat-cell:nth-child(2) { border-right: none; }
	.lod-stat-cell:nth-child(-n+2) { border-bottom: 1px solid var(--lod-border); }

	.lod-niche-grid { grid-template-columns: repeat(2, 1fr); }
	.lod-merch-grid--3 { grid-template-columns: repeat(2, 1fr); }
	/* Apparel grid responsive ladder: 5 cols (desktop) → 3 (tablet) → 2 (small tablet) → 1 (phone) */
.lod-products-section ul.products,
.wp-block-woocommerce-product-collection .wp-block-woocommerce-product-template,
.wp-block-woocommerce-product-template,
.wc-block-grid__products,
.wc-block-product-template { grid-template-columns: repeat(3, 1fr) !important; }

	.lod-bio-grid { grid-template-columns: 1fr; gap: 40px; }

	.lod-live-grid { grid-template-columns: 1fr; }
	.lod-live-title { font-size: 48px; }
	.lod-pick-head-grid { flex-direction: column; align-items: flex-start; gap: 20px; }
	.lod-pick-head-title { font-size: 68px; }

	.lod-niche-panel { grid-template-columns: 1fr; }
	.lod-niche-panel-left { border-right: none; border-bottom: 1px solid var(--lod-border); padding: 32px; }
	.lod-niche-panel-right { padding: 32px; }
	.lod-niche-panel-title { font-size: 48px; }

	.lod-shop-hero-title, .lod-sponsors-hero-title, .lod-contact-hero-title { font-size: 72px; }
	.lod-shop-hero-grid, .lod-sponsors-hero-grid, .lod-contact-hero-grid { flex-direction: column; grid-template-columns: 1fr; align-items: flex-start; }

	.lod-creator-code-grid { grid-template-columns: 1fr; gap: 40px; }
	.lod-creator-code-title { font-size: 48px; }
	.lod-creator-code-card-code { font-size: 80px; }
	.lod-sponsor-inquiry-grid { grid-template-columns: 1fr; }
	.lod-bundle-grid { grid-template-columns: 1fr; }
	.lod-bundle-title { font-size: 48px; }
	.lod-bundle-price { font-size: 72px; }

	.lod-affiliate-card { grid-template-columns: 1fr; padding: 24px; }
	.lod-affiliate-code-col { border-left: 0; padding-left: 0; border-top: 1px solid var(--lod-border); padding-top: 20px; }
	.lod-affiliate-brand { font-size: 32px; }
	.lod-affiliate-code-value { font-size: 36px; }

	.lod-contact-body { grid-template-columns: 1fr; gap: 40px; padding: 48px 32px; }
	.lod-value-props { grid-template-columns: repeat(2, 1fr); }
	.lod-value-cell:nth-child(2) { border-right: none; }
	.lod-value-cell:nth-child(-n+2) { border-bottom: 1px solid var(--lod-border-hair); }
}

/* Hide the mobile hamburger by default (desktop). Shown only at <=767px. */
.lod-mobile-menu { display: none; }

@media (max-width: 767px) {
	/* MOBILE NAV — clean hamburger using native <details>. No JS, no
	   modal API, can't freeze. Pill nav + WC blocks hidden; the
	   hamburger reveals a stacked drawer with the same destinations. */
	.lod-top-nav {
		grid-template-columns: 1fr auto !important;
		grid-auto-rows: auto;
		row-gap: 0 !important;
		padding: 14px 18px !important;
		min-height: 0 !important;
	}
	/* Brand left, hamburger right */
	.lod-top-nav > .lod-brand {
		grid-row: 1 !important;
		grid-column: 1 !important;
		justify-self: start !important;
	}
	/* Hide the desktop pill + WC blocks entirely — drawer replaces them */
	.lod-top-nav > nav.wp-block-navigation.lod-nav-pill,
	.lod-top-nav > .lod-nav-right {
		display: none !important;
	}
	/* Hamburger toggle — native <details><summary> */
	.lod-mobile-menu {
		display: block;
		grid-row: 1 !important;
		grid-column: 2 !important;
		justify-self: end !important;
		position: relative;
	}
	.lod-mobile-menu-toggle {
		list-style: none;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 5px;
		width: 44px;
		height: 44px;
		cursor: pointer;
		border: 1px solid var(--lod-border-strong);
		background: transparent;
		padding: 0;
		-webkit-tap-highlight-color: transparent;
	}
	.lod-mobile-menu-toggle::-webkit-details-marker { display: none; }
	.lod-mobile-menu-toggle::marker { display: none; content: ""; }
	.lod-hamburger-bar {
		display: block;
		width: 18px;
		height: 1.5px;
		background: var(--lod-text-primary);
		transition: transform .2s ease, opacity .2s ease;
	}
	/* Hamburger → X transform when drawer is open */
	.lod-mobile-menu[open] .lod-mobile-menu-toggle .lod-hamburger-bar:nth-child(1) {
		transform: translateY(6.5px) rotate(45deg);
	}
	.lod-mobile-menu[open] .lod-mobile-menu-toggle .lod-hamburger-bar:nth-child(2) {
		opacity: 0;
	}
	.lod-mobile-menu[open] .lod-mobile-menu-toggle .lod-hamburger-bar:nth-child(3) {
		transform: translateY(-6.5px) rotate(-45deg);
	}
	/* Drawer that opens beneath the header */
	.lod-mobile-menu-drawer {
		position: absolute;
		top: calc(100% + 8px);
		right: 0;
		min-width: 240px;
		display: flex;
		flex-direction: column;
		background: var(--lod-bg-primary);
		border: 1px solid var(--lod-border-strong);
		box-shadow: 0 12px 32px rgba(0,0,0,0.5);
		padding: 8px 0;
		z-index: 1000;
	}
	.lod-mobile-menu-drawer a {
		display: block;
		padding: 14px 22px;
		color: var(--lod-text-primary) !important;
		font-family: var(--lod-font-body);
		font-size: 15px;
		font-weight: 500;
		text-decoration: none;
		border-bottom: 1px solid var(--lod-border);
		transition: background .15s;
	}
	.lod-mobile-menu-drawer a:last-child { border-bottom: 0; }
	.lod-mobile-menu-drawer a:hover,
	.lod-mobile-menu-drawer a:active {
		background: rgba(255,255,255,0.06);
	}
	.lod-mobile-menu-drawer .lod-mobile-menu-cart,
	.lod-mobile-menu-drawer .lod-mobile-menu-account {
		font-family: var(--lod-font-mono);
		font-size: 11px;
		letter-spacing: 0.15em;
		text-transform: uppercase;
		color: var(--lod-text-secondary) !important;
	}
	/* Defensive: kill any WP-nav overlay that tries to open from a
	   cached database template */
	.wp-block-navigation__responsive-container.has-modal-open,
	.wp-block-navigation__responsive-container.is-menu-open {
		display: none !important;
		visibility: hidden !important;
	}
	body.has-modal-open {
		overflow: auto !important;
	}
	.lod-mobile-toggle { display: none; }
	.lod-mobile-nav.is-open { display: block; }

	.lod-hero-home { padding: 56px 20px 48px; }
	.lod-hero-home-title { font-size: 56px; }
	.lod-hero-home-lede { font-size: 15px; }

	.lod-section { padding: 40px 20px; }
	.lod-announce-band, .lod-filter-bar, .lod-products-section, .lod-live-banner, .lod-pick-head, .lod-sponsors-hero, .lod-contact-hero, .lod-shop-hero, .lod-bundle-cta, .lod-creator-code, .lod-sponsor-inquiry, .lod-affiliates, .lod-contact-body { padding-left: 20px; padding-right: 20px; }

	.lod-section-title { font-size: 36px; }

	.lod-stats-strip { grid-template-columns: 1fr 1fr; }
	.lod-niche-grid { grid-template-columns: 1fr; }
	.lod-merch-grid--3 { grid-template-columns: 1fr !important; }
	.lod-products-section ul.products,
	.wp-block-woocommerce-product-collection .wp-block-woocommerce-product-template,
	.wp-block-woocommerce-product-template,
	.wc-block-grid__products,
	.wc-block-product-template { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }

	.lod-contact-form .lod-field-row { grid-template-columns: 1fr; }

	.lod-niche-tabs { padding: 0 20px; }
	.lod-niche-tab { padding: 16px 14px; }
	.lod-niche-tab-label { font-size: 16px; }
	.lod-niche-panel-title { font-size: 36px; }

	.lod-announce-band { flex-direction: column; align-items: flex-start; gap: 4px; padding: 12px 20px; }
	.lod-filter-bar { flex-direction: column; align-items: flex-start; }
	.lod-filter-pills { flex-wrap: wrap; }

	.lod-shop-hero-title, .lod-sponsors-hero-title, .lod-contact-hero-title { font-size: 56px; }
	.lod-creator-code-card-code { font-size: 56px; }
	.lod-creator-code-card { padding: 28px; }
	.lod-affiliate-code-value { font-size: 32px; }
	.lod-affiliate-brand { font-size: 28px; }

	.lod-bundle-right { text-align: left; }

	.lod-footer { padding: 32px 20px; flex-direction: column; gap: 14px; align-items: flex-start; }
	.lod-value-props { grid-template-columns: 1fr; }
	.lod-value-cell { border-right: none !important; border-bottom: 1px solid var(--lod-border-hair); }
}
