/* ==========================================================================
   Jolly Green Theme — Main Stylesheet (v0.2.0)
   --------------------------------------------------------------------------
   Apple Park aesthetic. System fonts + Inter fallback. Bright clean palette
   with green accents. Alternating feature sections, 3×2 cats grid, parallax
   hero orb.

   Architecture:
   - Color tokens come from theme.json (--wp--preset--color--*).
   - Aliased to short var names below for clean component CSS.
   ========================================================================== */


/* ============ TOKENS ============ */
:root {
	--bg:           var(--wp--preset--color--bg);
	--bg-alt:       var(--wp--preset--color--bg-alt);
	--bg-soft:      var(--wp--preset--color--bg-soft);
	--bg-dark:      var(--wp--preset--color--bg-dark);
	--ink:          var(--wp--preset--color--ink);
	--ink-soft:     var(--wp--preset--color--ink-soft);
	--mute:         var(--wp--preset--color--mute);
	--green:        var(--wp--preset--color--green);
	--green-deep:   var(--wp--preset--color--green-deep);
	--green-bright: var(--wp--preset--color--green-bright);
	--line:         rgba(0, 0, 0, 0.10);
	--line-soft:    rgba(0, 0, 0, 0.06);
	--maxw:         1200px;
	--ease:         cubic-bezier(.28, .16, .22, 1);
	--sans:         var(--wp--preset--font-family--sans);
}


/* ============ BASE ============ */
* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; }
body {
	margin: 0; padding: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--sans);
	text-rendering: optimizeLegibility;
	overflow-x: clip;
	line-height: 1.47;
	font-size: 17px;
	letter-spacing: -0.022em;
}
body.jg-locked { overflow: hidden; height: 100vh; }
/* Template-part wrappers must not form a box, or the sticky nav
   would be trapped inside the short header region and un-stick. */
.wp-block-template-part { display: contents; }
a { color: var(--green); text-decoration: none; }
a.plain { color: inherit; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }


/* ============ AGE GATE ============ */
.gate {
	position: fixed; inset: 0; z-index: 1000;
	background: rgba(10, 13, 10, 0.88);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	display: flex; align-items: center; justify-content: center;
	padding: 24px;
	animation: jgFadeIn .5s var(--ease) both;
}
.gate.closing { animation: jgFadeOut .42s var(--ease) forwards; }
.gate.closing .gate-card { animation: jgCardLeave .42s var(--ease) forwards; }
@keyframes jgFadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes jgFadeOut { from { opacity: 1; } to { opacity: 0; } }
@keyframes jgCardLeave {
	from { transform: scale(1);    opacity: 1; }
	to   { transform: scale(1.04); opacity: 0; }
}
html.jg-age-ok #jg-gate { display: none; }
.gate-card {
	background: var(--bg-alt);
	border-radius: 24px;
	padding: 48px 40px;
	max-width: 456px; width: 100%;
	text-align: center;
	box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
	animation: jgRise .55s var(--ease);
}
@keyframes jgRise {
	from { transform: translateY(32px) scale(0.97); opacity: 0; }
	to   { transform: translateY(0) scale(1); opacity: 1; }
}
.gate-logo {
	width: 78px; height: 78px; margin: 0 auto 28px;
	/* rounding is baked into jollygreen-rounded.png — drop-shadow follows its alpha */
	filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.20));
}
.gate h2 {
	font-size: 30px; font-weight: 600; letter-spacing: -0.025em;
	margin: 0 0 10px; line-height: 1.15; color: var(--ink);
	text-wrap: balance;
}
.gate p {
	font-size: 15px; color: var(--ink-soft);
	margin: 0 0 30px; line-height: 1.55;
	text-wrap: balance;
}
.gate-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.gate .btn { padding: 13px 28px; font-size: 15px; min-width: 130px; }
.gate .btn-ghost {
	background: transparent; color: var(--ink-soft);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}
.gate .btn-ghost:hover { background: rgba(0, 0, 0, 0.04); color: var(--ink); }
.gate-remember {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	margin: 24px 0 0;
	font-size: 13px;
	color: var(--ink-soft);
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
}
.gate-remember input {
	-webkit-appearance: none;
	appearance: none;
	flex: none;
	width: 18px; height: 18px;
	margin: 0;
	border: 1.5px solid rgba(0, 0, 0, 0.22);
	border-radius: 6px;
	background: #fff;
	display: grid;
	place-content: center;
	cursor: pointer;
	transition: background .2s var(--ease), border-color .2s var(--ease);
}
.gate-remember input::after {
	content: "";
	width: 5px; height: 9px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg) translate(-0.5px, -1px);
	opacity: 0;
	transition: opacity .15s var(--ease);
}
.gate-remember input:checked {
	background: var(--green);
	border-color: var(--green);
}
.gate-remember input:checked::after { opacity: 1; }
.gate-remember input:focus-visible {
	outline: 2px solid var(--green);
	outline-offset: 2px;
}
/* p.gate-fine — needs to out-specify the generic `.gate p` rule above */
.gate p.gate-fine {
	margin: 18px 0 0;
	font-size: 12px; color: var(--mute);
	letter-spacing: 0.01em;
	text-wrap: balance;
}


/* ============ NAV ============ */
.nav {
	position: sticky; top: 0;
	z-index: 100;
	padding: 10px 16px;
}
/* Floating-island nav: the inner bar narrows + materialises on scroll */
.nav-inner {
	max-width: 1024px; margin: 0 auto;
	height: 56px;
	padding: 0 12px 0 18px;
	display: flex; align-items: center; justify-content: space-between;
	gap: 20px;
	border: 1px solid transparent;
	border-radius: 16px;
	transition: max-width .45s var(--ease), background .35s var(--ease),
	            border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.nav.scrolled .nav-inner {
	max-width: 884px;
	background: rgba(251, 251, 251, 0.82);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	backdrop-filter: saturate(180%) blur(20px);
	border-color: var(--line-soft);
	box-shadow: 0 16px 38px -16px rgba(0, 0, 0, 0.22),
	            0 2px 8px -3px rgba(0, 0, 0, 0.07);
}
.nav.menu-open .nav-inner {
	background: rgba(251, 251, 251, 0.98);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	border-color: var(--line-soft);
}
.brand {
	display: flex; align-items: center; gap: 9px;
	font-size: 17px; font-weight: 500; letter-spacing: -0.02em;
	color: var(--ink);
}
.brand-logo {
	width: 34px; height: 34px; border-radius: 8px;
	display: block;
	transition: transform .35s var(--ease);
}
.brand:hover .brand-logo { transform: rotate(-4deg) scale(1.06); }
.nav-links { display: flex; gap: 4px; }
.nav-links a {
	color: var(--ink); opacity: .85;
	font-size: 14px; letter-spacing: -0.01em; font-weight: 400;
	padding: 8px 14px; border-radius: 999px;
	transition: opacity .2s, background .2s, color .2s;
}
.nav-links a:hover { opacity: 1; background: rgba(0, 0, 0, 0.04); }
.nav-cta {
	background: var(--green); color: #fff;
	padding: 8px 16px; border-radius: 999px;
	font-size: 14px; font-weight: 500; letter-spacing: -0.005em;
	transition: background .25s, transform .25s var(--ease);
}
.nav-cta:hover { background: var(--green-deep); transform: translateY(-1px); color: #fff; }


/* ============ HERO + FEAT SHARED ============ */
.stack { padding-top: 0; }
.hero, .feat {
	text-align: center;
	padding: 60px 22px 0;
	display: flex; flex-direction: column; align-items: center;
	position: relative;
	overflow: hidden;
}
.hero { background: var(--bg); padding-top: 44px; padding-bottom: 60px; }
.hero-eyebrow {
	color: var(--green);
	font-size: 21px; font-weight: 600; letter-spacing: -0.022em;
	margin: 0 0 8px;
}
.hero h1, .feat h2 {
	font-size: clamp(40px, 6.4vw, 72px);
	font-weight: 600; letter-spacing: -0.025em;
	line-height: 1.0625;
	margin: 0;
	color: var(--ink);
	max-width: 900px;
}
.hero h1 .accent { color: var(--green); }
.hero h1 em, .feat h2 em {
	font-style: normal;
	background: linear-gradient(120deg, var(--green) 0%, var(--green-bright) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.feat-tag {
	color: var(--green);
	font-size: 21px; font-weight: 600; letter-spacing: -0.022em;
	margin: 0 0 8px;
}
.hero p.lede, .feat p.lede {
	font-size: clamp(19px, 2vw, 24px);
	font-weight: 400; letter-spacing: -0.022em;
	line-height: 1.21;
	max-width: 640px;
	color: var(--ink);
	margin: 16px auto 24px;
}
.ctas {
	display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
	margin-top: 4px;
}
.link {
	color: var(--green);
	font-size: 17px; font-weight: 400; letter-spacing: -0.022em;
	display: inline-flex; align-items: center; gap: 2px;
	transition: color .2s;
}
.link::after {
	content: "›"; font-weight: 500; margin-left: 4px;
	transition: transform .25s var(--ease);
	display: inline-block;
}
.link:hover { color: var(--green-deep); }
.link:hover::after { transform: translateX(3px); }
.btn {
	background: var(--green); color: #fff;
	padding: 11px 22px; border-radius: 999px;
	font-size: 17px; font-weight: 400; letter-spacing: -0.022em;
	transition: background .25s, transform .2s var(--ease);
	display: inline-flex; align-items: center; justify-content: center;
}
.btn:hover { background: var(--green-deep); color: #fff; }
.btn:active { transform: scale(0.97); }
.btn-dark { background: var(--ink); }
.btn-dark:hover { background: #000; }


/* ============ HERO VISUAL ============ */
.hero-art {
	margin-top: 28px;
	width: min(720px, 92vw);
	aspect-ratio: 1 / 1;
	position: relative;
	display: flex; align-items: center; justify-content: center;
}


/* ============ FEATURE TILE (alternating sections) ============ */
.feat {
	margin: 12px 22px 0;
	padding: 70px 22px 0;
	border-radius: 22px;
	overflow: hidden;
}
.feat-light { background: radial-gradient( ellipse 76% 58% at 50% 80%, #fafafb 0%, var(--bg-soft) 62% ); }
.feat-dark  { background: radial-gradient( ellipse 74% 55% at 50% 80%, #19251e 0%, var(--bg-dark) 62% ); color: #fff; }
.feat-dark h2 { color: #fff; }
.feat-dark p.lede { color: #f5f5f7; opacity: .85; }
.feat-green {
	background: linear-gradient(160deg, #166130 0%, #0e4523 100%);
	color: #fff;
}
.feat-green h2 { color: #fff; }
.feat-green p.lede { color: rgba(255, 255, 255, 0.9); }
.feat-green .feat-tag { color: var(--green-bright); }
.feat-dark .feat-tag  { color: var(--green-bright); }

.feat-art {
	margin-top: 32px;
	margin-bottom: -2px;
	width: 100%; max-width: 980px;
	height: 380px;
	position: relative;
	display: flex; align-items: center; justify-content: center;
}

/* feature chips */
.feat-chips {
	display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
	margin: 14px 0 4px;
}
.feat-chip {
	font-size: 13px; color: var(--ink-soft);
	background: rgba(0, 0, 0, 0.04);
	padding: 6px 14px; border-radius: 999px;
	letter-spacing: -0.01em;
}
.feat-dark .feat-chip,
.feat-green .feat-chip {
	background: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.9);
}


/* ============ TILE PAIR (2x stacked smaller features) ============ */
.tile-pair {
	display: grid; grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin: 12px 22px 0;
}
.tile {
	border-radius: 22px;
	overflow: hidden;
	padding: 50px 40px 44px;
	text-align: center;
	display: flex; flex-direction: column; align-items: center;
	position: relative;
	min-height: 580px;
}
.tile.t-light { background: radial-gradient( ellipse 82% 60% at 50% 74%, #fafafb 0%, var(--bg-soft) 64% ); color: var(--ink); }
.tile.t-dark  { background: radial-gradient( ellipse 80% 58% at 50% 74%, #19251e 0%, var(--bg-dark) 64% ); color: #fff; }
.tile .feat-tag { font-size: 19px; }
.tile h3 {
	font-size: clamp(32px, 3.6vw, 48px);
	font-weight: 600; letter-spacing: -0.025em;
	line-height: 1.08;
	margin: 0 0 14px;
	max-width: 420px;
	color: var(--ink);
}
.tile.t-dark h3 { color: #fff; }
.tile h3 em {
	font-style: normal;
	background: linear-gradient(120deg, var(--green) 0%, var(--green-bright) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.tile p {
	font-size: 17px; color: var(--ink-soft); margin: 0 0 18px;
	max-width: 320px;
}
.tile.t-dark p { color: rgba(255, 255, 255, 0.7); }
.tile-art {
	margin-top: auto;
	width: 100%; height: 240px;
	display: flex; align-items: center; justify-content: center;
	position: relative;
}


/* ============ CATEGORY GRID (3x2 small cards) ============ */
.cats-section { padding: 90px 22px 0; }
.cats-head {
	text-align: center; max-width: 700px; margin: 0 auto 36px;
}
.cats-head h2 {
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 600; letter-spacing: -0.025em;
	margin: 0 0 12px; line-height: 1.08;
	color: var(--ink);
}
.cats-head p {
	font-size: 19px; color: var(--ink-soft); margin: 0;
}
.cats-grid {
	max-width: var(--maxw); margin: 0 auto;
	display: grid; grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}
.cat-card {
	background: var(--bg-soft);
	border-radius: 18px;
	padding: 28px 24px 22px;
	text-align: center;
	display: flex; flex-direction: column; align-items: center;
	text-decoration: none; color: inherit;
	transition: transform .4s var(--ease), background .3s;
	position: relative; overflow: hidden;
	min-height: 240px;
}
.cat-card:hover { transform: translateY(-4px); background: #efefef; }
.cat-card:hover .cat-icon { transform: scale(1.08) rotate(-3deg); }
.cat-card:hover .cat-link::after { transform: translateX(3px); }

.cat-icon {
	width: 124px; height: 124px;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform .4s var(--ease);
	flex-shrink: 0;
}
.cat-img {
	max-width: 124px;
	max-height: 124px;
	object-fit: contain;
	transition: transform .4s var(--ease);
}
.cat-card:hover .cat-img { transform: scale(1.07); }
/* legacy gradient icon variants — retained, unused since v0.5.1 */
.cat-icon.i-preroll {
	width: 110px; height: 30px;
	border-radius: 999px;
	background: linear-gradient(90deg, #f4f1ea 0%, #f4f1ea 62%, #2a2a2a 62%, #1a1a1a 76%, #d4881c 76%, #a87a3c 100%);
	transform: rotate(-12deg);
	margin-top: 36px; margin-bottom: 48px;
	box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.2);
}
.cat-card:hover .cat-icon.i-preroll { transform: rotate(-16deg) scale(1.06); }
.cat-icon.i-edible {
	border-radius: 22px;
	background: linear-gradient(135deg, #3acb6a, #134d29);
	transform: rotate(-8deg);
}
.cat-card:hover .cat-icon.i-edible { transform: rotate(-12deg) scale(1.05); }
.cat-icon.i-vape {
	width: 36px; height: 96px; border-radius: 12px;
	background: linear-gradient(180deg, #1a1a1a, #0a0a0a);
	box-shadow: inset 0 -16px 30px rgba(47, 191, 94, 0.5);
}
.cat-icon.i-conc {
	background: radial-gradient(circle at 50% 50%, #ffd24d 0%, #d4881c 60%, #8a4d0c 100%);
}
.cat-icon.i-bev {
	width: 44px; height: 96px; border-radius: 10px 10px 4px 4px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 26%, #2fbf5e 26%, #1f6b3a 100%);
	border: 1.5px solid rgba(255, 255, 255, 0.7);
	box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.2);
}
.cat-card h3 {
	font-size: 19px; font-weight: 600; letter-spacing: -0.022em;
	margin: 0 0 4px;
}
.cat-card .meta {
	font-size: 13px; color: var(--mute); margin: 0 0 14px;
}
.cat-link {
	margin-top: auto;
	color: var(--green); font-size: 14px;
	display: inline-flex; align-items: center;
}
.cat-link::after { content: "›"; margin-left: 4px; transition: transform .25s var(--ease); }


/* ============ VISIT ============ */
.visit {
	padding: 100px 22px 30px;
	text-align: center;
	max-width: 720px; margin: 0 auto;
}
.visit h2 {
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 600; letter-spacing: -0.025em;
	margin: 0 0 16px; line-height: 1.08;
	color: var(--ink);
}
.visit p { font-size: 19px; color: var(--ink-soft); margin: 0 0 22px; }
.visit-grid {
	display: grid; grid-template-columns: repeat(3, 1fr);
	gap: 40px; margin: 50px 0 30px;
	text-align: center;
}
.visit-cell .k {
	font-size: 12px; color: var(--mute); text-transform: uppercase; letter-spacing: 0.06em;
	margin-bottom: 8px;
}
.visit-cell .v {
	font-size: 17px; color: var(--ink); font-weight: 500; letter-spacing: -0.022em;
	line-height: 1.4;
}
.visit-cell .v a { color: inherit; }
.visit-cell .v a:hover { color: var(--green); }


/* ============ FOOTER ============ */
footer.jg-footer {
	background: var(--bg);
	color: var(--mute);
	padding: 30px 22px 30px;
	font-size: 12px;
	line-height: 1.5;
}
.foot-inner {
	max-width: var(--maxw); margin: 0 auto;
	border-top: 1px solid var(--line-soft);
	padding-top: 24px;
}
.foot-row {
	display: flex; justify-content: space-between; align-items: flex-start;
	flex-wrap: wrap; gap: 16px;
}
.foot-row .links { display: flex; gap: 18px; flex-wrap: wrap; }
.foot-row a { color: var(--ink-soft); }
.foot-row a:hover { color: var(--green); }
.foot-disclaimer { margin-top: 14px; max-width: 800px; color: var(--mute); }
.foot-credit {
	margin-top: 18px;
	font-size: 12px;
	color: var(--mute);
	letter-spacing: -0.005em;
}
.foot-credit a {
	color: var(--green-bright, #2fbf5e);
	text-decoration: none;
	font-weight: 500;
	transition: opacity .2s;
}
.foot-credit a:hover { opacity: .75; }


/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }


/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
	.nav-links { display: none; }
	.tile-pair { grid-template-columns: 1fr; }
	.cats-grid { grid-template-columns: repeat(2, 1fr); }
	.visit-grid { grid-template-columns: 1fr; gap: 28px; }
	.feat, .tile { padding: 50px 24px 0; }
	.tile { min-height: 480px; }
	.feat-art { height: 280px; }
}
@media (max-width: 540px) {
	.cats-grid { grid-template-columns: 1fr; }
	.feat, .tile-pair { margin: 8px 12px 0; }
	.hero, .feat { padding-left: 18px; padding-right: 18px; }
}


/* ============ DEALS / PRODUCT SHOWCASE (v0.3.0) ============ */

/* Section shell — sits between cats-section and visit on the homepage */
.deals-section {
	padding: 100px 22px 30px;
	background: var(--bg);
}
.deals-head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 48px;
}
.deals-head .feat-tag { margin: 0 0 12px; }
.deals-head h2 {
	font-size: clamp(40px, 5.5vw, 64px);
	font-weight: 600; letter-spacing: -0.025em;
	line-height: 1.05; margin: 0 0 16px;
	color: var(--ink);
}
.deals-head h2 em {
	font-style: normal;
	background: linear-gradient(120deg, var(--green) 0%, var(--green-bright) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.deals-head .lede {
	font-size: 19px; color: var(--ink-soft);
	margin: 0; line-height: 1.45;
}

/* Product grid — used by both Weekly Deals and category feature rows */
.prod-grid {
	max-width: var(--maxw);
	margin: 0 auto;
	display: grid;
	gap: 14px;
}
.prod-grid-4 { grid-template-columns: repeat(4, 1fr); }
.prod-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Individual product card */
.prod-card {
	position: relative;
	background: var(--bg-soft);
	border-radius: 18px;
	padding: 22px 20px 20px;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: transform .4s var(--ease), background .3s;
	overflow: hidden;
	min-height: 360px;
}
.prod-card:hover {
	transform: translateY(-4px);
	background: #efefef;
}
.prod-card:hover .prod-vis { transform: scale(1.06) rotate(-3deg); }

/* Badges (Sale / Staff Pick) */
.prod-badge {
	position: absolute;
	top: 16px; right: 16px;
	z-index: 2;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 5px 10px;
	border-radius: 999px;
	line-height: 1;
}
.prod-badge-deal {
	background: var(--green);
	color: #fff;
}
.prod-badge-staff {
	background: var(--ink);
	color: #fff;
}

/* Visual wrapper — holds the real product image (or gradient fallback) */
.prod-vis-wrap {
	width: 100%;
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.prod-vis {
	transition: transform .4s var(--ease);
	will-change: transform;
}
/* Real product photo — white-bg product shots blend into the card via multiply */
.prod-img {
	max-width: 100%;
	max-height: 150px;
	object-fit: contain;
	transition: transform .4s var(--ease);
	will-change: transform;
}
.prod-card:hover .prod-img { transform: scale(1.06); }

/* Category-specific visual variants (mini versions of the section-level abstracts) */
.prod-vis.is-flower {
	width: 88px; height: 88px;
	border-radius: 50%;
	background: radial-gradient(circle at 38% 30%, #5fd584 0%, #1f8a3e 50%, #0e4d22 100%);
	box-shadow: 0 18px 30px -10px rgba(31, 138, 62, 0.4);
}
.prod-vis.is-preroll {
	width: 110px; height: 22px;
	border-radius: 999px;
	background: linear-gradient(90deg, #f4f1ea 0%, #f4f1ea 62%, #2a2a2a 62%, #1a1a1a 76%, #d4881c 76%, #a87a3c 100%);
	transform: rotate(-12deg);
	box-shadow: 0 8px 18px -6px rgba(0, 0, 0, 0.25);
}
.prod-vis.is-edible {
	width: 84px; height: 84px;
	border-radius: 18px;
	background: linear-gradient(135deg, #3acb6a, #1f6b3a 60%, #134d29 100%);
	transform: rotate(-8deg);
	box-shadow: 0 18px 30px -10px rgba(0, 0, 0, 0.25);
	position: relative;
}
.prod-vis.is-edible::after {
	content: ""; position: absolute; inset: 8px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.18);
}
.prod-vis.is-vape {
	width: 28px; height: 96px;
	border-radius: 10px;
	background: linear-gradient(180deg, #1a1a1a, #0a0a0a);
	box-shadow:
		0 18px 30px -10px rgba(0, 0, 0, 0.4),
		inset 0 -14px 24px rgba(47, 191, 94, 0.5),
		inset 0 4px 8px rgba(255, 255, 255, 0.12);
}
.prod-vis.is-concentrate {
	width: 80px; height: 80px;
	border-radius: 50%;
	background: radial-gradient(circle at 50% 50%, #ffd24d 0%, #d4881c 60%, #8a4d0c 100%);
	box-shadow: 0 18px 30px -10px rgba(212, 136, 28, 0.3);
}
.prod-vis.is-beverage {
	width: 42px; height: 100px;
	border-radius: 8px 8px 4px 4px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 26%, #2fbf5e 26%, #1f6b3a 100%);
	border: 1.5px solid rgba(255, 255, 255, 0.7);
	box-shadow: 0 10px 20px -6px rgba(0, 0, 0, 0.2);
}

/* Card text block */
.prod-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 1;
}
.prod-cat {
	font-size: 11px;
	color: var(--mute);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 500;
}
.prod-name {
	font-size: 17px;
	font-weight: 600;
	letter-spacing: -0.022em;
	line-height: 1.2;
	margin: 4px 0 0;
	color: var(--ink);
}
.prod-brand {
	font-size: 13px;
	color: var(--ink-soft);
	letter-spacing: -0.01em;
}
.prod-foot {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-top: auto;
	padding-top: 12px;
}
.prod-thc {
	font-size: 12px;
	color: var(--mute);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-weight: 500;
}
.prod-price {
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
}
.prod-price-was {
	font-size: 13px;
	color: var(--mute);
	text-decoration: line-through;
}
.prod-price-now {
	font-size: 17px;
	font-weight: 600;
	letter-spacing: -0.022em;
	color: var(--ink);
}
.prod-card:hover .prod-price-now { color: var(--green); }

/* Responsive */
@media (max-width: 1100px) {
	.prod-grid-4 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
	.prod-grid-4, .prod-grid-3 { grid-template-columns: repeat(2, 1fr); }
	.deals-section { padding: 70px 22px 20px; }
}
@media (max-width: 540px) {
	.prod-grid-4, .prod-grid-3 { grid-template-columns: 1fr; }
	.prod-card { min-height: auto; }
}


/* ============ LOCATION MAP (v0.5.0) ============ */
.visit-map {
	position: relative;
	max-width: 1400px;
	margin: 56px auto 0;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 30px 60px -28px rgba(0, 0, 0, 0.3);
}
.visit-map iframe {
	display: block;
	width: 100%;
	filter: grayscale(0.35) contrast(1.05);
	transition: filter .5s var(--ease);
}
.visit-map:hover iframe { filter: grayscale(0) contrast(1); }
.map-overlay {
	position: absolute;
	left: 24px;
	bottom: 24px;
	background: rgba(255, 255, 255, 0.97);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	padding: 20px 22px;
	box-shadow: 0 18px 34px -14px rgba(0, 0, 0, 0.35);
	max-width: 250px;
}
.map-overlay-tag {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--green);
	margin-bottom: 6px;
}
.map-overlay-addr {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--ink);
	line-height: 1.35;
	margin-bottom: 14px;
}
.map-overlay-btn {
	display: inline-block;
	background: var(--green);
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	padding: 9px 16px;
	border-radius: 999px;
	text-decoration: none;
	transition: background .25s, transform .25s var(--ease);
}
.map-overlay-btn:hover {
	background: var(--green-deep, #156128);
	transform: translateY(-1px);
}
@media (max-width: 640px) {
	.visit-map { margin-top: 40px; border-radius: 18px; }
	.visit-map iframe { height: 340px; }
	.map-overlay {
		left: 14px; right: 14px; bottom: 14px;
		max-width: none;
	}
}

/* ============ INTERACTION POLISH ============ */
.prod-card,
.cat-card {
	transition: transform .3s var(--ease), background .3s, box-shadow .3s;
}
.prod-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 22px 40px -24px rgba(0, 0, 0, 0.16);
}
/* Smoother default easing on reveals; stagger delay is set inline by JS. */
.reveal {
	transition: opacity .7s var(--ease), transform .7s var(--ease);
}
/* Honor reduced-motion on scroll reveals. */
@media (prefers-reduced-motion: reduce) {
	.reveal { transition: opacity .3s linear; transform: none; }
}


/* ============ LONG-FORM PAGES — Privacy / Terms (v0.5.0) ============ */
body.page main.wp-block-group {
	color: var(--ink);
}
body.page .wp-block-post-title {
	font-size: clamp(34px, 5vw, 52px);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.08;
	margin: 0 0 36px;
}
body.page .wp-block-post-content h2 {
	font-size: 22px;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--ink);
	margin: 40px 0 12px;
}
body.page .wp-block-post-content p {
	font-size: 16px;
	line-height: 1.7;
	color: var(--ink-soft);
	margin: 0 0 16px;
}
body.page .wp-block-post-content ul,
body.page .wp-block-post-content ol {
	font-size: 16px;
	line-height: 1.7;
	color: var(--ink-soft);
	padding-left: 22px;
	margin: 0 0 16px;
}
body.page .wp-block-post-content li { margin-bottom: 8px; }
body.page .wp-block-post-content strong { color: var(--ink); font-weight: 600; }
body.page .wp-block-post-content a {
	color: var(--green);
	text-decoration: underline;
	text-underline-offset: 2px;
}
body.page .wp-block-post-content a:hover { color: var(--green-deep, #156128); }
body.page .wp-block-post-content em { color: var(--mute); }


/* ============ v0.6.0 — BANNER / NAV / MOBILE / MOTION ============ */

/* --- Nav clearance: stack now owns the fixed-nav offset --- */
.stack { padding-top: 0; }

/* --- Same-day delivery banner — thin, Apple-style, above the nav --- */
.delivery-banner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	height: 36px;
	background: var(--green);
	text-decoration: none;
	font-size: 12.5px;
	letter-spacing: -0.006em;
	font-weight: 400;
}
.delivery-banner-text { color: rgba(255, 255, 255, 0.9); }
.delivery-banner-link {
	color: #fff;
	font-weight: 600;
}
.delivery-banner:hover .delivery-banner-link { text-decoration: underline; }

/* --- Hamburger button --- */
.nav-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px; height: 40px;
	padding: 0;
	background: none;
	border: none;
	cursor: pointer;
}
.nav-burger span {
	display: block;
	width: 22px; height: 2px;
	margin: 0 auto;
	background: var(--ink);
	border-radius: 2px;
	transition: transform .3s var(--ease), opacity .2s;
}
.nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Mobile dropdown menu --- */
.nav-mobile {
	display: none;
	position: absolute;
	top: 70px; left: 0; right: 0;
	flex-direction: column;
	background: rgba(251, 251, 251, 0.98);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	border: 1px solid var(--line-soft);
	border-radius: 16px;
	box-shadow: 0 20px 44px -18px rgba(0, 0, 0, 0.26);
	padding: 0 18px;
	max-height: 0;
	overflow: hidden;
	transition: max-height .38s var(--ease), padding .38s var(--ease);
}
.nav.menu-open .nav-mobile {
	max-height: 620px;
	padding: 8px 18px 16px;
}
.nav-mobile a {
	padding: 15px 4px;
	font-size: 17px;
	font-weight: 500;
	color: var(--ink);
	text-decoration: none;
	border-bottom: 1px solid var(--line-soft);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile-cta {
	margin-top: 14px;
	background: var(--green);
	color: #fff !important;
	text-align: center;
	border-radius: 999px;
	font-weight: 600;
}

/* --- Back to top button --- */
.to-top {
	position: fixed;
	right: 20px; bottom: 20px;
	width: 46px; height: 46px;
	border-radius: 50%;
	border: none;
	background: var(--ink);
	color: #fff;
	font-size: 19px;
	line-height: 1;
	cursor: pointer;
	z-index: 90;
	opacity: 0;
	transform: translateY(14px) scale(0.9);
	pointer-events: none;
	box-shadow: 0 12px 26px -8px rgba(0, 0, 0, 0.45);
	transition: opacity .3s var(--ease), transform .3s var(--ease), background .2s;
}
.to-top.visible {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}
.to-top:hover { background: var(--green); }

/* --- Hero entrance (pure CSS, runs on load, no JS dependency) --- */
.hero-eyebrow { opacity: 0; animation: jg-rise .7s var(--ease) .10s forwards; }
.hero h1      { opacity: 0; animation: jg-rise .7s var(--ease) .20s forwards; }
.hero .lede   { opacity: 0; animation: jg-rise .7s var(--ease) .30s forwards; }
.hero .ctas   { opacity: 0; animation: jg-rise .7s var(--ease) .40s forwards; }
@keyframes jg-rise {
	from { opacity: 0; transform: translateY(24px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* --- Reduced motion: disable hero entrance --- */
@media (prefers-reduced-motion: reduce) {
	.hero-eyebrow, .hero h1, .hero .lede, .hero .ctas, .hero-art {
		opacity: 1 !important; animation: none !important;
	}
	.delivery-banner-dot { animation: none; }
}

/* ============ v0.6.0 — MOBILE POLISH ============ */
@media (max-width: 900px) {
	.nav-cta { display: none; }
	.nav-burger { display: flex; }
	.nav-mobile { display: flex; }
	.visit-map { max-width: 100%; }
}
@media (max-width: 640px) {
	.delivery-banner { font-size: 11.5px; gap: 5px; }
	.to-top { width: 50px; height: 50px; right: 16px; bottom: 16px; font-size: 21px; }
	.hero h1 { font-size: clamp(38px, 11vw, 60px); }
	.deals-head h2 { font-size: clamp(34px, 9vw, 52px); }
	.prod-grid { gap: 12px; }
	.visit-map iframe { height: 320px; }
}
@media (max-width: 420px) {
	.brand span { font-size: 15px; }
	.hero, .feat { padding-left: 16px; padding-right: 16px; }
}


/* ============ v0.7.0 — MEMBERSHIP ============ */

/* --- Homepage rewards section --- */
.member {
	background: radial-gradient( ellipse 92% 70% at 50% 0%, #15291c 0%, #0f1c14 58% );
	color: #fff;
	padding: 104px 24px;
}
.member-inner { max-width: var(--maxw); margin: 0 auto; }
.member-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.member-head .feat-tag { color: var(--green-bright); margin: 0 0 12px; }
.member-head h2 {
	font-size: clamp(38px, 5vw, 60px);
	font-weight: 600; letter-spacing: -0.03em; line-height: 1.06;
	margin: 0 0 16px;
}
.member-head h2 em {
	font-style: normal;
	background: linear-gradient(120deg, var(--green-bright) 0%, #6fe89a 100%);
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.member-head .lede {
	font-size: 18px; color: rgba(255, 255, 255, 0.7);
	margin: 0; line-height: 1.5;
}
.member-perks {
	display: grid; grid-template-columns: repeat(3, 1fr);
	gap: 20px; max-width: 980px; margin: 0 auto 44px;
}
.member-perk {
	position: relative;
	background: linear-gradient( 180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025) );
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 34px 30px;
	box-shadow: 0 24px 48px -30px rgba(0, 0, 0, 0.85),
	            inset 0 1px 0 rgba(255, 255, 255, 0.06);
	transition: transform .4s var(--ease), border-color .35s, box-shadow .35s;
}
.member-perk:hover {
	transform: translateY(-5px);
	border-color: rgba(47, 191, 94, 0.35);
	box-shadow: 0 32px 56px -28px rgba(0, 0, 0, 0.9),
	            inset 0 1px 0 rgba(255, 255, 255, 0.09);
}
.member-perk-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px;
	border-radius: 14px;
	background: rgba(47, 191, 94, 0.13);
	border: 1px solid rgba(47, 191, 94, 0.22);
	color: var(--green-bright);
	margin-bottom: 20px;
	transition: transform .35s var(--ease);
}
.member-perk:hover .member-perk-icon { transform: scale(1.08); }
.member-perk-icon svg { width: 24px; height: 24px; }
.member-perk h3 {
	font-size: 18px; font-weight: 600; letter-spacing: -0.02em;
	margin: 0 0 8px; color: #fff;
}
.member-perk p {
	font-size: 14px; color: rgba(255, 255, 255, 0.62);
	line-height: 1.55; margin: 0;
}
.member .ctas { justify-content: center; }

/* --- Membership page --- */
.mp-hero {
	text-align: center;
	max-width: 760px;
	margin: 0 auto;
	padding: 72px 24px 64px;
}
.mp-hero .feat-tag { color: var(--green); margin: 0 0 14px; }
.mp-hero h1 {
	font-size: clamp(44px, 6.5vw, 76px);
	font-weight: 600; letter-spacing: -0.035em; line-height: 1.04;
	margin: 0 0 18px; color: var(--ink);
}
.mp-hero h1 em {
	font-style: normal;
	background: linear-gradient(120deg, var(--green) 0%, var(--green-bright) 100%);
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.mp-hero .lede {
	font-size: 19px; color: var(--ink-soft);
	line-height: 1.5; margin: 0 0 28px;
}
.mp-hero .ctas { justify-content: center; }

.mp-benefits {
	display: grid; grid-template-columns: repeat(3, 1fr);
	gap: 20px; max-width: 1080px; margin: 0 auto;
	padding: 0 24px 80px;
}
.mp-benefit {
	background: var(--bg-soft);
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 20px;
	padding: 34px 30px;
	transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.mp-benefit:hover {
	transform: translateY(-5px);
	border-color: rgba(0, 0, 0, 0.09);
	box-shadow: 0 22px 40px -24px rgba(0, 0, 0, 0.22);
}
.mp-benefit-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 50px; height: 50px;
	border-radius: 14px;
	background: rgba(33, 138, 62, 0.1);
	color: var(--green);
	margin-bottom: 20px;
	transition: transform .35s var(--ease);
}
.mp-benefit:hover .mp-benefit-icon { transform: scale(1.08); }
.mp-benefit-icon svg { width: 25px; height: 25px; }
.mp-benefit h3 {
	font-size: 21px; font-weight: 600; letter-spacing: -0.02em;
	margin: 0 0 10px; color: var(--ink);
}
.mp-benefit p {
	font-size: 15px; color: var(--ink-soft);
	line-height: 1.6; margin: 0;
}

.mp-how {
	background: radial-gradient( ellipse 92% 70% at 50% 0%, #15291c 0%, #0f1c14 58% );
	color: #fff;
	padding: 90px 24px;
}
.mp-how-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.mp-how-head .feat-tag { color: var(--green-bright); margin: 0 0 12px; }
.mp-how-head h2 {
	font-size: clamp(34px, 4.5vw, 52px); font-weight: 600;
	letter-spacing: -0.03em; margin: 0; color: #fff;
}
.mp-steps {
	display: grid; grid-template-columns: repeat(3, 1fr);
	gap: 24px; max-width: 1000px; margin: 0 auto;
}
.mp-step { text-align: center; padding: 0 12px; }
.mp-step-n {
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px; border-radius: 50%;
	background: linear-gradient(135deg, var(--green) 0%, var(--green-bright) 100%);
	color: #fff; font-size: 20px; font-weight: 600;
	margin-bottom: 18px;
}
.mp-step h4 {
	font-size: 19px; font-weight: 600; letter-spacing: -0.02em;
	margin: 0 0 8px; color: #fff;
}
.mp-step p {
	font-size: 14px; color: rgba(255, 255, 255, 0.62);
	line-height: 1.55; margin: 0;
}

.mp-cta {
	text-align: center;
	padding: 90px 24px 100px;
}
.mp-cta h2 {
	font-size: clamp(34px, 4.5vw, 54px); font-weight: 600;
	letter-spacing: -0.03em; margin: 0 0 12px; color: var(--ink);
}
.mp-cta p { font-size: 18px; color: var(--ink-soft); margin: 0 0 26px; }
.mp-cta .ctas { justify-content: center; }

/* --- Membership FAQ --- */
.mp-faq {
	max-width: 760px; margin: 0 auto;
	padding: 96px 24px;
}
.mp-faq-head { text-align: center; margin-bottom: 44px; }
.mp-faq-head .feat-tag { color: var(--green); margin: 0 0 12px; }
.mp-faq-head h2 {
	font-size: clamp(34px, 4.5vw, 52px); font-weight: 600;
	letter-spacing: -0.03em; margin: 0; color: var(--ink);
}
.mp-faq-list { border-top: 1px solid var(--line-soft); }
.mp-faq-item { border-bottom: 1px solid var(--line-soft); }
.mp-faq-item summary {
	list-style: none;
	cursor: pointer;
	display: flex; align-items: center; justify-content: space-between;
	gap: 24px;
	padding: 24px 0;
	font-size: 18px; font-weight: 600; letter-spacing: -0.015em;
	color: var(--ink);
	transition: color .2s var(--ease);
}
.mp-faq-item summary::-webkit-details-marker { display: none; }
.mp-faq-item summary:hover { color: var(--green); }
.mp-faq-item summary::after {
	content: "";
	flex: none;
	width: 9px; height: 9px;
	margin-right: 6px;
	border-right: 2px solid var(--mute);
	border-bottom: 2px solid var(--mute);
	transform: rotate(45deg);
	transition: transform .3s var(--ease), border-color .2s var(--ease);
}
.mp-faq-item[open] summary::after {
	transform: rotate(-135deg);
	border-color: var(--green);
}
.mp-faq-answer { padding: 0 48px 26px 0; }
.mp-faq-answer p {
	margin: 0;
	font-size: 16px; line-height: 1.62; color: var(--ink-soft);
}
.mp-faq-item[open] .mp-faq-answer { animation: mpFaqReveal .32s var(--ease); }
@keyframes mpFaqReveal {
	from { opacity: 0; transform: translateY(-4px); }
	to   { opacity: 1; transform: translateY(0); }
}
.mp-fineprint {
	text-align: center;
	margin: 40px 0 0;
	font-size: 13px; color: var(--mute);
	line-height: 1.5;
}
@media (prefers-reduced-motion: reduce) {
	.mp-faq-item[open] .mp-faq-answer { animation: none; }
}

@media (max-width: 860px) {
	.member-perks, .mp-benefits, .mp-steps { grid-template-columns: 1fr; }
	.member, .mp-how { padding-left: 18px; padding-right: 18px; }
	.member { padding-top: 72px; padding-bottom: 72px; }
}


/* ============ v0.7.1 — REAL PHOTOS IN HERO + FEATURE SECTIONS ============ */

/* --- Hero product photo --- */
.hero-photo {
	position: relative;
	width: 76%;
	max-width: 440px;
	height: auto;
	object-fit: contain;
}

/* --- Feature / tile product photos: clean, transparent, no tile --- */
.feat-photo {
	width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
.feat-photo img {
	max-width: 100%;
	object-fit: contain;
}
/* big feature sections — cap width so wide products (joints) don't span the section */
.feat-art .feat-photo { max-width: 460px; }
.feat-art .feat-photo img { max-height: 330px; }
/* paired tile sections — tile-art is only 240px tall */
.tile-art .feat-photo { max-width: 300px; }
.tile-art .feat-photo img { max-height: 190px; }

@media (max-width: 900px) {
	.feat-art .feat-photo img { max-height: 240px; }
	.hero-photo { width: 72%; max-width: 340px; }
}
@media (max-width: 540px) {
	.feat-art .feat-photo img { max-height: 200px; }
}


/* ============ v0.8.0 — SCROLL-REACTIVE PRODUCTS ============ */
/* JS drives transform per scroll frame — no CSS transition (would lag scroll). */
.hero-photo,
.feat-photo[data-grow] {
	will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
	.hero-photo,
	.feat-photo[data-grow] { transform: none !important; }
}


/* ============ v0.9.1 — INTERACTIVE STRAIN PICKER ============ */
.strain-pick {
	display: flex; flex-direction: column; align-items: center;
	margin-top: 22px;
}
/* iOS-style segmented control with a sliding thumb */
.strain-seg {
	position: relative;
	display: inline-flex;
	padding: 4px;
	background: rgba(0, 0, 0, 0.05);
	border-radius: 999px;
}
.strain-seg-btn {
	position: relative; z-index: 1;
	width: 102px;
	padding: 9px 0;
	border: none; background: none;
	font-family: inherit;
	font-size: 14px; font-weight: 500; letter-spacing: -0.01em;
	color: var(--ink-soft);
	cursor: pointer;
	border-radius: 999px;
	transition: color .3s var(--ease);
}
.strain-seg-btn:hover { color: var(--ink); }
.strain-seg-btn.is-active,
.strain-seg-btn.is-active:hover { color: #fff; }
.strain-seg-thumb {
	position: absolute;
	top: 4px; left: 4px;
	width: calc((100% - 8px) / 3);
	height: calc(100% - 8px);
	border-radius: 999px;
	background: linear-gradient(135deg, var(--green) 0%, var(--green-bright) 100%);
	box-shadow: 0 5px 14px -4px rgba(33, 138, 62, 0.55);
	transition: transform .42s var(--ease);
}
/* caption that swaps with the strain */
.strain-caption {
	position: relative;
	width: 100%; min-height: 24px;
	margin-top: 15px;
}
.strain-cap {
	position: absolute; left: 0; right: 0; top: 0;
	font-size: 14px; color: var(--mute);
	opacity: 0; transform: translateY(5px);
	transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.strain-cap.is-active { opacity: 1; transform: translateY(0); }
/* the bud stage — three buds cross-fade with a focus pull */
.strain-stage {
	position: relative;
	width: 100%; height: 330px;
}
.strain-bud {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	max-width: none; max-height: none;
	object-fit: contain;
	opacity: 0;
	transform: scale(0.86) translateY(12px);
	filter: blur(12px);
	transition: opacity .5s var(--ease),
	            transform .62s var(--ease),
	            filter .5s var(--ease);
	pointer-events: none;
}
.strain-bud.is-active {
	opacity: 1;
	transform: scale(1) translateY(0);
	filter: blur(0);
}
@media (max-width: 900px) { .strain-stage { height: 250px; } }
@media (max-width: 540px) { .strain-stage { height: 210px; } }
@media (max-width: 420px) { .strain-seg-btn { width: 90px; } }
@media (prefers-reduced-motion: reduce) {
	.strain-bud {
		transition: opacity .3s linear;
		transform: none !important; filter: none !important;
	}
	.strain-seg-thumb, .strain-cap { transition: none; }
}

/* --- 404 — page not found --- */
.notfound {
	text-align: center;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	min-height: 66vh;
	padding: 100px 24px 90px;
	background: var(--bg);
}
.nf-code {
	color: var(--green);
	font-size: 21px; font-weight: 600; letter-spacing: -0.022em;
	margin: 0 0 8px;
}
.notfound h1 {
	font-size: clamp(40px, 6vw, 68px);
	font-weight: 600; letter-spacing: -0.025em;
	line-height: 1.05; color: var(--ink);
	margin: 0 0 18px;
	text-wrap: balance;
}
.notfound .lede {
	font-size: clamp(18px, 2vw, 22px);
	font-weight: 400; letter-spacing: -0.022em;
	line-height: 1.4; color: var(--ink-soft);
	max-width: 520px;
	margin: 0 0 32px;
	text-wrap: balance;
}

/* --- Live store-open status pill (Visit section) --- */
.store-status {
	display: flex;
	width: fit-content;
	margin: 22px auto 6px;
	align-items: center;
	gap: 9px;
	padding: 9px 17px 9px 14px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 999px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
	font-size: 14px;
	letter-spacing: -0.012em;
	color: var(--ink-soft);
	text-decoration: none;
	transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.store-status:hover {
	border-color: rgba(0, 0, 0, 0.16);
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
	transform: translateY(-1px);
}
.store-status:focus-visible {
	outline: 2px solid var(--green);
	outline-offset: 3px;
}
.store-status-dot {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--mute);
	flex-shrink: 0;
}
.store-status-text strong { font-weight: 600; color: var(--ink); }
.store-status.is-open .store-status-dot {
	background: var(--green-bright);
	animation: jgStorePulse 2.6s ease-out infinite;
}
.store-status.is-open .store-status-text strong { color: var(--green-deep); }
.store-status.is-closed .store-status-dot { background: var(--mute); }
@keyframes jgStorePulse {
	0%   { box-shadow: 0 0 0 0 rgba(47, 191, 94, 0.5); }
	70%  { box-shadow: 0 0 0 8px rgba(47, 191, 94, 0); }
	100% { box-shadow: 0 0 0 0 rgba(47, 191, 94, 0); }
}
@media (prefers-reduced-motion: reduce) {
	.store-status.is-open .store-status-dot { animation: none; }
}

/* ===== Blog — single article ===== */
.article {
	max-width: 716px;
	margin: 0 auto;
	padding: 72px 24px 96px;
}
.article-kicker {
	font-size: 13px; font-weight: 600;
	letter-spacing: 0.04em; text-transform: uppercase;
	margin: 0 0 14px;
}
.article-kicker a { color: var(--green); text-decoration: none; }
.article-kicker a:hover { text-decoration: underline; }
.article-title {
	font-size: clamp(32px, 5vw, 50px);
	font-weight: 600; letter-spacing: -0.028em;
	line-height: 1.1; color: var(--ink);
	margin: 0 0 16px; text-wrap: balance;
}
.article-date { font-size: 14px; color: var(--mute); margin: 0 0 32px; }
.article-cover { margin: 0 0 40px; }
.article-cover img {
	width: 100%; height: auto;
	border-radius: 16px; display: block;
}
.article-body { font-size: 18px; line-height: 1.72; color: var(--ink-soft); }
.article-body p { margin: 0 0 24px; }
.article-body h2 {
	font-size: 28px; font-weight: 600; letter-spacing: -0.02em;
	line-height: 1.25; color: var(--ink); margin: 48px 0 16px;
}
.article-body h3 {
	font-size: 21px; font-weight: 600; letter-spacing: -0.015em;
	color: var(--ink); margin: 36px 0 12px;
}
.article-body a { color: var(--green); text-underline-offset: 2px; }
.article-body ul, .article-body ol { margin: 0 0 24px; padding-left: 24px; }
.article-body li { margin: 0 0 8px; }
.article-body img { max-width: 100%; height: auto; border-radius: 12px; }
.article-body figure { margin: 32px 0; }
.article-body figcaption {
	font-size: 13px; color: var(--mute);
	text-align: center; margin-top: 8px;
}
.article-body blockquote {
	margin: 32px 0; padding: 4px 0 4px 22px;
	border-left: 3px solid var(--green-bright);
	color: var(--ink); font-size: 20px; font-style: italic;
}
.article-body blockquote p:last-child { margin-bottom: 0; }
.article-body hr {
	border: 0; height: 1px; background: rgba(0, 0, 0, 0.1);
	margin: 40px 0;
}
.article-foot {
	margin-top: 56px; padding-top: 32px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	text-align: center;
}
.article-foot-note { font-size: 15px; color: var(--ink-soft); margin: 0 0 18px; }

/* ===== Blog — index / archive ===== */
.jg-blog {
	max-width: 1100px;
	margin: 0 auto;
	padding: 72px 24px 88px;
}
.blog-head { text-align: center; margin: 0 0 48px; }
.blog-kicker {
	font-size: 13px; font-weight: 600;
	letter-spacing: 0.04em; text-transform: uppercase;
	color: var(--green); margin: 0 0 10px;
}
.blog-h1 {
	font-size: clamp(30px, 4.5vw, 46px);
	font-weight: 600; letter-spacing: -0.028em;
	line-height: 1.12; color: var(--ink);
	margin: 0 0 12px; text-wrap: balance;
}
.blog-intro {
	font-size: 17px; color: var(--ink-soft);
	max-width: 520px; margin: 0 auto;
	line-height: 1.5; text-wrap: balance;
}
.blog-list .wp-block-post-template {
	list-style: none; margin: 0; padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 36px 28px;
}
.blog-list .wp-block-post-template > li { margin: 0; }
.blog-card-img { margin: 0 0 16px; overflow: hidden; border-radius: 14px; }
.blog-card-img img {
	width: 100%; aspect-ratio: 16 / 10;
	object-fit: cover; display: block;
	transition: transform .35s var(--ease);
}
.blog-list li:hover .blog-card-img img { transform: scale(1.03); }
.blog-card-cat {
	font-size: 12px; font-weight: 600;
	letter-spacing: 0.03em; text-transform: uppercase;
	margin: 0 0 8px;
}
.blog-card-cat a { color: var(--green); text-decoration: none; }
.blog-card-title {
	font-size: 20px; font-weight: 600;
	letter-spacing: -0.018em; line-height: 1.3; margin: 0 0 8px;
}
.blog-card-title a {
	color: var(--ink); text-decoration: none;
	transition: color .2s;
}
.blog-card-title a:hover { color: var(--green); }
.blog-card-excerpt {
	font-size: 15px; color: var(--ink-soft);
	line-height: 1.55; margin: 0 0 10px;
}
.blog-card-date { font-size: 13px; color: var(--mute); }
.blog-empty {
	text-align: center; color: var(--mute);
	font-size: 16px; padding: 40px 0;
}
.blog-pagination {
	display: flex; gap: 8px; flex-wrap: wrap;
	justify-content: center; align-items: center;
	margin-top: 56px;
}
.blog-pagination a, .blog-pagination .page-numbers {
	font-size: 15px; color: var(--ink-soft);
	text-decoration: none;
	padding: 8px 14px; border-radius: 10px;
}
.blog-pagination a:hover { background: var(--bg-soft); }
.blog-pagination .current {
	background: var(--green); color: #fff; font-weight: 600;
}
@media (max-width: 600px) {
	.blog-list .wp-block-post-template { grid-template-columns: 1fr; }
}

/* --- Ontario Authorized Cannabis Retailer seal --- */
.oca-seal {
	display: block;
	width: 140px; height: auto;
}
.oca-seal-link {
	display: block;
	width: 140px;
	transition: opacity .2s ease;
}
.oca-seal-link:hover { opacity: 0.72; }
.foot-meta {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
	text-align: right;
}
@media (max-width: 640px) {
	.foot-meta { align-items: flex-start; text-align: left; }
}

/* --- Contact page --- */
.contact-page {
	max-width: 760px;
	margin: 0 auto;
	padding: 92px 24px 60px;
	text-align: center;
}
.contact-page h1 {
	font-size: clamp(34px, 5vw, 52px);
	font-weight: 600; letter-spacing: -0.028em;
	line-height: 1.1; color: var(--ink);
	margin: 0 0 16px; text-wrap: balance;
}
.contact-intro {
	font-size: 17px; color: var(--ink-soft);
	line-height: 1.55; max-width: 520px;
	margin: 0 auto; text-wrap: balance;
}

/* --- Nav: Shop dropdown menu --- */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item.has-menu > a::after {
	content: '';
	display: inline-block;
	width: 5px; height: 5px;
	margin-left: 6px;
	vertical-align: middle;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform .25s var(--ease);
	opacity: 0.5;
}
.nav-item.has-menu:hover > a::after,
.nav-item.has-menu:focus-within > a::after {
	transform: translateY(0) rotate(225deg);
	opacity: 0.85;
}
.nav-menu {
	position: absolute;
	top: 100%; left: 0;
	margin-top: 8px;
	transform: translateY(6px);
	min-width: 190px;
	display: flex; flex-direction: column; gap: 1px;
	padding: 7px;
	background: rgba(251, 251, 251, 0.97);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	backdrop-filter: saturate(180%) blur(20px);
	border: 1px solid var(--line-soft);
	border-radius: 14px;
	box-shadow: 0 18px 42px -14px rgba(0, 0, 0, 0.26);
	opacity: 0; visibility: hidden; pointer-events: none;
	transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
	z-index: 60;
}
.nav-menu::before {
	content: '';
	position: absolute;
	top: -12px; left: 0; right: 0; height: 12px;
}
.nav-item.has-menu:hover .nav-menu,
.nav-item.has-menu:focus-within .nav-menu {
	opacity: 1; visibility: visible; pointer-events: auto;
	transform: translateY(0);
}
.nav-menu a {
	padding: 9px 13px;
	border-radius: 9px;
	font-size: 14px;
	white-space: nowrap;
	color: var(--ink-soft);
	opacity: 1;
}
.nav-menu a:hover {
	background: rgba(0, 0, 0, 0.05);
	color: var(--ink);
	opacity: 1;
}

/* --- Mobile nav: Shop category sub-items --- */
.nav-mobile a.nav-mobile-cat {
	padding: 10px 4px 10px 18px;
	font-size: 15px;
	font-weight: 400;
	color: var(--ink-soft);
}


/* ---- Full-bleed guard (v0.9.20) ----------------------------------------
   Templates built from native WP blocks (home/blog, archive, single) make
   WordPress emit a constrained root layout that boxes the header bar and
   footer into a centred column. These three elements are edge-to-edge by
   design — break them out of any inherited width so they render full-bleed
   on every template. body{overflow-x:clip} keeps the 100vw width safe. */
.wp-site-blocks .delivery-banner,
.wp-site-blocks .nav,
.wp-site-blocks footer.jg-footer {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}


/* ---- Flow-spacing guard (v0.9.24) --------------------------------------
   On templates built from native WP blocks (home/blog, archive, single)
   WordPress injects flow-layout top margins onto the header children and
   <main> — opening gaps above the banner, above the nav and above the page
   content. WP's layout CSS uses a doubled-class specificity hack, so a
   plain class override ties and loses; !important is required to win.
   The theme spaces all of these itself. */
.wp-site-blocks { padding-top: 0; }
.wp-site-blocks .delivery-banner,
.wp-site-blocks .nav,
.wp-site-blocks > main,
.wp-site-blocks footer.jg-footer {
	margin-top: 0 !important;
	margin-block-start: 0 !important;
}


/* ===== Delivery page ==================================================== */
.delivery-hero {
	text-align: center;
	max-width: 760px;
	margin: 0 auto;
	padding: 76px 24px 56px;
}
.delivery-hero .feat-tag { color: var(--green); margin: 0 0 14px; }
.delivery-hero h1 {
	font-size: clamp(38px, 5.6vw, 66px);
	line-height: 1.06;
	letter-spacing: -0.035em;
	font-weight: 600;
	margin: 0 0 22px;
}
.delivery-hero h1 em { font-style: normal; color: var(--green); }
.delivery-hero .lede {
	font-size: clamp(18px, 2vw, 22px);
	color: var(--ink-soft);
	line-height: 1.5;
	max-width: 600px;
	margin: 0 auto 30px;
}

.delivery-how {
	max-width: 1140px;
	margin: 0 auto;
	padding: 36px 24px 8px;
}
.delivery-how-head { text-align: center; margin-bottom: 48px; }
.delivery-how-head .feat-tag { color: var(--green); margin: 0 0 10px; }
.delivery-how-head h2 {
	font-size: clamp(30px, 4vw, 46px);
	letter-spacing: -0.03em;
	font-weight: 600;
	margin: 0;
}
.delivery-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.delivery-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.delivery-step-media {
	width: 100%;
	background: #f5f5f5;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.05);
}
.delivery-step-media img { display: block; width: 100%; height: auto; }
.delivery-step-num {
	display: grid;
	place-content: center;
	width: 34px; height: 34px;
	margin: 26px 0 14px;
	border-radius: 50%;
	background: var(--green);
	color: #fff;
	font-size: 16px; font-weight: 600;
}
.delivery-step h3 {
	font-size: 21px;
	letter-spacing: -0.02em;
	font-weight: 600;
	margin: 0 0 10px;
}
.delivery-step p {
	font-size: 15px;
	line-height: 1.62;
	color: var(--ink-soft);
	margin: 0;
	max-width: 340px;
}

.delivery-cta {
	max-width: 900px;
	margin: 8px auto 100px;
	padding: 64px 40px;
	background: var(--green-deep);
	border-radius: 28px;
	text-align: center;
}
.delivery-cta h2 {
	font-size: clamp(28px, 3.4vw, 40px);
	letter-spacing: -0.03em;
	font-weight: 600;
	color: #fff;
	margin: 0 0 12px;
}
.delivery-cta p {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.82);
	margin: 0 0 26px;
}
.delivery-cta .btn { background: #fff; color: var(--green-deep); }
.delivery-cta .btn:hover { background: rgba(255, 255, 255, 0.9); }

@media (max-width: 860px) {
	.delivery-steps {
		grid-template-columns: 1fr;
		gap: 40px;
		max-width: 420px;
		margin: 0 auto;
	}
	.delivery-cta { margin: 8px 16px 72px; padding: 52px 26px; }
}
