/* ============================================================================
   OHLALA V2 — Menu 2 / Home 2 / Links 2
   Everything is scoped under .oh2 so it can NEVER leak onto v1 pages.
   No scroll animations. Static + instant. Only motion: cart drawer + hovers.
   ============================================================================ */

.oh2 {
	--oh-pink:   #FF4562;
	--oh-cyan:   #26C6DA;
	--oh-yellow: #FFD23F;
	--oh-pink2:  #FF84BA;
	--oh-choc:   #5D3A1A;
	--oh-cream:  #FBF0D5;
	--oh-ink:    #181818;

	--oh-script: 'Satisfy', cursive;
	--oh-head:   'Nunito', system-ui, sans-serif;
	--oh-body:   'Nunito Sans', system-ui, sans-serif;

	font-family: var(--oh-body);
	color: var(--oh-ink);
	-webkit-font-smoothing: antialiased;
}

.oh2 *,
.oh2 *::before,
.oh2 *::after { box-sizing: border-box; }

.oh2 img { max-width: 100%; display: block; }

.oh2 a { text-decoration: none; color: inherit; }

/* Pink crosshatch / diamond pattern — used by Menu 2 + Links 2 backgrounds. */
.oh2-crosshatch {
	background-color: var(--oh-pink);
	background-image:
		repeating-linear-gradient( 45deg, rgba(255,255,255,.06) 0 2px, transparent 2px 26px ),
		repeating-linear-gradient( -45deg, rgba(255,255,255,.06) 0 2px, transparent 2px 26px );
}

/* Generic pill button */
.oh2-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: var(--oh-head);
	font-weight: 800;
	letter-spacing: .02em;
	border: none;
	cursor: pointer;
	border-radius: 999px;
	padding: 16px 34px;
	font-size: 1.05rem;
	background: var(--oh-pink);
	color: #fff;
	transition: transform .12s ease, filter .12s ease;
}
.oh2-pill:hover { transform: translateY(-2px); filter: brightness(1.05); }

/* ====================================================================
   MENU 2
   ==================================================================== */
.oh2-menu {
	min-height: 100vh;
	padding: 0 0 140px;
}

.oh2-menu-head {
	text-align: center;
	padding: 54px 20px 10px;
}
.oh2-menu-kicker {
	font-family: var(--oh-head);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .22em;
	color: rgba(255,255,255,.85);
	font-size: .9rem;
	margin: 0 0 6px;
}
.oh2-menu-title {
	font-family: var(--oh-script);
	color: #fff;
	font-size: clamp(3.5rem, 7vw, 6rem);
	line-height: .9;
	margin: 0;
	text-shadow: 0 6px 0 rgba(0,0,0,.08);
}

/* Category tabs */
.oh2-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 34px;
	padding: 24px 16px 30px;
	max-width: 1100px;
	margin: 0 auto;
}
.oh2-tab {
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--oh-head);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	font-size: clamp(1rem, 2.1vw, 1.5rem);
	color: rgba(255,255,255,.72);
	padding: 6px 2px 12px;
	position: relative;
	transition: color .12s ease;
}
.oh2-tab:hover { color: #fff; }
.oh2-tab.is-active { color: #fff; }
.oh2-tab.is-active::after {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 6px;
	border-radius: 4px;
	background: var(--oh-ink);
}

/* Item list / cards */
.oh2-panel { max-width: 880px; margin: 0 auto; padding: 0 16px; }
.oh2-panel[hidden] { display: none; }

.oh2-subdivider {
	font-family: var(--oh-head);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .14em;
	color: #fff;
	font-size: 1rem;
	margin: 22px 4px 12px;
	display: flex;
	align-items: center;
	gap: 14px;
}
.oh2-subdivider::after {
	content: '';
	flex: 1;
	height: 3px;
	border-radius: 2px;
	background: rgba(255,255,255,.5);
}

.oh2-card {
	display: flex;
	align-items: center;
	gap: 18px;
	background: var(--oh-cream);
	border-radius: 18px;
	padding: 14px 16px;
	margin: 0 0 10px;
	cursor: pointer;
	text-align: left;
	width: 100%;
	border: none;
	font: inherit;
	color: inherit;
	transition: transform .12s ease, box-shadow .12s ease;
}
.oh2-card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.16); }

.oh2-card-img {
	width: 80px; height: 80px;
	flex: 0 0 80px;
	border-radius: 14px;
	object-fit: cover;
	background: #fff;
}
.oh2-swatch {
	width: 80px; height: 80px;
	flex: 0 0 80px;
	border-radius: 14px;
}
.oh2-swatch--0 { background: var(--oh-pink); }
.oh2-swatch--1 { background: var(--oh-yellow); }
.oh2-swatch--2 { background: var(--oh-cyan); }
.oh2-swatch--3 { background: var(--oh-pink2); }

.oh2-card-body { flex: 1 1 auto; min-width: 0; }
.oh2-card-name {
	font-family: var(--oh-body);
	font-weight: 700;
	color: var(--oh-pink);
	font-size: 1.6rem;
	line-height: 1.1;
	margin: 0 0 4px;
}
.oh2-card-desc {
	color: #6b5d52;
	font-size: .95rem;
	line-height: 1.35;
	margin: 0;
}
.oh2-card-price {
	font-family: var(--oh-body);
	font-weight: 700;
	color: var(--oh-pink);
	font-size: 1.5rem;
	white-space: nowrap;
	margin: 0 4px 0 8px;
}
.oh2-card-add {
	flex: 0 0 auto;
	width: 50px; height: 50px;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	background: var(--oh-pink);
	color: #fff;
	font-size: 1.9rem;
	line-height: 1;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform .12s ease, filter .12s ease;
}
.oh2-card-add:hover { filter: brightness(1.08); }
.oh2-card-add.bump { transform: scale(1.18); }

/* Floating cart button */
.oh2-cart-fab {
	position: fixed;
	right: 22px; bottom: 22px;
	z-index: 60;
	display: flex;
	align-items: center;
	gap: 10px;
	border: none;
	cursor: pointer;
	background: var(--oh-ink);
	color: #fff;
	border-radius: 999px;
	padding: 14px 22px;
	font-family: var(--oh-head);
	font-weight: 800;
	font-size: 1.05rem;
	box-shadow: 0 10px 28px rgba(0,0,0,.28);
	transition: transform .12s ease;
}
.oh2-cart-fab:hover { transform: translateY(-2px); }
.oh2-cart-fab-count {
	background: var(--oh-pink);
	color: #fff;
	border-radius: 999px;
	min-width: 26px; height: 26px;
	display: inline-flex; align-items: center; justify-content: center;
	font-size: .85rem; padding: 0 7px;
}

/* Modal + cart drawer shared overlay */
.oh2-overlay {
	position: fixed; inset: 0;
	background: rgba(24,24,24,.55);
	z-index: 80;
}
.oh2-modal[hidden],
.oh2-drawer[hidden] { display: none; }

/* Item detail modal */
.oh2-modal {
	position: fixed; inset: 0;
	z-index: 90;
	display: flex; align-items: center; justify-content: center;
	padding: 20px;
}
.oh2-modal-card {
	position: relative;
	z-index: 91;
	width: min(460px, 100%);
	background: var(--oh-cream);
	border-radius: 24px;
	padding: 26px;
	text-align: center;
	max-height: 90vh;
	overflow-y: auto;
}
.oh2-modal-img,
.oh2-modal-swatch {
	width: 100%;
	height: 220px;
	border-radius: 16px;
	object-fit: cover;
	margin: 6px 0 16px;
}
.oh2-modal-name {
	font-family: var(--oh-body);
	font-weight: 700;
	color: var(--oh-pink);
	font-size: 1.9rem;
	margin: 0 0 4px;
}
.oh2-modal-price {
	font-weight: 700;
	color: var(--oh-ink);
	font-size: 1.4rem;
	margin: 0 0 12px;
}
.oh2-modal-desc {
	color: #6b5d52;
	font-size: 1rem;
	line-height: 1.5;
	margin: 0 0 18px;
}
.oh2-close {
	position: absolute;
	top: 12px; right: 14px;
	background: rgba(0,0,0,.08);
	border: none;
	cursor: pointer;
	width: 38px; height: 38px;
	border-radius: 999px;
	font-size: 1.5rem;
	line-height: 1;
	color: var(--oh-ink);
}
.oh2-close:hover { background: rgba(0,0,0,.16); }

/* Qty stepper */
.oh2-stepper {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: #fff;
	border-radius: 999px;
	padding: 4px;
	margin: 0 auto 16px;
}
.oh2-stepper-btn {
	width: 38px; height: 38px;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	background: var(--oh-pink);
	color: #fff;
	font-size: 1.3rem;
	line-height: 1;
	display: flex; align-items: center; justify-content: center;
}
.oh2-stepper-val { min-width: 36px; text-align: center; font-weight: 800; font-size: 1.1rem; }

.oh2-modal-add { width: 100%; }

/* Cart drawer */
.oh2-drawer {
	position: fixed; inset: 0;
	z-index: 95;
}
.oh2-drawer-panel {
	position: absolute;
	top: 0; right: 0; bottom: 0;
	width: min(420px, 100%);
	background: #fff;
	z-index: 96;
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform .28s ease;
	box-shadow: -8px 0 30px rgba(0,0,0,.2);
}
.oh2-drawer.is-open .oh2-drawer-panel { transform: translateX(0); }

.oh2-drawer-head {
	display: flex; align-items: center; justify-content: space-between;
	padding: 20px 22px;
	background: var(--oh-pink);
	color: #fff;
}
.oh2-drawer-head h2 {
	font-family: var(--oh-head);
	font-weight: 900;
	font-size: 1.5rem;
	margin: 0;
}
.oh2-drawer-head .oh2-close { position: static; background: rgba(255,255,255,.22); color: #fff; }

.oh2-drawer-body { flex: 1 1 auto; overflow-y: auto; padding: 16px 18px; }
.oh2-cart-empty { text-align: center; color: #8a8a8a; padding: 40px 10px; }

.oh2-line {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid #f0eadd;
}
.oh2-line-thumb,
.oh2-line-swatch {
	width: 56px; height: 56px;
	flex: 0 0 56px;
	border-radius: 12px;
	object-fit: cover;
}
.oh2-line-info { flex: 1 1 auto; min-width: 0; }
.oh2-line-name { font-weight: 700; margin: 0 0 4px; font-size: 1rem; }
.oh2-line-price { color: var(--oh-pink); font-weight: 700; margin: 0 0 6px; }
.oh2-line .oh2-stepper { margin: 0; background: #f6f1e6; }
.oh2-line .oh2-stepper-btn { width: 30px; height: 30px; font-size: 1.1rem; }
.oh2-line-remove {
	flex: 0 0 auto;
	background: none; border: none; cursor: pointer;
	color: #c2392b; padding: 6px;
}
.oh2-line-remove:hover { color: #e4402f; }

.oh2-drawer-foot {
	border-top: 2px solid #f0eadd;
	padding: 18px 22px 24px;
}
.oh2-subtotal {
	display: flex; justify-content: space-between; align-items: baseline;
	font-family: var(--oh-head);
	font-weight: 900;
	font-size: 1.4rem;
	margin: 0 0 6px;
}
.oh2-pickup-note { color: #8a8a8a; font-size: .9rem; margin: 0 0 14px; }
.oh2-checkout-btn { width: 100%; }
.oh2-cart-error { color: #c2392b; font-size: .9rem; margin: 12px 0 0; text-align: center; }

body.oh2-modal-open { overflow: hidden; }

/* ====================================================================
   HOME 2
   ==================================================================== */
.oh2-home { background: var(--oh-cream); }

/* ── Shared v2 nav: floating hamburger + fullscreen overlay ─────────────── */
.oh2-nav-toggle {
	position: fixed;
	top: 18px; right: 18px;
	z-index: 200;
	width: 54px; height: 54px;
	border-radius: 999px;
	background: rgba(255,255,255,.92);
	border: none; cursor: pointer;
	display: flex; flex-direction: column; gap: 5px;
	align-items: center; justify-content: center;
	box-shadow: 0 6px 18px rgba(0,0,0,.22);
}
.oh2-nav-toggle span { width: 24px; height: 3px; border-radius: 2px; background: var(--oh-ink); transition: transform .2s ease; }

.oh2-nav {
	position: fixed;
	inset: 0;
	z-index: 300;
	background: #1a1a2e;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity .28s ease, visibility .28s ease;
}
body.oh2-nav-open { overflow: hidden; }
body.oh2-nav-open .oh2-nav { opacity: 1; visibility: visible; }

.oh2-nav-brand {
	position: absolute;
	top: 24px; left: 28px;
}
.oh2-nav-logo {
	width: 120px;
	filter: sepia(1) saturate(3) hue-rotate(10deg) brightness(1.1);
}
.oh2-nav-close {
	position: absolute;
	top: 22px; right: 28px;
	background: none; border: none; cursor: pointer;
	color: #fff;
	font-size: 3rem;
	line-height: 1;
}
.oh2-nav-links {
	list-style: none;
	margin: 0; padding: 0;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.oh2-nav-links a {
	font-family: var(--oh-head);
	font-weight: 700;
	color: #fff;
	font-size: clamp(2rem, 6vw, 3.4rem);
	transition: color .15s ease;
}
.oh2-nav-links a:hover { color: var(--oh-pink); }

/* Mondrian grid hero — 6 asymmetric tiles, 4 cols × 2 rows, no gaps. */
.oh2-hero {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 1fr);
	min-height: 90vh;
	gap: 0;
}
.oh2-tile {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 18px;
}
.oh2-tile img { width: 70%; height: 70%; object-fit: contain; }
.oh2-tile.is-wide { grid-column: span 2; }
.oh2-tile--pink  { background: var(--oh-pink); }
.oh2-tile--cyan  { background: var(--oh-cyan); }
.oh2-tile--yellow { background: var(--oh-yellow); }
.oh2-tile--pink2 { background: var(--oh-pink2); }

/* Top navbar overlaying the hero grid — centered logo */
.oh2-hero-bar {
	position: absolute;
	top: 0; left: 0; right: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	pointer-events: none;
}
.oh2-hero-bar-logo {
	height: 70px;
	width: auto;
	object-fit: contain;
}

/* Hero tile entrance animations (CSS only, fire once on load) */
.oh2-tile--anim { animation-duration: .6s; animation-timing-function: ease-out; animation-fill-mode: both; animation-delay: var(--oh-anim-delay, 0s); }
.oh2-tile--from-left  { animation-name: oh2-slide-left; }
.oh2-tile--from-right { animation-name: oh2-slide-right; }

@keyframes oh2-slide-left {
	from { opacity: 0; transform: translateX(-120px); }
	to   { opacity: 1; transform: translateX(0); }
}
@keyframes oh2-slide-right {
	from { opacity: 0; transform: translateX(120px); }
	to   { opacity: 1; transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
	.oh2-tile--anim { animation: none; }
}

/* Diagonal split feature band */
.oh2-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 480px;
}
.oh2-split-text {
	background: var(--oh-cyan);
	color: var(--oh-choc);
	display: flex; flex-direction: column; justify-content: center;
	padding: 64px clamp(28px, 6vw, 90px);
	clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
}
.oh2-split-kicker {
	font-family: var(--oh-head);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .2em;
	font-size: .9rem;
	margin: 0 0 10px;
}
.oh2-split-title {
	font-family: var(--oh-script);
	font-size: clamp(2.8rem, 5.5vw, 4.6rem);
	line-height: .95;
	margin: 0 0 26px;
}
.oh2-split-media {
	background: var(--oh-yellow);
	display: flex; align-items: center; justify-content: center;
	padding: 40px;
	margin-left: -10%;
	clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}
.oh2-split-media img { max-height: 360px; width: auto; object-fit: contain; }

/* Chocolate-drip divider into cyan feature section */
.oh2-choc {
	background: var(--oh-choc);
	height: 70px;
}
.oh2-drip { display: block; width: 100%; height: 46px; margin-bottom: -1px; }
.oh2-drip--choc { color: var(--oh-choc); }
.oh2-features {
	background: var(--oh-cyan);
	color: #fff;
	padding: 30px 20px 70px;
}
.oh2-features-grid {
	max-width: 1000px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 30px;
	text-align: center;
}
.oh2-feature-title {
	font-family: var(--oh-head);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .08em;
	font-size: 1.5rem;
	margin: 0 0 8px;
}
.oh2-feature-text { margin: 0; font-size: 1rem; opacity: .92; }

/* Locations / Call us band */
.oh2-locations {
	display: grid;
	grid-template-columns: 1fr 1.1fr 1fr;
	align-items: stretch;
}
.oh2-loc-col {
	padding: 54px clamp(24px, 4vw, 50px);
	display: flex; flex-direction: column; justify-content: center;
	text-align: center;
}
.oh2-loc-col--locations { background: var(--oh-cyan); color: #fff; }
.oh2-loc-col--photo { padding: 0; background: var(--oh-choc); }
.oh2-loc-col--photo img { width: 100%; height: 100%; object-fit: cover; }
.oh2-loc-col--call { background: var(--oh-pink); color: #fff; }
.oh2-loc-h {
	font-family: var(--oh-script);
	font-size: 3rem;
	line-height: 1;
	margin: 0 0 16px;
}
.oh2-loc-text { font-size: 1.1rem; line-height: 1.5; margin: 0 0 22px; }
.oh2-loc-col .oh2-pill { background: var(--oh-pink); color: #fff; align-self: center; }
.oh2-loc-col--call .oh2-pill { background: #fff; color: var(--oh-pink); }

/* Wafer footer */
.oh2-wafer {
	position: relative;
	background-color: #FBF0D5;
	background-image: url('../images/background.webp');
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	color: var(--oh-choc);
	text-align: center;
	padding: 80px 20px 50px;
}
.oh2-wafer-brand {
	font-family: var(--oh-script);
	color: #FFFFFF;
	font-weight: 900;
	font-size: 4rem;
	margin: 18px 0 14px;
}
.oh2-wafer-socials {
	display: flex; justify-content: center; gap: 16px;
	margin: 0 0 18px;
}
.oh2-wafer-socials a {
	width: 46px; height: 46px;
	border-radius: 999px;
	background: #181818;
	color: #fff;
	display: flex; align-items: center; justify-content: center;
	transition: transform .12s ease;
}
.oh2-wafer-socials a:hover { transform: translateY(-2px); }
.oh2-wafer-socials svg { width: 22px; height: 22px; }
.oh2-wafer-contact,
.oh2-wafer-contact a,
.oh2-wafer-nav,
.oh2-wafer-nav a {
	color: transparent;
	-webkit-text-stroke: 1.2px #7F2B0A;
	text-stroke: 1.2px #7F2B0A;
	font-weight: 900;
	font-size: 2rem;
	letter-spacing: 0.05em;
}
.oh2-wafer-contact { line-height: 1.7; margin: 0 0 16px; }
.oh2-wafer-nav {
	display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px;
	font-family: var(--oh-head);
	text-transform: uppercase;
}

/* ====================================================================
   LINKS 2
   ==================================================================== */
.oh2-links-body { margin: 0; }
.oh2-links {
	min-height: 100vh;
	display: flex; flex-direction: column; align-items: center;
	padding: 56px 22px 70px;
}
.oh2-links-logo { width: 120px; margin: 0 auto 14px; }
.oh2-links-brand {
	font-family: var(--oh-script);
	color: #fff;
	font-size: clamp(2.8rem, 8vw, 4rem);
	line-height: 1;
	margin: 0 0 30px;
	text-shadow: 0 4px 0 rgba(0,0,0,.14);
}
.oh2-links-list {
	width: 100%;
	max-width: 460px;
	display: flex; flex-direction: column; gap: 16px;
}
.oh2-link-btn {
	display: flex; align-items: center; justify-content: center;
	gap: 14px;
	min-height: 60px;
	padding: 14px 24px;
	border-radius: 999px;
	background: var(--oh-cream);
	color: var(--oh-pink);
	font-family: var(--oh-head);
	font-weight: 800;
	font-size: 1.2rem;
	transition: transform .12s ease, filter .12s ease;
}
.oh2-link-btn:hover { transform: translateY(-2px); filter: brightness(1.02); }
.oh2-link-btn img { width: 28px; height: 28px; object-fit: contain; }
.oh2-link-btn svg { width: 26px; height: 26px; }

/* ====================================================================
   Responsive
   ==================================================================== */
/* Hero collapses to 2 equal-square columns; all 6 tiles same size, in order. */
@media (max-width: 768px) {
	.oh2-hero {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: none;
		min-height: 0;
	}
	.oh2-tile { aspect-ratio: 1 / 1; }
	.oh2-tile.is-wide { grid-column: span 1; }
}

@media (max-width: 860px) {
	.oh2-split { grid-template-columns: 1fr; }
	.oh2-split-text { clip-path: none; }
	.oh2-split-media { margin-left: 0; clip-path: none; }
	.oh2-locations { grid-template-columns: 1fr; }
	.oh2-loc-col--photo { min-height: 280px; }
}

@media (max-width: 560px) {
	.oh2-card { gap: 12px; padding: 12px; }
	.oh2-card-img, .oh2-swatch { width: 64px; height: 64px; flex-basis: 64px; }
	.oh2-card-name { font-size: 1.25rem; }
	.oh2-card-price { font-size: 1.2rem; }
	.oh2-card-desc { font-size: .85rem; }
	.oh2-tabs { gap: 6px 18px; }
}

/* ============================================================================
   HOME 2 added sections — About / Franchise / FAQ / Contact + hero CTAs
   ============================================================================ */
.oh2-split-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.oh2-pill--ghost { background: transparent; border: 3px solid #fff; color: #fff; }
.oh2-pill--ghost:hover { background: #fff; color: var(--oh-pink); }
.oh2-pill--cream { background: var(--oh-cream); color: var(--oh-pink); }
.oh2-pill--yellow { background: var(--oh-yellow); color: var(--oh-choc); }

.oh2-kicker { font-family: var(--oh-head); font-weight: 900; text-transform: uppercase; letter-spacing: .18em; font-size: .9rem; color: var(--oh-pink); margin: 0 0 10px; }
.oh2-kicker--light { color: #fff; opacity: .92; }

/* About */
.oh2-about {
	display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,64px);
	align-items: center; background: var(--oh-cream);
	padding: clamp(50px,8vw,90px) clamp(20px,6vw,80px);
}
.oh2-about-media img { width: 100%; border-radius: 22px; box-shadow: 0 18px 44px rgba(0,0,0,.18); }
.oh2-about-h { font-family: var(--oh-script); font-size: clamp(2.4rem,5vw,3.6rem); color: var(--oh-choc); line-height: 1; margin: 0 0 18px; }
.oh2-about-p { color: #6b5d52; font-size: 1.05rem; margin: 0 0 14px; }

/* Franchise — pink band */
.oh2-franchise { background: var(--oh-pink); color: #fff; text-align: center; padding: clamp(56px,8vw,92px) clamp(20px,6vw,80px); }
.oh2-franchise-h { font-family: var(--oh-script); font-size: clamp(2.6rem,6vw,4rem); margin: 0 0 14px; line-height: 1; }
.oh2-franchise-p { max-width: 620px; margin: 0 auto 26px; font-size: 1.1rem; }

/* FAQ — cream accordion */
.oh2-faq { background: var(--oh-cream); padding: clamp(56px,8vw,92px) clamp(20px,6vw,80px); }
.oh2-faq-h { font-family: var(--oh-script); font-size: clamp(2.6rem,6vw,4rem); color: var(--oh-choc); text-align: center; margin: 0 0 30px; }
.oh2-faq-list { max-width: 760px; margin: 0 auto; }
.oh2-faq-item { border-bottom: 3px solid rgba(93,58,26,.18); }
.oh2-faq-q { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 4px; font-family: var(--oh-head); font-weight: 800; font-size: clamp(1.05rem,2.2vw,1.4rem); color: var(--oh-choc); }
.oh2-faq-q::-webkit-details-marker { display: none; }
.oh2-faq-q::marker { content: ''; }
.oh2-faq-ic { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; background: var(--oh-pink); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; line-height: 1; transition: transform .2s ease; }
.oh2-faq-item[open] .oh2-faq-ic { transform: rotate(45deg); }
.oh2-faq-a { padding: 0 4px 20px; color: #6b5d52; font-size: 1.02rem; line-height: 1.55; }

/* Contact — cyan band */
.oh2-contact { background: var(--oh-cyan); color: #fff; text-align: center; padding: clamp(56px,8vw,92px) clamp(20px,6vw,80px); }
.oh2-contact-h { font-family: var(--oh-script); font-size: clamp(2.6rem,6vw,4rem); margin: 0 0 16px; line-height: 1; }
.oh2-contact-email { font-family: var(--oh-head); font-weight: 800; font-size: clamp(1.2rem,3vw,1.8rem); margin: 0 0 24px; }
.oh2-contact-email a { color: #fff; }
.oh2-contact-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
	.oh2-about { grid-template-columns: 1fr; }
	.oh2-about-media { order: -1; }
}

/* Anchor nav (Home 2): smooth scroll + small offset */
html { scroll-behavior: smooth; }
.oh2-about, .oh2-franchise, .oh2-faq, .oh2-contact { scroll-margin-top: 24px; }

/* FAQ 2 page */
.oh2-faqpage { min-height: 80vh; padding-top: clamp(80px,11vw,120px); }
.oh2-faqpage .oh2-faq-h { margin-bottom: 24px; }
.oh2-faq-group { font-family: var(--oh-head); font-weight: 900; text-transform: uppercase; letter-spacing: .1em; color: var(--oh-pink); font-size: 1.05rem; max-width: 760px; margin: 36px auto 4px; }

/* ============================================================================
   About 2 + Franchise 2 pages (colorful OHLALA style) + shared form on .oh2
   ============================================================================ */
/* About 2 */
.oh2-ab-hero { background: var(--oh-pink); color: #fff; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px,4vw,50px); align-items: center; padding: clamp(96px,13vw,150px) clamp(22px,6vw,80px) clamp(50px,7vw,80px); }
.oh2-ab-h1 { font-family: var(--oh-script); font-size: clamp(2.8rem,7vw,5rem); line-height: 1; margin: 8px 0 16px; }
.oh2-ab-lead { font-size: 1.2rem; max-width: 30ch; }
.oh2-ab-hero-media { display: flex; align-items: center; justify-content: center; }
.oh2-ab-mascot { width: min(240px,70%); filter: drop-shadow(0 18px 26px rgba(0,0,0,.25)); animation: oh-bob 4s ease-in-out infinite; }
@keyframes oh-bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@media (prefers-reduced-motion: reduce){ .oh2-ab-mascot { animation: none; } }
.oh2-ab-story { background: var(--oh-cream); padding: clamp(50px,8vw,90px) clamp(22px,6vw,80px); }
.oh2-ab-prose { max-width: 760px; margin: 0 auto; }
.oh2-ab-prose p { color: #5c4f44; font-size: 1.1rem; line-height: 1.75; margin: 0 0 18px; }
.oh2-ab-prose p strong { color: var(--oh-choc); }
.oh2-ab-additions { background: var(--oh-cyan); color: #fff; padding: clamp(50px,8vw,90px) clamp(22px,6vw,80px); }
.oh2-ab-additions-inner { max-width: 760px; margin: 0 auto; }
.oh2-ab-h2 { font-family: var(--oh-script); font-size: clamp(2.4rem,5vw,3.6rem); line-height: 1; margin: 6px 0 16px; }
.oh2-ab-addp { font-size: 1.12rem; margin: 0 0 16px; }
.oh2-ab-allergy { background: rgba(255,255,255,.16); border-radius: 16px; padding: 16px 18px; font-size: 1.02rem; }
.oh2-ab-cta { background: var(--oh-yellow); color: var(--oh-choc); text-align: center; padding: clamp(50px,8vw,90px) clamp(22px,6vw,80px); }
.oh2-ab-cta-h { font-family: var(--oh-script); font-size: clamp(2.6rem,6vw,4rem); margin: 0 0 12px; line-height: 1; }
.oh2-ab-cta-p { max-width: 540px; margin: 0 auto 24px; font-weight: 600; }
@media (max-width: 768px){ .oh2-ab-hero { grid-template-columns: 1fr; text-align: center; } .oh2-ab-hero-media { order: -1; } .oh2-ab-lead { max-width: 100%; } }

/* Franchise 2 */
.oh2-fr-hero { background: var(--oh-pink); color: #fff; text-align: center; padding: clamp(100px,14vw,160px) clamp(22px,6vw,80px) clamp(50px,7vw,80px); }
.oh2-fr-h1 { font-family: var(--oh-script); font-size: clamp(2.8rem,7vw,5rem); line-height:1; margin: 6px 0 12px; }
.oh2-fr-sub { font-size: 1.2rem; margin: 0 0 26px; }
.oh2-fr-why { background: var(--oh-cream); padding: clamp(50px,8vw,90px) clamp(22px,6vw,80px); }
.oh2-fr-h2 { font-family: var(--oh-script); font-size: clamp(2.4rem,5vw,3.6rem); color: var(--oh-choc); text-align: center; margin: 0 0 30px; line-height:1; }
.oh2-fr-h2--light { color: #fff; }
.oh2-fr-h2--dark { font-family: var(--oh-script); font-size: clamp(2.4rem,5vw,3.6rem); color: var(--oh-choc); text-align:center; margin: 0 0 24px; line-height:1; }
.oh2-fr-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; max-width: 1000px; margin: 0 auto; }
.oh2-fr-card { background: #fff; border-radius: 22px; padding: 32px 24px; text-align: center; box-shadow: 0 14px 30px rgba(0,0,0,.08); }
.oh2-fr-ic { font-size: 2.6rem; display: block; margin-bottom: 12px; }
.oh2-fr-card h3 { font-family: var(--oh-head); font-weight: 900; color: var(--oh-pink); font-size: 1.3rem; margin: 0 0 8px; }
.oh2-fr-card p { color: #6b5d52; margin: 0; }
.oh2-fr-how { background: var(--oh-cyan); color: #fff; padding: clamp(50px,8vw,90px) clamp(22px,6vw,80px); }
.oh2-fr-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; max-width: 1000px; margin: 0 auto; }
.oh2-fr-step { text-align: center; }
.oh2-fr-num { width: 56px; height: 56px; border-radius: 50%; background: #fff; color: var(--oh-pink); font-family: var(--oh-head); font-weight: 900; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.oh2-fr-step h3 { font-family: var(--oh-head); font-weight: 900; font-size: 1.2rem; margin: 0 0 6px; }
.oh2-fr-step p { margin: 0; opacity: .95; }
.oh2-fr-formband { background: var(--oh-yellow); padding: clamp(50px,8vw,90px) clamp(22px,6vw,80px); }
.oh2-fr-contact { text-align: center; color: var(--oh-choc); font-weight: 700; margin: 22px 0 0; }
.oh2-fr-contact a { color: var(--oh-pink); }
@media (max-width: 860px){ .oh2-fr-grid { grid-template-columns: 1fr; } .oh2-fr-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .oh2-fr-steps { grid-template-columns: 1fr; } }

/* Shared franchise form, styled for v2 */
.oh2 .lab-form-wrap { background:#fff; border-radius:24px; padding:clamp(24px,4vw,40px); box-shadow:0 18px 44px rgba(0,0,0,.14); max-width:720px; margin:0 auto; }
.oh2 .lab-form-disclaimer { font-size:.82rem; color:#6b5d52; margin:0 0 22px; line-height:1.5; }
.oh2 .lab-form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
.oh2 .lab-form label { display:flex; flex-direction:column; gap:6px; font-weight:700; font-size:.92rem; color:var(--oh-choc); }
.oh2 .lab-form-full { margin-bottom:20px; }
.oh2 .lab-form input, .oh2 .lab-form select, .oh2 .lab-form textarea { font:inherit; font-weight:400; padding:12px 14px; border:1.5px solid #e7dcc6; border-radius:12px; background:var(--oh-cream); color:var(--oh-ink); width:100%; }
.oh2 .lab-form input:focus, .oh2 .lab-form select:focus, .oh2 .lab-form textarea:focus { outline:none; border-color:var(--oh-pink); }
.oh2 .lab-form-submit { display:inline-flex; align-items:center; justify-content:center; width:100%; margin-top:6px; border:none; cursor:pointer; background:var(--oh-pink); color:#fff; font-family:var(--oh-head); font-weight:800; font-size:1.05rem; padding:16px 28px; border-radius:999px; transition:transform .12s ease,filter .12s ease; }
.oh2 .lab-form-submit:hover { transform:translateY(-2px); filter:brightness(1.05); }
.oh2 .lab-form-note { padding:14px 16px; border-radius:12px; margin:0 0 20px; font-weight:700; }
.oh2 .lab-form-note--ok { background:#E7F6E9; color:#1e7a3a; }
.oh2 .lab-form-note--err { background:#FDE7EB; color:#b3203a; }
@media (max-width:560px){ .oh2 .lab-form-row { grid-template-columns:1fr; } }

/* ─── Menu 2 — juice size selector + cart size badge ─────────────────────── */
.oh2-size {
	border: 0;
	margin: 4px 0 14px;
	padding: 0;
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
}
.oh2-size-legend {
	width: 100%;
	text-align: center;
	font-family: var(--oh-head);
	font-weight: 800;
	font-size: .82rem;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: #6b5d52;
	margin-bottom: 8px;
	padding: 0;
}
.oh2-size-opt {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	cursor: pointer;
	border: 2px solid var(--oh-pink2);
	border-radius: 999px;
	padding: 8px 16px;
	font-family: var(--oh-head);
	font-weight: 700;
	color: var(--oh-ink);
	background: #fff;
	transition: background .15s, border-color .15s, color .15s;
}
.oh2-size-opt:has(input:checked) {
	background: var(--oh-pink);
	border-color: var(--oh-pink);
	color: #fff;
}
.oh2-size-opt input { accent-color: var(--oh-pink); margin: 0; }
.oh2-size-plus { font-style: normal; font-weight: 800; }
.oh2-line-size {
	display: inline-block;
	margin-left: 8px;
	padding: 1px 8px;
	border-radius: 999px;
	background: var(--oh-cream);
	color: var(--oh-pink);
	font-family: var(--oh-head);
	font-weight: 800;
	font-size: .72rem;
	vertical-align: middle;
}

/* ─── Franchise 2 — SEO intro band ───────────────────────────────────────── */
.oh2-fr-seo {
	background: var(--oh-cream);
	padding: clamp(40px, 6vw, 72px) 20px;
	text-align: center;
}
.oh2-fr-seo .oh2-fr-h2 { margin-bottom: 18px; }
.oh2-fr-seo p {
	max-width: 760px;
	margin: 0 auto 16px;
	font-family: var(--oh-body);
	font-size: 1.05rem;
	line-height: 1.7;
	color: #5b4a3c;
}
.oh2-fr-seo p strong { color: var(--oh-pink); font-weight: 800; }

/* ─── Shared pill variant ────────────────────────────────────────────────── */
.oh2-pill--pink { background: var(--oh-pink); color: #fff; }

/* ─── Contact page ───────────────────────────────────────────────────────── */
.oh2-contactpage { min-height: 60vh; }
.oh2-ct-hero {
	background: var(--oh-pink);
	color: #fff;
	text-align: center;
	padding: clamp(90px, 14vw, 150px) 20px clamp(50px, 8vw, 80px);
}
.oh2-ct-h1 { font-family: var(--oh-script); font-size: clamp(3rem, 9vw, 5.5rem); margin: 0 0 10px; font-weight: 400; }
.oh2-ct-sub { font-family: var(--oh-body); font-size: 1.15rem; max-width: 40ch; margin: 0 auto; opacity: .95; }
.oh2-ct-band { background: var(--oh-cream); padding: clamp(40px, 7vw, 80px) 20px; }
.oh2-ct-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 22px;
	max-width: 1000px;
	margin: 0 auto clamp(30px, 5vw, 50px);
}
.oh2-ct-card {
	background: #fff;
	border-radius: 22px;
	padding: 30px 26px;
	box-shadow: 0 14px 34px rgba(255,69,98,.12);
	text-align: center;
}
.oh2-ct-card-h { font-family: var(--oh-head); font-weight: 900; color: var(--oh-pink); font-size: 1.05rem; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 8px; }
.oh2-ct-card p { font-family: var(--oh-body); font-size: 1.05rem; line-height: 1.6; margin: 0 0 18px; color: var(--oh-ink); }
.oh2-ct-card a { color: var(--oh-pink); text-decoration: none; }
.oh2-ct-card .oh2-pill { margin-top: 4px; }
.oh2-ct-map { max-width: 1000px; margin: 0 auto; border-radius: 22px; overflow: hidden; box-shadow: 0 14px 34px rgba(0,0,0,.14); }
.oh2-ct-map iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ─── Generic "Layout 2" page ────────────────────────────────────────────── */
.oh2-page { padding: clamp(96px, 14vw, 150px) 20px clamp(50px, 8vw, 90px); }
.oh2-page-inner {
	max-width: 760px;
	margin: 0 auto;
	background: var(--oh-cream);
	border-radius: 24px;
	padding: clamp(28px, 5vw, 56px);
}
.oh2-page-title { font-family: var(--oh-script); font-weight: 400; color: var(--oh-pink); font-size: clamp(2.4rem, 7vw, 4rem); margin: 0 0 22px; }
.oh2-page-content { font-family: var(--oh-body); font-size: 1.08rem; line-height: 1.75; color: var(--oh-ink); }
.oh2-page-content :is(h2,h3) { font-family: var(--oh-head); color: var(--oh-pink); }
.oh2-page-content a { color: var(--oh-pink); }

/* ─── Blog index ─────────────────────────────────────────────────────────── */
.oh2-blog { padding: clamp(96px, 14vw, 150px) 20px clamp(50px, 8vw, 90px); }
.oh2-blog-head { text-align: center; margin-bottom: clamp(30px, 5vw, 50px); }
.oh2-blog-title-h { font-family: var(--oh-script); font-weight: 400; color: var(--oh-pink); font-size: clamp(2.6rem, 8vw, 4.5rem); margin: 6px 0 0; }
.oh2-blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 26px;
	max-width: 1080px;
	margin: 0 auto;
}
.oh2-blog-card {
	background: #fff;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 14px 34px rgba(255,69,98,.12);
	display: flex;
	flex-direction: column;
}
.oh2-blog-thumb { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.oh2-blog-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.oh2-blog-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.oh2-blog-card-title { font-family: var(--oh-head); font-weight: 900; font-size: 1.3rem; line-height: 1.25; margin: 0 0 8px; }
.oh2-blog-card-title a { color: var(--oh-ink); text-decoration: none; }
.oh2-blog-card-title a:hover { color: var(--oh-pink); }
.oh2-blog-date { font-family: var(--oh-body); font-size: .85rem; color: var(--oh-pink); font-weight: 700; margin: 0 0 12px; text-transform: uppercase; letter-spacing: .05em; }
.oh2-blog-excerpt { font-family: var(--oh-body); font-size: 1rem; line-height: 1.6; color: #5b4a3c; margin: 0 0 20px; }
.oh2-blog-more { align-self: flex-start; margin-top: auto; }
.oh2-blog-pager { text-align: center; margin-top: 40px; }
.oh2-blog-pager .page-numbers { display: inline-block; padding: 8px 14px; margin: 0 4px; border-radius: 999px; background: #fff; color: var(--oh-pink); font-family: var(--oh-head); font-weight: 800; text-decoration: none; }
.oh2-blog-pager .page-numbers.current { background: var(--oh-pink); color: #fff; }
.oh2-blog-empty { text-align: center; color: #fff; font-family: var(--oh-head); font-weight: 800; font-size: 1.2rem; }

/* ─── Single post ────────────────────────────────────────────────────────── */
.oh2-post { background: var(--oh-cream); padding: clamp(96px, 14vw, 150px) 20px clamp(50px, 8vw, 90px); }
.oh2-post-inner { max-width: 740px; margin: 0 auto; }
.oh2-post-head { text-align: center; margin-bottom: 28px; }
.oh2-post-date { font-family: var(--oh-body); font-weight: 700; color: var(--oh-pink); text-transform: uppercase; letter-spacing: .05em; font-size: .9rem; margin: 0 0 10px; }
.oh2-post-title { font-family: var(--oh-head); font-weight: 900; color: var(--oh-ink); font-size: clamp(1.9rem, 5vw, 3rem); line-height: 1.15; margin: 0; }
.oh2-post-hero { border-radius: 22px; overflow: hidden; margin: 0 0 30px; box-shadow: 0 14px 34px rgba(0,0,0,.12); }
.oh2-post-hero img { width: 100%; height: auto; display: block; }
.oh2-post-content { font-family: var(--oh-body); font-size: 1.1rem; line-height: 1.8; color: var(--oh-ink); }
.oh2-post-content :is(h2,h3) { font-family: var(--oh-head); color: var(--oh-pink); margin-top: 1.6em; }
.oh2-post-content a { color: var(--oh-pink); }
.oh2-post-content img { max-width: 100%; height: auto; border-radius: 14px; }
.oh2-post-back { text-align: center; margin-top: 40px; }

/* ============================================================================
   Menu 2 — business hours, checkout form, HST totals, allergy popup
   (Tasks 1, 2, 3, 5). Scoped under .oh2 / menu-page elements only.
   ============================================================================ */

/* ── Closed banner [Task 1] ── */
.oh2-closed-banner {
	max-width: 760px;
	margin: 0 auto 18px;
	background: #fff;
	color: var(--oh-choc);
	border: 3px solid var(--oh-pink2);
	border-radius: 16px;
	padding: 14px 20px;
	text-align: center;
	font-family: var(--oh-head);
	font-weight: 800;
	font-size: 1.02rem;
	box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

/* Disabled quick-add control while closed. */
.oh2-card-add.is-disabled { opacity: .35; pointer-events: none; }
.oh2-checkout-btn:disabled,
.oh2-modal-add:disabled { opacity: .5; cursor: not-allowed; }
body.oh2-closed .oh2-card { opacity: .92; }

/* ── HST totals block [Task 5] ── */
.oh2-totals { margin-bottom: 14px; }
.oh2-totline {
	display: flex; justify-content: space-between; align-items: baseline;
	font-family: var(--oh-body); font-size: .98rem; padding: 3px 0; color: var(--oh-ink);
}
.oh2-totline--grand {
	margin-top: 6px; padding-top: 8px; border-top: 2px dashed #e7d4b6;
	font-family: var(--oh-head); font-weight: 800; font-size: 1.18rem; color: var(--oh-choc);
}

/* ── Checkout details form [Task 3] ── */
.oh2-checkout-form { display: grid; gap: 12px; margin-bottom: 14px; }
.oh2-field { display: grid; gap: 5px; }
.oh2-field-label { font-family: var(--oh-head); font-weight: 700; font-size: .9rem; color: var(--oh-choc); }
.oh2-field-label em { color: var(--oh-pink); font-style: normal; margin-left: 2px; }
.oh2-field input,
.oh2-field textarea {
	width: 100%; font-family: var(--oh-body); font-size: 1rem; color: var(--oh-ink);
	padding: 11px 13px; border: 2px solid #ecdcc0; border-radius: 12px; background: #fff; outline: none;
}
.oh2-field input:focus,
.oh2-field textarea:focus { border-color: var(--oh-pink2); }
.oh2-field textarea { resize: vertical; min-height: 56px; }
.oh2-field input.is-invalid,
.oh2-field textarea.is-invalid { border-color: var(--oh-pink); background: #fff5f7; }
.oh2-field-error { color: var(--oh-pink); font-size: .82rem; font-weight: 600; }
.oh2-counter { justify-self: end; font-size: .78rem; color: #9a8a73; }

/* ── Allergy popup [Task 2] ── */
.oh2-allergy {
	position: fixed; inset: 0; z-index: 1000;
	display: flex; align-items: center; justify-content: center; padding: 24px;
}
.oh2-allergy[hidden] { display: none; }
.oh2-allergy-overlay { position: absolute; inset: 0; background: rgba(20,10,4,.62); }
.oh2-allergy-card {
	position: relative; z-index: 1; background: #fff; border-radius: 22px;
	max-width: 440px; width: 100%; padding: 34px 30px; text-align: center;
	box-shadow: 0 30px 70px rgba(0,0,0,.35);
	animation: oh2-pop .26s cubic-bezier(.2,.9,.3,1.3);
}
@keyframes oh2-pop { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.oh2-allergy-title {
	font-family: 'Grandstander', system-ui, sans-serif; font-weight: 700;
	font-size: 1.8rem; color: #FF6F91; margin: 0 0 14px;
}
.oh2-allergy-msg {
	font-family: 'Poppins', system-ui, sans-serif; font-size: 1.02rem; line-height: 1.6;
	color: #5D3A1A; margin: 0 0 24px;
}
.oh2-allergy-btn {
	font-family: 'Grandstander', system-ui, sans-serif; font-weight: 700; font-size: 1.05rem;
	color: #fff; background: #FF6F91; border: 0; border-radius: 999px;
	padding: 14px 38px; cursor: pointer; transition: transform .12s ease, background .15s ease;
}
.oh2-allergy-btn:hover { background: #ff5680; }
.oh2-allergy-btn:active { transform: translateY(1px); }
