:root {
	--color-blue: #2F80FF;
	--color-blue-bright: #4D9AFF;
	--color-lime: #B6FF3B;
	--color-lime-dk: #9AE622;
	--color-black: #0A0B0D;
	--color-charcoal: #16181D;
	--color-silver: #8B939E;
	--color-white: #FFFFFF;
	--color-ice: #EEF1F5;
	--color-orange: #FF8A34;
	--font-display: 'Bebas Neue', 'Sora', sans-serif;
	--font-heading: 'Sora', sans-serif;
	--font-body: 'Inter', sans-serif;
	--shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
	--shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.08);
	--radius: 12px;
	--radius-lg: 20px;
	--radius-xl: 28px;
	--container: 1280px;
	--container-wide: 1400px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--color-charcoal);
	background: var(--color-ice);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 400;
	line-height: 0.95;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}
a { color: inherit; text-decoration: none; transition: color .2s, transform .2s, box-shadow .2s; }
a:hover { color: var(--color-blue); }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: var(--container-wide); }
.section { padding: 88px 0; }
.section-dark { background: var(--color-black); color: var(--color-white); }
.section-dark .section-sub { color: rgba(255,255,255,.72); }
.section-title {
	text-align: center;
	margin: 0 0 12px;
	font-size: clamp(2.5rem, 6vw, 4.25rem);
}
.section-sub {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 48px;
	color: rgba(22,24,29,.68);
	font-size: 1.05rem;
	line-height: 1.65;
}
.section-cta { text-align: center; margin-top: 44px; }

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 32px;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: .08em;
	text-transform: uppercase;
	border-radius: 999px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all .25s;
}
.btn-primary {
	background: var(--color-lime);
	color: var(--color-black);
	box-shadow: 0 8px 28px rgba(182,255,59,.35);
}
.btn-primary:hover {
	background: var(--color-white);
	color: var(--color-black);
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(255,255,255,.25);
}
.btn-secondary {
	background: transparent;
	color: var(--color-white);
	border-color: var(--color-lime);
}
.btn-secondary:hover {
	background: var(--color-lime);
	color: var(--color-black);
}
.btn-outline {
	background: transparent;
	color: var(--color-black);
	border-color: var(--color-black);
}
.btn-outline:hover {
	background: var(--color-black);
	color: var(--color-lime);
}
.btn-sm { padding: 12px 22px; font-size: 11px; }

.announcement-bar {
	background: var(--color-lime);
	color: var(--color-black);
	text-align: center;
	padding: 11px 16px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.site-header {
	background: var(--color-black);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; gap: 20px; }
.site-logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 48px; width: auto; }
.logo-text { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: .1em; color: var(--color-white); }
.main-navigation { flex: 1; display: flex; justify-content: center; }
.nav-menu { display: flex; list-style: none; margin: 0; padding: 0; gap: 28px; }
.nav-menu a {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: rgba(255,255,255,.82);
}
.nav-menu a:hover { color: var(--color-lime); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-icon { background: none; border: none; cursor: pointer; color: var(--color-white); position: relative; padding: 4px; display: flex; }
.cart-count {
	position: absolute; top: -6px; right: -8px;
	background: var(--color-lime); color: var(--color-black);
	font-size: 10px; font-weight: 700;
	width: 18px; height: 18px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
}
.header-cta { display: none; }
@media (min-width: 1025px) {
	.header-cta { display: inline-flex; }
}
.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.mobile-menu-toggle span { width: 24px; height: 2px; background: var(--color-white); }

.cart-drawer { position: fixed; inset: 0; z-index: 2000; pointer-events: none; }
.cart-drawer.is-open { pointer-events: auto; }
.cart-drawer-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); opacity: 0; transition: opacity .3s; }
.cart-drawer.is-open .cart-drawer-overlay { opacity: 1; }
.cart-drawer-panel {
	position: absolute; top: 0; right: 0; width: 100%; max-width: 420px; height: 100%;
	background: var(--color-white); transform: translateX(100%); transition: transform .3s;
	display: flex; flex-direction: column;
}
.cart-drawer.is-open .cart-drawer-panel { transform: translateX(0); }
.cart-drawer-header { display: flex; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--color-ice); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 20px; }
.cart-drawer-close { background: none; border: none; font-size: 28px; cursor: pointer; }

.hero-cinematic { position: relative; padding: 0; overflow: hidden; background: var(--color-black); min-height: 92vh; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-image { width: 100%; height: 100%; object-fit: cover; opacity: 1; object-position: 68% center; }
.hero-bg-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(100deg, rgba(10,11,13,.93) 0%, rgba(10,11,13,.78) 34%, rgba(10,11,13,.25) 58%, rgba(10,11,13,0) 72%);
}
.hero-cinematic .hero-grid {
	position: relative; z-index: 1;
	padding: 100px 0 80px;
	display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.hero-grid-single { grid-template-columns: 1fr; max-width: 760px; }
.hero-cinematic h1 {
	font-size: clamp(3rem, 8vw, 5.5rem);
	color: var(--color-white);
	margin: 0 0 20px;
	max-width: 720px;
}
.eyebrow {
	display: inline-block;
	font-size: 11px; font-weight: 700;
	letter-spacing: .18em; text-transform: uppercase;
	color: var(--color-lime); margin-bottom: 16px;
}
.hero-sub { font-size: 1.12rem; color: rgba(255,255,255,.78); margin-bottom: 32px; max-width: 520px; line-height: 1.7; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-badges span {
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(182,255,59,.35);
	padding: 10px 16px; border-radius: 999px;
	font-size: 11px; font-weight: 700; text-transform: uppercase;
	letter-spacing: .06em; color: var(--color-white);
}

.trust-bar { background: var(--color-charcoal); padding: 20px 0; border-top: 3px solid var(--color-lime); }
.trust-list {
	display: flex; justify-content: center; flex-wrap: wrap; gap: 32px;
	list-style: none; margin: 0; padding: 0;
	color: var(--color-white); font-size: 11px; font-weight: 700;
	text-transform: uppercase; letter-spacing: .1em;
}

.shop-by-flavor { background: var(--color-white); }
.shop-by-flavor .container { max-width: var(--container-wide); padding-left: 32px; padding-right: 32px; }
.flavor-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 32px; align-items: stretch; }
.flavor-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--color-white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	border: 1px solid rgba(0,0,0,.06);
	transition: transform .3s, box-shadow .3s;
}
.flavor-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); color: inherit; }
.flavor-card-media { position: relative; aspect-ratio: 3/4; overflow: hidden; background: #0a0b0d; flex-shrink: 0; }
.flavor-image { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center 20%; }
.flavor-card-body { display: flex; flex-direction: column; flex: 1; padding: 24px 22px 28px; text-align: center; background: var(--color-white); }
.flavor-card h3 { margin: 0 0 8px; font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; text-transform: none; letter-spacing: 0; }
.flavor-card p { margin: 0 0 12px; font-size: 14px; color: rgba(22,24,29,.65); line-height: 1.5; min-height: 42px; }
.flavor-card-meta { display: block; font-size: 12px; font-weight: 700; color: var(--color-blue); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 10px; }
.flavor-card-cta { display: block; margin-top: auto; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--color-black); }
.theme-image, .product-image, .lifestyle-use-image, .subscription-image, .ingredient-image { width: 100%; height: 100%; object-fit: cover; }

.featured-products { background: var(--color-ice); }
.featured-products .container { max-width: var(--container-wide); }
.product-fallback-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; align-items: stretch; }
.product-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--color-white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	border: 1px solid rgba(0,0,0,.06);
	transition: transform .3s;
}
.product-card:hover { transform: translateY(-6px); }
.product-card-media { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--color-black); flex-shrink: 0; }
.product-image { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center 20%; }
.product-card-body { display: flex; flex-direction: column; flex: 1; padding: 22px 22px 26px; }
.product-card h3 { margin: 0 0 10px; font-family: var(--font-heading); font-size: 1rem; font-weight: 700; text-transform: none; letter-spacing: 0; line-height: 1.35; }
.product-card .price { color: var(--color-blue); font-weight: 800; font-size: 1.1rem; }
.product-card-link { display: flex; flex-direction: column; height: 100%; color: inherit; }
.product-card-link:hover { color: inherit; }
.product-card-cta { display: block; margin-top: auto; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.lifestyle-use-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.lifestyle-use-card { background: rgba(255,255,255,.06); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,.1); }
.lifestyle-use-card h3 { padding: 14px 14px 4px; font-size: 1rem; font-family: var(--font-heading); text-transform: none; letter-spacing: 0; }
.lifestyle-use-card p { padding: 0 14px 16px; font-size: 13px; opacity: .75; margin: 0; }
.lifestyle-use-media { aspect-ratio: 3/2; overflow: hidden; }
.lifestyle-use-image { width: 100%; height: 100%; object-fit: cover; }

.ingredients-highlight { background: var(--color-black); color: var(--color-white); }
.ingredients-highlight .section-title { color: var(--color-white); }
.ingredients-highlight .section-sub { color: rgba(255,255,255,.78); max-width: 760px; }
.ingredient-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.ingredient-card {
	background: rgba(255,255,255,.04);
	padding: 32px 24px 28px;
	border-radius: var(--radius-lg);
	text-align: center;
	border: 1px solid rgba(255,255,255,.08);
	transition: border-color .25s, transform .25s;
}
.ingredient-card:hover { border-color: var(--color-lime); transform: translateY(-4px); }
.ingredient-card h3 { font-family: var(--font-heading); font-size: 1.05rem; text-transform: none; letter-spacing: 0; margin: 0 0 12px; }
.ingredient-card p { margin: 0; font-size: 14px; line-height: 1.65; color: rgba(255,255,255,.72); }
.ingredient-media { width: 100%; max-width: 200px; aspect-ratio: 1; margin: 0 auto 20px; border-radius: var(--radius-lg); overflow: hidden; border: 2px solid rgba(182,255,59,.45); background: #0f1014; }
.ingredient-image { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.ingredient-disclaimer { text-align: center; max-width: 760px; margin: 32px auto 0; color: rgba(255,255,255,.55); font-size: 12px; }
.ingredients-highlight .btn-outline { color: var(--color-white); border-color: var(--color-lime); }
.ingredients-highlight .btn-outline:hover { background: var(--color-lime); color: var(--color-black); }

.reviews-carousel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: var(--color-white); padding: 32px; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.review-stars { color: var(--color-orange); margin-bottom: 12px; font-size: 1.1rem; }

.subscription-section { background: linear-gradient(135deg, var(--color-blue) 0%, #1a4fd4 50%, var(--color-black) 100%); color: var(--color-white); }
.subscription-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.subscription-inner h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); color: var(--color-white); margin: 0 0 16px; }
.subscription-inner p { font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,.85); margin: 0 0 20px; }
.subscription-benefits { list-style: none; padding: 0; margin: 0 0 28px; }
.subscription-benefits li {
	padding: 10px 0 10px 28px; position: relative;
	font-weight: 600; font-size: 15px;
}
.subscription-benefits li::before { content: "✓"; position: absolute; left: 0; color: var(--color-lime); font-weight: 800; }
.subscription-visual { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 7/6; }
.subscription-image { width: 100%; height: 100%; object-fit: cover; }
.accent-lime { color: var(--color-lime) !important; }

.email-capture { background: var(--color-black); color: var(--color-white); text-align: center; }
.email-capture-form { display: flex; gap: 12px; max-width: 520px; margin: 24px auto; flex-wrap: wrap; justify-content: center; }
.email-capture-form input { flex: 1; min-width: 220px; padding: 16px 18px; border: none; border-radius: 999px; font-size: 15px; }

.site-footer { background: var(--color-black); color: var(--color-white); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-links h4 { color: var(--color-lime); font-family: var(--font-body); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.footer-links ul { list-style: none; padding: 0; }
.footer-links a { color: rgba(255,255,255,.75); font-size: 14px; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; opacity: .7; }

.rich-content { max-width: 780px; line-height: 1.75; font-size: 1.02rem; }
.rich-content .lead { font-size: 1.2rem; margin-bottom: 28px; color: rgba(22,24,29,.82); }
.rich-content h2 { font-family: var(--font-display); font-size: 2rem; margin: 2rem 0 1rem; text-transform: uppercase; }
.education-hero { position: relative; height: min(56vh, 520px); min-height: 360px; overflow: hidden; background: var(--color-black); }
.education-hero-image { width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.education-hero-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(10,11,13,.94) 0%, rgba(10,11,13,.72) 38%, rgba(10,11,13,.15) 72%, transparent 100%);
	display: flex; align-items: center; color: var(--color-white);
}
.education-hero-overlay h1 { font-size: clamp(2.8rem, 7vw, 4.5rem); margin: 8px 0 0; max-width: 640px; }
.education-page .rich-content .lead { font-size: 1.15rem; margin-bottom: 0; }
.education-page--catalog .education-intro {
	max-width: var(--container-wide);
	margin: 0 auto;
	padding: 56px 32px 0;
}
.education-page--catalog .education-body {
	max-width: 780px;
	margin: 0 auto;
	padding: 48px 32px 0;
	line-height: 1.75;
}
.education-sidebar--catalog {
	max-width: var(--container-wide);
	margin: 48px auto 64px;
	padding: 0 32px;
}
.product-showcase-band {
	width: 100%;
	margin: 32px 0 0;
	padding: 40px 32px;
	background: var(--color-white);
	border-top: 1px solid rgba(0,0,0,.06);
	border-bottom: 1px solid rgba(0,0,0,.06);
}
.flavor-showcase-grid, .pack-showcase-grid {
	display: grid;
	gap: 32px;
	margin: 0 auto;
	width: 100%;
	max-width: var(--container-wide);
	align-items: stretch;
}
.flavor-showcase-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.pack-showcase-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.flavor-showcase-card, .pack-showcase-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--color-white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	border: 1px solid rgba(0,0,0,.06);
	transition: transform .25s, box-shadow .25s;
	color: inherit;
}
.flavor-showcase-card:hover, .pack-showcase-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); color: inherit; }
.flavor-showcase-media, .pack-showcase-media { position: relative; overflow: hidden; background: var(--color-black); flex-shrink: 0; }
.flavor-showcase-media { aspect-ratio: 3/4; }
.pack-showcase-media { aspect-ratio: 4/3; }
.flavor-showcase-media img, .pack-showcase-media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center 20%;
}
.flavor-showcase-body, .pack-showcase-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 24px 26px 28px;
}
.flavor-showcase-body h3, .pack-showcase-body h3 { margin: 0 0 10px; font-family: var(--font-heading); font-size: 1.1rem; text-transform: none; letter-spacing: 0; }
.flavor-showcase-body p, .pack-showcase-body p { margin: 0 0 12px; font-size: 14px; color: rgba(22,24,29,.68); line-height: 1.55; min-height: 44px; }
.flavor-showcase-meta, .pack-showcase-price { display: block; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--color-blue); margin-bottom: 10px; }
.flavor-showcase-link, .pack-showcase-link { display: block; margin-top: auto; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.formula-grid, .science-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 28px 0 36px; }
.formula-card, .science-card { background: var(--color-ice); border-radius: var(--radius-lg); padding: 24px; border: 1px solid rgba(0,0,0,.06); }
.formula-card h3, .science-card h3 { margin: 0 0 10px; font-family: var(--font-heading); font-size: 1rem; text-transform: none; letter-spacing: 0; }
.education-layout { display: grid; grid-template-columns: 1fr 280px; gap: 48px; padding: 56px 0; }
.education-sidebar { background: var(--color-white); padding: 28px; border-radius: var(--color-lg); box-shadow: var(--shadow-soft); position: sticky; top: 100px; height: fit-content; border: 1px solid rgba(0,0,0,.06); }
.education-sidebar h3 { font-family: var(--font-heading); text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; margin: 0 0 16px; }
.education-sidebar ul { list-style: none; padding: 0; margin: 0; }
.education-sidebar li { margin-bottom: 12px; }
.education-sidebar a { font-weight: 600; font-size: 14px; }
.education-sidebar a:hover { color: var(--color-blue); }

.ingredients-page .ingredients-intro { text-align: center; max-width: 720px; margin: 40px auto 48px; font-size: 1.12rem; }
.ingredients-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; padding-bottom: 56px; }
.ingredient-detail-card {
	background: var(--color-white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 0;
	align-items: stretch;
}
.ingredient-detail-image { width: 100%; height: 100%; min-height: 240px; object-fit: cover; object-position: center; }
.ingredient-detail-body { padding: 28px 32px 32px; display: flex; flex-direction: column; justify-content: center; }
.ingredient-detail-card h2 { font-family: var(--font-heading); font-size: 1.25rem; text-transform: none; letter-spacing: 0; margin: 0 0 14px; }
.ingredient-detail-card p { margin: 0 0 14px; font-size: 15px; line-height: 1.7; color: rgba(22,24,29,.78); }
.ingredient-found { font-size: 13px !important; color: var(--color-blue) !important; margin-bottom: 0 !important; margin-top: auto !important; }

.free-shipping-bar { background: var(--color-white); padding: 14px; border-radius: var(--radius); margin-bottom: 20px; border-left: 4px solid var(--color-lime); }
.progress-track { height: 6px; background: var(--color-silver); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--color-blue); }

.flavor-badge { display: inline-block; background: var(--color-lime); color: var(--color-black); padding: 6px 14px; border-radius: 100px; font-size: 11px; font-weight: 700; text-transform: uppercase; margin-bottom: 12px; }
.purchase-options { margin-bottom: 16px; }
.purchase-option { display: flex; gap: 10px; align-items: center; margin-bottom: 8px; font-size: 14px; }
.product-trust-badges { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px; font-size: 11px; text-transform: uppercase; font-weight: 600; color: rgba(33,37,41,.6); }

.sticky-add-to-cart { position: fixed; bottom: 0; left: 0; right: 0; background: var(--color-white); box-shadow: 0 -4px 24px rgba(0,0,0,.1); padding: 12px 0; transform: translateY(100%); transition: transform .3s; z-index: 999; }
.sticky-add-to-cart.is-visible { transform: translateY(0); }
.sticky-add-to-cart-inner { display: flex; justify-content: space-between; align-items: center; }

.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { background: var(--color-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }

/* Single product page */
.islalngvity-product { padding: 40px 0 72px; }
.product-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 56px;
	align-items: start;
	margin-bottom: 64px;
}
.product-gallery-column { position: sticky; top: 110px; }
.product-gallery-column .woocommerce-product-gallery,
.product-gallery-column .product-gallery-hero {
	background: var(--color-black);
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
}
.product-gallery-column img { width: 100%; border-radius: 0; }
.product-summary-column { min-width: 0; }
.product-summary-column .product_title {
	font-size: clamp(2rem, 4vw, 3rem);
	margin: 0 0 12px;
	text-transform: uppercase;
	line-height: 1.05;
}
.product-summary-column .price {
	font-size: 1.85rem;
	font-weight: 800;
	color: var(--color-blue);
	margin-bottom: 18px;
}
.product-summary-column .woocommerce-product-details__short-description {
	font-size: 1.05rem;
	line-height: 1.7;
	margin-bottom: 28px;
	color: rgba(22,24,29,.78);
	max-width: 520px;
}
.product-spec-list {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}
.product-spec-list li {
	background: var(--color-ice);
	border-radius: var(--radius);
	padding: 16px 18px;
	border: 1px solid rgba(0,0,0,.06);
}
.product-purchase-box {
	background: var(--color-black);
	color: var(--color-white);
	border-radius: var(--radius-lg);
	padding: 28px;
	margin-bottom: 28px;
}
.product-purchase-box .quantity .qty { width: 72px; padding: 10px; border-radius: var(--radius); border: none; margin-right: 12px; }
.product-purchase-box .single_add_to_cart_button { width: 100%; margin-top: 12px; }
.product-purchase-box .purchase-options { margin-bottom: 18px; }
.product-purchase-box .purchase-option { color: rgba(255,255,255,.88); }
.product-spec-list span { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(22,24,29,.55); margin-bottom: 4px; }
.product-spec-list strong { font-size: 1rem; color: var(--color-black); }
.product-alternatives { margin-top: 4px; }
.product-alternatives h3 { font-family: var(--font-heading); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 12px; }
.product-alternatives ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.product-alternatives a { display: flex; flex-direction: column; gap: 4px; padding: 14px 16px; background: var(--color-white); border: 1px solid rgba(0,0,0,.08); border-radius: var(--radius); transition: border-color .2s, transform .2s; }
.product-alternatives a:hover { border-color: var(--color-lime); transform: translateX(4px); color: inherit; }
.product-alternatives a span { font-size: 13px; color: rgba(22,24,29,.65); }
.product-includes { padding-left: 20px; line-height: 1.8; }
.product-tabs-wrap .woocommerce-tabs { background: var(--color-white); border-radius: var(--radius-xl); padding: 24px 32px 32px; box-shadow: var(--shadow-soft); border: 1px solid rgba(0,0,0,.06); }
.product-longform {
	background: var(--color-white);
	border-radius: var(--radius-xl);
	padding: 44px 48px;
	box-shadow: var(--shadow-soft);
	margin-bottom: 40px;
	border: 1px solid rgba(0,0,0,.06);
	max-width: 100%;
}
.product-longform h2 { font-size: 2rem; margin: 0 0 24px; }
.product-longform .product-long-description .lead { font-size: 1.15rem; margin-bottom: 28px; }
.product-longform .product-long-description h2 {
	font-family: var(--font-display);
	font-size: 1.35rem;
	margin: 2rem 0 0.75rem;
	text-transform: uppercase;
}
.product-tabs-wrap { margin-top: 8px; }

@media (max-width: 1200px) {
	.flavor-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
	.flavor-showcase-grid { grid-template-columns: repeat(5, minmax(180px, 1fr)); }
}
@media (max-width: 1100px) {
	.product-fallback-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
}
@media (max-width: 900px) {
	.flavor-showcase-grid {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		gap: 20px;
		padding-bottom: 8px;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
	}
	.flavor-showcase-card { flex: 0 0 220px; scroll-snap-align: start; }
	.pack-showcase-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 1024px) {
	.lifestyle-use-grid { grid-template-columns: repeat(2, 1fr); }
	.hero-cinematic .hero-grid { grid-template-columns: 1fr; min-height: auto; }
	.hero-visual { order: -1; max-width: 520px; margin: 0 auto; }
	.footer-grid { grid-template-columns: repeat(2, 1fr); }
	.education-layout { grid-template-columns: 1fr; }
	.ingredient-detail-card { grid-template-columns: 1fr; }
	.product-hero-grid { grid-template-columns: 1fr; gap: 32px; }
	.product-gallery-column { position: static; }
	.product-longform { padding: 28px 24px; }
}
@media (max-width: 768px) {
	.section { padding: 64px 0; }
	.mobile-menu-toggle { display: flex; }
	.main-navigation {
		position: fixed; inset: 0; background: var(--color-black);
		flex-direction: column; justify-content: center;
		transform: translateX(100%); transition: transform .3s; z-index: 1500;
	}
	.main-navigation.is-open { transform: translateX(0); }
	.nav-menu { flex-direction: column; align-items: center; gap: 24px; }
	.flavor-grid, .lifestyle-use-grid, .ingredient-grid, .reviews-carousel, .subscription-inner, .posts-grid, .product-fallback-grid, .ingredients-full-grid, .formula-grid, .science-grid { grid-template-columns: 1fr; }
	.pack-showcase-grid { max-width: none; }
	.header-cta { display: none; }
}
