/* Maitreyee Arts web — temple-inspired, mobile-first */
:root {
	--red: #D80100;
	--green: #00980D;
	--maroon: #3f0d10;
	--saffron: #b45309;
	--gold: #c9a227;
	--ink: #1a1214;
	--muted: #5a4d52;
	--bg: #f8f2e9;
	--bg-deep: #e8dcc8;
	--surface: #fffdf8;
	--line: #d8c7ad;
	--shadow: 0 12px 36px rgba(63, 13, 16, 0.09);
	--radius: 16px;
	--font: "Sora", system-ui, sans-serif;
	--display: "Cormorant Garamond", Georgia, serif;
	--max: 1100px;
	--top: 68px;
	--tabbar: 64px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font);
	color: var(--ink);
	background:
		radial-gradient(1000px 480px at -5% -10%, rgba(216, 1, 0, 0.09), transparent 55%),
		radial-gradient(800px 400px at 105% 0%, rgba(201, 162, 39, 0.14), transparent 52%),
		linear-gradient(180deg, #fcf7ef 0%, var(--bg) 42%, #efe4d4 100%);
	min-height: 100dvh;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	padding-bottom: calc(var(--tabbar) + 18px + env(safe-area-inset-bottom, 0px));
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
button, input, select { font: inherit; }
.wb-skip {
	position: absolute; left: -999px; top: 0; background: #fff; padding: 8px 12px; z-index: 100;
}
.wb-skip:focus { left: 8px; top: 8px; }

/* Top nav */
.wb-top {
	position: sticky; top: 0; z-index: 80;
	backdrop-filter: blur(14px);
	background: rgba(255, 253, 248, 0.94);
}
.wb-top-inner {
	position: relative;
	max-width: var(--max); margin: 0 auto; padding: 10px 16px;
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.wb-temple-rail {
	height: 4px;
	position: relative;
	overflow: hidden;
	background:
		repeating-linear-gradient(
			90deg,
			var(--red) 0 18px,
			var(--gold) 18px 22px,
			var(--green) 22px 40px,
			var(--gold) 40px 44px
		);
}
.wb-temple-rail::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(90deg, transparent 0%, rgba(255,245,210,0.75) 50%, transparent 100%);
	transform: translateX(-120%);
	pointer-events: none;
}
.wb-brand {
	display: flex; align-items: center; gap: 10px; color: inherit; min-width: 0;
}
.wb-brand img {
	width: 48px; height: 48px; object-fit: contain; border-radius: 50%;
	background: #fff; border: 1px solid var(--line);
	box-shadow: 0 2px 8px rgba(63, 13, 16, 0.08);
}
.wb-brand-text {
	display: flex; flex-direction: row; flex-wrap: wrap; align-items: baseline;
	gap: 0.28em; line-height: 1; min-width: 0;
}
.wb-brand-maitreyee,
.wb-brand-arts {
	font-family: var(--font);
	font-weight: 700;
	font-size: clamp(0.95rem, 3.4vw, 1.35rem);
	letter-spacing: 0.03em;
	text-transform: uppercase;
	text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.08);
}
.wb-brand-maitreyee { color: var(--red); }
.wb-brand-arts { color: var(--green); }

.wb-nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 14px;
	border: 1.5px solid var(--maroon);
	border-radius: 999px;
	background: var(--maroon);
	color: #fff;
	cursor: pointer;
	font-weight: 700;
	font-size: 0.88rem;
	box-shadow: 0 6px 16px rgba(63, 13, 16, 0.2);
}
.wb-nav-toggle-icon { display: block; flex: 0 0 auto; }
.wb-nav-toggle-label { letter-spacing: 0.02em; }
.wb-nav { display: flex; gap: 6px; align-items: center; }
.wb-nav-link {
	padding: 10px 14px; border-radius: 999px; color: var(--ink); font-weight: 600; font-size: 0.92rem;
}
.wb-nav-link.is-active, .wb-nav-link:hover {
	background: rgba(216, 1, 0, 0.08); color: var(--red);
}
.wb-nav-call {
	background: var(--red); color: #fff !important;
}
.wb-nav-call:hover { background: var(--maroon); color: #fff !important; }

@media (max-width: 860px) {
	.wb-nav-toggle { display: inline-flex; }
	.wb-nav {
		display: none;
		position: absolute;
		left: 12px; right: 12px;
		top: calc(100% + 8px);
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
		background: var(--surface);
		border: 1px solid var(--line);
		border-radius: 18px;
		padding: 10px;
		box-shadow: var(--shadow);
		z-index: 90;
	}
	.wb-nav.is-open { display: flex; }
	.wb-nav-link {
		width: 100%;
		text-align: left;
		padding: 14px 16px;
		border-radius: 12px;
		font-size: 1rem;
	}
}

.wb-main { max-width: var(--max); margin: 0 auto; padding: 8px 16px 48px; }
.wb-main-bleed { max-width: none; padding: 0 0 48px; }
.wb-wrap { max-width: var(--max); margin: 0 auto; padding: 0 16px; }

/* Hero */
.wb-hero {
	position: relative;
	margin: 0 0 32px;
	min-height: min(86dvh, 700px);
	overflow: hidden;
	color: #fff;
	isolation: isolate;
}
.wb-hero-media {
	position: absolute; inset: 0; z-index: -2;
	background:
		linear-gradient(115deg, rgba(26, 10, 12, 0.8) 0%, rgba(74, 15, 18, 0.52) 48%, rgba(26, 10, 12, 0.66) 100%),
		url("../../web-old/images/banner1.jpg") center/cover no-repeat;
	will-change: transform;
}
.wb-hero-media::after {
	content: ""; position: absolute; inset: 0;
	background:
		radial-gradient(circle at 72% 28%, rgba(201, 162, 39, 0.28), transparent 42%),
		linear-gradient(180deg, transparent 50%, rgba(10, 4, 6, 0.6) 100%);
}
.wb-hero-glow {
	position: absolute; inset: 0; z-index: -1; pointer-events: none;
	background: radial-gradient(ellipse 55% 40% at 50% 85%, rgba(201, 162, 39, 0.22), transparent 70%);
}
.wb-hero-motes {
	position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.wb-hero-motes span {
	position: absolute;
	width: 6px; height: 6px; border-radius: 50%;
	background: rgba(255, 220, 150, 0.55);
	box-shadow: 0 0 12px rgba(201, 162, 39, 0.45);
	bottom: 8%;
	opacity: 0;
}
.wb-hero-motes span:nth-child(1) { left: 12%; width: 4px; height: 4px; }
.wb-hero-motes span:nth-child(2) { left: 28%; }
.wb-hero-motes span:nth-child(3) { left: 55%; width: 5px; height: 5px; }
.wb-hero-motes span:nth-child(4) { left: 72%; width: 3px; height: 3px; }
.wb-hero-motes span:nth-child(5) { left: 88%; width: 5px; height: 5px; }
.wb-hero-inner {
	position: relative; z-index: 1;
	min-height: inherit; display: flex; flex-direction: column; justify-content: flex-end;
	padding: clamp(28px, 7vw, 56px) clamp(18px, 5vw, 48px);
	max-width: 52rem;
}
.wb-hero-lockup {
	display: flex;
	align-items: center;
	gap: clamp(12px, 3vw, 22px);
	margin: 0 0 14px;
	min-width: 0;
}
.wb-hero-logo {
	width: clamp(72px, 16vw, 118px);
	height: clamp(72px, 16vw, 118px);
	object-fit: contain;
	flex: 0 0 auto;
	border-radius: 50%;
	background: #fff;
	box-shadow:
		0 6px 22px rgba(0, 0, 0, 0.35),
		0 0 0 3px rgba(255, 255, 255, 0.55);
}
.wb-hero-brand {
	font-family: var(--font);
	font-size: clamp(1.85rem, 7.2vw, 4.1rem);
	font-weight: 700;
	line-height: 0.95;
	margin: 0;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	-webkit-text-stroke: 2.5px #fff;
	paint-order: stroke fill;
	text-shadow:
		-2px -2px 0 #fff,
		2px -2px 0 #fff,
		-2px 2px 0 #fff,
		2px 2px 0 #fff,
		0 2px 0 #fff,
		0 -2px 0 #fff,
		2px 0 0 #fff,
		-2px 0 0 #fff,
		2px 3px 0 rgba(0, 0, 0, 0.22),
		0 8px 24px rgba(0, 0, 0, 0.3);
	word-break: break-word;
}
.wb-hero-brand .r { color: #D80100; }
.wb-hero-brand .g { color: #00980D; }
.wb-hero-line {
	margin: 0 0 22px; font-size: clamp(1.02rem, 3.2vw, 1.2rem); opacity: 0.95; max-width: 32ch;
}
.wb-cta-row { display: flex; flex-wrap: wrap; gap: 10px; }
.wb-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	min-height: 48px; padding: 0 20px; border-radius: 999px; border: 0; font-weight: 650;
	cursor: pointer; position: relative; overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease;
}
.wb-btn::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.28) 50%, transparent 80%);
	transform: translateX(-130%);
	pointer-events: none;
}
.wb-btn:active { transform: scale(0.98); }
.wb-btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(216,1,0,0.28); }
.wb-btn-ghost { background: rgba(255,255,255,0.14); color: #fff; border: 1px solid rgba(255,255,255,0.35); }
.wb-btn-solid { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(0,152,13,0.22); }
.wb-btn-outline { background: var(--surface); color: var(--ink); border: 1px solid var(--line); }

/* Sections */
.wb-section { margin: 40px 0; }
.wb-section-head { margin-bottom: 18px; }
.wb-kicker {
	display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
	text-transform: uppercase; color: var(--saffron); margin-bottom: 6px;
}
.wb-h1, .wb-h2 {
	font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; margin: 0 0 8px;
}
.wb-h1 { font-size: clamp(2rem, 6vw, 2.9rem); line-height: 1.05; }
.wb-h2 { font-size: clamp(1.65rem, 4vw, 2.2rem); line-height: 1.1; }
.wb-lead { margin: 0; color: var(--muted); max-width: 48ch; }
.wb-count { margin: 0 0 12px; color: var(--muted); font-size: 0.88rem; font-weight: 600; }

.wb-chip-row {
	display: flex; gap: 8px; overflow-x: auto; padding: 4px 2px 12px;
	-webkit-overflow-scrolling: touch; scrollbar-width: thin;
}
.wb-chip {
	flex: 0 0 auto; padding: 11px 15px; border-radius: 999px;
	border: 1px solid var(--line); background: var(--surface); color: var(--ink);
	font-weight: 600; font-size: 0.86rem; white-space: nowrap;
	box-shadow: 0 2px 8px rgba(63, 13, 16, 0.04);
}
.wb-chip.is-active { background: var(--red); border-color: var(--red); color: #fff; }
.wb-chip small { display: block; font-weight: 500; opacity: 0.8; font-size: 0.7rem; }

.wb-size-list {
	display: grid; gap: 0; margin-top: 8px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}
.wb-size-row {
	display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center;
	padding: 16px 18px; border-bottom: 1px solid var(--line); color: inherit;
	transition: background 0.15s ease;
}
.wb-size-row:last-child { border-bottom: 0; }
.wb-size-row:hover { background: rgba(216, 1, 0, 0.04); }
.wb-size-letter {
	font-family: var(--display); font-size: 2.15rem; font-weight: 700; color: var(--red); line-height: 1;
	min-width: 1.4ch;
}
.wb-size-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.wb-size-meta strong { font-size: 1rem; }
.wb-size-dims { color: var(--muted); font-size: 0.82rem; }
.wb-size-go { color: var(--gold); font-size: 1.25rem; }

.wb-grid {
	display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px;
}
@media (min-width: 720px) { .wb-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; } }
@media (min-width: 980px) { .wb-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.wb-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 8px 22px rgba(63, 13, 16, 0.05);
	color: inherit;
	display: flex; flex-direction: column;
	transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
}
.wb-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.wb-card:active { transform: scale(0.99); }
.wb-card-img {
	aspect-ratio: 1; object-fit: cover; width: 100%; background: var(--bg-deep);
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.wb-card:hover .wb-card-img { transform: scale(1.05); }
.wb-card-body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.wb-card-title {
	font-family: var(--display); font-size: 1.18rem; font-weight: 700; margin: 0; line-height: 1.2;
}
.wb-card-meta { color: var(--muted); font-size: 0.78rem; }
.wb-price { color: var(--red); font-weight: 700; font-size: 0.98rem; }
.wb-price-lg { font-size: 1.45rem; margin: 12px 0 4px; }
.wb-stock {
	font-size: 0.78rem;
	font-weight: 650;
	color: var(--green);
}
.wb-stock.is-out { color: var(--muted); }
.wb-stock-lg { font-size: 0.95rem; margin: 0 0 12px; }
.wb-badge {
	display: inline-flex; align-items: center; padding: 2px 0;
	background: transparent; color: var(--saffron); font-size: 0.7rem; font-weight: 700;
	letter-spacing: 0.05em; text-transform: uppercase;
}

.wb-dims {
	display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-top: 8px;
}
.wb-dims-cell {
	background: rgba(63, 13, 16, 0.04); border: 1px solid var(--line);
	border-radius: 12px; padding: 10px 6px; text-align: center;
}
.wb-dims-k { color: var(--red); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.04em; }
.wb-dims-v { display: block; font-size: 0.8rem; font-weight: 600; color: var(--ink); margin-top: 2px; }

.wb-filters {
	display: grid; gap: 10px; margin: 12px 0 18px;
	grid-template-columns: 1fr;
	padding: 14px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}
@media (min-width: 720px) {
	.wb-filters { grid-template-columns: 1.2fr 1fr 1fr auto; align-items: end; }
}
.wb-field label { display: block; font-size: 0.75rem; color: var(--muted); margin-bottom: 6px; font-weight: 600; }
.wb-field select, .wb-search {
	width: 100%; min-height: 46px; border-radius: 12px; border: 1px solid var(--line);
	background: #fff; padding: 10px 12px;
}

.wb-pager {
	display: flex; align-items: center; justify-content: center; gap: 12px;
	flex-wrap: wrap; margin: 22px 0 8px;
}
.wb-pager-status { color: var(--muted); font-size: 0.9rem; font-weight: 600; }

/* Product detail */
.wb-product {
	display: grid; gap: 22px; margin-top: 12px;
}
@media (min-width: 800px) {
	.wb-product { grid-template-columns: 1.05fr 1fr; align-items: start; gap: 32px; }
}
.wb-product-media {
	display: block; width: 100%; padding: 0; margin: 0;
	overflow: hidden; border: 1px solid var(--line);
	background: var(--bg-deep);
	cursor: zoom-in; position: relative; text-align: left;
	font: inherit; color: inherit;
	border-radius: 20px;
	box-shadow: var(--shadow);
}
.wb-product-media img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.wb-zoom-hint {
	position: absolute; left: 12px; bottom: 12px;
	padding: 8px 12px; border-radius: 999px;
	background: rgba(26, 18, 20, 0.78); color: #fff;
	font-size: 0.78rem; font-weight: 650; pointer-events: none;
	letter-spacing: 0.01em;
}
.wb-specs { display: grid; gap: 0; margin: 16px 0; }
.wb-spec {
	display: flex; justify-content: space-between; gap: 12px;
	padding: 12px 0; border-bottom: 1px solid var(--line);
}
.wb-spec span:first-child { color: var(--muted); font-size: 0.85rem; }
.wb-spec strong { font-weight: 650; }

/* Zoom modal — fixed overlay on body */
.wb-zoom {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: none;
	flex-direction: column;
	background: rgba(8, 4, 5, 0.96);
	touch-action: none;
}
.wb-zoom.is-open { display: flex; }
.wb-zoom-bar {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: calc(12px + env(safe-area-inset-top, 0px)) 12px 12px;
	background: rgba(0,0,0,0.45);
}
.wb-zoom-btn {
	min-width: 48px; min-height: 44px; padding: 0 14px;
	border: 1px solid rgba(255,255,255,0.3); border-radius: 999px;
	background: rgba(255,255,255,0.12); color: #fff; font-weight: 700;
	font-size: 1.1rem; cursor: pointer;
}
.wb-zoom-close { margin-left: auto; font-size: 0.92rem; padding: 0 16px; background: var(--red); border-color: var(--red); }
.wb-zoom-stage {
	flex: 1 1 auto;
	position: relative;
	overflow: hidden;
	min-height: 0;
	height: 100%;
	cursor: grab;
	user-select: none;
}
.wb-zoom-stage.is-dragging { cursor: grabbing; }
.wb-zoom-stage img {
	position: absolute;
	left: 50%;
	top: 50%;
	width: auto;
	height: auto;
	max-width: min(96vw, 920px);
	max-height: 78dvh;
	transform: translate3d(-50%, -50%, 0) scale(1);
	transform-origin: center center;
	will-change: transform;
	pointer-events: none;
	user-select: none;
	-webkit-user-drag: none;
}
body.wb-zoom-open { overflow: hidden; }
body.wb-zoom-open .wb-tabbar,
body.wb-zoom-open .wb-fab { display: none !important; }

/* About */
.wb-about {
	display: grid; gap: 22px; margin-top: 12px;
}
@media (min-width: 860px) {
	.wb-about { grid-template-columns: 0.95fr 1.05fr; align-items: start; }
}
.wb-about-media {
	border-radius: 20px; overflow: hidden; border: 1px solid var(--line);
	min-height: 300px;
	background: url("../../web-old/images/banner1.jpg") center/cover no-repeat;
	box-shadow: var(--shadow);
}
.wb-prose { color: var(--ink); font-size: 0.98rem; }
.wb-prose p { margin: 0 0 14px; color: var(--muted); }
.wb-prose strong { color: var(--ink); }
.wb-callout {
	margin: 16px 0; padding: 14px 0 14px 16px;
	border-left: 3px solid var(--gold);
}
.wb-values {
	display: grid; gap: 12px; margin-top: 18px;
	grid-template-columns: 1fr;
}
@media (min-width: 640px) { .wb-values { grid-template-columns: repeat(3, 1fr); } }
.wb-value {
	padding: 16px;
	border-radius: 16px;
	background: var(--surface);
	border: 1px solid var(--line);
}
.wb-value h3 { margin: 0 0 6px; font-family: var(--display); font-size: 1.3rem; }
.wb-value p { margin: 0; color: var(--muted); font-size: 0.88rem; }

.wb-empty {
	padding: 28px; text-align: center; color: var(--muted);
	border: 1px dashed var(--line); border-radius: var(--radius); background: rgba(255,255,255,0.5);
}
.wb-back { display: inline-block; margin: 12px 0 4px; font-weight: 600; color: var(--muted); }

/* Map */
.wb-map-section {
	max-width: var(--max);
	margin: 28px auto 8px;
	padding: 0 16px;
}
.wb-main-bleed .wb-map-section {
	max-width: var(--max);
}
.wb-map-head { margin-bottom: 14px; }
.wb-map-frame {
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	background: var(--bg-deep);
	aspect-ratio: 16 / 10;
	min-height: 260px;
}
.wb-map-frame iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

/* Footer */
.wb-foot {
	margin-top: 28px; border-top: 1px solid var(--line);
	background: linear-gradient(180deg, transparent, rgba(63, 13, 16, 0.05));
}
.wb-foot-inner {
	max-width: var(--max); margin: 0 auto; padding: 28px 16px 36px; text-align: center;
}
.wb-foot-brand { font-family: var(--display); font-size: 1.7rem; margin: 0 0 4px; }
.wb-foot-tag, .wb-foot-addr, .wb-foot-phone, .wb-foot-note {
	margin: 6px 0; color: var(--muted); font-size: 0.9rem;
}
.wb-foot-note {
	margin-top: 14px; color: var(--maroon); font-family: var(--display);
	font-size: 1.2rem; font-weight: 700;
}

/* Mobile bottom tab bar */
.wb-tabbar {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 70;
	display: none;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	padding: 6px 8px calc(6px + env(safe-area-inset-bottom, 0px));
	background: rgba(255, 253, 248, 0.96);
	backdrop-filter: blur(14px);
	border-top: 1px solid var(--line);
	box-shadow: 0 -8px 24px rgba(63, 13, 16, 0.08);
}
.wb-tab {
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	min-height: 48px; color: var(--muted); font-size: 0.72rem; font-weight: 700;
	border-radius: 12px;
}
.wb-tab.is-active { color: var(--red); background: rgba(216, 1, 0, 0.07); }
.wb-tab-call { color: var(--green); }
@media (max-width: 860px) {
	.wb-tabbar { display: grid; }
}
@media (min-width: 861px) {
	body { padding-bottom: 24px; }
}

/* Motion — premium, lightweight */
.wb-reveal {
	opacity: 1;
	transform: none;
}
.wb-top.is-scrolled {
	box-shadow: 0 8px 24px rgba(63, 13, 16, 0.08);
}

@media (prefers-reduced-motion: no-preference) {
	.wb-hero-media { animation: wbKen 18s ease-in-out alternate both; }
	.wb-hero-glow { animation: wbGlow 5.5s ease-in-out infinite alternate; }
	.wb-hero-anim {
		opacity: 0;
		animation: wbRise 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
	}
	.wb-hero-brand.wb-hero-anim { animation-delay: 0.08s; }
	.wb-hero-lockup.wb-hero-anim { animation-delay: 0.08s; }
	.wb-hero-line.wb-hero-anim { animation-delay: 0.22s; }
	.wb-cta-row.wb-hero-anim { animation-delay: 0.36s; }

	.wb-hero-motes span { animation: wbMote 7s ease-in-out infinite; }
	.wb-hero-motes span:nth-child(1) { animation-delay: 0.2s; }
	.wb-hero-motes span:nth-child(2) { animation-delay: 1.4s; }
	.wb-hero-motes span:nth-child(3) { animation-delay: 2.6s; }
	.wb-hero-motes span:nth-child(4) { animation-delay: 0.9s; }
	.wb-hero-motes span:nth-child(5) { animation-delay: 3.3s; }

	.wb-temple-rail::after { animation: wbShimmer 4.5s ease-in-out infinite; }

	.wb-btn:hover::after { animation: wbSheen 0.7s ease; }
	.wb-btn-primary:hover { box-shadow: 0 10px 26px rgba(216,1,0,0.36); transform: translateY(-1px); }
	.wb-btn-solid:hover { box-shadow: 0 10px 26px rgba(0,152,13,0.3); transform: translateY(-1px); }

	.wb-nav-link {
		transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
	}
	.wb-chip { transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease; }
	.wb-chip:hover { transform: translateY(-2px); }

	.wb-size-row { transition: background 0.2s ease, padding-left 0.25s ease; }
	.wb-size-row:hover { padding-left: 22px; }
	.wb-size-go { transition: transform 0.25s ease; }
	.wb-size-row:hover .wb-size-go { transform: translateX(4px); }

	.wb-reveal {
		opacity: 0;
		transform: translateY(18px);
		transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
		transition-delay: var(--d, 0s);
	}
	.wb-reveal.is-in {
		opacity: 1;
		transform: none;
	}

	.wb-foot-note {
		animation: wbBless 3.8s ease-in-out infinite;
	}

	.wb-zoom.is-open { animation: wbFade 0.2s ease both; }
	.wb-product-media { transition: transform 0.3s ease, box-shadow 0.3s ease; }
	.wb-product-media:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(63, 13, 16, 0.12); }

	.wb-map-frame { transition: transform 0.35s ease, box-shadow 0.35s ease; }
	.wb-map-frame:hover { transform: translateY(-2px); }
}

@media (prefers-reduced-motion: reduce) {
	.wb-hero-media, .wb-hero-glow, .wb-hero-motes span, .wb-temple-rail::after, .wb-foot-note { animation: none !important; }
	.wb-hero-anim { opacity: 1 !important; animation: none !important; }
	.wb-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

@keyframes wbRise {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: none; }
}
@keyframes wbKen {
	from { transform: scale(1.03); }
	to { transform: scale(1.09); }
}
@keyframes wbGlow {
	from { opacity: 0.55; }
	to { opacity: 1; }
}
@keyframes wbMote {
	0% { opacity: 0; transform: translate3d(0, 20px, 0) scale(0.7); }
	15% { opacity: 0.85; }
	70% { opacity: 0.45; }
	100% { opacity: 0; transform: translate3d(12px, -120px, 0) scale(1); }
}
@keyframes wbShimmer {
	0%, 35% { transform: translateX(-120%); }
	65%, 100% { transform: translateX(120%); }
}
@keyframes wbSheen {
	from { transform: translateX(-130%); }
	to { transform: translateX(130%); }
}
@keyframes wbBless {
	0%, 100% { opacity: 0.78; letter-spacing: 0; }
	50% { opacity: 1; letter-spacing: 0.02em; }
}
@keyframes wbFade {
	from { opacity: 0; }
	to { opacity: 1; }
}
