/**
 * AbstractRealmss brand stylesheet
 * Palette: Cinematic White · Charcoal type · Blue accent strips only
 * Type: Cormorant Garamond (display) · Manrope (body)
 */

/* ── Design tokens ─────────────────────────────────────────────── */
:root {
	--ar-midnight: #1C2030;
	--ar-silver: #B8BEC8;
	--ar-ether: #FAFAF8;
	--ar-deeper-night: #12151C;
	--ar-twilight: #4A5060;
	--ar-mist: #8E95A3;
	--ar-threshold-grey: #6B7280;
	--ar-platinum-glow: #EEEDEA;
	--ar-warm-highlight: #F5F4F0;
	--ar-azure: #2E5AA8;
	--ar-aqua: #5FA6C4;
	--ar-success: #2E8B85;
	--ar-alert: #C9923D;
	--ar-surface: #FFFFFF;
	--ar-accent-strip: linear-gradient(90deg, var(--ar-azure), var(--ar-aqua));

	--ar-font-display: "Cormorant Garamond", Georgia, serif;
	--ar-font-body: "Manrope", "Helvetica Neue", sans-serif;

	--ar-radius: 12px;
	--ar-radius-sm: 8px;
	--ar-shadow: 0 8px 32px rgba(28, 32, 48, 0.08);
	--ar-max-width: 1200px;
	--ar-header-height: 76px;
	--ar-header-height-lg: 84px;
}

/* ── Reset & base ──────────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: clip;
}

body {
	margin: 0;
	font-family: var(--ar-font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--ar-twilight);
	background: var(--ar-ether);
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
	max-width: 100%;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--ar-azure);
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
	color: var(--ar-aqua);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--ar-font-display);
	font-weight: 500;
	color: var(--ar-midnight);
	line-height: 1.15;
	margin: 0 0 0.5em;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	word-wrap: normal !important;
}

.ar-skip-link:focus {
	clip: auto;
	clip-path: none;
	height: auto;
	width: auto;
	padding: 12px 16px;
	background: var(--ar-midnight);
	color: var(--ar-ether);
	z-index: 99999;
	top: 8px;
	left: 8px;
	position: fixed;
}

/* ── Typography helpers ────────────────────────────────────────── */
.ar-label {
	font-family: var(--ar-font-body);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ar-threshold-grey);
	margin: 0 0 0.75em;
}

.ar-section-title,
.ar-page-title,
.ar-hero-title {
	font-family: var(--ar-font-display);
	font-weight: 500;
	color: var(--ar-midnight);
}

.ar-silver-line {
	width: 48px;
	height: 1px;
	background: var(--ar-silver);
	margin-top: 1rem;
}

/* ── Buttons ───────────────────────────────────────────────────── */
.ar-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	border-radius: var(--ar-radius-sm);
	font-family: var(--ar-font-body);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.02em;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.ar-btn--primary {
	background: var(--ar-midnight);
	color: var(--ar-ether);
	border-color: var(--ar-midnight);
}

.ar-btn--primary:hover {
	background: var(--ar-deeper-night);
	color: var(--ar-ether);
	border-color: var(--ar-deeper-night);
}

.ar-btn--ghost {
	background: transparent;
	color: var(--ar-midnight);
	border-color: var(--ar-silver);
}

.ar-btn--ghost:hover {
	background: rgba(184, 190, 200, 0.15);
	color: var(--ar-midnight);
}

.ar-theme-toggle {
	background: transparent;
	border: none;
	cursor: pointer;
}

.ar-theme-toggle {
	position: relative;
}

.ar-theme-icon-moon,
.ar-theme-icon-sun {
	position: absolute;
	top: calc(50% - 9px);
	left: calc(50% - 9px);
	transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

/* Light mode state: Moon visible, Sun hidden */
html[data-theme="light"] .ar-theme-icon-moon {
	opacity: 1;
	transform: rotate(0) scale(1);
}
html[data-theme="light"] .ar-theme-icon-sun {
	opacity: 0;
	transform: rotate(-90deg) scale(0.3);
	pointer-events: none;
}

/* Dark mode state: Sun visible, Moon hidden */
html[data-theme="dark"] .ar-theme-icon-moon {
	opacity: 0;
	transform: rotate(90deg) scale(0.3);
	pointer-events: none;
}
html[data-theme="dark"] .ar-theme-icon-sun {
	opacity: 1;
	transform: rotate(0) scale(1);
}

/* ── Header (premium) ──────────────────────────────────────────── */
.ar-header {
	position: sticky;
	top: 0;
	z-index: 1002;
	color: var(--ar-midnight);
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.97) 0%,
		rgba(250, 250, 248, 0.94) 100%
	);
	backdrop-filter: blur(20px) saturate(160%);
	-webkit-backdrop-filter: blur(20px) saturate(160%);
	border-bottom: 1px solid rgba(184, 190, 200, 0.28);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9) inset,
		0 8px 32px rgba(28, 32, 48, 0.04);
	transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.ar-header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--ar-accent-strip);
	opacity: 0.9;
}

.ar-header.is-scrolled {
	border-bottom-color: rgba(184, 190, 200, 0.38);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.85) inset,
		0 12px 40px rgba(28, 32, 48, 0.07);
}

.ar-header.is-scrolled .ar-header-inner {
	min-height: 58px;
}

.ar-header.is-scrolled .ar-header-nav {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate3d(0, -8px, 0);
}

.ar-header.is-scrolled .ar-header-cta,
.ar-header.is-scrolled .ar-header-actions {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate3d(12px, 0, 0);
}

.ar-header.is-scrolled .ar-brand .custom-logo-link img,
.ar-header.is-scrolled .ar-brand .ar-monogram,
.ar-header.is-scrolled .ar-brand .ar-logo-img {
	transform: scale(0.92);
	transform-origin: left center;
}

.ar-header.is-scrolled .ar-wordmark-tagline {
	opacity: 0;
	transform: translateY(-4px);
}

/* WP Admin Bar overrides for sticky header, fixed drawer and backdrop */
.admin-bar .ar-header {
	top: 32px;
}

.admin-bar .ar-nav-wrap {
	top: 32px;
	height: calc(100vh - 32px);
	height: calc(100dvh - 32px);
}

.admin-bar .ar-nav-backdrop {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar .ar-header {
		top: 46px;
	}

	.admin-bar .ar-nav-wrap {
		top: 46px;
		height: calc(100vh - 46px);
		height: calc(100dvh - 46px);
	}

	.admin-bar .ar-nav-backdrop {
		top: 46px;
	}
}

.ar-header-inner {
	max-width: var(--ar-max-width);
	margin: 0 auto;
	padding: 0 20px;
	min-height: var(--ar-header-height);
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 16px;
	transition: min-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.ar-header-brand {
	display: flex;
	align-items: center;
	min-width: 0;
	flex: 1 1 auto;
	max-width: 100%;
}

.ar-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--ar-midnight);
	text-decoration: none;
	min-width: 0;
	max-width: 100%;
	transition: opacity 0.25s ease;
}

.ar-brand:hover {
	color: var(--ar-midnight);
	opacity: 0.82;
}

.ar-brand .custom-logo-link img,
.ar-monogram {
	transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.ar-brand .custom-logo-link {
	flex-shrink: 0;
}

.ar-brand .custom-logo-link img {
	max-height: 44px !important;
	width: auto !important;
	height: auto !important;
}

.ar-monogram {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	display: block;
}

.ar-logo-img {
	height: 48px !important;
	width: auto !important;
	max-width: 100%;
	object-fit: contain;
	transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
	display: block;
}

.ar-brand:hover .ar-logo-img {
	transform: scale(1.02);
}

.ar-wordmark {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
	min-width: 0;
	flex: 1 1 auto;
}

.ar-wordmark-name {
	font-family: var(--ar-font-display);
	font-size: clamp(1.05rem, 2.2vw, 1.35rem);
	font-weight: 500;
	color: var(--ar-midnight);
	letter-spacing: 0.01em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ar-wordmark-tagline {
	font-family: var(--ar-font-body);
	font-size: 9px;
	font-weight: 500;
	color: var(--ar-mist);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Center nav — desktop */
.ar-header-nav {
	display: none;
	position: relative;
	transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s;
}

.ar-nav-indicator {
	position: absolute;
	top: 50%;
	left: 0;
	height: 38px;
	background: rgba(28, 32, 48, 0.06);
	border: 1px solid rgba(184, 190, 200, 0.35);
	border-radius: 99px;
	transform: translateY(-50%);
	pointer-events: none;
	z-index: 1;
	opacity: 0;
	transition:
		transform 0.38s cubic-bezier(0.25, 1, 0.5, 1),
		width 0.38s cubic-bezier(0.25, 1, 0.5, 1),
		opacity 0.25s ease;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.ar-header-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 4px;
	position: relative;
	z-index: 2;
}

.ar-header-nav-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 10px 18px;
	font-family: var(--ar-font-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ar-threshold-grey);
	text-decoration: none;
	z-index: 2;
	transition: color 0.25s ease;
}

.ar-header-nav-link span {
	position: relative;
	z-index: 3;
}

.ar-header-nav-link:hover {
	color: var(--ar-midnight);
}

.ar-header-nav-link.is-active {
	color: var(--ar-midnight);
}

/* Tools cluster */
.ar-header-tools {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	flex-shrink: 0;
	transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s;
}

.ar-header-actions {
	display: flex;
	align-items: center;
	gap: 6px;
	padding-left: 14px;
	border-left: 1px solid rgba(184, 190, 200, 0.35);
	transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s;
}

.ar-header-icon-btn,
.ar-header-cart {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(184, 190, 200, 0.4);
	background: rgba(255, 255, 255, 0.65);
	color: var(--ar-threshold-grey);
	transition:
		color 0.25s ease,
		background 0.25s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease,
		transform 0.25s ease;
}

.ar-header-icon-btn:hover,
.ar-header-cart:hover {
	color: var(--ar-midnight);
	background: var(--ar-surface);
	border-color: rgba(184, 190, 200, 0.65);
	box-shadow: 0 4px 16px rgba(28, 32, 48, 0.06);
	transform: translateY(-1px);
}

.ar-header-cart-count {
	position: absolute;
	top: 2px;
	right: 2px;
	background: var(--ar-midnight);
	color: var(--ar-ether);
	font-size: 9px;
	font-weight: 700;
	min-width: 17px;
	height: 17px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	border: 2px solid var(--ar-surface);
}

.ar-header-account-label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

.ar-header-cta {
	display: none;
	padding: 12px 24px !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 0.14em !important;
	text-transform: uppercase !important;
	border-radius: 999px !important;
	box-shadow: 0 4px 20px rgba(28, 32, 48, 0.12);
	white-space: nowrap;
	transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s, box-shadow 0.25s ease;
}

.ar-header-cta:hover {
	box-shadow: 0 8px 28px rgba(28, 32, 48, 0.16);
}

/* Nav drawer */
.ar-nav-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(28, 32, 48, 0.45);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 1000;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.45s ease, visibility 0.45s, backdrop-filter 0.45s ease;
}

.ar-nav-backdrop.is-visible {
	pointer-events: auto;
	opacity: 1;
	visibility: visible;
}

.ar-nav-wrap {
	position: fixed;
	top: 0;
	right: 0;
	width: min(420px, 100%);
	height: 100vh;
	height: 100dvh;
	max-height: 100dvh;
	overflow-x: hidden;
	overflow-y: auto;
	background: linear-gradient(180deg, var(--ar-surface) 0%, var(--ar-ether) 100%);
	border-left: 1px solid rgba(184, 190, 200, 0.35);
	box-shadow: -24px 0 64px rgba(28, 32, 48, 0.12);
	z-index: 1001;
	transform: translateX(100%);
	visibility: hidden;
	pointer-events: none;
	transition:
		transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
		visibility 0.42s;
	-webkit-overflow-scrolling: touch;
}

.ar-nav-wrap::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--ar-accent-strip);
}

.ar-nav-wrap.is-open {
	transform: translateX(0);
	visibility: visible;
	pointer-events: auto;
}

.ar-nav-panel-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	padding: calc(var(--ar-header-height) + 20px) 28px 24px;
	border-bottom: 1px solid rgba(184, 190, 200, 0.28);
}

.ar-nav-panel-brand {
	flex: 1;
	min-width: 0;
}

.ar-nav-panel-eyebrow {
	margin: 0 0 6px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ar-mist);
}

.ar-nav-panel-title {
	margin: 0;
	font-family: var(--ar-font-display);
	font-size: 1.65rem;
	font-weight: 500;
	color: var(--ar-midnight);
	line-height: 1.15;
}

.ar-nav-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	padding: 0;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	background: var(--ar-surface);
	border: 1px solid rgba(184, 190, 200, 0.4);
	border-radius: 50%;
	color: var(--ar-threshold-grey);
	transition: 
		color 0.3s ease, 
		background 0.3s ease, 
		border-color 0.3s ease, 
		transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ar-nav-close:hover {
	color: var(--ar-midnight);
	background: var(--ar-ether);
	border-color: var(--ar-silver);
	transform: rotate(90deg) scale(1.08);
}

.ar-nav-close:focus {
	outline: none;
}

.ar-nav-close:focus-visible {
	outline: 2px solid var(--ar-aqua);
	outline-offset: 2px;
}

/* Staggered entrance animations for drawer contents */
.ar-nav-wrap .ar-nav-panel-brand,
.ar-nav-wrap .ar-nav-close,
.ar-nav-wrap .ar-nav-label,
.ar-nav-wrap .ar-menu--primary > li,
.ar-nav-wrap .ar-menu--discovery > li,
.ar-nav-wrap .ar-nav-panel-foot {
	opacity: 0;
	transform: translate3d(24px, 0, 0);
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.ar-nav-wrap.is-open .ar-nav-panel-brand,
.ar-nav-wrap.is-open .ar-nav-close,
.ar-nav-wrap.is-open .ar-nav-label,
.ar-nav-wrap.is-open .ar-menu--primary > li,
.ar-nav-wrap.is-open .ar-menu--discovery > li,
.ar-nav-wrap.is-open .ar-nav-panel-foot {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

/* Staggered transition delays when opening drawer */
.ar-nav-wrap.is-open .ar-nav-panel-brand {
	transition-delay: 0.12s;
}
.ar-nav-wrap.is-open .ar-nav-close {
	transition-delay: 0.16s;
}

.ar-nav-wrap.is-open .ar-nav--primary .ar-nav-label {
	transition-delay: 0.2s;
}
.ar-nav-wrap.is-open .ar-menu--primary > li:nth-child(1) { transition-delay: 0.24s; }
.ar-nav-wrap.is-open .ar-menu--primary > li:nth-child(2) { transition-delay: 0.28s; }
.ar-nav-wrap.is-open .ar-menu--primary > li:nth-child(3) { transition-delay: 0.32s; }
.ar-nav-wrap.is-open .ar-menu--primary > li:nth-child(4) { transition-delay: 0.36s; }
.ar-nav-wrap.is-open .ar-menu--primary > li:nth-child(5) { transition-delay: 0.40s; }
.ar-nav-wrap.is-open .ar-menu--primary > li:nth-child(6) { transition-delay: 0.44s; }

.ar-nav-wrap.is-open .ar-nav--discovery .ar-nav-label {
	transition-delay: 0.34s;
}
.ar-nav-wrap.is-open .ar-menu--discovery > li:nth-child(1) { transition-delay: 0.38s; }
.ar-nav-wrap.is-open .ar-menu--discovery > li:nth-child(2) { transition-delay: 0.42s; }
.ar-nav-wrap.is-open .ar-menu--discovery > li:nth-child(3) { transition-delay: 0.46s; }
.ar-nav-wrap.is-open .ar-menu--discovery > li:nth-child(4) { transition-delay: 0.50s; }

.ar-nav-wrap.is-open .ar-nav-panel-foot {
	transition-delay: 0.54s;
}

.ar-nav-inner {
	padding: 0 0 28px;
}

.ar-nav {
	max-width: none;
	margin: 0;
	padding: 24px 28px 12px;
}

.ar-nav-label {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ar-mist);
	margin: 0 0 14px;
}

.ar-nav-label::after {
	content: "";
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, rgba(184, 190, 200, 0.5), transparent);
	max-width: 80px;
}

.ar-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.ar-menu a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-family: var(--ar-font-display);
	font-size: 1.15rem;
	font-weight: 500;
	color: var(--ar-twilight);
	padding: 14px 4px;
	border-bottom: 1px solid rgba(238, 237, 234, 0.9);
	border-radius: 0;
	transition: color 0.25s ease, padding-left 0.25s ease;
}

.ar-menu a:hover,
.ar-menu .current-menu-item > a,
.ar-menu .current_page_item > a {
	color: var(--ar-midnight);
	padding-left: 8px;
	background: transparent;
	border-color: rgba(184, 190, 200, 0.35);
}

.ar-nav--discovery {
	border-top: 1px solid rgba(184, 190, 200, 0.22);
	padding-top: 8px;
}

.ar-nav--discovery .ar-menu a {
	font-family: var(--ar-font-body);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.ar-menu--discovery > li:nth-child(-n+4) a {
	border-left: none;
	padding-left: 4px;
}

.ar-menu--discovery > li:nth-child(-n+4) a:hover {
	border-left: none;
	padding-left: 10px;
}

.ar-menu--primary > li:last-child a {
	color: var(--ar-azure);
	font-weight: 600;
}

.ar-nav-panel-foot {
	padding: 20px 28px 32px;
	border-top: 1px solid rgba(184, 190, 200, 0.22);
}

.ar-btn--full {
	width: 100%;
	justify-content: center;
	letter-spacing: 0.12em !important;
	text-transform: uppercase !important;
	font-size: 11px !important;
	padding: 16px 24px !important;
	border-radius: 999px !important;
}

/* Hamburger */
.ar-nav-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	width: 42px;
	height: 42px;
	padding: 0;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	background: rgba(255, 255, 255, 0.65);
	border: 1px solid rgba(184, 190, 200, 0.4);
	border-radius: 50%;
	color: var(--ar-midnight);
	box-shadow: none;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	transition: border-color 0.25s, background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.ar-nav-toggle:hover {
	border-color: rgba(184, 190, 200, 0.65);
	background: var(--ar-surface);
	box-shadow: 0 4px 16px rgba(28, 32, 48, 0.06);
}

.ar-nav-toggle:focus {
	outline: none;
}

.ar-nav-toggle:focus-visible {
	outline: 2px solid var(--ar-aqua);
	outline-offset: 2px;
}

.ar-nav-toggle.is-active {
	background: var(--ar-midnight);
	border-color: var(--ar-midnight);
	color: var(--ar-ether);
}

.ar-nav-toggle-icon {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 18px;
	height: 12px;
	position: relative;
	pointer-events: none;
}

.ar-nav-toggle-bar {
	display: block;
	width: 16px;
	height: 1px;
	background: currentColor;
	border-radius: 1px;
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
	pointer-events: none;
}

.ar-nav-toggle-bar + .ar-nav-toggle-bar {
	margin-top: 6px;
}

.ar-nav-toggle.is-active .ar-nav-toggle-bar:nth-child(1) {
	transform: translateY(3.5px) rotate(45deg);
}

.ar-nav-toggle.is-active .ar-nav-toggle-bar:nth-child(2) {
	transform: translateY(-3.5px) rotate(-45deg);
}

/* Micro-interaction: nudge hamburger bars slightly on hover */
.ar-nav-toggle:not(.is-active):hover .ar-nav-toggle-bar:nth-child(1) {
	transform: translateY(-1px);
}

.ar-nav-toggle:not(.is-active):hover .ar-nav-toggle-bar:nth-child(2) {
	transform: translateY(1px);
}

.ar-nav-toggle-label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

body.ar-nav-open {
	overflow: hidden;
}

@media (max-width: 960px) {
	.ar-header-inner {
		padding: 0 16px;
	}

	.ar-wordmark-tagline {
		display: none;
	}

	.ar-wordmark-name {
		font-size: 1.05rem;
		max-width: min(160px, 38vw);
	}

	.ar-monogram {
		width: 38px;
		height: 38px;
	}

	.ar-header-actions {
		padding-left: 0;
		border-left: none;
		gap: 4px;
	}

	.ar-header-cta {
		display: none !important;
	}

	.ar-nav-wrap {
		width: 100%;
		border-left: none;
	}
}

@media (min-width: 961px) {
	.ar-header-inner {
		grid-template-columns: minmax(200px, 280px) 1fr auto;
		padding: 0 32px;
		min-height: var(--ar-header-height-lg);
		gap: 24px;
	}

	.ar-header-brand {
		flex: 0 1 auto;
		max-width: 280px;
	}

	.ar-header-nav {
		display: flex;
		justify-content: center;
	}

	.ar-logo-lockup {
		max-height: 46px;
	}

	.ar-header-cta {
		display: inline-flex;
	}

	.ar-header-tools {
		gap: 14px;
	}
}

@media (min-width: 1100px) {
	.ar-header-nav-list {
		gap: 8px;
	}

	.ar-header-nav-link {
		padding: 10px 22px;
	}
}

@keyframes arNavSlide {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ── Main layout ───────────────────────────────────────────────── */
.ar-main {
	min-height: 50vh;
	width: 100%;
	max-width: 100%;
	overflow-x: clip;
}

.ar-header {
	width: 100%;
	max-width: 100%;
}

.ar-page-wrap {
	width: 100%;
	max-width: var(--ar-max-width);
	margin: 0 auto;
	padding: 48px 24px 80px;
	box-sizing: border-box;
}

.ar-page-wrap--content {
	max-width: 760px;
}

.ar-page-wrap--shop {
	overflow-x: clip;
	padding-top: calc(var(--ar-header-height) + 24px);
}

@media (min-width: 961px) {
	.ar-page-wrap--shop {
		padding-top: calc(var(--ar-header-height-lg) + 48px);
	}
}

.ar-page-header {
	margin-bottom: 2rem;
}

.ar-page-title {
	font-size: clamp(2rem, 4vw, 3rem);
}

.ar-prose {
	font-size: 16px;
	line-height: 1.75;
	color: var(--ar-threshold-grey);
}

.ar-prose h2 {
	font-size: 1.75rem;
	margin-top: 2rem;
}

.ar-prose .ar-lead {
	font-family: var(--ar-font-display);
	font-size: 1.35rem;
	line-height: 1.5;
	color: var(--ar-twilight);
	margin-bottom: 2rem;
}

.ar-prose blockquote {
	margin: 2rem 0;
	padding: 1.5rem 1.75rem;
	border-left: 2px solid var(--ar-silver);
	background: var(--ar-platinum-glow);
	border-radius: 0 var(--ar-radius-sm) var(--ar-radius-sm) 0;
}

.ar-prose blockquote p {
	font-family: var(--ar-font-display);
	font-size: 1.35rem;
	font-style: italic;
	color: var(--ar-midnight);
	margin: 0;
}

.ar-prose blockquote cite {
	display: block;
	margin-top: 0.75rem;
	font-family: var(--ar-font-body);
	font-size: 11px;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ar-mist);
}

.ar-prose ul {
	padding-left: 1.25rem;
}

.ar-prose li {
	margin-bottom: 0.5rem;
}

/* ── Hero ──────────────────────────────────────────────────────── */
.ar-hero {
	position: relative;
	background: linear-gradient(180deg, var(--ar-surface) 0%, var(--ar-ether) 55%, var(--ar-platinum-glow) 100%);
	color: var(--ar-midnight);
	padding: 80px 24px 96px;
	overflow: hidden;
}

.ar-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 20% 100%, rgba(184, 190, 200, 0.18), transparent),
		radial-gradient(ellipse 60% 50% at 80% 20%, rgba(238, 237, 234, 0.6), transparent);
	pointer-events: none;
}

/* Subtle grain texture per brand book */
.ar-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.03;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	pointer-events: none;
}

.ar-hero-frame {
	position: absolute;
	top: 32px;
	left: 32px;
	right: 32px;
	bottom: 32px;
	border: 1px solid rgba(184, 190, 200, 0.35);
	pointer-events: none;
}

.ar-hero-inner {
	position: relative;
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}

.ar-hero-title {
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	color: var(--ar-midnight);
	margin-bottom: 1rem;
}

.ar-hero-lead {
	font-size: 17px;
	line-height: 1.75;
	color: var(--ar-threshold-grey);
	max-width: 560px;
	margin: 0 auto 2rem;
}

.ar-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

/* ── Sections ──────────────────────────────────────────────────── */
.ar-section {
	padding: 72px 24px;
	max-width: var(--ar-max-width);
	margin: 0 auto;
}

.ar-section-header {
	margin-bottom: 2.5rem;
}

.ar-section-header .ar-section-title {
	font-size: clamp(1.75rem, 3vw, 2.75rem);
}

/* Realms grid */
.ar-realms-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
}

.ar-realm-card {
	display: flex;
	flex-direction: column;
	padding: 28px 24px;
	background: var(--ar-surface);
	border: 1px solid var(--ar-platinum-glow);
	border-radius: var(--ar-radius);
	color: inherit;
	transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.ar-realm-card:hover {
	box-shadow: var(--ar-shadow);
	transform: translateY(-2px);
	border-color: var(--ar-silver);
	color: inherit;
}

.ar-realm-label {
	font-family: var(--ar-font-display);
	font-size: 1.35rem;
	font-weight: 500;
	color: var(--ar-midnight);
	margin-bottom: 0.75rem;
}

.ar-realm-desc {
	font-size: 14px;
	line-height: 1.65;
	color: var(--ar-threshold-grey);
	flex: 1;
	margin: 0 0 1rem;
}

.ar-realm-link {
	font-size: 13px;
	font-weight: 600;
	color: var(--ar-azure);
}

/* Category cards */
.ar-cat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 16px;
}

.ar-cat-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 120px;
	padding: 24px 20px;
	background: var(--ar-surface);
	border: 1px solid var(--ar-platinum-glow);
	border-radius: var(--ar-radius);
	color: var(--ar-midnight);
	transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.ar-cat-card:hover {
	background: var(--ar-ether);
	border-color: var(--ar-silver);
	color: var(--ar-midnight);
	box-shadow: var(--ar-shadow);
}

.ar-cat-name {
	font-family: var(--ar-font-display);
	font-size: 1.5rem;
	font-weight: 500;
}

.ar-cat-cta {
	font-size: 12px;
	font-weight: 600;
	color: var(--ar-threshold-grey);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

/* Quote band */
.ar-quote {
	background: var(--ar-platinum-glow);
	padding: 64px 24px;
	max-width: none;
}

.ar-quote-inner {
	max-width: 640px;
	margin: 0 auto;
	position: relative;
	text-align: center;
}

.ar-quote-frame {
	position: absolute;
	inset: -24px;
	border: 1px solid rgba(200, 205, 214, 0.25);
	pointer-events: none;
}

.ar-quote blockquote {
	margin: 0;
}

.ar-quote p {
	font-family: var(--ar-font-display);
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-style: italic;
	color: var(--ar-midnight);
	line-height: 1.35;
}

.ar-quote cite {
	display: block;
	margin-top: 1rem;
	font-family: var(--ar-font-body);
	font-size: 12px;
	font-style: normal;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ar-threshold-grey);
}

/* CTA band */
.ar-cta-band {
	background: var(--ar-surface);
	border-top: 1px solid var(--ar-platinum-glow);
	border-bottom: 1px solid var(--ar-platinum-glow);
	max-width: none;
	padding: 72px 24px;
}

.ar-cta-band-inner {
	max-width: 560px;
	margin: 0 auto;
	text-align: center;
}

.ar-cta-title {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	color: var(--ar-midnight);
	margin-bottom: 0.75rem;
}

.ar-cta-text {
	color: var(--ar-threshold-grey);
	margin-bottom: 1.5rem;
	font-size: 16px;
}

/* ── Footer ────────────────────────────────────────────────────── */
.ar-footer {
	background: var(--ar-ether);
	color: var(--ar-threshold-grey);
	border-top: 1px solid var(--ar-platinum-glow);
	width: 100%;
	max-width: 100%;
	overflow-x: clip;
}

.ar-footer-accent {
	height: 2px;
	background: var(--ar-accent-strip);
	opacity: 0.75;
}

.ar-footer-inner {
	max-width: var(--ar-max-width);
	margin: 0 auto;
	padding: 56px 24px 32px;
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 48px;
}

.ar-footer-tagline {
	font-family: var(--ar-font-display);
	font-size: 1.1rem;
	font-style: italic;
	color: var(--ar-midnight);
	margin: 12px 0 8px;
}

.ar-footer-manifesto {
	font-size: 14px;
	color: var(--ar-mist);
	margin: 0;
	max-width: 280px;
}

.ar-footer-columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.ar-footer-heading {
	font-family: var(--ar-font-body);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ar-midnight);
	margin: 0 0 1rem;
}

.ar-footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ar-footer-links li {
	margin-bottom: 8px;
}

.ar-footer-links a {
	color: var(--ar-mist);
	font-size: 14px;
}

.ar-footer-links a:hover {
	color: var(--ar-azure);
}

.ar-footer-muted {
	font-size: 14px;
	color: var(--ar-mist);
}

.ar-footer-realms {
	grid-column: 1 / -1;
	padding-top: 24px;
	border-top: 1px solid var(--ar-platinum-glow);
}

.ar-footer-realms-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
}

.ar-footer-realms-list a {
	font-size: 14px;
	color: var(--ar-mist);
}

.ar-footer-realms-list a:hover {
	color: var(--ar-azure);
}

.ar-footer-bottom {
	border-top: 1px solid var(--ar-platinum-glow);
	padding: 20px 24px;
	text-align: center;
}

.ar-footer-bottom p {
	margin: 0;
	font-size: 12px;
	color: var(--ar-mist);
}

@media (max-width: 900px) {
	.ar-footer-inner {
		grid-template-columns: 1fr;
	}

	.ar-footer-columns {
		grid-template-columns: 1fr;
	}
}

/* ── WooCommerce overrides ─────────────────────────────────────── */
.woocommerce .woocommerce-breadcrumb,
.ar-breadcrumb {
	font-size: 13px;
	color: var(--ar-mist);
	margin-bottom: 1.5rem;
	padding: 0;
	max-width: 100%;
}

.ar-breadcrumb__track {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	white-space: nowrap;
	padding-bottom: 2px;
	max-width: 100%;
	min-width: 0;
}

.ar-breadcrumb__track::-webkit-scrollbar {
	display: none;
}

.ar-breadcrumb__item {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}

.ar-breadcrumb__item a {
	color: var(--ar-azure);
	font-weight: 500;
}

.ar-breadcrumb__item a:hover {
	color: var(--ar-aqua);
}

.ar-breadcrumb-sep {
	margin: 0 8px;
	color: var(--ar-silver);
	flex-shrink: 0;
}

.woocommerce ul.products {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 24px;
	margin: 0;
	padding: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products li.product {
	width: 100% !important;
	margin: 0 !important;
	float: none !important;
	background: var(--ar-ether);
	border: 1px solid var(--ar-platinum-glow);
	border-radius: var(--ar-radius);
	overflow: hidden;
	transition: box-shadow 0.25s;
}

.woocommerce ul.products li.product:hover {
	box-shadow: var(--ar-shadow);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--ar-font-display);
	font-size: 1.15rem;
	font-weight: 500;
	color: var(--ar-midnight);
	padding: 12px 16px 4px;
}

.woocommerce ul.products li.product .price {
	padding: 0 16px 16px;
	color: var(--ar-threshold-grey);
	font-family: var(--ar-font-body);
	font-weight: 600;
}

.woocommerce ul.products li.product .price .amount {
	color: var(--ar-midnight);
}

.woocommerce ul.products li.product img {
	border-radius: 0;
}

.woocommerce span.onsale {
	background: var(--ar-midnight);
	color: var(--ar-ether);
	border-radius: var(--ar-radius-sm);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	min-height: auto;
	line-height: 1.4;
	padding: 6px 10px;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button {
	background: var(--ar-midnight) !important;
	color: var(--ar-ether) !important;
	border: 1px solid var(--ar-midnight) !important;
	border-radius: var(--ar-radius-sm) !important;
	font-family: var(--ar-font-body) !important;
	font-weight: 600 !important;
	font-size: 14px !important;
	padding: 12px 24px !important;
	transition: background 0.2s !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .button:hover {
	background: var(--ar-deeper-night) !important;
	border-color: var(--ar-deeper-night) !important;
	color: var(--ar-ether) !important;
}

.woocommerce a.button.alt,
.woocommerce button.button.alt {
	background: var(--ar-azure) !important;
	border-color: var(--ar-azure) !important;
}

.woocommerce div.product .product_title {
	font-family: var(--ar-font-display);
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 500;
	color: var(--ar-midnight);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	font-family: var(--ar-font-body);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--ar-midnight);
}

.woocommerce div.product .woocommerce-product-details__short-description {
	font-size: 15px;
	line-height: 1.7;
	color: var(--ar-threshold-grey);
}

.woocommerce table.shop_table {
	border: 1px solid var(--ar-platinum-glow);
	border-radius: var(--ar-radius);
	overflow: hidden;
}

.woocommerce table.shop_table th {
	background: var(--ar-midnight);
	color: var(--ar-ether);
	font-family: var(--ar-font-body);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 14px 16px;
}

.woocommerce table.shop_table td {
	border-top: 1px solid var(--ar-platinum-glow);
	padding: 14px 16px;
}

.woocommerce .cart-collaterals,
.woocommerce-checkout {
	background: var(--ar-ether);
}

.woocommerce form .form-row label {
	font-size: 13px;
	font-weight: 600;
	color: var(--ar-twilight);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	border: 1px solid var(--ar-platinum-glow);
	border-radius: var(--ar-radius-sm);
	padding: 12px 14px;
	background: var(--ar-ether);
	font-family: var(--ar-font-body);
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
	border-color: var(--ar-silver);
	outline: none;
	box-shadow: 0 0 0 3px rgba(200, 205, 214, 0.25);
}

.woocommerce-message,
.woocommerce-info {
	border-top-color: var(--ar-azure);
	background: var(--ar-platinum-glow);
}

.woocommerce-error {
	border-top-color: var(--ar-alert);
}

.woocommerce .star-rating span::before {
	color: var(--ar-alert);
}

/* Shop header */
.ar-shop-header {
	margin-bottom: 2rem;
}

/* ── Plugin UI alignment (customizer + gift) ───────────────────── */
.ar-customizer-panel,
.ar-gift-choice,
.ar-gift-section {
	border-color: var(--ar-platinum-glow) !important;
	background: var(--ar-ether) !important;
	border-radius: var(--ar-radius) !important;
}

.ar-customize-toggle,
.ar-confirm,
#ar-confirm-customization {
	background: var(--ar-midnight) !important;
	color: var(--ar-ether) !important;
	border-color: var(--ar-midnight) !important;
	border-radius: var(--ar-radius-sm) !important;
	font-family: var(--ar-font-body) !important;
	font-weight: 600 !important;
}

.ar-customize-toggle:hover,
.ar-confirm:hover {
	background: var(--ar-deeper-night) !important;
}

.ar-preview-tab.is-active {
	background: var(--ar-midnight) !important;
	border-color: var(--ar-midnight) !important;
}

.ar-confirmed-note {
	color: var(--ar-success) !important;
}

.ar-gift-section h3 label {
	font-family: var(--ar-font-display);
	font-size: 1.25rem;
	color: var(--ar-midnight);
}

.ar-gift-choice__option:has(input:checked) {
	border-color: var(--ar-midnight) !important;
	background: #fff !important;
}

.ar-footer-widget .ar-footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* ── Pagination ────────────────────────────────────────────────── */
.woocommerce nav.woocommerce-pagination ul {
	border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
	border: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	background: var(--ar-ether);
	border: 1px solid var(--ar-platinum-glow);
	color: var(--ar-midnight);
	border-radius: var(--ar-radius-sm);
	margin: 0 4px;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
	background: var(--ar-midnight);
	color: var(--ar-ether);
	border-color: var(--ar-midnight);
}

/* ── Logo lockup ───────────────────────────────────────────────── */
.ar-logo-lockup,
.ar-brand .custom-logo {
	max-height: 48px !important;
	width: auto !important;
	height: auto !important;
	display: block;
}

.custom-logo-link {
	display: flex;
	align-items: center;
	line-height: 0;
}

/* ── Realm landing pages ───────────────────────────────────────── */
.ar-realm-hero {
	position: relative;
	background: linear-gradient(180deg, var(--ar-surface) 0%, var(--ar-ether) 100%);
	color: var(--ar-midnight);
	padding: 64px 24px 72px;
	overflow: hidden;
}

.ar-realm-hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--ar-accent-strip);
	pointer-events: none;
}

.ar-realm-hero-frame {
	position: absolute;
	top: 24px;
	left: 24px;
	right: 24px;
	bottom: 24px;
	border: 1px solid rgba(184, 190, 200, 0.35);
	pointer-events: none;
}

.ar-realm-hero-inner {
	position: relative;
	max-width: 720px;
	margin: 0 auto;
}

.ar-realm-hero .ar-hero-title {
	color: var(--ar-midnight);
	font-size: clamp(2rem, 4vw, 3.25rem);
}

.ar-realm-hero .ar-hero-lead {
	color: var(--ar-threshold-grey);
	max-width: 560px;
}

.ar-page-wrap--realm {
	padding-top: 48px;
}

.ar-realm-intro {
	margin-bottom: 3rem;
	max-width: 640px;
}

.ar-realm-products {
	margin-bottom: 3rem;
}

.ar-realm-products .products {
	margin-top: 1.5rem;
}

.ar-realm-empty {
	color: var(--ar-threshold-grey);
	margin-bottom: 1rem;
}

.ar-realm-crosslink {
	padding-top: 2rem;
	border-top: 1px solid var(--ar-platinum-glow);
}

.ar-realm-crosslink-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 12px;
}

.ar-realm-crosslink-item {
	padding: 10px 18px;
	border: 1px solid var(--ar-platinum-glow);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	color: var(--ar-midnight);
	background: var(--ar-ether);
}

.ar-realm-crosslink-item:hover {
	border-color: var(--ar-silver);
	color: var(--ar-azure);
}

/* Warm product image treatment — colour grade only, no blur */
.woocommerce ul.products li.product img,
.woocommerce div.product div.images img {
	filter: saturate(0.96) contrast(1.02);
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
	display: block;
	overflow: hidden;
}

.woocommerce ul.products li.product img {
	transition: transform 0.35s ease;
}

.woocommerce ul.products li.product:hover img {
	transform: scale(1.03);
}

/* ───────────────────────────────────────────────────────────────
   Onboarding Journey (Begin Guide) Styling
   ─────────────────────────────────────────────────────────────── */

.ar-begin-page {
	padding: 60px 0 100px;
	background: var(--ar-ether);
	color: var(--ar-midnight);
}

.ar-begin-hero {
	text-align: center;
	margin-bottom: 60px;
	padding: 0 20px;
}

.ar-begin-hero-inner {
	max-width: 800px;
	margin: 0 auto;
}

.ar-begin-eyebrow {
	font-family: var(--ar-font-body);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ar-azure);
	display: block;
	margin-bottom: 12px;
	opacity: 0;
	transform: translateY(15px);
	animation: ar-hero-reveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.1s;
}

.ar-begin-title {
	font-family: var(--ar-font-display);
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 400;
	line-height: 1.15;
	color: var(--ar-midnight);
	margin: 0 0 20px;
	opacity: 0;
	transform: translateY(15px);
	animation: ar-hero-reveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.22s;
}

.ar-begin-lead {
	font-family: var(--ar-font-body);
	font-size: clamp(15px, 1.5vw, 17px);
	color: var(--ar-twilight);
	line-height: 1.65;
	margin: 0;
	opacity: 0;
	transform: translateY(15px);
	animation: ar-hero-reveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.35s;
}

@keyframes ar-hero-reveal {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.ar-begin-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Steps Navigation */
.ar-begin-steps-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 800px;
	margin: 0 auto 48px;
	position: relative;
	padding: 0 10px;
}

.ar-begin-steps-nav::before {
	content: "";
	position: absolute;
	top: 18px;
	left: 40px;
	right: 40px;
	height: 1px;
	background: rgba(184, 190, 200, 0.35);
	z-index: 1;
}

.ar-begin-step-indicator {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
	text-align: center;
}

.ar-begin-step-num {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--ar-surface);
	border: 1px solid rgba(184, 190, 200, 0.4);
	color: var(--ar-threshold-grey);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--ar-font-body);
	font-weight: 700;
	font-size: 13px;
	transition: all 0.35s ease;
	margin-bottom: 10px;
	box-shadow: 0 2px 8px rgba(28, 32, 48, 0.04);
}

.ar-begin-step-title {
	font-family: var(--ar-font-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ar-threshold-grey);
	transition: all 0.35s ease;
}

.ar-begin-step-indicator:hover .ar-begin-step-num {
	border-color: var(--ar-azure);
	color: var(--ar-azure);
}

.ar-begin-step-indicator.is-active .ar-begin-step-num {
	background: var(--ar-midnight);
	border-color: var(--ar-midnight);
	color: var(--ar-ether);
	box-shadow: 0 4px 12px rgba(28, 32, 48, 0.15);
	animation: ar-step-pulse 1.8s infinite;
}

.ar-begin-step-indicator.is-active .ar-begin-step-title {
	color: var(--ar-midnight);
	font-weight: 700;
}

@keyframes ar-step-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(10, 26, 63, 0.25);
	}
	70% {
		box-shadow: 0 0 0 8px rgba(10, 26, 63, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(10, 26, 63, 0);
	}
}

/* Wizard card */
.ar-begin-wizard-card {
	background: var(--ar-surface);
	border: 1px solid rgba(184, 190, 200, 0.28);
	border-radius: var(--ar-radius);
	box-shadow: 0 16px 48px rgba(28, 32, 48, 0.04);
	overflow: hidden;
}

.ar-begin-step-pane {
	display: none;
	animation: ar-fade-slide-in 0.5s ease forwards;
}

.ar-begin-step-pane.is-active {
	display: block;
}

.ar-begin-pane-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	min-height: 520px;
}

@media (max-width: 900px) {
	.ar-begin-pane-grid {
		grid-template-columns: 1fr;
	}
}

.ar-begin-pane-content {
	padding: 48px;
	border-right: 1px solid rgba(184, 190, 200, 0.25);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media (max-width: 900px) {
	.ar-begin-pane-content {
		border-right: none;
		border-bottom: 1px solid rgba(184, 190, 200, 0.25);
		padding: 32px;
	}
}

.ar-begin-pane-content h2,
.ar-begin-pane-content p,
.ar-begin-quote,
.ar-begin-upload-zone,
.ar-begin-card-inputs,
.ar-begin-summary-box {
	opacity: 0;
	transform: translateY(12px);
}

.ar-begin-step-pane.is-active .ar-begin-pane-content h2 {
	animation: ar-pane-reveal 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.1s;
}

.ar-begin-step-pane.is-active .ar-begin-pane-content p {
	animation: ar-pane-reveal 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.2s;
}

.ar-begin-step-pane.is-active .ar-begin-quote {
	animation: ar-pane-reveal 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.3s;
}

.ar-begin-step-pane.is-active .ar-begin-upload-zone {
	animation: ar-pane-reveal 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.3s;
}

.ar-begin-step-pane.is-active .ar-begin-card-inputs {
	animation: ar-pane-reveal 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.3s;
}

.ar-begin-step-pane.is-active .ar-begin-summary-box {
	animation: ar-pane-reveal 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.3s;
}

@keyframes ar-pane-reveal {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.ar-begin-quote p {
	font-family: var(--ar-font-display);
	font-style: italic;
	font-size: 18px;
	color: var(--ar-threshold-grey);
	line-height: 1.4;
	margin: 0;
}

.ar-begin-pane-visual {
	padding: 48px;
	background: rgba(250, 250, 248, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 900px) {
	.ar-begin-pane-visual {
		padding: 32px;
	}
}

.ar-begin-pane-footer {
	padding: 24px 48px;
	border-top: 1px solid rgba(184, 190, 200, 0.25);
	background: var(--ar-surface);
	display: flex;
	justify-content: flex-end;
	gap: 16px;
}

@media (max-width: 900px) {
	.ar-begin-pane-footer {
		padding: 20px 32px;
	}
}

/* Products grid */
.ar-begin-products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 20px;
	width: 100%;
}

.ar-begin-product-card {
	background: var(--ar-surface);
	border: 1px solid rgba(184, 190, 200, 0.35);
	border-radius: var(--ar-radius-sm);
	padding: 16px;
	cursor: pointer;
	position: relative;
	display: flex;
	flex-direction: column;
	opacity: 0;
	transform: translateY(15px);
	transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.ar-begin-step-pane.is-active .ar-begin-product-card {
	animation: ar-card-reveal 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.ar-begin-step-pane.is-active .ar-begin-product-card:nth-child(1) { animation-delay: 0.15s; }
.ar-begin-step-pane.is-active .ar-begin-product-card:nth-child(2) { animation-delay: 0.25s; }
.ar-begin-step-pane.is-active .ar-begin-product-card:nth-child(3) { animation-delay: 0.35s; }
.ar-begin-step-pane.is-active .ar-begin-product-card:nth-child(4) { animation-delay: 0.45s; }

@keyframes ar-card-reveal {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.ar-begin-product-card:hover {
	border-color: rgba(184, 190, 200, 0.65);
	box-shadow: 0 8px 24px rgba(28, 32, 48, 0.05);
	transform: translateY(-2px);
}

.ar-begin-product-card.is-selected {
	border-color: var(--ar-midnight) !important;
	box-shadow: 0 12px 32px rgba(28, 32, 48, 0.08) !important;
	transform: scale(1.03) !important;
}

.ar-begin-product-img-wrap {
	position: relative;
	padding-bottom: 100%;
	margin-bottom: 12px;
	overflow: hidden;
	border-radius: 4px;
	background: #fbfbfa;
}

.ar-begin-product-img-wrap img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.ar-begin-product-card:hover .ar-begin-product-img-wrap img {
	transform: scale(1.04);
}

.ar-begin-card-select-badge {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 22px;
	height: 22px;
	background: var(--ar-midnight);
	color: var(--ar-ether);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
	opacity: 0;
	transform: scale(0.7);
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	z-index: 2;
}

.ar-begin-product-card.is-selected .ar-begin-card-select-badge {
	opacity: 1;
	transform: scale(1);
}

.ar-begin-product-info h3 {
	font-family: var(--ar-font-body);
	font-size: 13px;
	font-weight: 600;
	color: var(--ar-midnight);
	margin: 0 0 6px;
	line-height: 1.4;
}

.ar-begin-product-price {
	font-family: var(--ar-font-body);
	font-size: 12px;
	color: var(--ar-azure);
	font-weight: 700;
}

/* Upload Vision Zone */
.ar-begin-upload-zone {
	border: 2px dashed rgba(184, 190, 200, 0.4);
	border-radius: var(--ar-radius-sm);
	padding: 40px 20px;
	text-align: center;
	background: rgba(250, 250, 248, 0.4);
	cursor: pointer;
	transition: all 0.3s ease;
}

.ar-begin-upload-zone:hover {
	border-color: var(--ar-azure);
	background: rgba(46, 90, 168, 0.02);
}

.ar-begin-upload-zone.is-dragover {
	border-color: var(--ar-azure);
	background: rgba(46, 90, 168, 0.02);
	animation: ar-dash-breath 1.5s infinite;
}

@keyframes ar-dash-breath {
	0% { border-color: rgba(184, 190, 200, 0.4); }
	50% { border-color: var(--ar-azure); }
	100% { border-color: rgba(184, 190, 200, 0.4); }
}

.ar-begin-upload-label {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	color: var(--ar-threshold-grey);
	font-family: var(--ar-font-body);
	font-size: 13px;
	font-weight: 600;
}

.ar-begin-upload-label svg {
	color: var(--ar-azure);
}

/* Live Mockup Stage */
.ar-begin-mockup-container {
	width: 100%;
	max-width: 380px;
	aspect-ratio: 1;
	position: relative;
	background: var(--ar-surface);
	border: 1px solid rgba(184, 190, 200, 0.25);
	border-radius: var(--ar-radius-sm);
	box-shadow: 0 12px 32px rgba(28, 32, 48, 0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	opacity: 0;
	transform: scale(0.96);
}

.ar-begin-step-pane.is-active .ar-begin-mockup-container {
	animation: ar-mockup-reveal 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.2s;
}

@keyframes ar-mockup-reveal {
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.ar-begin-canvas-wrap {
	width: 100%;
	height: 100%;
	position: relative;
}

.ar-begin-mockup-overlay {
	width: 100%;
	height: 100%;
	position: relative;
}

.ar-begin-mockup-mug-base {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	pointer-events: none;
}

.ar-begin-user-img-container {
	position: absolute;
	top: 28%;
	left: 30%;
	width: 40%;
	height: 44%;
	border-radius: 14px;
	overflow: hidden;
	z-index: 1;
}

.ar-begin-user-img-placeholder {
	width: 100%;
	height: 100%;
	background: #f1f1f4;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: rgba(184, 190, 200, 0.8);
	font-family: var(--ar-font-body);
	text-align: center;
	padding: 20px;
}

.ar-begin-user-img-placeholder p {
	font-size: 11px;
	font-weight: 600;
	margin: 8px 0 0;
	color: var(--ar-threshold-grey);
}

.ar-begin-mockup-controls label {
	font-family: var(--ar-font-body);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--ar-threshold-grey);
	letter-spacing: 0.05em;
	display: block;
	margin-bottom: 4px;
}

.ar-begin-mockup-controls input[type="range"] {
	width: 100%;
}

/* Gift Card Mockup */
.ar-begin-giftcard-wrap {
	width: 100%;
	max-width: 420px;
	padding: 10px;
}

.ar-begin-giftcard {
	background: #fffdf9; /* creamy paper texture */
	border: 1px solid rgba(220, 215, 200, 0.7);
	border-radius: var(--ar-radius-sm);
	padding: 40px;
	box-shadow: 
		0 2px 4px rgba(28, 32, 48, 0.02),
		0 20px 48px rgba(180, 170, 150, 0.12);
	display: flex;
	flex-direction: column;
	min-height: 260px;
	position: relative;
	opacity: 0;
	transform: perspective(600px) rotateY(-8deg) translate3d(20px, 0, 0);
}

.ar-begin-step-pane.is-active .ar-begin-giftcard {
	animation: ar-giftcard-reveal 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.2s;
}

@keyframes ar-giftcard-reveal {
	to {
		opacity: 1;
		transform: perspective(600px) rotateY(0deg) translate3d(0, 0, 0);
	}
}

.ar-begin-giftcard::before {
	content: "";
	position: absolute;
	inset: 8px;
	border: 1px solid rgba(220, 215, 200, 0.5);
	pointer-events: none;
	border-radius: calc(var(--ar-radius-sm) - 4px);
}

.ar-begin-giftcard-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid rgba(220, 215, 200, 0.5);
	padding-bottom: 12px;
	margin-bottom: 24px;
}

.ar-begin-giftcard-logo {
	font-family: var(--ar-font-display);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.05em;
	color: var(--ar-midnight);
}

.ar-begin-giftcard-icon {
	font-size: 16px;
}

.ar-begin-giftcard-body {
	flex: 1;
}

.ar-begin-giftcard-to {
	font-family: var(--ar-font-body);
	font-size: 12px;
	font-weight: 700;
	color: var(--ar-threshold-grey);
	margin: 0 0 12px;
}

.ar-begin-giftcard-to span {
	font-family: "Caveat", cursive, sans-serif;
	font-size: 22px;
	color: var(--ar-midnight);
	font-weight: 400;
	margin-left: 6px;
	vertical-align: middle;
}

.ar-begin-giftcard-msg {
	font-family: "Caveat", cursive, sans-serif;
	font-size: 20px;
	line-height: 1.4;
	color: var(--ar-midnight);
	margin: 0;
	min-height: 80px;
	white-space: pre-wrap;
}

.ar-begin-giftcard-foot {
	border-top: 1px dashed rgba(220, 215, 200, 0.5);
	padding-top: 12px;
	margin-top: 24px;
	font-family: var(--ar-font-body);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--ar-threshold-grey);
	text-align: right;
}

.ar-begin-giftcard-foot p::after {
	content: " ✓";
	color: var(--ar-azure);
	font-weight: bold;
}

/* Card Inputs */
.ar-input-group label {
	display: block;
	font-family: var(--ar-font-body);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--ar-threshold-grey);
	letter-spacing: 0.05em;
	margin-bottom: 6px;
}

.ar-input-group input[type="text"],
.ar-input-group textarea {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid rgba(184, 190, 200, 0.4);
	border-radius: var(--ar-radius-sm);
	font-family: var(--ar-font-body);
	font-size: 13px;
	color: var(--ar-midnight);
	background: var(--ar-surface);
	transition: border-color 0.3s ease;
}

.ar-input-group input[type="text"]:focus,
.ar-input-group textarea:focus {
	border-color: var(--ar-midnight);
	outline: none;
}

/* Summary badges */
.ar-status-badge {
	display: inline-block;
	padding: 4px 10px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: 99px;
	margin-left: 6px;
}

.ar-status-badge.is-pending {
	background: rgba(28, 32, 48, 0.06);
	color: var(--ar-threshold-grey);
}

.ar-status-badge.is-ready {
	background: rgba(46, 90, 168, 0.08);
	color: var(--ar-azure);
}

/* Keyframes */
@keyframes ar-fade-slide-in {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Mobile responsive styles */
@media (max-width: 600px) {
	.ar-begin-steps-nav {
		margin-bottom: 32px;
	}
	
	.ar-begin-steps-nav::before {
		left: 20px;
		right: 20px;
		top: 19px;
	}
	
	.ar-begin-step-title {
		display: none;
	}
	
	.ar-begin-step-num {
		margin-bottom: 0;
	}
	
	.ar-begin-pane-content {
		padding: 24px 20px;
	}
	
	.ar-begin-pane-visual {
		padding: 24px 20px;
	}
	
	.ar-begin-products-grid {
		grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
		gap: 12px;
	}
	
	.ar-begin-product-info {
		padding: 8px;
	}
	
	.ar-begin-product-info h3 {
		font-size: 12px;
		margin-bottom: 4px;
	}
	
	.ar-begin-giftcard {
		padding: 20px;
	}
	
	.ar-begin-giftcard-wrap {
		padding: 0;
	}
}

@media (max-width: 768px) {
	.ar-product-card-actions {
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 6px !important;
	}
	.ar-product-card-view {
		text-align: center !important;
		padding: 4px 0 !important;
		display: block !important;
	}
	.ar-product-card-actions .button,
	.ar-product-card-actions .add_to_cart_button {
		width: 100% !important;
		padding: 8px 10px !important;
		display: block !important;
	}
	
	.ar-gift-choice__options {
		flex-direction: column !important;
	}
	.ar-gift-choice__option {
		width: 100% !important;
		min-width: 0 !important;
	}
}


