/* ==========================================================================
   White Bunny Creations — main stylesheet
   Palette pulled from the logo: deep starry navy/black, iridescent holographic
   hat (purple/blue/pink), warm gold sparkle, and a carrot-orange accent.
   ========================================================================== */

:root {
	--wbc-bg: #05040f;
	--wbc-bg-alt: #0d0b24;
	--wbc-bg-card: #12102c;
	--wbc-text: #f5f3ff;
	--wbc-text-muted: #b7b2d6;
	--wbc-gold: #ffd76b;
	--wbc-orange: #ff8a3d;
	--wbc-purple: #b56bff;
	--wbc-blue: #6bd6ff;
	--wbc-pink: #ff6bd6;
	--wbc-holo: linear-gradient(135deg, var(--wbc-orange), var(--wbc-gold), var(--wbc-purple), var(--wbc-blue), var(--wbc-pink));
	--wbc-radius: 18px;
	--wbc-font-heading: 'Baloo 2', system-ui, sans-serif;
	--wbc-font-body: 'Quicksand', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	background: var(--wbc-bg);
	color: var(--wbc-text);
	font-family: var(--wbc-font-body);
	line-height: 1.6;
	margin: 0;
	overflow-x: hidden;
}

h1, h2, h3, h4, .wbc-hero-title, .wbc-section-title {
	font-family: var(--wbc-font-heading);
	line-height: 1.2;
}

a { color: var(--wbc-gold); text-decoration: none; }

.screen-reader-text, .wbc-skip-link {
	position: absolute;
	left: -9999px;
}
.wbc-skip-link:focus {
	left: 1rem;
	top: 1rem;
	background: var(--wbc-bg-card);
	color: var(--wbc-text);
	padding: .75rem 1.25rem;
	border-radius: 8px;
	z-index: 9999;
}

.wbc-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* ---------- Ambient starfield behind everything: layered, glowing, twinkling ---------- */
.wbc-sparkle-field {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}
.wbc-sparkle-field::before,
.wbc-sparkle-field::after {
	content: "";
	position: absolute;
	inset: -10%;
	background-repeat: repeat;
}
/* Layer 1: small crisp twinkling points */
.wbc-sparkle-field::before {
	background-image:
		radial-gradient(1.6px 1.6px at 20% 30%, #fff, transparent 60%),
		radial-gradient(1.2px 1.2px at 70% 60%, #fff, transparent 60%),
		radial-gradient(1.6px 1.6px at 40% 80%, #fff, transparent 60%),
		radial-gradient(1.2px 1.2px at 85% 20%, #fff, transparent 60%),
		radial-gradient(1.2px 1.2px at 55% 45%, #fff, transparent 60%),
		radial-gradient(1.6px 1.6px at 10% 65%, #fff, transparent 60%),
		radial-gradient(1.2px 1.2px at 30% 10%, #fff, transparent 60%),
		radial-gradient(1.4px 1.4px at 92% 75%, #fff, transparent 60%);
	background-size: 620px 620px;
	animation: wbc-twinkle-a 4.5s ease-in-out infinite alternate;
}
/* Layer 2: larger soft glow halos in the theme's palette, cross-faded for a shimmer */
.wbc-sparkle-field::after {
	background-image:
		radial-gradient(5px 5px at 25% 35%, rgba(255,215,107,.9), rgba(255,215,107,.15) 55%, transparent 75%),
		radial-gradient(4px 4px at 65% 55%, rgba(181,107,255,.9), rgba(181,107,255,.15) 55%, transparent 75%),
		radial-gradient(4.5px 4.5px at 45% 78%, rgba(107,214,255,.9), rgba(107,214,255,.15) 55%, transparent 75%),
		radial-gradient(4px 4px at 82% 22%, rgba(255,107,214,.9), rgba(255,107,214,.15) 55%, transparent 75%),
		radial-gradient(3.5px 3.5px at 12% 60%, rgba(255,138,61,.9), rgba(255,138,61,.15) 55%, transparent 75%);
	background-size: 700px 700px;
	animation: wbc-twinkle-b 5.5s ease-in-out infinite alternate;
	filter: blur(.4px);
}
@keyframes wbc-twinkle-a {
	0%   { opacity: .35; transform: scale(1); }
	50%  { opacity: 1; transform: scale(1.05); }
	100% { opacity: .55; transform: scale(.98); }
}
@keyframes wbc-twinkle-b {
	0%   { opacity: .3; transform: scale(.95); }
	50%  { opacity: .9; transform: scale(1.08); }
	100% { opacity: .45; transform: scale(1); }
}

/* ---------- Seasonal overlay (snow etc.) ---------- */
.wbc-seasonal-overlay {
	position: fixed;
	inset: 0;
	z-index: 9000;
	pointer-events: none;
}
.wbc-overlay-inner {
	position: absolute;
	inset: 0;
	transition: opacity .4s ease;
}
.wbc-seasonal-overlay.wbc-overlay-paused .wbc-overlay-inner {
	opacity: 0;
	visibility: hidden;
}
.wbc-overlay-toggle {
	position: fixed;
	bottom: 1.25rem;
	right: 1.25rem;
	z-index: 9001;
	pointer-events: auto;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.2);
	background: rgba(18,16,44,.85);
	color: var(--wbc-gold);
	font-size: 1.1rem;
	cursor: pointer;
	backdrop-filter: blur(6px);
	box-shadow: 0 4px 18px rgba(0,0,0,.35);
	transition: transform .2s ease, opacity .2s ease;
}
.wbc-overlay-toggle:hover { transform: scale(1.08); }
.wbc-seasonal-overlay.wbc-overlay-paused .wbc-overlay-toggle { opacity: .55; }
/* Stack toggle buttons if more than one overlay is active at once */
.wbc-seasonal-overlay:nth-of-type(2) .wbc-overlay-toggle { bottom: 4.25rem; }
.wbc-seasonal-overlay:nth-of-type(3) .wbc-overlay-toggle { bottom: 7.25rem; }

/* ---------- Header ---------- */
.wbc-site-header {
	position: relative;
	z-index: 100;
	background: rgba(5,4,15,.7);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255,255,255,.08);
}
.wbc-header-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}
.wbc-site-title {
	font-family: var(--wbc-font-heading);
	font-size: 1.5rem;
	font-weight: 800;
	background: var(--wbc-holo);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.wbc-logo-wrap img { max-height: 60px; width: auto; }

.wbc-menu {
	list-style: none;
	display: flex;
	gap: 1.75rem;
	margin: 0;
	padding: 0;
}
.wbc-menu a {
	color: var(--wbc-text);
	font-weight: 600;
	position: relative;
}
.wbc-menu a:hover { color: var(--wbc-gold); }

.wbc-menu-toggle { display: none; background: none; border: none; cursor: pointer; }
.wbc-menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--wbc-text);
	margin: 5px 0;
}

.wbc-social-icons {
	display: flex;
	gap: .6rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.wbc-social-icon {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.12);
	transition: transform .2s ease, box-shadow .2s ease;
}
.wbc-social-icon:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 0 16px rgba(181,107,255,.6);
}

/* ---------- Buttons ---------- */
.wbc-btn {
	display: inline-block;
	padding: .85rem 1.75rem;
	border-radius: 999px;
	font-weight: 700;
	font-family: var(--wbc-font-heading);
	letter-spacing: .02em;
	transition: transform .2s ease, box-shadow .2s ease;
}
.wbc-btn-primary {
	background: var(--wbc-holo);
	color: #1a0a2e;
	box-shadow: 0 0 24px rgba(255,138,61,.35);
}
.wbc-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 34px rgba(255,215,107,.55); color: #1a0a2e; }
.wbc-btn-ghost {
	background: transparent;
	border: 2px solid var(--wbc-purple);
	color: var(--wbc-text);
}
.wbc-btn-ghost:hover { background: rgba(181,107,255,.15); color: var(--wbc-text); transform: translateY(-2px); }
.wbc-btn-small { padding: .5rem 1.1rem; font-size: .85rem; }

/* ---------- Hero ---------- */
.wbc-hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	perspective: 1200px;
}
.wbc-hero-canvas {
	position: absolute;
	inset: 0;
	z-index: 1;
}
.wbc-hero-canvas canvas { display: block; }
.wbc-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: radial-gradient(ellipse at center, transparent 40%, rgba(5,4,15,.55) 100%);
}
.wbc-hero-content {
	position: relative;
	z-index: 2;
	max-width: 760px;
	padding: 2rem;
}
.wbc-hero-logo { margin-bottom: 1.5rem; }
.wbc-hero-logo img {
	max-width: 180px;
	filter: drop-shadow(0 0 30px rgba(181,107,255,.6));
	animation: wbc-float 5s ease-in-out infinite;
}
@keyframes wbc-float {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-14px) rotate(2deg); }
}
.wbc-hero-title {
	font-size: clamp(2.2rem, 5vw, 3.6rem);
	font-weight: 800;
	margin: 0 0 1rem;
	color: #fffaf0;
	-webkit-text-stroke: .5px hsla(45, 90%, 70%, .5);
	text-shadow:
		0 0 10px rgba(255,255,255,.95),
		0 0 22px hsla(0, 90%, 65%, 1),
		0 0 42px hsla(30, 85%, 55%, .85),
		0 0 75px hsla(60, 80%, 60%, .6),
		0 0 115px hsla(90, 80%, 65%, .4);
	animation: wbc-neon-cycle 16s linear infinite;
}
@keyframes wbc-neon-cycle {
	0% {
		-webkit-text-stroke-color: hsla(0, 90%, 70%, .5);
		text-shadow: 0 0 10px rgba(255,255,255,.95), 0 0 22px hsla(0, 90%, 65%, 1), 0 0 42px hsla(30, 85%, 55%, .85), 0 0 75px hsla(60, 80%, 60%, .6), 0 0 115px hsla(90, 80%, 65%, .4);
	}
	10% {
		-webkit-text-stroke-color: hsla(36, 90%, 70%, .5);
		text-shadow: 0 0 10px rgba(255,255,255,.95), 0 0 22px hsla(36, 90%, 65%, 1), 0 0 42px hsla(66, 85%, 55%, .85), 0 0 75px hsla(96, 80%, 60%, .6), 0 0 115px hsla(126, 80%, 65%, .4);
	}
	20% {
		-webkit-text-stroke-color: hsla(72, 90%, 70%, .5);
		text-shadow: 0 0 10px rgba(255,255,255,.95), 0 0 22px hsla(72, 90%, 65%, 1), 0 0 42px hsla(102, 85%, 55%, .85), 0 0 75px hsla(132, 80%, 60%, .6), 0 0 115px hsla(162, 80%, 65%, .4);
	}
	30% {
		-webkit-text-stroke-color: hsla(108, 90%, 70%, .5);
		text-shadow: 0 0 10px rgba(255,255,255,.95), 0 0 22px hsla(108, 90%, 65%, 1), 0 0 42px hsla(138, 85%, 55%, .85), 0 0 75px hsla(168, 80%, 60%, .6), 0 0 115px hsla(198, 80%, 65%, .4);
	}
	40% {
		-webkit-text-stroke-color: hsla(144, 90%, 70%, .5);
		text-shadow: 0 0 10px rgba(255,255,255,.95), 0 0 22px hsla(144, 90%, 65%, 1), 0 0 42px hsla(174, 85%, 55%, .85), 0 0 75px hsla(204, 80%, 60%, .6), 0 0 115px hsla(234, 80%, 65%, .4);
	}
	50% {
		-webkit-text-stroke-color: hsla(200, 90%, 70%, .5);
		text-shadow: 0 0 10px rgba(255,255,255,.95), 0 0 22px hsla(200, 90%, 65%, 1), 0 0 42px hsla(230, 85%, 55%, .85), 0 0 75px hsla(260, 80%, 60%, .6), 0 0 115px hsla(290, 80%, 65%, .4);
	}
	60% {
		-webkit-text-stroke-color: hsla(255, 90%, 70%, .5);
		text-shadow: 0 0 10px rgba(255,255,255,.95), 0 0 22px hsla(255, 90%, 65%, 1), 0 0 42px hsla(285, 85%, 55%, .85), 0 0 75px hsla(315, 80%, 60%, .6), 0 0 115px hsla(345, 80%, 65%, .4);
	}
	70% {
		-webkit-text-stroke-color: hsla(295, 90%, 70%, .5);
		text-shadow: 0 0 10px rgba(255,255,255,.95), 0 0 22px hsla(295, 90%, 65%, 1), 0 0 42px hsla(325, 85%, 55%, .85), 0 0 75px hsla(355, 80%, 60%, .6), 0 0 115px hsla(25, 80%, 65%, .4);
	}
	80% {
		-webkit-text-stroke-color: hsla(325, 90%, 70%, .5);
		text-shadow: 0 0 10px rgba(255,255,255,.95), 0 0 22px hsla(325, 90%, 65%, 1), 0 0 42px hsla(355, 85%, 55%, .85), 0 0 75px hsla(25, 80%, 60%, .6), 0 0 115px hsla(55, 80%, 65%, .4);
	}
	90% {
		-webkit-text-stroke-color: hsla(345, 90%, 70%, .5);
		text-shadow: 0 0 10px rgba(255,255,255,.95), 0 0 22px hsla(345, 90%, 65%, 1), 0 0 42px hsla(15, 85%, 55%, .85), 0 0 75px hsla(45, 80%, 60%, .6), 0 0 115px hsla(75, 80%, 65%, .4);
	}
	100% {
		-webkit-text-stroke-color: hsla(360, 90%, 70%, .5);
		text-shadow: 0 0 10px rgba(255,255,255,.95), 0 0 22px hsla(360, 90%, 65%, 1), 0 0 42px hsla(30, 85%, 55%, .85), 0 0 75px hsla(60, 80%, 60%, .6), 0 0 115px hsla(90, 80%, 65%, .4);
	}
}
@media (prefers-reduced-motion: reduce) {
	.wbc-hero-title { animation: none; }
}
.wbc-hero-subtitle {
	font-size: 1.15rem;
	color: var(--wbc-text-muted);
	margin-bottom: 2rem;
}
.wbc-hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.wbc-hero-scroll-cue {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	color: var(--wbc-gold);
	font-size: 1.5rem;
	animation: wbc-bounce 2s ease-in-out infinite;
	z-index: 2;
}
@keyframes wbc-bounce {
	0%, 100% { transform: translate(-50%, 0); opacity: .6; }
	50% { transform: translate(-50%, 10px); opacity: 1; }
}

/* ---------- Sections ---------- */
.wbc-section { position: relative; z-index: 2; padding: 5rem 0; }
.wbc-section-title {
	text-align: center;
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	margin-bottom: .5rem;
	background: var(--wbc-holo);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.wbc-section-subtitle {
	text-align: center;
	color: var(--wbc-text-muted);
	margin-bottom: 3rem;
}
.wbc-empty-note { text-align: center; color: var(--wbc-text-muted); font-style: italic; }

/* ---------- Clean white sparkle title (used for "Sparkle Reviews") ---------- */
.wbc-title-sparkle {
	position: relative;
	display: table;
	margin: 0 auto .5rem;
	color: #ffffff;
	background: none;
	-webkit-background-clip: initial;
	background-clip: initial;
	-webkit-text-fill-color: #ffffff;
	text-shadow:
		0 0 8px rgba(255,255,255,.85),
		0 0 18px rgba(255,255,255,.6),
		0 0 34px rgba(255,255,255,.4),
		0 0 60px rgba(255,255,255,.22);
	animation: wbc-white-sparkle 2.6s ease-in-out infinite;
}
.wbc-title-sparkle::before,
.wbc-title-sparkle::after {
	content: "✦";
	position: absolute;
	color: #fff;
	font-size: .45em;
	text-shadow: 0 0 6px rgba(255,255,255,.9), 0 0 14px rgba(255,255,255,.7);
	opacity: 0;
	animation: wbc-twinkle-light 2.4s ease-in-out infinite;
}
.wbc-title-sparkle::before { left: -1.4em; top: 8%; animation-delay: .2s; }
.wbc-title-sparkle::after { right: -1.4em; bottom: 20%; animation-delay: 1.1s; }
@keyframes wbc-white-sparkle {
	0%, 100% {
		text-shadow: 0 0 8px rgba(255,255,255,.8), 0 0 18px rgba(255,255,255,.55), 0 0 34px rgba(255,255,255,.35), 0 0 60px rgba(255,255,255,.18);
	}
	50% {
		text-shadow: 0 0 12px rgba(255,255,255,1), 0 0 26px rgba(255,255,255,.85), 0 0 48px rgba(255,255,255,.55), 0 0 85px rgba(255,255,255,.3);
	}
}
@media (prefers-reduced-motion: reduce) {
	.wbc-title-sparkle,
	.wbc-title-sparkle::before,
	.wbc-title-sparkle::after { animation: none; }
}

/* ---------- Product carousel ---------- */
.wbc-carousel { position: relative; }
.wbc-carousel-track {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 1rem .5rem 2rem;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.wbc-carousel-track::-webkit-scrollbar { display: none; }
.wbc-carousel-slide {
	flex: 0 0 auto;
	width: 260px;
	scroll-snap-align: start;
}
.wbc-carousel-arrow {
	position: absolute;
	top: 45%;
	transform: translateY(-50%);
	background: var(--wbc-bg-card);
	border: 1px solid rgba(255,255,255,.15);
	color: var(--wbc-gold);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	font-size: 1.4rem;
	cursor: pointer;
	z-index: 3;
}
.wbc-carousel-prev { left: -10px; }
.wbc-carousel-next { right: -10px; }
.wbc-carousel-arrow:hover { box-shadow: 0 0 20px rgba(255,215,107,.5); }

.wbc-product-card, .wbc-freebie-card {
	position: relative;
	background: var(--wbc-bg-card);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: var(--wbc-radius);
	padding: 1.25rem;
	text-align: center;
	transition: transform .25s ease, box-shadow .25s ease;
	overflow: hidden;
}
.wbc-product-card:hover, .wbc-freebie-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 40px rgba(181,107,255,.25);
}
.wbc-product-lights {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}
.wbc-product-lights span {
	position: absolute;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	opacity: 0;
	animation: wbc-twinkle-light 3.5s ease-in-out infinite;
}
.wbc-product-lights span:nth-child(1) { top: 6%; left: 8%; background: var(--wbc-gold); box-shadow: 0 0 8px 2px var(--wbc-gold); animation-delay: 0s; }
.wbc-product-lights span:nth-child(2) { top: 10%; right: 10%; background: var(--wbc-pink); box-shadow: 0 0 8px 2px var(--wbc-pink); animation-delay: .4s; }
.wbc-product-lights span:nth-child(3) { bottom: 15%; left: 6%; background: var(--wbc-blue); box-shadow: 0 0 8px 2px var(--wbc-blue); animation-delay: .8s; }
.wbc-product-lights span:nth-child(4) { bottom: 8%; right: 14%; background: var(--wbc-purple); box-shadow: 0 0 8px 2px var(--wbc-purple); animation-delay: 1.2s; }
.wbc-product-lights span:nth-child(5) { top: 45%; left: 2%; background: var(--wbc-orange); box-shadow: 0 0 8px 2px var(--wbc-orange); animation-delay: 1.6s; }
.wbc-product-lights span:nth-child(6) { top: 40%; right: 3%; background: var(--wbc-gold); box-shadow: 0 0 8px 2px var(--wbc-gold); animation-delay: 2s; }
@keyframes wbc-twinkle-light {
	0%, 100% { opacity: 0; transform: scale(.5); }
	50% { opacity: 1; transform: scale(1.3); }
}
.wbc-product-thumb, .wbc-freebie-thumb {
	position: relative;
	z-index: 1;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 1rem;
	background: rgba(255,255,255,.03);
	display: block;
}
.wbc-product-thumb img, .wbc-freebie-thumb img { width: 100%; height: 160px; object-fit: cover; display: block; }
.wbc-product-thumb-placeholder {
	height: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	color: var(--wbc-purple);
}
.wbc-large-placeholder { height: 320px; font-size: 4rem; border-radius: var(--wbc-radius); background: rgba(255,255,255,.03); }
.wbc-product-title { position: relative; z-index: 1; font-size: 1.1rem; margin: .25rem 0; }
.wbc-product-price { position: relative; z-index: 1; color: var(--wbc-gold); font-weight: 700; margin-bottom: .75rem; }
.wbc-product-price-lg { font-size: 1.5rem; margin: .5rem 0 1.25rem; }

/* ---------- Products grid / archive ---------- */
.wbc-products-grid, .wbc-freebies-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}
.wbc-freebie-card { display: block; color: var(--wbc-text); }
.wbc-freebie-card p { color: var(--wbc-text-muted); font-size: .9rem; }

.wbc-niche-filter { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2rem; }
.wbc-niche-pill {
	padding: .4rem 1rem;
	border-radius: 999px;
	background: var(--wbc-bg-card);
	border: 1px solid rgba(255,255,255,.12);
	font-size: .9rem;
	color: var(--wbc-text);
}
.wbc-niche-pill.wbc-active, .wbc-niche-pill:hover { border-color: var(--wbc-gold); color: var(--wbc-gold); }

/* ---------- Product / freebie single pages ---------- */
.wbc-product-single, .wbc-freebie-single { padding: 4rem 0; position: relative; z-index: 2; }
.wbc-product-single-grid, .wbc-freebie-single-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}
.wbc-product-single-media { position: relative; }

.wbc-signup-box {
	margin-top: 2rem;
	padding: 1.75rem;
	background: var(--wbc-bg-card);
	border-radius: var(--wbc-radius);
	border: 1px solid rgba(255,255,255,.1);
}
.wbc-signup-box h2 { margin-top: 0; font-size: 1.3rem; }
.wbc-mailerlite-embed input, .wbc-mailerlite-embed button { font-family: var(--wbc-font-body); }

/* ---------- Freebies teaser section on homepage ---------- */
.wbc-freebies-section { background: var(--wbc-bg-alt); }

/* ---------- Generic content pages ---------- */
.wbc-standard-content { position: relative; z-index: 2; padding: 4rem 0; }
.wbc-entry-title { font-size: 2.2rem; margin-bottom: 1.5rem; }
.wbc-legal-content { color: var(--wbc-text-muted); }
.wbc-legal-content h2 { color: var(--wbc-text); margin-top: 2rem; }
.wbc-contact-social { margin-top: 3rem; text-align: center; }

/* ---------- Footer ---------- */
.wbc-site-footer {
	position: relative;
	z-index: 2;
	background: var(--wbc-bg-alt);
	border-top: 1px solid rgba(255,255,255,.08);
	padding: 3rem 0 1.5rem;
	margin-top: 3rem;
}
.wbc-footer-top {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 2rem;
	margin-bottom: 2rem;
}
.wbc-footer-tagline { color: var(--wbc-text-muted); font-size: .9rem; max-width: 320px; }
.wbc-footer-social { margin-top: 1rem; }
.wbc-footer-menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .6rem; }
.wbc-footer-bottom {
	border-top: 1px solid rgba(255,255,255,.08);
	padding-top: 1.25rem;
	text-align: center;
	color: var(--wbc-text-muted);
	font-size: .85rem;
}
.wbc-legal-links {
	margin-top: .5rem;
	font-size: .8rem;
}
.wbc-legal-links a { color: var(--wbc-text-muted); }
.wbc-legal-links a:hover { color: var(--wbc-gold); }

/* ---------- Cookie consent banner ---------- */
.wbc-cookie-banner {
	position: fixed;
	left: 1.25rem;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 9600;
	max-width: 620px;
	margin: 0 auto;
	background: var(--wbc-bg-card);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: var(--wbc-radius);
	padding: 1.25rem 1.5rem;
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex-wrap: wrap;
	box-shadow: 0 12px 40px rgba(0,0,0,.4);
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .35s ease, transform .35s ease;
}
.wbc-cookie-banner.wbc-cookie-visible { opacity: 1; transform: translateY(0); }
.wbc-cookie-text { margin: 0; flex: 1 1 260px; font-size: .9rem; color: var(--wbc-text-muted); }
.wbc-cookie-text a { color: var(--wbc-gold); }

/* ---------- Scroll-triggered reveal ---------- */
.wbc-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .7s ease, transform .7s ease;
}
.wbc-reveal.wbc-in-view {
	opacity: 1;
	transform: translateY(0);
}
.wbc-reveal.wbc-reveal-delay-1.wbc-in-view { transition-delay: .1s; }
.wbc-reveal.wbc-reveal-delay-2.wbc-in-view { transition-delay: .2s; }
.wbc-reveal.wbc-reveal-delay-3.wbc-in-view { transition-delay: .3s; }

/* ---------- Hover wiggle / sparkle-burst micro-interactions ---------- */
.wbc-product-card, .wbc-freebie-card, .wbc-btn {
	will-change: transform;
}
.wbc-product-thumb, .wbc-freebie-thumb {
	transition: transform .3s ease;
}
.wbc-product-card:hover .wbc-product-thumb,
.wbc-freebie-card:hover .wbc-freebie-thumb {
	transform: rotate(-2deg) scale(1.04);
}
.wbc-product-card:hover .wbc-product-lights span,
.wbc-freebie-card:hover .wbc-product-lights span {
	animation-duration: 1.1s;
}
.wbc-btn { position: relative; overflow: hidden; }
.wbc-btn::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle, rgba(255,255,255,.5) 0%, transparent 60%);
	opacity: 0;
	transform: scale(0.6);
	transition: opacity .4s ease, transform .4s ease;
	pointer-events: none;
}
.wbc-btn:hover::after {
	opacity: 1;
	transform: scale(1.3);
}
.wbc-btn:hover { animation: wbc-btn-wiggle .4s ease; }
@keyframes wbc-btn-wiggle {
	0%, 100% { transform: translateY(-2px) rotate(0deg); }
	25% { transform: translateY(-2px) rotate(-1.5deg); }
	75% { transform: translateY(-2px) rotate(1.5deg); }
}

/* ---------- "New" badge ---------- */
.wbc-new-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	background: var(--wbc-holo);
	color: #1a0a2e;
	font-family: var(--wbc-font-heading);
	font-size: .7rem;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
	padding: .3rem .7rem;
	border-radius: 999px;
	box-shadow: 0 0 14px rgba(255,215,107,.5);
}

/* ---------- Hero video frame ---------- */
.wbc-hero-video-frame {
	width: 220px;
	height: 220px;
	margin: 0 auto 1.5rem;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	border: 3px solid transparent;
	background:
		linear-gradient(var(--wbc-bg), var(--wbc-bg)) padding-box,
		var(--wbc-holo) border-box;
	box-shadow: 0 0 50px rgba(181,107,255,.45);
	animation: wbc-float 5s ease-in-out infinite;
}
.wbc-hero-video-frame video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ---------- Testimonials ---------- */
.wbc-testimonials-section { position: relative; z-index: 2; }
.wbc-testimonial-carousel {
	position: relative;
	max-width: 680px;
	margin: 0 auto;
	min-height: 200px;
}
.wbc-testimonial-slide {
	position: absolute;
	inset: 0;
	text-align: center;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity .6s ease, transform .6s ease;
	pointer-events: none;
}
.wbc-testimonial-slide.wbc-active {
	opacity: 1;
	transform: translateY(0);
	position: relative;
	pointer-events: auto;
}
.wbc-testimonial-quote {
	font-size: 1.2rem;
	font-style: italic;
	color: var(--wbc-text);
	margin-bottom: 1rem;
}
.wbc-testimonial-quote::before { content: '“'; color: var(--wbc-gold); }
.wbc-testimonial-quote::after { content: '”'; color: var(--wbc-gold); }
.wbc-testimonial-stars { color: var(--wbc-gold); letter-spacing: .2em; margin-bottom: .5rem; }
.wbc-testimonial-author { font-weight: 700; font-family: var(--wbc-font-heading); }
.wbc-testimonial-role { color: var(--wbc-text-muted); font-size: .85rem; }
.wbc-testimonial-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.5rem; }
.wbc-testimonial-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: rgba(255,255,255,.2);
	border: none;
	cursor: pointer;
	padding: 0;
}
.wbc-testimonial-dot.wbc-active { background: var(--wbc-gold); }

/* ---------- Freebie pop-up modal ---------- */
.wbc-popup-overlay {
	position: fixed;
	inset: 0;
	z-index: 9500;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(5,4,15,.75);
	backdrop-filter: blur(4px);
	opacity: 0;
	transition: opacity .3s ease;
	padding: 1.5rem;
}
.wbc-popup-overlay.wbc-popup-visible { opacity: 1; }
.wbc-popup-box {
	position: relative;
	max-width: 440px;
	width: 100%;
	background: var(--wbc-bg-card);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: var(--wbc-radius);
	padding: 2.5rem 2rem 2rem;
	text-align: center;
	box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 60px rgba(181,107,255,.25);
	transform: scale(.92);
	transition: transform .3s ease;
}
.wbc-popup-overlay.wbc-popup-visible .wbc-popup-box { transform: scale(1); }
.wbc-popup-sparkles { color: var(--wbc-gold); letter-spacing: .5em; margin-bottom: .5rem; }
.wbc-popup-close {
	position: absolute;
	top: .75rem;
	right: 1rem;
	background: none;
	border: none;
	color: var(--wbc-text-muted);
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
}
.wbc-popup-close:hover { color: var(--wbc-text); }

/* ---------- Dancing carrot parade ---------- */
.wbc-carrot-parade {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: clamp(.5rem, 3vw, 2.25rem);
	padding: 1.5rem 1rem 2.5rem;
	max-width: 900px;
	margin: 0 auto;
}
.wbc-carrot {
	display: block;
	width: clamp(28px, 4vw, 44px);
	transform-origin: bottom center;
	animation: wbc-carrot-skip 1.4s ease-in-out infinite;
	filter: drop-shadow(0 6px 10px rgba(0,0,0,.35));
}
.wbc-carrot svg { display: block; width: 100%; height: auto; }
.wbc-carrot-0 { animation-delay: 0s; }
.wbc-carrot-1 { animation-delay: .15s; }
.wbc-carrot-2 { animation-delay: .3s; }
.wbc-carrot-3 { animation-delay: .45s; }
@keyframes wbc-carrot-skip {
	0%, 100% { transform: translateY(0) rotate(-6deg); }
	25% { transform: translateY(-22px) rotate(4deg); }
	50% { transform: translateY(0) rotate(-2deg); }
	75% { transform: translateY(-12px) rotate(8deg); }
}
@media (prefers-reduced-motion: reduce) {
	.wbc-carrot { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
	.wbc-product-single-grid, .wbc-freebie-single-grid { grid-template-columns: 1fr; }
	.wbc-footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 782px) {
	.wbc-menu-toggle { display: block; }
	.wbc-menu {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		background: var(--wbc-bg-alt);
		padding: 1rem 1.5rem;
		display: none;
		gap: 1rem;
	}
	.wbc-menu.wbc-open { display: flex; }
	.wbc-header-inner { position: relative; flex-wrap: wrap; }
}
