/* ==========================================================================
   Lanka Rave — bright rave-culture WooCommerce theme
   Mobile-first. Custom properties drive the whole palette.
   ========================================================================== */

:root {
	--ink: #f7f8fc;
	--ink-2: #eceff6;
	--ink-3: #dde2ec;
	--neon-magenta: #ff2da0;
	--neon-cyan: #00758f;
	--neon-lime: #a8f43d;
	--fog: #161927;
	--fog-dim: #5f6679;
	--border: rgba(22, 25, 39, 0.16);
	--font-display: 'Archivo Black', 'Arial Black', system-ui, sans-serif;
	--font-body: 'Libre Franklin', -apple-system, 'Segoe UI', system-ui, sans-serif;
	--radius: 4px;
	--radius-lg: 4px;
	--shadow-neon: 0 12px 30px rgba(255, 45, 160, 0.16);
	--shadow-cyan: 0 12px 30px rgba(0, 166, 200, 0.14);
	--promo-h: 34px;
	--header-h: 72px;
	--pad: clamp(16px, 4vw, 40px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--ink);
	color: var(--fog);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
	font-family: var(--font-display);
	line-height: 1.1;
	letter-spacing: 0;
	text-transform: uppercase;
	margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.2rem, 7vw, 4.2rem); }
h2 { font-size: clamp(1.5rem, 4.5vw, 2.4rem); }
h3 { font-size: clamp(1.05rem, 3vw, 1.3rem); }

a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--neon-cyan); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid rgba(0, 166, 200, 0.35);
	outline-offset: 3px;
}

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

.screen-reader-text {
	position: absolute;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.lr-btn {
	display: inline-block;
	padding: 14px 30px;
	border-radius: 0;
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lr-btn--primary {
	background: var(--neon-lime);
	color: #0a0a0f;
	box-shadow: none;
}

.lr-btn--primary:hover { transform: translateY(-2px); color: #0a0a0f; }

.lr-btn--ghost {
	border-color: rgba(255, 255, 255, 0.75);
	color: #ffffff;
	background: rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(8px);
}

.lr-btn--ghost:hover { border-color: var(--neon-cyan); color: var(--neon-cyan); }

.lr-btn--lime {
	background: var(--neon-lime);
	color: #0a0a0f;
	box-shadow: 0 0 24px rgba(180, 255, 45, 0.35);
}

.lr-btn--lime:hover { transform: translateY(-2px); color: #0a0a0f; }

/* --------------------------------------------------------------------------
   Header (sticky) + mobile menu
   -------------------------------------------------------------------------- */

/* Sticky must live on the template-part wrapper: .lr-header alone would be
   stuck inside a wrapper that is only as tall as itself, so it never pins. */
header.wp-block-template-part {
	position: sticky;
	top: 0;
	z-index: 100;
}

.woocommerce-checkout header.wp-block-template-part {
	position: static;
	z-index: auto;
}

.lr-promo-bar {
	height: var(--promo-h);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(18px, 6vw, 72px);
	padding: 0 var(--pad);
	overflow: hidden;
	background: var(--neon-lime);
	color: #0a0a0f;
	font-size: 0.72rem;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.lr-promo-bar span:last-child { display: none; }

@media (min-width: 360px) {
	.lr-promo-bar span:last-child { display: inline; }
}

.lr-header {
	background: rgba(243, 243, 243, 0.94);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border);
}

.lr-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 var(--pad);
	height: var(--header-h);
}

.lr-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
	font-family: var(--font-display);
	font-size: 1.05rem;
	text-transform: uppercase;
}

.lr-logo__image {
	display: block;
	width: clamp(136px, 16vw, 176px);
	height: auto;
	max-height: calc(var(--header-h) - 14px);
	object-fit: contain;
}

.lr-header .lr-logo {
	min-width: 0;
}

.lr-logo__mark {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 2px;
	background: var(--neon-lime);
	color: #0a0a0f;
	font-size: 0.8rem;
}

.lr-logo__text em { font-style: normal; color: var(--fog); }

.lr-nav {
	display: none; /* mobile: hidden until toggled */
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: calc(100dvh - var(--promo-h) - var(--header-h));
	flex-direction: column;
	gap: 4px;
	padding: 24px var(--pad);
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(18px);
	overflow-y: auto;
	z-index: 200;
}

.lr-nav.is-open { display: flex; }

.lr-nav a {
	padding: 14px 4px;
	font-family: var(--font-display);
	font-size: 1.2rem;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(26, 26, 26, 0.18);
}

.lr-nav a:hover,
.lr-nav a:focus-visible,
.lr-nav__sale { color: var(--neon-magenta); }

.lr-header__actions { display: flex; align-items: center; gap: 12px; }

.lr-cart-link {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border: 1px solid rgba(26, 26, 26, 0.18);
	border-radius: 0;
	font-size: 0.85rem;
	font-weight: 600;
}

.lr-cart-link:hover { border-color: var(--neon-magenta); color: var(--neon-magenta); }

.lr-cart-count {
	position: absolute;
	top: -7px;
	right: -7px;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: var(--neon-magenta);
	color: #ffffff;
	font-size: 0.7rem;
	font-weight: 800;
	line-height: 1;
	box-shadow: 0 0 10px rgba(255, 45, 160, 0.5);
}

.lr-cart-count[hidden] { display: none; }

.lr-menu-toggle {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	padding: 10px;
	background: none;
	border: 1px solid rgba(26, 26, 26, 0.18);
	border-radius: 10px;
	cursor: pointer;
}

.lr-menu-toggle span {
	display: block;
	height: 2px;
	background: var(--fog);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.lr-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lr-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.lr-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 379px) {
	.lr-cart-link__label { display: none; }
	.lr-cart-link { width: 42px; height: 42px; padding: 9px; }
}

@media (min-width: 1040px) {
	.lr-nav {
		display: flex;
		position: static;
		width: auto;
		height: auto;
		flex-direction: row;
		align-items: center;
		gap: 18px;
		padding: 0;
		background: none;
		backdrop-filter: none;
		overflow: visible;
		z-index: auto;
	}

	.lr-nav a {
		padding: 6px 0;
		font-family: var(--font-body);
		font-size: 0.86rem;
		font-weight: 600;
		text-transform: none;
		border-bottom: none;
	}

	.lr-menu-toggle { display: none; }
}

/* --------------------------------------------------------------------------
   Layout / sections
   -------------------------------------------------------------------------- */

.lr-main { width: 100%; }

.lr-section {
	max-width: 1400px;
	margin: 0 auto;
	padding: clamp(36px, 7vw, 72px) var(--pad) 0;
}

.lr-section__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 22px;
}

.lr-section__head h2 { margin: 0; }

.lr-link {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--fog);
	text-decoration: underline;
	text-underline-offset: 4px;
	white-space: nowrap;
}

.lr-money-links__grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.lr-money-link-card {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-height: 132px;
	padding: 20px;
	background: var(--ink-2);
	border: 1px solid rgba(22, 25, 39, 0.14);
	border-radius: 6px;
	box-shadow: 0 12px 28px rgba(22, 25, 39, 0.04);
}

.lr-money-link-card span {
	font-family: var(--font-display);
	font-size: 1rem;
	line-height: 1.15;
	text-transform: uppercase;
}

.lr-money-link-card small {
	color: var(--fog-dim);
	font-size: 0.9rem;
	line-height: 1.45;
}

.lr-money-link-card:hover {
	border-color: rgba(255, 45, 160, 0.45);
	box-shadow: 0 14px 32px rgba(255, 45, 160, 0.08);
}

.lr-kicker {
	margin: 0 0 12px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--neon-cyan);
}

.lr-gradient-text {
	background: none;
	color: var(--neon-magenta);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.lr-hero {
	position: relative;
	min-height: 460px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
}

/* Hero slider: all slides absolutely fill the section and cross-fade.
   The section itself owns the height so slides always cover full width. */
.lr-slider {
	overflow: hidden;
	height: min(62vh, 570px);
	min-height: 460px;
}

.lr-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease, visibility 0.8s ease;
	pointer-events: none;
}

.lr-hero__video {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	pointer-events: none;
}

.lr-slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.lr-slide .lr-hero__content {
	transform: translateY(14px);
	opacity: 0;
	transition: transform 0.7s ease 0.25s, opacity 0.7s ease 0.25s;
}

.lr-slide.is-active .lr-hero__content {
	transform: translateY(0);
	opacity: 1;
}

.lr-slider__controls {
	position: absolute;
	right: var(--pad);
	bottom: 22px;
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 14px;
}

.lr-slider__arrow {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.72);
	background: rgba(46, 46, 58, 0.40);
	backdrop-filter: blur(8px);
	color: #ffffff;
	font-size: 1rem;
	cursor: pointer;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.lr-slider__arrow:hover { border-color: var(--neon-cyan); color: var(--neon-cyan); }

.lr-slider__dots { display: flex; gap: 8px; }

.lr-slider__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.72);
	background: transparent;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, width 0.2s ease;
}

.lr-slider__dot.is-active {
	width: 26px;
	border-radius: 999px;
	background: var(--neon-lime);
	border-color: var(--neon-lime);
}

.lr-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.38);
}

.lr-hero__content {
	position: relative;
	z-index: 2;
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 72px var(--pad);
	text-align: center;
	color: #ffffff;
}

.lr-hero__sub {
	max-width: 34rem;
	margin-right: auto;
	margin-left: auto;
	color: rgba(255, 255, 255, 0.86);
	font-size: clamp(1rem, 2.5vw, 1.15rem);
}

.lr-hero__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 26px; }

@media (prefers-reduced-motion: reduce) {
	.lr-hero__video {
		display: none;
	}
}

/* --------------------------------------------------------------------------
   Category grid
   -------------------------------------------------------------------------- */

.lr-cat-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.lr-cat-card {
	position: relative;
	border-radius: 0;
	overflow: hidden;
	background: var(--ink-2);
	border: none;
	transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.lr-cat-card img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }

.lr-cat-card__label {
	position: absolute;
	left: 12px;
	bottom: 12px;
	padding: 7px 14px;
	border-radius: 0;
	background: #ffffff;
	backdrop-filter: blur(8px);
	font-family: var(--font-display);
	font-size: 0.8rem;
	text-transform: uppercase;
	color: var(--fog);
}

.lr-cat-card:hover {
	transform: translateY(-4px);
	border-color: rgba(45, 225, 252, 0.5);
	box-shadow: var(--shadow-cyan);
}

@media (min-width: 900px) {
	.lr-cat-grid { grid-template-columns: repeat(5, 1fr); gap: 18px; }
}

/* --------------------------------------------------------------------------
   Festival fit builder
   -------------------------------------------------------------------------- */

.lr-builder__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.lr-builder__step {
	display: block;
	padding: 26px 22px;
	border-radius: 0;
	background: var(--ink-2);
	border: 1px solid var(--border);
	transition: transform 0.2s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.lr-builder__step p { margin: 0; color: var(--fog-dim); font-size: 0.92rem; }

.lr-builder__num {
	display: block;
	font-family: var(--font-display);
	font-size: 1.6rem;
	color: var(--fog);
	margin-bottom: 10px;
}

.lr-builder__step:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 45, 160, 0.55);
	box-shadow: var(--shadow-neon);
}

.lr-builder__step--cta {
	background: var(--neon-lime);
}

.lr-builder__step--cta .lr-builder__num { color: var(--fog); }

@media (min-width: 720px) { .lr-builder__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .lr-builder__grid { grid-template-columns: repeat(4, 1fr); } }

/* --------------------------------------------------------------------------
   Why shop with us
   -------------------------------------------------------------------------- */

.lr-why__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.lr-why__item {
	padding: 24px 22px;
	border-radius: 0;
	background: var(--ink-2);
	border: 1px solid rgba(26, 26, 26, 0.18);
	border-top: 3px solid var(--neon-lime);
}

.lr-why__item h3 { margin-bottom: 8px; }
.lr-why__item p { margin: 0; color: var(--fog-dim); font-size: 0.92rem; }

@media (min-width: 720px) { .lr-why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .lr-why__grid { grid-template-columns: repeat(4, 1fr); } }

/* --------------------------------------------------------------------------
   Delivery / promo banner
   -------------------------------------------------------------------------- */

.lr-banner {
	position: relative;
	margin: clamp(48px, 8vw, 88px) auto 0;
	max-width: 1400px;
	border-radius: 0;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	min-height: 320px;
	display: flex;
	align-items: center;
}

@media (max-width: 1440px) { .lr-banner { margin-left: var(--pad); margin-right: var(--pad); } }

.lr-banner__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(46, 46, 58, 0.70) 20%, rgba(46, 46, 58, 0.35) 100%);
}

.lr-banner__content {
	position: relative;
	padding: clamp(32px, 6vw, 64px);
	color: #ffffff;
}

.lr-banner__content h2 { max-width: 22ch; }
.lr-banner__content p { max-width: 42rem; color: rgba(255, 255, 255, 0.88); }

/* --------------------------------------------------------------------------
   Social links
   -------------------------------------------------------------------------- */

.lr-social { padding-bottom: clamp(48px, 8vw, 88px); }

.lr-social__inner {
	display: flex;
	flex-direction: column;
	gap: 28px;
	align-items: flex-start;
	justify-content: space-between;
	padding: clamp(32px, 6vw, 56px);
	background: var(--neon-lime);
	border: none;
	border-radius: 0;
}

.lr-social__inner h2 {
	max-width: 24ch;
	margin-bottom: 0;
}

.lr-social .lr-kicker { color: var(--fog); }

.lr-social__links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.lr-social__links a {
	padding: 11px 18px;
	border-radius: 0;
	border: 1px solid rgba(26, 26, 26, 0.18);
	background: transparent;
	color: var(--fog);
	font-size: 0.86rem;
	font-weight: 700;
}

.lr-social__links a:hover {
	border-color: var(--neon-cyan);
	color: var(--neon-cyan);
}

@media (min-width: 760px) {
	.lr-social__inner {
		flex-direction: row;
		align-items: center;
	}
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.lr-footer {
	margin-top: clamp(48px, 8vw, 88px);
	border-top: 1px solid rgba(26, 26, 26, 0.18);
	background: #1a1a1a;
	color: #ffffff;
}

.lr-footer__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	max-width: 1400px;
	margin: 0 auto;
	padding: clamp(36px, 6vw, 64px) var(--pad);
}

.lr-footer__brand p { color: #bcbcbc; font-size: 0.92rem; max-width: 30ch; }

.lr-footer__col { display: flex; flex-direction: column; gap: 10px; }

.lr-footer__col h4 {
	margin: 0 0 4px;
	font-size: 0.8rem;
	letter-spacing: 0.14em;
	color: #bcbcbc;
}

.lr-footer__col a { font-size: 0.92rem; color: #bcbcbc; }
.lr-footer__col a:hover { color: var(--neon-lime); }

.lr-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 8px;
	max-width: 1400px;
	margin: 0 auto;
	padding: 18px var(--pad) 28px;
	border-top: 1px solid rgba(26, 26, 26, 0.18);
	color: #bcbcbc;
	font-size: 0.8rem;
}

.lr-footer__bottom p { margin: 0; }

@media (min-width: 900px) {
	.lr-footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* --------------------------------------------------------------------------
   WooCommerce — product grid / cards
   -------------------------------------------------------------------------- */

.lr-products-band { padding: 0 var(--pad); max-width: 1400px; margin: 0 auto; }

.woocommerce ul.products {
	display: grid !important;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	margin: 0 0 8px;
	padding: 0;
	list-style: none;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none; }

.woocommerce ul.products li.product {
	position: relative;
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
	padding: 10px !important;
	display: flex;
	flex-direction: column;
	height: 100%;
	border-radius: var(--radius);
	overflow: visible;
	background: var(--ink);
	border: 1px solid rgba(22, 25, 39, 0.12);
	box-shadow: 0 8px 24px rgba(22, 25, 39, 0.04);
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.woocommerce ul.products li.product > a.woocommerce-loop-product__link {
	display: flex;
	flex: 1;
	flex-direction: column;
	border-radius: calc(var(--radius) - 1px);
	color: inherit;
}

.woocommerce ul.products li.product:hover {
	border-color: rgba(0, 117, 143, 0.32);
	box-shadow: 0 12px 30px rgba(22, 25, 39, 0.08);
}

.woocommerce ul.products li.product .lr-product-card__media {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #ffffff;
	border-radius: calc(var(--radius) - 1px);
}

.woocommerce ul.products li.product .lr-product-card__media img {
	position: absolute;
	inset: 0;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	width: 100%;
	height: 100%;
	margin: 0 !important;
	transition: opacity 0.25s ease, transform 0.35s ease;
}

.woocommerce ul.products li.product .lr-product-card__media img.lr-product-card__lifestyle {
	position: absolute;
	inset: 0;
	z-index: 1;
	opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
	.woocommerce ul.products li.product.lr-has-lifestyle > a.woocommerce-loop-product__link:hover .lr-product-card__media > img:not(.lr-product-card__lifestyle) {
		opacity: 0;
	}

	.woocommerce ul.products li.product.lr-has-lifestyle > a.woocommerce-loop-product__link:hover .lr-product-card__media > img.lr-product-card__lifestyle {
		opacity: 1;
		transform: scale(1.025);
	}
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.35;
	text-transform: none;
	color: var(--fog);
	padding: 14px 0 2px !important;
	margin: 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	min-height: calc(2 * 1.35em + 16px);
}

.woocommerce ul.products li.product .price {
	display: block;
	padding: 4px 0 14px;
	margin: 0;
	color: var(--fog) !important;
	font-weight: 700;
	font-size: 0.95rem !important;
	font-variant-numeric: tabular-nums;
}

.woocommerce ul.products li.product .price del {
	color: var(--fog-dim);
	opacity: 1;
	margin-right: 8px;
}

.woocommerce ul.products li.product .price ins {
	text-decoration: none;
	color: var(--neon-magenta);
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button {
	display: block;
	width: 100%;
	margin: auto 0 0 !important;
	background: var(--neon-lime);
	border: 1px solid var(--neon-lime);
	color: #0a0a0f;
	border-radius: 0;
	padding: 9px 18px;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.woocommerce ul.products li.product .button:hover {
	background: var(--neon-magenta);
	border-color: var(--neon-magenta);
	color: #0a0a0f;
}

.woocommerce ul.products li.product .button:focus:not(:focus-visible),
.woocommerce ul.products li.product .add_to_cart_button:focus:not(:focus-visible) {
	outline: none;
	box-shadow: none;
}

.woocommerce ul.products li.product .button:focus-visible,
.woocommerce ul.products li.product .add_to_cart_button:focus-visible,
.woocommerce ul.products li.product a.added_to_cart.wc-forward:focus-visible {
	outline: 2px solid var(--neon-cyan);
	outline-offset: 3px;
}

.woocommerce ul.products li.product .button.loading,
.woocommerce ul.products li.product .button.added {
	background: var(--ink-3);
	border-color: rgba(22, 25, 39, 0.22);
	color: var(--fog);
}

.woocommerce ul.products li.product a.added_to_cart.wc-forward {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 38px;
	margin: 8px 0 0;
	padding: 8px 14px;
	border: 1px solid rgba(26, 26, 26, 0.2);
	border-radius: 0;
	background: transparent;
	color: var(--fog);
	font-size: 0.76rem;
	font-weight: 800;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0;
}

.woocommerce ul.products li.product a.added_to_cart.wc-forward:hover {
	border-color: var(--neon-magenta);
	background: var(--neon-magenta);
	color: #0a0a0f;
}

/* Anchor the loop badge to the image link instead of the full card. */
.woocommerce span.onsale,
.woocommerce ul.products li.product span.onsale,
.woocommerce ul.products li.product > a.woocommerce-loop-product__link > .onsale {
	position: absolute;
	top: 12px;
	left: auto;
	right: 12px;
	bottom: auto;
	z-index: 3;
	width: max-content;
	min-height: 0;
	min-width: 0;
	padding: 6px 12px;
	border-radius: 0;
	background: var(--neon-magenta);
	color: #0a0a0f;
	font-weight: 800;
	font-size: 0.72rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.2;
	margin: 0;
	pointer-events: none;
}

.lr-shop,
.lr-page,
.woocommerce,
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
	max-width: 100%;
	min-width: 0;
}

.lr-shop,
.lr-page {
	overflow-x: clip;
}

.woocommerce-checkout header.wp-block-template-part .wp-block-site-title a {
	display: block;
	width: clamp(150px, 18vw, 210px);
	height: 58px;
	overflow: hidden;
	background-image: url("/wp-content/themes/lanka-rave/assets/generated/images/ravestore-lk-generated-logo-lockup.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	color: transparent !important;
	text-indent: -9999px;
	white-space: nowrap;
}

@media (min-resolution: 2dppx) {
	.woocommerce-checkout header.wp-block-template-part .wp-block-site-title a {
		background-image: url("/wp-content/themes/lanka-rave/assets/generated/images/ravestore-lk-generated-logo-lockup@2x.png");
	}
}

.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout,
.wc-block-components-sidebar-layout,
.wc-block-components-main,
.wc-block-components-sidebar {
	box-sizing: border-box;
	min-width: 0;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__products {
	width: 100%;
	margin-right: 0;
	margin-left: 0;
}

@media (min-width: 720px) {
	.woocommerce ul.products { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

@media (min-width: 1080px) {
	.woocommerce ul.products { grid-template-columns: repeat(4, 1fr); }
}

/* --------------------------------------------------------------------------
   WooCommerce — shop archive chrome
   -------------------------------------------------------------------------- */

.lr-shop { padding: 24px var(--pad) 0; max-width: 1400px; margin: 0 auto; }

.woocommerce-products-header {
	padding: clamp(20px, 4vw, 40px) 0 8px;
}

.woocommerce-products-header__title {
	font-size: clamp(1.8rem, 5vw, 2.8rem);
}

.term-description { color: var(--fog-dim); max-width: 60ch; }

.lr-shop-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	width: 100%;
	margin: 0 0 24px;
	clear: both;
}

.lr-shop-filters a {
	padding: 9px 14px;
	border: 1px solid rgba(26, 26, 26, 0.22);
	border-radius: 0;
	color: var(--fog-dim);
	font-size: 0.82rem;
	font-weight: 700;
}

.lr-shop-filters a:hover,
.lr-shop-filters a.is-active {
	border-color: var(--neon-lime);
	background: var(--neon-lime);
	color: #0a0a0f;
}

.woocommerce .woocommerce-result-count { color: var(--fog-dim); font-size: 0.85rem; }

.woocommerce .woocommerce-ordering select {
	background: var(--ink-2);
	color: var(--fog);
	border: 1px solid rgba(26, 26, 26, 0.18);
	border-radius: 0;
	padding: 8px 16px;
	font-size: 0.85rem;
}

.woocommerce nav.woocommerce-pagination ul {
	border: none;
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 24px;
}

.woocommerce nav.woocommerce-pagination ul li {
	border: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	padding: 10px 16px;
	border-radius: 10px;
	background: var(--ink-2);
	color: var(--fog);
	border: 1px solid rgba(26, 26, 26, 0.18);
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
	background: var(--neon-lime);
	color: #0a0a0f;
}

.woocommerce nav.woocommerce-pagination.lr-pagination--enhanced {
	display: none;
}

.lr-load-more-status {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 42px;
	margin: 30px auto 0;
	color: var(--fog-dim);
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0;
	text-align: center;
}

.lr-load-more-status::before {
	content: "";
	width: 12px;
	height: 12px;
	border: 2px solid rgba(26, 26, 26, 0.18);
	border-top-color: var(--neon-magenta);
	border-radius: 50%;
	animation: lr-spin 0.75s linear infinite;
}

.lr-load-more-status:not(.is-loading)::before {
	border-top-color: var(--neon-lime);
	animation: none;
}

.lr-load-more-status.is-complete::before,
.lr-load-more-status.is-error::before {
	display: none;
}

.lr-load-more-status.is-error {
	color: var(--neon-magenta);
}

.lr-load-more-sentinel {
	width: 100%;
	height: 1px;
}

.lr-load-more-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(100%, 280px);
	min-height: 48px;
	margin: 28px auto 0;
	border: 1px solid rgba(26, 26, 26, 0.18);
	border-radius: 0;
	background: var(--neon-lime);
	color: #0a0a0f;
	font-weight: 900;
	text-transform: uppercase;
	cursor: pointer;
}

.lr-load-more-button:hover {
	background: var(--neon-magenta);
	color: #ffffff;
}

@keyframes lr-spin {
	to { transform: rotate(360deg); }
}

/* --------------------------------------------------------------------------
   WooCommerce — single product
   -------------------------------------------------------------------------- */

.lr-product { padding: 32px var(--pad) 0; max-width: 1400px; margin: 0 auto; }

.woocommerce div.product {
	background: transparent;
	color: var(--fog);
}

.woocommerce div.product div.images img {
	border-radius: var(--radius-lg);
	border: 1px solid rgba(26, 26, 26, 0.18);
}

.woocommerce div.product .product_title {
	font-size: clamp(1.6rem, 4.5vw, 2.4rem);
}

.woocommerce div.product p.price {
	color: var(--fog);
	font-size: 1.4rem;
	font-weight: 700;
}

.woocommerce div.product p.price del { color: var(--fog-dim); opacity: 1; }
.woocommerce div.product p.price ins { color: var(--neon-magenta); text-decoration: none; }

.woocommerce div.product .woocommerce-product-details__short-description {
	color: var(--fog-dim);
}

.woocommerce div.product form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 12px;
}

.woocommerce div.product form.cart .quantity {
	float: none;
	margin: 0;
}

.woocommerce div.product form.cart .lr-quantity-control {
	display: grid;
	grid-template-columns: 44px minmax(54px, 72px) 44px;
	align-items: stretch;
	min-height: 52px;
	overflow: hidden;
	background: var(--ink-2);
	border: 1px solid rgba(26, 26, 26, 0.2);
	border-radius: 10px;
}

.woocommerce div.product form.cart .lr-quantity-control__button {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	color: var(--fog);
	font-size: 1.15rem;
	font-weight: 900;
	line-height: 1;
	cursor: pointer;
}

.woocommerce div.product form.cart .lr-quantity-control__button:hover {
	background: rgba(255, 47, 166, 0.12);
	color: var(--neon-magenta);
}

.woocommerce div.product form.cart .lr-quantity-control__button:disabled {
	color: var(--fog-dim);
	cursor: not-allowed;
	opacity: 0.45;
}

.woocommerce div.product form.cart .quantity .qty {
	width: 100%;
	min-height: 50px;
	background: transparent;
	color: var(--fog);
	border: 0;
	border-right: 1px solid rgba(26, 26, 26, 0.14);
	border-left: 1px solid rgba(26, 26, 26, 0.14);
	border-radius: 0;
	padding: 0 8px;
	font-weight: 800;
	text-align: center;
	appearance: textfield;
}

.woocommerce div.product form.cart .quantity .qty::-webkit-outer-spin-button,
.woocommerce div.product form.cart .quantity .qty::-webkit-inner-spin-button {
	margin: 0;
	appearance: none;
}

.woocommerce div.product form.cart .button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce a.button.alt,
.woocommerce button.button,
.woocommerce button.button.alt,
.woocommerce input.button,
.woocommerce input.button.alt {
	background: var(--neon-lime);
	color: #0a0a0f;
	border: 1px solid var(--neon-lime);
	border-radius: 0;
	padding: 14px 32px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	box-shadow: none;
	transition: transform 0.15s ease;
}

.woocommerce div.product form.cart .button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button:hover,
.woocommerce button.button.alt:hover {
	background: var(--neon-magenta);
	border-color: var(--neon-magenta);
	color: #0a0a0f;
	transform: translateY(-2px);
}

.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce input.button:disabled,
.woocommerce input.button:disabled[disabled],
.woocommerce a.button.disabled {
	background: var(--ink-3);
	border-color: rgba(22, 25, 39, 0.2);
	color: var(--fog-dim);
	opacity: 1;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding: 0;
	margin-bottom: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before { border-color: rgba(26, 26, 26, 0.18); }

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: var(--ink-2);
	border-color: rgba(26, 26, 26, 0.18);
	border-radius: 10px 10px 0 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a { color: var(--fog-dim); }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { background: var(--ink-3); }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--fog); }

.woocommerce div.product .woocommerce-tabs .panel {
	background: var(--ink-2);
	border-radius: 0 var(--radius) var(--radius) var(--radius);
	padding: 24px;
	margin-bottom: 32px;
}

.woocommerce div.product .woocommerce-Reviews,
.woocommerce div.product #reviews,
.woocommerce .star-rating,
.wc-block-components-product-rating,
.wc-block-grid__product-rating {
	display: none;
}

.related.products > h2,
.upsells.products > h2 { margin-top: 24px; }

/* SKU / meta */
.woocommerce div.product .product_meta {
	color: var(--fog-dim);
	font-size: 0.85rem;
	border-top: 1px solid rgba(26, 26, 26, 0.18);
	padding-top: 14px;
	margin-top: 18px;
}

/* Stock */
.woocommerce div.product p.stock.in-stock { color: #397a04; }
.woocommerce div.product p.stock.out-of-stock { color: var(--neon-magenta); }

/* --------------------------------------------------------------------------
   WooCommerce — cart & checkout
   -------------------------------------------------------------------------- */

.lr-delivery-note {
	margin: 0 0 20px;
	padding: 12px 18px;
	border-radius: 12px;
	background: rgba(45, 225, 252, 0.08);
	border: 1px solid rgba(45, 225, 252, 0.3);
	color: var(--neon-cyan);
	font-size: 0.88rem;
	font-weight: 600;
}

.woocommerce table.shop_table {
	background: var(--ink-2);
	border: 1px solid rgba(26, 26, 26, 0.18);
	border-radius: var(--radius);
	border-collapse: separate;
	border-spacing: 0;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	border-color: rgba(26, 26, 26, 0.18);
	color: var(--fog);
}

.woocommerce table.shop_table td.product-name a { color: var(--fog); font-weight: 600; }

.woocommerce .cart_totals h2, .woocommerce-billing-fields h3,
.woocommerce #order_review_heading { color: var(--fog); }

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-page form .form-row input.input-text {
	background: var(--ink-2);
	color: var(--fog);
	border: 1px solid rgba(26, 26, 26, 0.18);
	border-radius: 10px;
	padding: 12px 14px;
	min-height: 48px;
}

.woocommerce form .form-row input.input-text::placeholder,
.woocommerce form .form-row textarea::placeholder {
	color: #7b8294;
	opacity: 1;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
	outline: none;
	border-color: var(--neon-cyan);
}

.woocommerce form .form-row label { color: var(--fog-dim); font-size: 0.85rem; }

.woocommerce #payment {
	background: var(--ink-2);
	border-radius: var(--radius);
	border: 1px solid rgba(26, 26, 26, 0.18);
}

.woocommerce #payment div.payment_box {
	background: var(--ink-3);
	color: var(--fog-dim);
}

.woocommerce #payment div.payment_box::before { border-bottom-color: var(--ink-3); }

.woocommerce-checkout #payment ul.payment_methods { border-color: rgba(26, 26, 26, 0.18); }

/* Notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	background: var(--ink-2);
	color: var(--fog);
	border-top-color: var(--neon-cyan);
	border-radius: 0 0 12px 12px;
}

.woocommerce-message { border-top-color: var(--neon-lime); }
.woocommerce-message::before { color: var(--neon-lime); }
.woocommerce-info::before { color: var(--neon-cyan); }
.woocommerce-error { border-top-color: var(--neon-magenta); }
.woocommerce-error::before { color: var(--neon-magenta); }
.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
	color: var(--fog);
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* Add-to-cart confirmation */
body.lr-cart-modal-open {
	overflow: hidden;
}

.lr-cart-modal[hidden] {
	display: none;
}

.lr-cart-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	padding: 20px;
}

.lr-cart-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(247, 248, 252, 0.78);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.lr-cart-modal__panel {
	position: relative;
	width: min(100%, 430px);
	padding: 24px;
	background: var(--ink);
	border: 1px solid rgba(22, 25, 39, 0.18);
	border-radius: 8px;
	color: var(--fog);
	box-shadow: 0 20px 54px rgba(22, 25, 39, 0.2), 0 0 0 1px rgba(255, 45, 160, 0.12);
	opacity: 0;
	transform: translateY(10px) scale(0.98);
	transition: opacity 0.18s ease, transform 0.18s ease;
}

.lr-cart-modal.is-open .lr-cart-modal__panel {
	opacity: 1;
	transform: none;
}

.lr-cart-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(22, 25, 39, 0.16);
	border-radius: 50%;
	background: var(--ink-2);
	color: var(--fog);
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
}

.lr-cart-modal__close:hover {
	background: var(--neon-magenta);
	border-color: var(--neon-magenta);
	color: #0a0a0f;
}

.lr-cart-modal__eyebrow {
	margin: 0 44px 8px 0;
	color: var(--neon-magenta);
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.lr-cart-modal__title {
	margin: 0;
	padding-right: 32px;
	color: var(--fog);
	font-size: 1.22rem;
	line-height: 1.2;
}

.lr-cart-modal__item {
	margin: 14px 0 22px;
	color: var(--fog-dim);
	font-size: 0.96rem;
}

.lr-cart-modal__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.lr-cart-modal__checkout,
.lr-cart-modal__continue {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 11px 14px;
	border-radius: 0;
	font-size: 0.82rem;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
	cursor: pointer;
}

.lr-cart-modal__checkout {
	background: var(--neon-lime);
	border: 1px solid var(--neon-lime);
	color: #0a0a0f;
}

.lr-cart-modal__continue {
	background: transparent;
	border: 1px solid rgba(22, 25, 39, 0.2);
	color: var(--fog);
}

.lr-cart-modal__checkout:hover,
.lr-cart-modal__continue:hover {
	background: var(--neon-magenta);
	border-color: var(--neon-magenta);
	color: #0a0a0f;
}

@media (max-width: 520px) {
	.lr-cart-modal__actions {
		grid-template-columns: 1fr;
	}
}

/* --------------------------------------------------------------------------
   WooCommerce blocks — cart & checkout (block-based pages)
   -------------------------------------------------------------------------- */

.wc-block-components-button:not(.is-link) {
	background: var(--neon-lime);
	color: #0a0a0f;
	border: 1px solid var(--neon-lime);
	border-radius: 0;
	font-weight: 800;
}

.wc-block-components-button:not(.is-link):hover,
.wc-block-components-button:not(.is-link):focus-visible {
	background: var(--neon-magenta);
	border-color: var(--neon-magenta);
	color: #0a0a0f;
}

.wc-block-components-button:disabled,
.wc-block-components-button[aria-disabled="true"] {
	background: var(--ink-3) !important;
	border-color: rgba(22, 25, 39, 0.2) !important;
	color: var(--fog-dim) !important;
	opacity: 1 !important;
}

/* Form inputs: dark surfaces with visible borders and floating labels */
.wc-block-components-text-input input[type="text"],
.wc-block-components-text-input input[type="email"],
.wc-block-components-text-input input[type="tel"],
.wc-block-components-text-input input[type="number"],
.wc-block-components-text-input input[type="url"],
.wc-block-components-text-input input[type="password"],
.wc-block-components-textarea textarea,
textarea.wc-block-components-textarea,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.wc-block-components-form .wc-block-components-text-input input,
.wc-block-components-country-input input,
.wc-block-components-state-input input,
.wc-blocks-components-select .wc-blocks-components-select__select,
select.wc-block-components-select__select {
	background: var(--ink-2) !important;
	color: var(--fog) !important;
	border: 1px solid rgba(26, 26, 26, 0.25) !important;
	border-radius: 10px !important;
}

.wc-block-components-text-input input::placeholder,
.wc-block-components-textarea textarea::placeholder,
textarea.wc-block-components-textarea::placeholder {
	color: #7b8294 !important;
	opacity: 1 !important;
}

.wc-block-components-text-input input:focus,
.wc-block-components-textarea textarea:focus,
textarea.wc-block-components-textarea:focus,
.wc-blocks-components-select .wc-blocks-components-select__select:focus {
	border-color: var(--neon-cyan) !important;
	box-shadow: 0 0 0 1px var(--neon-cyan) !important;
}

/* Floating labels inside inputs */
.wc-block-components-text-input label,
.wc-block-components-combobox .wc-block-components-combobox-control label,
.wc-blocks-components-select .wc-blocks-components-select__label,
.wc-block-components-checkbox .wc-block-components-checkbox__label,
.wc-block-components-form label {
	color: var(--fog-dim) !important;
}

.wc-block-components-checkbox .wc-block-components-checkbox__input {
	background: var(--ink-2);
	border-color: rgba(26, 26, 26, 0.35);
}

.wc-block-components-checkbox .wc-block-components-checkbox__input:checked {
	background: var(--neon-lime);
	border-color: var(--fog);
}

.components-form-token-field__suggestions-list,
.wc-block-components-combobox .components-form-token-field__suggestions-list,
.wc-block-components-combobox .components-combobox-control__suggestions-container {
	background: var(--ink);
	color: var(--fog);
	border: 1px solid rgba(22, 25, 39, 0.18);
	box-shadow: var(--shadow-cyan);
}

/* Section headings and general text inside checkout */
.wp-block-woocommerce-checkout,
.wp-block-woocommerce-cart {
	color: var(--fog);
}

.wc-block-components-checkout-step__heading .wc-block-components-title,
.wc-block-components-title,
.wc-block-components-checkout-step__title {
	color: var(--fog);
}

.wp-block-woocommerce-checkout .wc-block-components-country-input,
.wp-block-woocommerce-checkout .wc-block-components-address-form__country,
.woocommerce-checkout #billing_country_field,
.woocommerce-checkout #shipping_country_field {
	display: none !important;
}

.wc-block-components-checkout-step__description,
.wc-block-components-address-card,
.wc-block-components-formatted-money-amount {
	color: var(--fog);
}

/* Order summary sidebar */
.wc-block-components-sidebar .wc-block-components-panel,
.wc-block-components-order-summary,
.wc-block-components-totals-wrapper {
	color: var(--fog);
}

.wc-block-components-sidebar-layout .wc-block-components-sidebar {
	background: var(--ink-2);
	border: 1px solid rgba(26, 26, 26, 0.18);
	border-radius: var(--radius);
	padding: 16px;
}

/* Product quantity bubble on order summary thumbnails: was white-on-white */
.wc-block-components-order-summary-item__quantity {
	background: var(--neon-lime) !important;
	color: #0a0a0f !important;
	border: 2px solid var(--ink-2) !important;
	font-weight: 800;
	opacity: 1 !important;
}

.wc-block-components-order-summary-item__image img {
	border-radius: 8px;
}

.wc-block-components-product-metadata .wc-block-components-product-metadata__description,
.wc-block-components-order-summary-item__individual-prices {
	color: var(--fog-dim);
}

/* Sale badge / price strikethrough inside summary.
   Force ALL descendants dark: the amount inside is a formatted-money-amount
   span that otherwise picks up the light theme text color. */
.wc-block-components-sale-badge,
.wc-block-components-sale-badge * {
	background: var(--neon-magenta);
	color: #0a0a0f !important;
	border: none;
}

.wc-block-components-product-price del { color: var(--fog-dim); }

/* Coupon panel + totals separators */
.wc-block-components-panel > .wc-block-components-panel__button,
.wc-block-components-totals-coupon-link {
	color: var(--fog);
}

.wc-block-components-panel > .wc-block-components-panel__button:hover,
.wc-block-components-totals-coupon-link:hover,
.wc-block-cart-item__remove-link:hover {
	color: var(--neon-magenta);
}

.wc-block-components-totals-wrapper::after,
.wc-block-components-totals-item,
.wc-block-components-panel {
	border-color: rgba(26, 26, 26, 0.12);
}

/* Payment options (radio controls) */
.wc-block-components-radio-control__option,
.wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option {
	background: var(--ink-2);
	color: var(--fog);
	border-color: rgba(26, 26, 26, 0.15) !important;
}

.wc-block-components-radio-control-accordion-option {
	border: 1px solid rgba(26, 26, 26, 0.16);
	border-radius: 10px;
	overflow: hidden;
	background: var(--ink-2);
}

.wc-block-components-radio-control-accordion-option--checked-option-highlighted {
	border-color: rgba(26, 26, 26, 0.28) !important;
	border-radius: 10px !important;
	box-shadow: none !important;
}

.wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option--checked-option-highlighted {
	border-color: rgba(26, 26, 26, 0.28) !important;
	border-radius: 10px !important;
}

.wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__option,
.wc-block-components-radio-control-accordion-option .wc-block-components-radio-control-accordion-content {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.wc-block-components-radio-control__option-checked {
	border-color: var(--fog) !important;
}

.wc-block-components-radio-control__input {
	background: var(--ink);
	border-color: rgba(26, 26, 26, 0.4);
}

.wc-block-components-radio-control__input:checked {
	background: var(--neon-lime);
	border-color: var(--fog);
}

.wc-block-components-radio-control-accordion-content {
	color: var(--fog-dim);
}

/* Shipping options */
.wc-block-components-shipping-rates-control__package,
.wc-block-components-radio-control {
	color: var(--fog);
}

.lr-pickme-shipping-option {
	background: rgba(168, 244, 61, 0.08);
	border-radius: 8px;
}

/* Error/notice banners keep readable contrast on dark */
.wc-block-components-notice-banner {
	border-radius: 12px;
	background: var(--ink-2);
	color: var(--fog);
	border-color: rgba(22, 25, 39, 0.18);
}

.wc-block-components-notice-banner a {
	color: var(--fog);
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* Quantity selector on cart page */
.wc-block-components-quantity-selector {
	background: var(--ink-2);
	border: 1px solid rgba(26, 26, 26, 0.2);
	border-radius: 10px;
}

.wc-block-components-quantity-selector input,
.wc-block-components-quantity-selector button {
	color: var(--fog) !important;
	background: transparent;
}

.lr-footer .lr-logo__text em {
	color: var(--neon-lime);
}

.lr-footer .lr-logo__image {
	height: auto;
	width: clamp(172px, 24vw, 240px);
	max-width: 100%;
}

/* Cart line items table (block cart) */
.wp-block-woocommerce-cart .wc-block-cart-items,
.wp-block-woocommerce-cart .wc-block-cart-items th,
.wp-block-woocommerce-cart .wc-block-cart-items td {
	color: var(--fog);
	border-color: rgba(26, 26, 26, 0.18);
}

.wc-block-cart-item__product .wc-block-components-product-name {
	color: var(--fog);
	font-weight: 600;
}

/* --------------------------------------------------------------------------
   Generic page content
   -------------------------------------------------------------------------- */

.lr-page {
	padding: clamp(32px, 6vw, 64px) var(--pad);
	max-width: 860px;
	margin: 0 auto;
	min-height: 40vh;
}

.lr-page :is(p, li) { color: var(--fog-dim); }
.lr-page :is(h1, h2, h3) { color: var(--fog); }

.lr-seo-hero {
	display: grid;
	gap: clamp(18px, 4vw, 34px);
	align-items: center;
	margin-bottom: clamp(28px, 5vw, 48px);
}

.lr-seo-hero img,
.lr-seo-image {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border: 1px solid rgba(22, 25, 39, 0.14);
	border-radius: 6px;
	box-shadow: 0 18px 40px rgba(22, 25, 39, 0.08);
}

.lr-seo-hero p {
	font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.lr-seo-grid {
	display: grid;
	gap: 16px;
	margin: 26px 0;
}

.lr-seo-card {
	padding: 20px;
	background: var(--ink-2);
	border: 1px solid rgba(22, 25, 39, 0.14);
	border-radius: 6px;
}

.lr-seo-card h3 {
	font-size: 1.05rem;
}

.lr-seo-cta {
	margin-top: 28px;
	padding: clamp(20px, 4vw, 30px);
	background: linear-gradient(135deg, rgba(168, 244, 61, 0.22), rgba(255, 45, 160, 0.12));
	border: 1px solid rgba(22, 25, 39, 0.14);
	border-radius: 6px;
}

.lr-seo-cta .lr-btn {
	margin-top: 8px;
}

@media (min-width: 820px) {
	.lr-seo-hero {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	}

	.lr-seo-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.lr-blog-list .wp-block-post-template {
	display: grid;
	gap: 18px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}

.lr-blog-list--compact .wp-block-post-template {
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.lr-blog-card {
	height: 100%;
	padding: 22px;
	background: var(--ink-2);
	border: 1px solid rgba(22, 25, 39, 0.14);
	border-radius: 6px;
	box-shadow: 0 10px 26px rgba(22, 25, 39, 0.04);
}

.lr-blog-card h2,
.lr-blog-card h3 {
	font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.lr-blog-card time {
	color: var(--neon-cyan);
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
}

.lr-blog-card .wp-block-post-excerpt__excerpt {
	color: var(--fog-dim);
}

.lr-blog-card .wp-block-post-excerpt__more-link {
	color: var(--fog);
	font-weight: 900;
	text-decoration: underline;
	text-decoration-color: var(--neon-magenta);
	text-underline-offset: 4px;
}
