:root {
	--ays-bg: #fffaf2;
	--ays-surface: #ffffff;
	--ays-soft: #f4eadc;
	--ays-ink: #18222f;
	--ays-muted: #667085;
	--ays-line: #e8ddd0;
	--ays-red: #9f2435;
	--ays-red-dark: #761b29;
	--ays-teal: #0f6d73;
	--ays-blue: #243b53;
	--ays-gold: #d99a2b;
	--ays-radius: 8px;
	--ays-shadow: 0 18px 50px rgba(24, 34, 47, 0.1);
	--ays-width: min(1180px, calc(100vw - 32px));
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--ays-bg);
	color: var(--ays-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.65;
}

img,
video,
iframe {
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--ays-red);
}

.site {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.site-main {
	flex: 1;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	background: rgba(255, 250, 242, 0.94);
	border-bottom: 1px solid rgba(232, 221, 208, 0.9);
	backdrop-filter: blur(14px);
}

.site-header__inner {
	width: var(--ays-width);
	margin: 0 auto;
	min-height: 76px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 28px;
	align-items: center;
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 220px;
}

.site-branding__mark img,
.custom-logo {
	width: 48px;
	height: 48px;
	object-fit: contain;
	display: block;
}

.site-title,
.site-description {
	margin: 0;
}

.site-title a {
	font-size: 1rem;
	font-weight: 800;
	text-decoration: none;
}

.site-description {
	color: var(--ays-muted);
	font-size: 0.78rem;
	line-height: 1.25;
}

.main-navigation {
	justify-self: center;
}

.main-navigation ul {
	display: flex;
	align-items: center;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-navigation a,
.header-actions__link {
	font-size: 0.92rem;
	font-weight: 700;
	text-decoration: none;
}

.menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid var(--ays-line);
	border-radius: var(--ays-radius);
	background: var(--ays-surface);
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--ays-ink);
	margin: 4px auto;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.cart-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 38px;
	padding: 0 12px;
	border: 1px solid var(--ays-line);
	border-radius: 999px;
	background: var(--ays-surface);
	text-decoration: none;
	font-weight: 800;
}

.cart-count {
	display: inline-grid;
	place-items: center;
	min-width: 24px;
	height: 24px;
	padding: 0 6px;
	border-radius: 999px;
	background: var(--ays-red);
	color: #fff;
	font-size: 0.78rem;
}

.hero,
.section-shell,
.feature-band,
.page-shell,
.site-footer__inner {
	width: var(--ays-width);
	margin-left: auto;
	margin-right: auto;
}

.hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
	gap: 48px;
	align-items: center;
	padding: 64px 0 44px;
}

.hero--subpage {
	padding-bottom: 34px;
}

.hero__content h1,
.page-hero h1 {
	margin: 0;
	max-width: 820px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.2rem, 5vw, 4.8rem);
	line-height: 1.02;
	font-weight: 700;
}

.hero__content p,
.page-hero p {
	max-width: 690px;
	font-size: 1.06rem;
	color: var(--ays-blue);
}

.hero__media img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: var(--ays-radius);
	box-shadow: var(--ays-shadow);
}

.eyebrow {
	margin: 0 0 10px;
	color: var(--ays-teal);
	font-size: 0.76rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin-top: 22px;
}

.button,
button.button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid var(--ays-red);
	border-radius: var(--ays-radius);
	background: var(--ays-red);
	color: #fff;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
}

.button:hover,
button.button:hover,
.wp-element-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	background: var(--ays-red-dark);
	color: #fff;
}

.button-secondary {
	background: var(--ays-surface);
	color: var(--ays-red);
}

.button-secondary:hover {
	background: var(--ays-soft);
	color: var(--ays-red-dark);
}

.button-small {
	min-height: 36px;
	padding: 0 12px;
	font-size: 0.85rem;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 34px;
}

.hero-stats span {
	display: block;
	padding: 14px;
	border: 1px solid var(--ays-line);
	border-radius: var(--ays-radius);
	background: rgba(255, 255, 255, 0.72);
	font-weight: 800;
}

.section-shell {
	padding: 48px 0;
}

.section-heading {
	max-width: 740px;
	margin-bottom: 24px;
}

.section-heading--split {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	max-width: none;
	align-items: end;
}

.section-heading h2,
.feature-band h2,
.form-intro h2 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.8rem, 3vw, 3rem);
	line-height: 1.12;
}

.category-strip {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
}

.category-pill {
	display: grid;
	gap: 10px;
	padding: 12px;
	border: 1px solid var(--ays-line);
	border-radius: var(--ays-radius);
	background: var(--ays-surface);
	text-decoration: none;
	font-weight: 850;
	box-shadow: 0 10px 24px rgba(24, 34, 47, 0.05);
}

.category-pill img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 6px;
	background: var(--ays-soft);
}

.product-grid,
.content-grid,
.meaning-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.content-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.meaning-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card,
.content-card,
.meaning-card,
.detail-grid article,
.faq-item {
	border: 1px solid var(--ays-line);
	border-radius: var(--ays-radius);
	background: var(--ays-surface);
	overflow: hidden;
	box-shadow: 0 12px 28px rgba(24, 34, 47, 0.06);
}

.product-card__image,
.content-card__image {
	display: block;
	background: var(--ays-soft);
}

.product-card__image img,
.content-card__image img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.content-card__image img {
	aspect-ratio: 4 / 3;
}

.product-card__body,
.content-card__body,
.meaning-card {
	padding: 16px;
}

.product-card h3,
.content-card h3,
.meaning-card h3 {
	margin: 0 0 8px;
	font-size: 1.05rem;
	line-height: 1.25;
}

.product-card h3 a,
.content-card h3 a,
.meaning-card h3 a {
	text-decoration: none;
}

.product-card p,
.content-card p,
.meaning-card p {
	margin-top: 0;
	color: var(--ays-muted);
	font-size: 0.92rem;
}

.product-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 14px;
}

.price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--ays-red);
	font-weight: 900;
}

.feature-band {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 32px;
	align-items: center;
	padding: 32px;
	border-radius: var(--ays-radius);
	background: linear-gradient(135deg, #fff, #f7efe3);
	border: 1px solid var(--ays-line);
}

.feature-band img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: var(--ays-radius);
}

.page-shell {
	padding-top: 44px;
	padding-bottom: 72px;
}

.page-hero {
	margin-bottom: 34px;
	padding: 34px;
	border: 1px solid var(--ays-line);
	border-radius: var(--ays-radius);
	background: var(--ays-surface);
}

.page-hero--compact {
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.page-hero--image {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
		var(--hero-image) center / cover;
}

.prose {
	max-width: 820px;
	margin: 0 auto;
	font-size: 1.02rem;
}

.prose > *:first-child {
	margin-top: 0;
}

.prose img {
	border-radius: var(--ays-radius);
}

.form-layout {
	display: grid;
	grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
	gap: 24px;
	align-items: start;
}

.form-intro,
.studio-form {
	border: 1px solid var(--ays-line);
	border-radius: var(--ays-radius);
	background: var(--ays-surface);
	padding: 24px;
}

.studio-form {
	display: grid;
	gap: 18px;
}

.field-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.studio-form label,
.studio-form legend {
	display: grid;
	gap: 7px;
	font-weight: 800;
}

.studio-form input,
.studio-form select,
.studio-form textarea,
.newsletter-form input,
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select {
	width: 100%;
	min-height: 44px;
	border: 1px solid var(--ays-line);
	border-radius: var(--ays-radius);
	background: #fff;
	padding: 10px 12px;
	color: var(--ays-ink);
	font: inherit;
}

.studio-form textarea {
	resize: vertical;
}

.choice-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.choice-grid label,
.checkbox-line {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
}

.choice-grid input,
.checkbox-line input {
	width: auto;
	min-height: auto;
}

.process-list {
	margin: 20px 0;
	padding-left: 22px;
}

.disclaimer-box,
.notice-bar {
	padding: 14px;
	border-radius: var(--ays-radius);
	background: #fff4d8;
	border: 1px solid #edd28c;
	color: #60430b;
}

.notice-bar {
	width: var(--ays-width);
	margin: 0 auto 24px;
}

.notice-bar.is-error {
	background: #ffe8e8;
	border-color: #f4b5b5;
	color: #751a1a;
}

.filter-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 24px;
}

.filter-nav a {
	padding: 8px 13px;
	border: 1px solid var(--ays-line);
	border-radius: 999px;
	background: var(--ays-surface);
	text-decoration: none;
	font-weight: 800;
}

.filter-nav a.is-active {
	background: var(--ays-teal);
	border-color: var(--ays-teal);
	color: #fff;
}

.faq-list {
	display: grid;
	gap: 12px;
	max-width: 920px;
	margin: 0 auto;
}

.faq-item {
	padding: 0;
}

.faq-item summary {
	cursor: pointer;
	padding: 18px 20px;
	font-weight: 900;
}

.faq-item .prose,
.faq-item > p {
	padding: 0 20px 20px;
	margin: 0;
}

.detail-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin: 22px 0;
}

.detail-grid--compact {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-grid article {
	padding: 16px;
}

.detail-grid strong {
	display: block;
	margin-bottom: 6px;
}

.detail-grid p {
	margin: 0;
	color: var(--ays-muted);
}

.detail-wide {
	grid-column: 1 / -1;
}

.single-hero-image img,
.pattern-diagram {
	display: block;
	width: 100%;
	border-radius: var(--ays-radius);
	margin: 0 auto 24px;
}

.video-frame {
	aspect-ratio: 16 / 9;
	margin-bottom: 24px;
	background: #111827;
	border-radius: var(--ays-radius);
	overflow: hidden;
}

.video-frame iframe,
.video-frame video {
	width: 100%;
	height: 100%;
	display: block;
}

.qr-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.qr-grid figure {
	margin: 0;
}

.qr-grid img {
	width: 74px;
	height: 74px;
	object-fit: cover;
	border: 1px solid var(--ays-line);
	border-radius: 6px;
}

.qr-grid--large img {
	width: 130px;
	height: 130px;
}

.site-footer {
	margin-top: auto;
	background: #17202c;
	color: #f9fafb;
}

.site-footer__inner {
	padding: 48px 0 28px;
}

.footer-newsletter {
	display: grid;
	grid-template-columns: 1fr minmax(260px, 420px);
	gap: 24px;
	align-items: end;
	padding-bottom: 34px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-newsletter h2 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.footer-newsletter p {
	color: #d4dbe6;
}

.newsletter-form {
	display: flex;
	gap: 10px;
}

.newsletter-form button {
	min-height: 44px;
	border: 0;
	border-radius: var(--ays-radius);
	background: var(--ays-gold);
	color: #101828;
	font-weight: 900;
	padding: 0 16px;
	cursor: pointer;
}

.footer-columns {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 28px;
	padding: 34px 0;
}

.footer-columns h3 {
	margin-top: 0;
}

.footer-columns ul,
.social-list,
.site-footer__legal ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.footer-columns a,
.site-footer__legal a {
	color: #f9fafb;
}

.site-footer__legal {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	padding-top: 20px;
	color: #d4dbe6;
	font-size: 0.9rem;
}

.site-footer__legal ul {
	display: flex;
	flex-wrap: wrap;
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce-result-count,
.woocommerce-ordering {
	font-size: 0.92rem;
	color: var(--ays-muted);
}

.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products li.product {
	width: auto;
	margin: 0;
	float: none;
	padding: 14px;
	border: 1px solid var(--ays-line);
	border-radius: var(--ays-radius);
	background: var(--ays-surface);
	box-shadow: 0 12px 28px rgba(24, 34, 47, 0.06);
}

.woocommerce ul.products li.product a img {
	border-radius: 6px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.woocommerce div.product {
	display: grid;
	grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1fr);
	gap: 42px;
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related,
.woocommerce div.product .upsells,
.product-craft-details {
	grid-column: 1 / -1;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	width: auto;
	float: none;
}

.woocommerce div.product div.images .flex-control-thumbs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
	margin-top: 8px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
	width: auto;
	float: none;
}

.woocommerce div.product div.images img {
	border-radius: var(--ays-radius);
}

.product-craft-details {
	margin-top: 34px;
}

.woocommerce table.shop_table,
.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout-review-order,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
	border: 1px solid var(--ays-line);
	border-radius: var(--ays-radius);
	background: var(--ays-surface);
}

.checkout-paypal-note {
	padding: 12px;
	border-radius: var(--ays-radius);
	background: #eef8f8;
	border: 1px solid #b5dfe2;
	color: #18565d;
}

@media (max-width: 980px) {
	.site-header__inner {
		grid-template-columns: 1fr auto;
		min-height: 68px;
	}

	.main-navigation {
		order: 3;
		grid-column: 1 / -1;
		justify-self: stretch;
	}

	.menu-toggle {
		display: block;
		margin-left: auto;
	}

	.main-navigation ul {
		display: none;
		padding: 12px 0 18px;
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
	}

	.main-navigation.is-open ul {
		display: flex;
	}

	.header-actions__link {
		display: none;
	}

	.hero,
	.form-layout,
	.feature-band,
	.footer-newsletter,
	.woocommerce div.product {
		grid-template-columns: 1fr;
	}

	.category-strip,
	.product-grid,
	.content-grid,
	.meaning-grid,
	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.feature-band {
		padding: 22px;
	}
}

@media (max-width: 640px) {
	:root {
		--ays-width: min(100% - 24px, 1180px);
	}

	.site-branding {
		min-width: 0;
	}

	.site-description {
		display: none;
	}

	.hero,
	.section-shell,
	.page-shell {
		padding-top: 28px;
	}

	.hero-stats,
	.category-strip,
	.product-grid,
	.content-grid,
	.meaning-grid,
	.field-grid,
	.choice-grid,
	.detail-grid,
	.detail-grid--compact,
	.footer-columns,
	.woocommerce ul.products {
		grid-template-columns: 1fr;
	}

	.page-hero,
	.form-intro,
	.studio-form {
		padding: 18px;
	}

	.section-heading--split,
	.site-footer__legal,
	.newsletter-form {
		display: grid;
	}
}

/* CMS static homepage alignment */
:root {
	--pink: #f57f91;
	--pink-dark: #e95d73;
	--soft-pink: #fff1f3;
	--cream: #fffaf5;
	--beige: #f5eadf;
	--green: #8fae8a;
	--mint: #dfeee1;
	--yellow: #f9df91;
	--blue: #bed6e8;
	--purple: #e6d4f1;
	--brown: #3c2f2f;
	--text: #514444;
	--muted: #8b7a7a;
	--line: #eee2dc;
	--white: #ffffff;
	--shadow: 0 12px 35px rgba(93, 70, 60, 0.08);
	--radius: 18px;
	--font-body: "Inter", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Segoe UI", Arial, sans-serif;
	--font-heading: Georgia, "Times New Roman", "Noto Serif SC", "Songti SC", "SimSun", serif;
}

body {
	font-family: var(--font-body);
	color: var(--text);
	background: var(--cream);
}

.container {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 245, 0.88));
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(238, 226, 220, 0.82);
	box-shadow: 0 12px 34px rgba(93, 70, 60, 0.055);
}

.header-inner {
	min-height: 112px;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	grid-template-areas: "logo nav actions";
	align-items: center;
	gap: 14px;
	padding: 6px 0;
}

.logo {
	grid-area: logo;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	color: var(--brown);
	white-space: nowrap;
	text-decoration: none;
}

.logo img {
	height: 112px;
	width: auto;
	max-width: 180px;
	object-fit: contain;
	display: block;
}

.main-nav {
	grid-area: nav;
	justify-self: start;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	min-height: 50px;
	padding: 6px 10px;
	border: 1.5px solid rgba(222, 175, 162, 0.82);
	border-radius: 24px;
	background:
		radial-gradient(circle at 8% 18%, rgba(255, 225, 226, 0.72), transparent 24%),
		linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(255, 248, 244, 0.94));
	box-shadow:
		0 18px 44px rgba(93, 70, 60, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.95);
	font-family: var(--font-heading);
	font-size: clamp(11px, 0.82vw, 14px);
}

.main-nav a {
	position: relative;
	min-height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 clamp(7px, 0.62vw, 12px);
	color: #3d2c2b;
	border-radius: 999px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
	text-decoration: none;
	transition: 0.24s ease;
}

.main-nav a:visited,
.nav-dropdown-content a:visited {
	color: #3d2c2b;
}

.main-nav > a:not(:first-child),
.main-nav > .nav-dropdown {
	border-left: 1px solid rgba(226, 188, 178, 0.72);
}

.main-nav a:hover,
.main-nav a.active,
.nav-dropdown-btn:hover,
.nav-dropdown-btn.active {
	color: #b84e5d;
	background:
		linear-gradient(180deg, rgba(255, 239, 238, 0.98), rgba(255, 218, 216, 0.74));
	box-shadow:
		0 12px 26px rgba(199, 94, 99, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.main-nav a.active:visited,
.main-nav a:hover:visited,
.nav-dropdown-content a.active:visited,
.nav-dropdown-content a:hover:visited {
	color: #b84e5d;
}

.main-nav > a:first-child.active::before {
	content: none;
	display: none;
}

.main-nav > a:first-child.active::after {
	content: none;
	display: none;
}

.nav-dropdown {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.nav-dropdown::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 12px;
}

.nav-dropdown-btn {
	min-height: 34px;
	background: transparent;
	border: none;
	color: #3d2c2b;
	border-radius: 999px;
	font-family: var(--font-heading);
	font-size: inherit;
	cursor: pointer;
	padding: 0 clamp(7px, 0.62vw, 12px);
	font-weight: 700;
	letter-spacing: 0;
	transition: 0.24s ease;
}

.nav-dropdown-content {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	background: rgba(255, 255, 255, 0.98);
	min-width: 220px;
	box-shadow: 0 20px 50px rgba(93, 70, 60, 0.13);
	border: 1px solid rgba(238, 226, 220, 0.95);
	border-radius: 8px;
	padding: 10px;
	z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-content,
.nav-dropdown:focus-within .nav-dropdown-content {
	display: block;
}

.nav-dropdown-content a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 38px;
	padding: 0 12px;
	color: var(--brown);
	white-space: nowrap;
	border-radius: 7px;
	font-size: 13px;
	box-shadow: none;
	background: transparent;
}

.nav-dropdown-content a:hover,
.nav-dropdown-content a.active {
	background: #fff0f3;
	color: var(--pink-dark);
}

.dropdown-divider {
	height: 1px;
	background: #eee;
	margin: 8px 0;
}

.dropdown-subheader {
	padding: 8px 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	color: #999;
	letter-spacing: 0.5px;
}

.header-actions {
	grid-area: actions;
	display: flex;
	align-items: center;
	gap: 8px;
}

.icon-btn,
.cart-btn,
.mobile-menu-btn {
	width: 42px;
	height: 42px;
	display: inline-grid;
	place-items: center;
	border: 1px solid rgba(238, 226, 220, 0.92);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.72);
	cursor: pointer;
	font-size: 22px;
	color: var(--brown);
	transition: 0.22s ease;
	text-decoration: none;
	padding: 0;
}

.icon-btn:hover,
.cart-btn:hover,
.mobile-menu-btn:hover {
	background: #fff1f3;
	color: var(--pink-dark);
	border-color: rgba(245, 127, 145, 0.48);
	transform: translateY(-1px);
}

.icon-btn[aria-label="Search"] {
	font-size: 31px;
	line-height: 1;
}

.cart-btn {
	position: relative;
	overflow: visible;
}

.cart-btn span {
	position: absolute;
	top: -4px;
	right: -4px;
	min-width: 18px;
	background: var(--pink);
	color: #fff;
	font-size: 10px;
	line-height: 1;
	font-weight: 900;
	width: auto;
	height: 18px;
	padding: 0 5px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #fff;
	box-shadow: 0 4px 10px rgba(233, 93, 115, 0.24);
	font-family: var(--font-body);
	pointer-events: none;
}

.mobile-menu-btn {
	display: none;
}

.cms-home .hero {
	background:
		radial-gradient(circle at 82% 18%, rgba(245, 127, 145, 0.2), transparent 30%),
		radial-gradient(circle at 18% 82%, rgba(143, 174, 138, 0.18), transparent 28%),
		linear-gradient(135deg, #fffaf7 0%, #fff1f1 48%, #f7ede3 100%);
	padding: 84px 0 74px;
	overflow: hidden;
	width: auto;
	display: block;
	margin: 0;
}

.cms-home .hero-inner {
	display: grid;
	grid-template-columns: minmax(420px, 0.96fr) minmax(0, 1.04fr);
	align-items: center;
	gap: 72px;
}

.cms-home .eyebrow {
	margin: 0 0 18px;
	color: var(--pink-dark);
	font-size: 18px;
	font-family: Georgia, "Times New Roman", serif;
	font-style: italic;
	text-transform: none;
	letter-spacing: 0;
}

.cms-home .hero h1 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(48px, 5.3vw, 76px);
	line-height: 1;
	color: var(--brown);
	letter-spacing: 0;
	max-width: 720px;
}

.cms-home .hero-desc {
	margin: 24px 0 26px;
	max-width: 590px;
	line-height: 1.7;
	font-size: 17px;
	color: var(--text);
}

.cms-home .hero-proof-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	max-width: 560px;
	margin: 0 0 30px;
}

.cms-home .hero-proof-strip div {
	min-height: 82px;
	padding: 16px 18px;
	border: 1px solid rgba(245, 127, 145, 0.22);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 16px 34px rgba(93, 70, 60, 0.07);
}

.cms-home .hero-proof-strip strong {
	display: block;
	margin-bottom: 5px;
	color: var(--brown);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 28px;
	line-height: 1;
}

.cms-home .hero-proof-strip span {
	color: var(--muted);
	font-size: 13px;
	font-weight: 700;
}

.cms-home .hero-buttons {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 48px;
	padding: 0 26px;
	border-radius: 8px;
	font-weight: 700;
	transition: 0.25s;
	text-decoration: none;
}

.btn-primary {
	background: var(--pink);
	color: white;
	box-shadow: 0 8px 18px rgba(245, 127, 145, 0.25);
}

.btn-primary:visited {
	color: white;
}

.btn-primary:hover {
	background: var(--pink-dark);
	color: white;
	transform: translateY(-2px);
}

.btn-outline {
	background: white;
	border: 1px solid #6d5d5d;
	color: var(--brown);
}

.btn-outline:visited {
	color: var(--brown);
}

.btn-outline:hover {
	border-color: var(--pink);
	color: var(--pink-dark);
	transform: translateY(-2px);
}

.play-icon {
	width: 22px;
	height: 22px;
	border: 1px solid currentColor;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 10px;
}

.cms-home .hero-visual {
	position: relative;
	min-height: 560px;
	display: grid;
	place-items: center;
}

.cms-home .hero-visual-shell {
	position: relative;
	width: min(100%, 560px);
	padding: 16px;
	border-radius: 34px;
	background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(255,246,244,0.9));
	border: 1px solid rgba(245, 127, 145, 0.18);
	box-shadow: 0 34px 90px rgba(93, 70, 60, 0.16);
}

.cms-home .hero-visual-shell::before {
	content: "";
	position: absolute;
	inset: -18px -18px auto auto;
	width: 126px;
	height: 126px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(245, 127, 145, 0.2), rgba(245, 127, 145, 0));
	pointer-events: none;
}

.cms-home .hero-visual-shell::after {
	content: "";
	position: absolute;
	inset: auto auto -16px 34px;
	width: 70%;
	height: 20px;
	border-radius: 999px;
	background: rgba(93, 70, 60, 0.12);
	filter: blur(20px);
	pointer-events: none;
}

.cms-home .hero-media-card {
	position: relative;
	z-index: 1;
	padding: 0;
	border-radius: 24px;
	background: #fff8f5;
	overflow: hidden;
	border: 1px solid rgba(245, 127, 145, 0.16);
}

.cms-home .hero-media-card .hero-profile-img {
	width: 100%;
	height: auto;
	display: block;
}

.cms-home .hero-studio-panel {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px;
	align-items: center;
	margin: 14px 0 0;
	padding: 15px 16px;
	border-radius: 18px;
	background: rgba(255, 250, 247, 0.88);
	border: 1px solid rgba(245, 127, 145, 0.18);
	color: var(--brown);
}

.cms-home .hero-studio-panel span {
	display: block;
	margin-bottom: 4px;
	color: var(--pink-dark);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.cms-home .hero-studio-panel strong {
	display: block;
	max-width: 340px;
	font-size: 15px;
	line-height: 1.35;
}

.cms-home .hero-studio-panel a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 16px;
	border-radius: 999px;
	background: var(--brown);
	color: var(--white);
	font-size: 13px;
	font-weight: 900;
	white-space: nowrap;
	text-decoration: none;
}

.cms-home .hero-studio-panel a:visited {
	color: var(--white);
}

.cms-home .hero-studio-stats {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: 12px;
}

.cms-home .hero-studio-stats div {
	min-height: 72px;
	padding: 14px;
	border: 1px solid rgba(245, 127, 145, 0.18);
	border-radius: 16px;
	background: rgba(255,255,255,0.78);
	text-align: center;
}

.cms-home .hero-studio-stats strong {
	display: block;
	color: var(--brown);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 25px;
	line-height: 1;
}

.cms-home .hero-studio-stats span {
	display: block;
	margin-top: 5px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 800;
}

.cms-home .hero-content {
	max-width: 620px;
}

.cms-home .section {
	padding: 42px 0;
}

.cms-home .section-heading {
	width: 100%;
	max-width: none;
	margin-bottom: 26px;
}

.cms-home .section-heading h2,
.cms-home .faq-section h2 {
	font-family: Georgia, "Times New Roman", serif;
	color: var(--brown);
	font-size: 30px;
	margin: 0 0 8px;
	line-height: 1.2;
}

.cms-home .centered {
	text-align: center;
}

.cms-home .row-heading {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: end;
}

.view-link {
	color: var(--pink-dark);
	font-weight: 700;
	white-space: nowrap;
	text-decoration: none;
}

.view-link:visited {
	color: var(--pink-dark);
}

.cms-home .category-grid,
.cms-home .product-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 18px;
}

.cms-home .category-card,
.cms-home .product-card,
.cms-home .tutorial-card,
.cms-home .blog-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(93, 70, 60, 0.05);
	transition: 0.25s;
	text-decoration: none;
	min-width: 0;
}

.cms-home .category-card:hover,
.cms-home .product-card:hover,
.cms-home .tutorial-card:hover,
.cms-home .blog-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow);
}

.cms-home .category-img,
.cms-home .tutorial-thumb,
.cms-home .blog-img {
	aspect-ratio: 4/3;
	display: grid;
	place-items: center;
	overflow: hidden;
}

.cms-home .category-img {
	height: 148px;
	aspect-ratio: auto;
	background: #fff0f3;
}

.cms-home .category-img img,
.cms-home .tutorial-thumb img,
.cms-home .blog-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
}

.cms-home .category-card h3 {
	margin: 0;
	padding: 12px 10px;
	text-align: center;
	font-size: 14px;
	color: var(--brown);
	line-height: 1.25;
	white-space: normal;
	overflow-wrap: break-word;
	text-wrap: balance;
}

.cms-home .promo-panel {
	display: grid;
	grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
	align-items: center;
	gap: 36px;
	padding: 34px 40px;
	border: 1px solid #ffe0e0;
	border-radius: 24px;
	background: linear-gradient(90deg, #fff0f3, #fff9f0);
	overflow: hidden;
}

.cms-home .promo-content h2 {
	margin: 0 0 14px;
	font-family: var(--font-heading);
	color: var(--brown);
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1.05;
}

.cms-home .promo-content p:not(.eyebrow) {
	max-width: 560px;
	margin: 0 0 24px;
	color: var(--brown);
	line-height: 1.7;
}

.cms-home .promo-visual {
	display: flex;
	justify-content: center;
	align-items: center;
	width: auto;
	min-height: 280px;
	aspect-ratio: auto;
	border-radius: 0;
	overflow: visible;
	box-shadow: none;
}

.cms-home .promo-img {
	width: min(100%, 430px);
	height: auto;
	max-height: 340px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: var(--shadow);
}

.cms-home .promo-disclaimer {
	max-width: 560px;
	margin: 14px 0 0;
	color: #8b7a7a;
	font-size: 12px;
	line-height: 1.55;
}

.cms-home .product-img {
	position: relative;
	overflow: hidden;
	display: block;
	background: #fff0f3;
}

.cms-home .product-img img {
	width: 100%;
	aspect-ratio: 1 / 1;
	height: auto;
	object-fit: cover;
	display: block;
	transition: 0.24s ease;
}

.cms-home .product-card:hover .product-img img {
	transform: scale(1.04);
}

.cms-home .product-info {
	padding: 14px 12px 16px;
	text-align: center;
}

.cms-home .product-info h3 {
	margin: 0 0 5px;
	font-size: 15px;
	color: var(--brown);
	line-height: 1.3;
}

.cms-home .product-info h3 a {
	text-decoration: none;
	color: inherit;
}

.cms-home .price {
	margin: 0 0 10px;
	font-weight: 700;
	color: var(--text);
}

.cms-home .add-to-cart-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: #ffe1e3;
	color: var(--pink-dark);
	padding: 8px 18px;
	border-radius: 999px;
	font-size: 13px;
	cursor: pointer;
	font-weight: 700;
	text-decoration: none;
}

.cms-home .add-to-cart-btn:visited {
	color: var(--pink-dark);
}

.cms-home .add-to-cart-btn:hover {
	background: var(--pink);
	color: white;
}

.cms-home .add-to-cart-btn:hover:visited {
	color: white;
}

.cms-home .added_to_cart.wc-forward,
.shop-product-item .added_to_cart.wc-forward,
.product-card__meta .added_to_cart.wc-forward {
	display: none;
}

.cms-home .add-to-cart-btn.loading,
.shop-add-cart.loading,
.product-card__meta .button.loading {
	opacity: 0.68;
	pointer-events: none;
}

.cms-home .add-to-cart-btn.added,
.shop-add-cart.added,
.product-card__meta .button.added {
	background: #e9f8e8;
	color: #4f9a50;
}

.tutorial-details h3 a,
.tutorial-details h3 a:visited {
	color: var(--brown);
	text-decoration: none;
}

.tutorial-details h3 a:hover {
	color: var(--pink-dark);
}

.page-btn:visited {
	color: var(--brown);
}

.page-btn:hover:visited,
.page-btn.active:visited,
.page-btn.current:visited {
	color: white;
}

.cms-home .tutorial-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.cms-home .tutorial-thumb {
	position: relative;
	aspect-ratio: 4/3;
	text-decoration: none;
}

.cms-home .play-overlay {
	position: absolute;
	left: 16px;
	bottom: 16px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 0;
	background: rgba(255,255,255,0.9);
	color: var(--pink-dark);
	cursor: pointer;
	box-shadow: var(--shadow);
	display: grid;
	place-items: center;
}

.cms-home .tutorial-info {
	padding: 16px;
}

.cms-home .tutorial-info h3 {
	margin: 0 0 8px;
	color: var(--brown);
}

.cms-home .tutorial-info h3 a {
	color: inherit;
	text-decoration: none;
}

.cms-home .tag {
	font-size: 12px;
	padding: 3px 9px;
	border-radius: 999px;
	font-weight: 700;
}

.cms-home .tag.easy {
	background: #e9f8e8;
	color: #4f9a50;
}

.cms-home .tag.beginner {
	background: #e8f3ff;
	color: #4188c8;
}

.cms-home .tutorial-info p {
	margin: 10px 0 0;
	color: var(--muted);
	line-height: 1.5;
	font-size: 14px;
}

.cms-home .custom-panel {
	background: linear-gradient(90deg, #fff0f3, #fff9f0);
	border: 1px solid #ffe0e0;
	border-radius: 24px;
	padding: 40px;
	display: grid;
	grid-template-columns: 1.3fr 0.9fr 1.5fr;
	gap: 40px;
	align-items: start;
	overflow: hidden;
}

.cms-home .custom-text h2 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 42px;
	color: var(--brown);
	margin: 0 0 16px;
	line-height: 1.1;
}

.cms-home .custom-text p {
	line-height: 1.7;
	color: var(--brown);
	margin: 0 0 24px;
	font-size: 18px;
}

.cms-home .custom-features {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 10px 0;
}

.cms-home .custom-features div {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 17px;
	color: var(--brown);
}

.cms-home .custom-features div span {
	font-weight: 500;
}

.cms-home .custom-visual {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.cms-home .custom-img {
	width: 100%;
	max-width: 320px;
	aspect-ratio: 4/3;
	border-radius: 16px;
	box-shadow: var(--shadow);
	object-fit: cover;
}

.cms-home .blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.cms-home .blog-card {
	display: flex;
	flex-direction: column;
}

.cms-home .blog-img {
	height: 200px;
	width: 100%;
}

.cms-home .blog-content {
	padding: 18px;
	flex: 1;
}

.cms-home .blog-content h3 {
	margin: 0 0 8px;
	font-size: 18px;
	color: var(--brown);
	line-height: 1.25;
}

.cms-home .blog-content h3 a {
	color: inherit;
	text-decoration: none;
}

.cms-home .blog-content p {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.5;
}

.cms-home .blog-content span {
	font-size: 12px;
	color: #a99696;
}

.cms-home .faq-section {
	padding-top: 28px;
}

.cms-home .faq-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: 18px;
	max-width: 100%;
}

.cms-home details {
	background: white;
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 14px 16px;
	box-shadow: none;
	min-width: 0;
	max-width: 100%;
}

.cms-home summary {
	cursor: pointer;
	font-weight: 700;
	color: var(--brown);
	font-size: 14px;
	min-width: 0;
	max-width: 100%;
	white-space: normal;
	overflow-wrap: anywhere;
}

.cms-home details p,
.cms-home details div {
	margin: 12px 0 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.5;
}

.site-footer {
	margin-top: 0;
	background: linear-gradient(180deg, #fff3f3, #fff8f5);
	border-top: 1px solid var(--line);
	padding: 40px 0 18px;
	color: var(--text);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.7fr repeat(4, 1fr);
	gap: 32px;
}

.site-footer h3,
.site-footer h4 {
	color: var(--brown);
	margin: 0 0 14px;
}

.site-footer p {
	color: var(--muted);
	line-height: 1.6;
}

.site-footer .footer-newsletter {
	display: block;
	grid-template-columns: none;
	gap: 0;
	align-items: initial;
	padding-bottom: 0;
	border-bottom: 0;
}

.site-footer a {
	display: block;
	margin: 8px 0;
	color: var(--muted);
	font-size: 14px;
	text-decoration: none;
}

.site-footer a:hover {
	color: var(--pink-dark);
}

.footer-newsletter form {
	display: flex;
	margin-top: 18px;
}

.footer-newsletter input {
	flex: 1;
	min-width: 0;
	border: 1px solid var(--line);
	border-radius: 10px 0 0 10px;
	padding: 12px;
	outline: none;
}

.footer-newsletter button {
	border: 0;
	background: var(--pink);
	color: white;
	font-weight: 700;
	border-radius: 0 10px 10px 0;
	padding: 0 20px;
	cursor: pointer;
}

.social-icons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.social-icons a {
	width: 46px;
	height: 46px;
	margin: 0;
	border: 1px solid var(--line);
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #fff;
	color: var(--brown);
	font-size: 13px;
	font-weight: 900;
	box-shadow: 0 10px 22px rgba(93, 70, 60, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.social-icons a:hover {
	border-color: rgba(233, 93, 115, 0.48);
	box-shadow: 0 14px 28px rgba(233, 93, 115, 0.18);
	transform: translateY(-2px);
}

.footer-bottom {
	margin-top: 28px;
	padding-top: 18px;
	border-top: 1px solid var(--line);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	color: var(--muted);
	font-size: 13px;
}

.footer-bottom div {
	display: flex;
	gap: 18px;
}

.footer-bottom a {
	display: inline;
	margin: 0;
}

@media (max-width: 1024px) {
	.header-inner {
		min-height: 92px;
		grid-template-areas: "logo actions" "nav nav";
		grid-template-columns: auto auto;
		justify-content: space-between;
	}

	.logo img {
		height: 76px;
	}

	.main-nav {
		width: 100%;
		min-height: 40px;
		padding: 5px 10px;
		overflow-x: auto;
		justify-content: flex-start;
		font-size: 13px;
	}

	.cms-home .hero-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.cms-home .hero-visual {
		order: 2;
	}

	.cms-home .hero-content {
		order: 1;
		max-width: 100%;
	}

	.cms-home .hero-proof-strip {
		max-width: none;
	}

	.cms-home .category-grid,
	.cms-home .product-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.cms-home .tutorial-grid,
	.cms-home .faq-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.cms-home .promo-panel,
	.cms-home .custom-panel {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.cms-home .custom-text h2 {
		font-size: 32px;
	}

	.cms-home .custom-text p {
		font-size: 15px;
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 761px) and (max-width: 1024px) {
	.cms-home .hero-inner {
		grid-template-columns: minmax(330px, 0.94fr) minmax(360px, 1.06fr);
		gap: 34px;
	}

	.cms-home .hero-content,
	.cms-home .hero-visual {
		order: initial;
	}

	.cms-home .hero h1 {
		font-size: clamp(40px, 5vw, 54px);
	}

	.cms-home .hero-desc {
		font-size: 16px;
	}

	.cms-home .hero-visual {
		min-height: auto;
	}

	.cms-home .hero-visual-shell {
		width: min(100%, 440px);
	}
}

@media (max-width: 760px) {
	.container {
		width: min(100% - 28px, 1180px);
	}

	.mobile-menu-btn {
		display: block;
	}

	.header-inner {
		min-height: 72px;
		grid-template-areas: "logo actions";
		grid-template-columns: auto auto;
	}

	.logo img {
		height: 62px;
	}

	.main-nav {
		position: fixed;
		left: 14px;
		right: 14px;
		top: 72px;
		background: white;
		border-radius: 18px;
		box-shadow: var(--shadow);
		border: 1px solid var(--line);
		padding: 20px;
		flex-direction: column;
		align-items: flex-start;
		width: auto;
		min-height: auto;
		overflow: visible;
		display: none;
	}

	.main-nav > a:not(:first-child),
	.main-nav > .nav-dropdown {
		border-left: 0;
	}

	.main-nav a,
	.nav-dropdown-btn {
		width: 100%;
		justify-content: flex-start;
		min-height: 44px;
		font-size: 16px;
	}

	.nav-dropdown {
		width: 100%;
		display: block;
	}

	.nav-dropdown-content {
		position: static;
		display: block;
		min-width: 0;
		box-shadow: none;
		border: 0;
		padding: 0 0 0 10px;
		background: transparent;
	}

	.main-nav.open {
		display: flex;
	}

	.main-nav a.active::after {
		display: none;
	}

	.icon-btn {
		display: none;
	}

	.cms-home .hero {
		padding: 52px 0 34px;
	}

	.cms-home .hero h1 {
		font-size: 42px;
	}

	.cms-home .hero-visual {
		min-height: auto;
		transform: none;
	}

	.cms-home .hero-visual-shell {
		width: min(100%, 480px);
	}

	.cms-home .hero-proof-strip {
		grid-template-columns: 1fr;
	}

	.cms-home .category-grid,
	.cms-home .product-grid,
	.cms-home .tutorial-grid,
	.cms-home .blog-grid,
	.cms-home .faq-grid {
		grid-template-columns: 1fr;
	}

	.cms-home .blog-card {
		flex-direction: column;
	}

	.cms-home .blog-img {
		height: 180px;
	}

	.cms-home .row-heading {
		display: block;
	}

	.view-link {
		display: inline-block;
		margin-top: 10px;
	}

	.cms-home .custom-panel,
	.cms-home .promo-panel {
		padding: 24px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-bottom div {
		flex-wrap: wrap;
	}
}

/* WordPress dynamic home alignment */
.cms-home .category-grid,
.cms-home .product-grid,
.cms-home .tutorial-grid,
.cms-home .blog-grid,
.cms-home .faq-grid {
	align-items: stretch;
}

.cms-home .category-card,
.cms-home .product-card,
.cms-home .tutorial-card,
.cms-home .blog-card {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.cms-home .category-card {
	min-height: 204px;
}

.cms-home .category-card h3 {
	min-height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.25;
}

.cms-home .product-card {
	min-height: 344px;
}

.cms-home .product-img {
	aspect-ratio: 1 / 1;
	flex: 0 0 auto;
}

.cms-home .product-img img {
	height: 100%;
	aspect-ratio: auto;
}

.cms-home .product-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	min-height: 132px;
}

.cms-home .product-info h3 {
	min-height: 40px;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-wrap: balance;
}

.cms-home .product-info h3 a,
.cms-home .tutorial-info h3 a,
.cms-home .blog-content h3 a {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.cms-home .price {
	margin: 0;
	line-height: 1.2;
}

.cms-home .add-to-cart-btn {
	min-height: 34px;
	margin-top: auto;
}

.cms-home .tutorial-card {
	min-height: 392px;
}

.cms-home .tutorial-thumb {
	aspect-ratio: 1.35 / 1;
	flex: 0 0 auto;
}

.cms-home .tutorial-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.cms-home .tutorial-info h3 {
	min-height: 54px;
	margin: 0;
	line-height: 1.25;
}

.cms-home .tutorial-info .tag {
	align-self: flex-start;
}

.cms-home .tutorial-info p,
.cms-home .blog-content p {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
}

.cms-home .custom-panel {
	align-items: center;
	min-height: 326px;
}

.cms-home .custom-features div {
	align-items: flex-start;
	min-height: 34px;
}

.cms-home .custom-features strong {
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(245, 127, 145, 0.22);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	color: var(--pink-dark);
	display: grid;
	place-items: center;
	font-family: var(--font-body);
	font-size: 12px;
	line-height: 1;
	box-shadow: 0 10px 18px rgba(93, 70, 60, 0.06);
}

.cms-home .custom-img {
	max-width: 380px;
	min-height: 230px;
}

.cms-home .blog-card {
	min-height: 420px;
}

.cms-home .blog-img {
	height: auto;
	aspect-ratio: 16 / 10;
	flex: 0 0 auto;
}

.cms-home .blog-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 10px;
}

.cms-home .blog-content h3 {
	min-height: 48px;
	margin: 0;
}

.cms-home .blog-content span {
	margin-top: auto;
}

.cms-home .faq-section h2 {
	text-align: center;
}

.cms-home .faq-grid details {
	min-height: 86px;
	width: 100%;
	overflow: hidden;
}

.cms-home .faq-grid summary {
	min-height: 42px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	line-height: 1.35;
	list-style: none;
}

.cms-home .faq-grid summary::-webkit-details-marker {
	display: none;
}

.cms-home .faq-grid summary::after {
	justify-self: end;
}

.cms-home .faq-grid details div,
.cms-home .faq-grid details p {
	min-width: 0;
	overflow-wrap: anywhere;
}

@media (max-width: 1024px) {
	.cms-home .faq-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.cms-home .faq-grid {
		grid-template-columns: minmax(0, 1fr);
		width: 100%;
	}
}

@media (max-width: 1024px) {
	.cms-home .promo-img,
	.cms-home .custom-img {
		width: min(100%, 420px);
		max-width: 420px;
	}

	.cms-home .product-card,
	.cms-home .tutorial-card,
	.cms-home .blog-card {
		min-height: auto;
	}
}

@media (max-width: 760px) {
	.cms-home .category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.cms-home .category-card {
		min-height: 188px;
	}

	.cms-home .category-img {
		height: 128px;
	}

	.cms-home .category-card h3 {
		min-height: 60px;
		padding: 10px 8px;
		font-size: 13px;
	}

	.cms-home .product-info,
	.cms-home .tutorial-info,
	.cms-home .blog-content {
		min-height: auto;
	}

	.cms-home .promo-img,
	.cms-home .custom-img {
		width: 100%;
		max-width: none;
		min-height: 0;
	}

	.cms-home .blog-img {
		height: auto;
		aspect-ratio: 16 / 10;
	}
}

/* WooCommerce inside CMS static layouts */
.woocommerce-cms-panel {
	margin-top: 24px;
}

.woocommerce-cms-panel .woocommerce,
.woocommerce-cms-panel .woocommerce-notices-wrapper {
	font-family: inherit;
}

.woocommerce-cms-panel .woocommerce table.shop_table,
.woocommerce-cms-panel .woocommerce-cart-form,
.woocommerce-cms-panel .cart_totals,
.woocommerce-cms-panel .woocommerce-checkout-review-order,
.woocommerce-cms-panel .woocommerce-MyAccount-navigation,
.woocommerce-cms-panel .woocommerce-MyAccount-content {
	border: 1px solid var(--border, #f0d7cf);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 12px 34px rgba(121, 66, 55, 0.08);
}

.woocommerce-cms-panel .woocommerce table.shop_table {
	overflow: hidden;
}

.woocommerce-cms-panel .woocommerce table.shop_table th,
.woocommerce-cms-panel .woocommerce table.shop_table td {
	padding: 16px;
}

.woocommerce-cms-panel .woocommerce input.input-text,
.woocommerce-cms-panel .woocommerce textarea,
.woocommerce-cms-panel .woocommerce select,
.product-options .variations select,
.product-options .quantity input {
	border: 1px solid #ead3cb;
	border-radius: 12px;
	padding: 12px 14px;
	background: #fffaf7;
	color: var(--text, #3d2b25);
}

.woocommerce-cms-panel .woocommerce a.button,
.woocommerce-cms-panel .woocommerce button.button,
.woocommerce-cms-panel .woocommerce input.button,
.product-options .single_add_to_cart_button {
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--primary, #f57f91), var(--accent, #e8a87c));
	color: #fff;
	font-weight: 800;
	padding: 13px 22px;
	text-decoration: none;
}

.product-options form.cart,
.product-options .variations,
.product-options .woocommerce-variation-add-to-cart {
	display: grid;
	gap: 16px;
}

.product-options .variations {
	width: 100%;
}

.product-options .variations th,
.product-options .variations td {
	display: block;
	padding: 0 0 8px;
	text-align: left;
}

.product-options .quantity {
	display: inline-flex;
	align-items: center;
	margin-right: 10px;
}

.product-options .reset_variations {
	display: inline-block;
	margin-top: 8px;
	color: var(--primary, #f57f91);
}

.product-details-tab .tab-pane {
	display: none;
}

.product-details-tab .tab-pane.active {
	display: block;
}

.shop-product-details h3 a,
.product-card .product-link {
	color: inherit;
	text-decoration: none;
}

/* New WooCommerce product detail page */
.single-product-redesign {
	background:
		radial-gradient(circle at 74% 18%, rgba(245, 127, 145, 0.12), transparent 30%),
		linear-gradient(180deg, #fffaf7 0%, #fff7f2 100%);
}

.single-product-redesign .product-breadcrumb-bar {
	padding: 18px 0;
	background: rgba(255, 250, 246, 0.86);
	border-bottom: 1px solid rgba(238, 211, 203, 0.78);
}

.single-product-redesign .breadcrumb {
	gap: 10px;
	font-size: 14px;
}

.single-product-redesign .breadcrumb a {
	color: var(--pink-dark, #d94a65);
	text-decoration: none;
}

.single-product-redesign .single-product-notices {
	background: transparent;
}

.single-product-redesign .woocommerce-notices-wrapper,
.single-product-redesign .woocommerce-message,
.single-product-redesign .woocommerce-error,
.single-product-redesign .woocommerce-info {
	margin: 16px 0 0;
}

.single-product-redesign .product-detail-section {
	padding: 38px 0 62px;
}

.single-product-redesign .product-detail-shell {
	display: block;
}

.single-product-redesign .product-detail-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
	gap: 46px;
	align-items: start;
}

.single-product-redesign .product-gallery {
	min-width: 0;
}

.single-product-redesign .main-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1.16 / 1;
	border: 1px solid #f1d6ce;
	border-radius: 16px;
	background: #fff1ef;
	box-shadow: 0 18px 42px rgba(93, 70, 60, 0.09);
}

.single-product-redesign .main-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.single-product-redesign .product-gallery-badge,
.single-product-redesign .product-gallery-zoom {
	position: absolute;
	z-index: 2;
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(93, 70, 60, 0.15);
}

.single-product-redesign .product-gallery-badge {
	top: 18px;
	left: 18px;
	background: linear-gradient(135deg, #ff6f8d, #e44866);
	color: #fff;
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 900;
}

.single-product-redesign .product-gallery-zoom {
	top: 18px;
	right: 18px;
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.94);
	color: var(--brown, #3d2b25);
	text-decoration: none;
	font-size: 22px;
	line-height: 1;
}

.single-product-redesign .thumbnail-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: 14px;
}

.single-product-redesign .thumbnail-btn {
	aspect-ratio: 1.12 / 1;
	border: 2px solid transparent;
	border-radius: 12px;
	padding: 0;
	background: #fff;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(93, 70, 60, 0.08);
}

.single-product-redesign .thumbnail-btn.active {
	border-color: var(--primary, #f57f91);
}

.single-product-redesign .thumbnail-btn img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.single-product-redesign .product-purchase-panel {
	min-width: 0;
	padding: 2px 0 0;
}

.single-product-redesign .product-purchase-panel h1 {
	margin: 0;
	color: var(--brown, #3d2b25);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(38px, 4.1vw, 54px);
	line-height: 1.06;
	letter-spacing: 0;
}

.single-product-redesign .product-rating-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
	color: var(--muted, #8a6d66);
	font-size: 15px;
}

.single-product-redesign .product-rating-row a,
.single-product-redesign .product-rating-row a:visited {
	color: var(--text, #3d2b25);
	text-decoration: none;
}

.single-product-redesign .star-rating {
	float: none;
	color: #f15f79;
	margin: 0;
}

.single-product-redesign .product-purchase-panel .price {
	margin: 16px 0 10px;
	color: #e44866;
	font-size: 27px;
	font-weight: 900;
}

.single-product-redesign .product-description {
	margin: 0 0 16px;
	color: var(--muted, #8a6d66);
	font-size: 16px;
	line-height: 1.65;
}

.single-product-redesign .stock-message {
	margin: 0 0 18px;
	font-weight: 800;
	font-size: 15px;
}

.single-product-redesign .stock-message::before {
	content: "";
	width: 12px;
	height: 12px;
	display: inline-block;
	margin-right: 8px;
	border-radius: 50%;
	background: #2fa84f;
	box-shadow: inset 0 0 0 3px #e9f8ed;
}

.single-product-redesign .stock-message.is-out-of-stock::before {
	background: #b33a3a;
	box-shadow: inset 0 0 0 3px #ffe5e5;
}

.single-product-redesign .stock-message.is-in-stock {
	color: #288347;
}

.single-product-redesign .stock-message.is-out-of-stock {
	color: #9f2435;
}

.single-product-redesign .product-trust-chips {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 20px;
}

.single-product-redesign .product-trust-chips span {
	min-height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	padding: 10px;
	border: 1px solid #efd9d2;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.72);
	color: #6f5851;
	font-size: 13px;
	font-weight: 800;
	text-align: center;
}

.single-product-redesign .product-options {
	margin-top: 4px;
}

.single-product-redesign .product-options form.cart,
.single-product-redesign .product-options .variations_form,
.single-product-redesign .product-options .single_variation_wrap {
	display: grid;
	gap: 14px;
}

.single-product-redesign .product-options table.variations,
.single-product-redesign .product-options table.variations tbody,
.single-product-redesign .product-options table.variations tr,
.single-product-redesign .product-options table.variations th,
.single-product-redesign .product-options table.variations td {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
}

.single-product-redesign .product-options table.variations tr {
	margin-bottom: 14px;
}

.single-product-redesign .product-options table.variations label,
.single-product-redesign .product-options .quantity::before {
	display: block;
	margin-bottom: 8px;
	color: var(--text, #3d2b25);
	font-size: 14px;
	font-weight: 900;
}

.single-product-redesign .product-options .quantity::before {
	content: "Quantity";
	position: absolute;
	top: -28px;
	left: 0;
}

.single-product-redesign .product-options .variations select {
	width: 100%;
	min-height: 52px;
	border: 1px solid #ecd2cc;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.86);
	color: var(--text, #3d2b25);
	font-weight: 800;
}

.single-product-redesign .product-options .reset_variations {
	color: #d94a65;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.single-product-redesign .woocommerce-variation-price {
	color: #e44866;
	font-size: 18px;
	font-weight: 900;
}

.single-product-redesign .woocommerce-variation-availability {
	color: #288347;
	font-weight: 800;
}

.single-product-redesign .product-options .woocommerce-variation-add-to-cart,
.single-product-redesign .product-options form.cart:not(.variations_form) {
	display: grid;
	grid-template-columns: 126px minmax(0, 1fr);
	gap: 12px;
	align-items: end;
	margin-top: 34px;
}

.single-product-redesign .product-options .quantity {
	position: relative;
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr) 38px;
	align-items: stretch;
	width: 126px;
	margin: 0;
	border: 1px solid #ecd2cc;
	border-radius: 8px;
	background: #fff;
	overflow: visible;
}

.single-product-redesign .product-options .qty {
	width: 100%;
	min-height: 44px;
	border: 0;
	border-right: 1px solid #ecd2cc;
	border-left: 1px solid #ecd2cc;
	border-radius: 0;
	padding: 0 4px;
	background: #fff;
	text-align: center;
	font-weight: 900;
	appearance: textfield;
}

.single-product-redesign .product-options .qty::-webkit-outer-spin-button,
.single-product-redesign .product-options .qty::-webkit-inner-spin-button {
	appearance: none;
	margin: 0;
}

.single-product-redesign .qty-step {
	width: 38px;
	min-height: 44px;
	border: 0;
	background: #fff;
	color: #8a6d66;
	font-size: 18px;
	font-weight: 900;
	cursor: pointer;
}

.single-product-redesign .product-options .single_add_to_cart_button,
.single-product-redesign .product-options .product-buy-now {
	min-height: 48px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 900;
	text-decoration: none;
}

.single-product-redesign .product-options .single_add_to_cart_button {
	border: 0;
	background: linear-gradient(135deg, #f86f8c, #e44866);
	color: #fff;
	box-shadow: 0 14px 28px rgba(228, 72, 102, 0.2);
}

.single-product-redesign .product-options .single_add_to_cart_button.disabled,
.single-product-redesign .product-options .single_add_to_cart_button:disabled {
	opacity: 0.58;
	cursor: not-allowed;
	box-shadow: none;
}

.single-product-redesign .product-options .product-buy-now {
	grid-column: 1 / -1;
	border: 2px solid #ef6d87;
	background: rgba(255, 255, 255, 0.72);
	color: #e44866;
}

.single-product-redesign .product-options .product-buy-now:hover {
	background: #fff0f3;
}

.single-product-redesign .product-options .out-of-stock {
	color: #9f2435;
	font-weight: 900;
}

.single-product-redesign .secure-checkout,
.single-product-redesign .purchase-policy-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 18px;
	color: #7e6660;
	font-size: 13px;
}

.single-product-redesign .secure-checkout strong {
	padding: 4px 8px;
	border: 1px solid #ead3cb;
	border-radius: 6px;
	background: #fff;
	color: #274875;
	font-size: 12px;
	line-height: 1;
}

.single-product-redesign .purchase-policy-row {
	gap: 22px;
	font-weight: 800;
}

.single-product-redesign .product-service-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	margin: 46px 0 24px;
	border: 1px solid #f1d8d1;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.62);
	box-shadow: 0 14px 34px rgba(93, 70, 60, 0.06);
	overflow: hidden;
}

.single-product-redesign .product-service-strip div {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 2px 14px;
	align-items: center;
	padding: 22px 24px;
	border-right: 1px solid #f1d8d1;
}

.single-product-redesign .product-service-strip div:last-child {
	border-right: 0;
}

.single-product-redesign .product-service-strip span {
	grid-row: span 2;
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border: 1px solid #ffd3dc;
	border-radius: 999px;
	background: #fff8f9;
	color: #e44866;
	font-size: 21px;
}

.single-product-redesign .product-service-strip strong {
	color: var(--text, #3d2b25);
	font-size: 15px;
	line-height: 1.25;
}

.single-product-redesign .product-service-strip small {
	color: var(--muted, #8a6d66);
	font-size: 13px;
}

.single-product-redesign .product-lower-grid,
.single-product-redesign .product-bottom-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.single-product-redesign .product-details-tab,
.single-product-redesign .single-related-products {
	border: 1px solid #ecd4cd;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 12px 32px rgba(93, 70, 60, 0.06);
}

.single-product-redesign .product-details-tab {
	overflow: hidden;
}

.single-product-redesign .tab-buttons {
	display: flex;
	gap: 20px;
	padding: 0 18px;
	border-bottom: 1px solid #ead3cb;
	background: rgba(255, 255, 255, 0.58);
}

.single-product-redesign .tab-btn {
	min-height: 58px;
	border: 0;
	border-bottom: 3px solid transparent;
	background: transparent;
	color: var(--text, #3d2b25);
	font-weight: 900;
	cursor: pointer;
}

.single-product-redesign .tab-btn.active {
	border-bottom-color: #e44866;
	color: #e44866;
}

.single-product-redesign .tab-content {
	padding: 24px 24px 30px;
}

.single-product-redesign .tab-pane {
	color: #6f5851;
	line-height: 1.75;
}

.single-product-redesign .tab-pane h2,
.single-product-redesign .tab-pane h3 {
	margin-top: 0;
	color: var(--brown, #3d2b25);
	font-family: Georgia, "Times New Roman", serif;
}

.single-product-redesign .tab-pane ul {
	display: grid;
	gap: 10px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
}

.single-product-redesign .tab-pane li::before {
	content: "\2713";
	margin-right: 8px;
	color: #e44866;
	font-weight: 900;
}

.single-product-redesign .specs-table {
	width: 100%;
	border-collapse: collapse;
}

.single-product-redesign .specs-table th,
.single-product-redesign .specs-table td {
	padding: 11px 0;
	border-bottom: 1px solid #f1e0da;
	text-align: left;
	vertical-align: top;
}

.single-product-redesign .specs-table th {
	width: 34%;
	color: var(--text, #3d2b25);
	font-size: 14px;
}

.single-product-redesign .specs-table td {
	color: #6f5851;
}


.single-product-redesign .single-related-products h2 {
	margin: 0 0 16px;
	color: var(--brown, #3d2b25);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 24px;
	line-height: 1.2;
}


.single-product-redesign .product-bottom-grid {
	margin-top: 28px;
}

.single-product-redesign .single-related-products {
	padding: 22px;
}

.single-product-redesign .single-related-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.single-product-redesign .single-related-card {
	border: 1px solid #efd9d2;
	border-radius: 10px;
	background: #fff;
	overflow: hidden;
}

.single-product-redesign .single-related-link {
	display: grid;
	color: inherit;
	text-decoration: none;
}

.single-product-redesign .single-related-image {
	aspect-ratio: 1.12 / 1;
	background: #fff1ef;
}

.single-product-redesign .single-related-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.single-product-redesign .single-related-body {
	padding: 10px 12px 12px;
}

.single-product-redesign .single-related-body h3 {
	margin: 0;
	color: var(--text, #3d2b25);
	font-size: 13px;
	line-height: 1.28;
}

.single-product-redesign .single-related-price {
	margin: 6px 0 0;
	color: #e44866;
	font-size: 13px;
	font-weight: 900;
}


.single-product-redesign .comment-respond,
.single-product-redesign .commentlist {
	margin-top: 20px;
}

@media (max-width: 1080px) {
	.single-product-redesign .product-detail-inner,
	.single-product-redesign .product-lower-grid,
	.single-product-redesign .product-bottom-grid {
		grid-template-columns: 1fr;
	}

	.single-product-redesign .product-purchase-panel {
		max-width: 760px;
	}

	.single-product-redesign .product-service-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.single-product-redesign .product-service-strip div:nth-child(2) {
		border-right: 0;
	}
}

@media (max-width: 760px) {
	.single-product-redesign .product-detail-section {
		padding: 26px 0 46px;
	}

	.single-product-redesign .product-detail-inner {
		gap: 28px;
	}

	.single-product-redesign .main-image {
		border-radius: 12px;
	}

	.single-product-redesign .product-purchase-panel h1 {
		max-width: 100%;
		font-size: 34px;
		overflow-wrap: break-word;
	}

	.single-product-redesign .product-purchase-panel .price {
		font-size: 24px;
	}

	.single-product-redesign .thumbnail-grid,
	.single-product-redesign .single-related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.single-product-redesign .product-trust-chips {
		grid-template-columns: 1fr;
	}

	.single-product-redesign .product-options .woocommerce-variation-add-to-cart,
	.single-product-redesign .product-options form.cart:not(.variations_form) {
		grid-template-columns: 1fr;
	}

	.single-product-redesign .product-options .quantity {
		width: 136px;
	}

	.single-product-redesign .secure-checkout {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, max-content));
		align-items: start;
		gap: 8px;
	}

	.single-product-redesign .secure-checkout > span {
		grid-column: 1 / -1;
	}

	.single-product-redesign .purchase-policy-row {
		display: grid;
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.single-product-redesign .product-service-strip {
		grid-template-columns: 1fr;
	}

	.single-product-redesign .product-service-strip div {
		border-right: 0;
		border-bottom: 1px solid #f1d8d1;
	}

	.single-product-redesign .product-service-strip div:last-child {
		border-bottom: 0;
	}

	.single-product-redesign .tab-buttons {
		gap: 12px;
		overflow-x: auto;
		padding: 0 14px;
	}

	.single-product-redesign .tab-btn {
		flex: 0 0 auto;
		min-height: 52px;
	}

	.single-product-redesign .tab-content,
	.single-product-redesign .single-related-products {
		padding: 18px;
	}

	.single-product-redesign .tab-pane,
	.single-product-redesign .single-related-body h3 {
		overflow-wrap: anywhere;
	}
}

/* Legacy meanings page from cms/meanings.html, scoped to avoid global header bleed. */
.meanings-legacy-page {
	--primary-red: #c8102e;
	--gold: #d4a017;
	--boho-beige: #f5f5dc;
	--zen-green: #556b2f;
	--text-dark: #333;
	background: var(--boho-beige);
	color: var(--text-dark);
	padding: 40px 0 70px;
}

.meanings-legacy-page .page-content {
	padding: 40px 5%;
}

.meanings-legacy-page .page-title {
	margin-bottom: 60px;
	text-align: center;
}

.meanings-legacy-page .page-title h1 {
	margin: 0 0 10px;
	color: var(--primary-red);
	font-size: 3rem;
}

.meanings-legacy-page .page-title p {
	max-width: 700px;
	margin: 0 auto;
	color: var(--text-dark);
	font-size: 1.1rem;
}

.meanings-legacy-page .knots-encyclopedia {
	max-width: 1200px;
	margin: 0 auto;
}

.meanings-legacy-page .knot-card {
	margin-bottom: 40px;
	overflow: hidden;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.meanings-legacy-page .knot-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.meanings-legacy-page .knot-header {
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 30px;
	background: linear-gradient(135deg, var(--primary-red), var(--gold));
	color: #fff;
}

.meanings-legacy-page .knot-image {
	display: flex;
	width: 150px;
	height: 150px;
	flex: 0 0 150px;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 50%;
	background: #fff;
}

.meanings-legacy-page .knot-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.meanings-legacy-page .knot-title h2 {
	margin: 0 0 10px;
	font-size: 2rem;
}

.meanings-legacy-page .knot-title p {
	margin: 0;
	font-size: 1.1rem;
	opacity: 0.9;
}

.meanings-legacy-page .knot-content {
	padding: 40px;
}

.meanings-legacy-page .knot-tabs {
	display: flex;
	margin-bottom: 30px;
	border-bottom: 1px solid #ddd;
}

.meanings-legacy-page .knot-tab {
	padding: 10px 20px;
	color: var(--text-dark);
	cursor: pointer;
	font-weight: 700;
	transition: all 0.3s ease;
}

.meanings-legacy-page .knot-tab.active {
	border-bottom: 2px solid var(--primary-red);
	color: var(--primary-red);
}

.meanings-legacy-page .knot-tab-content {
	display: none;
}

.meanings-legacy-page .knot-tab-content.active {
	display: block;
}

.meanings-legacy-page .content-section {
	margin-bottom: 30px;
}

.meanings-legacy-page .content-section h3,
.meanings-legacy-page .related-products h3,
.meanings-legacy-page .product-info h4 {
	color: var(--primary-red);
}

.meanings-legacy-page .content-section p {
	margin: 0 0 15px;
	line-height: 1.6;
}

.meanings-legacy-page .video-container {
	position: relative;
	height: 0;
	overflow: hidden;
	padding-bottom: 56.25%;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.meanings-legacy-page .video-container .btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.meanings-legacy-page .related-products {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid #ddd;
}

.meanings-legacy-page .products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.meanings-legacy-page .related-product {
	overflow: hidden;
	border-radius: 8px;
	background: var(--boho-beige);
	transition: all 0.3s ease;
}

.meanings-legacy-page .related-product:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.meanings-legacy-page .product-img {
	display: block;
	width: 100%;
	height: 150px;
	overflow: hidden;
	background: #ddd;
}

.meanings-legacy-page .product-img img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	margin: 0;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.meanings-legacy-page .related-product:hover .product-img img {
	transform: scale(1.05);
}

.meanings-legacy-page .product-info {
	padding: 15px;
	text-align: center;
}

.meanings-legacy-page .product-link {
	display: inline-block;
	margin-top: 10px;
	color: var(--primary-red);
	font-weight: 700;
	text-decoration: none;
}

@media (max-width: 768px) {
	.meanings-legacy-page .page-title h1 {
		font-size: 2.5rem;
	}

	.meanings-legacy-page .page-content {
		padding: 20px 5%;
	}

	.meanings-legacy-page .knot-header {
		flex-direction: column;
		padding: 20px;
		text-align: center;
	}

	.meanings-legacy-page .knot-image {
		width: 120px;
		height: 120px;
		flex-basis: 120px;
	}

	.meanings-legacy-page .knot-content {
		padding: 20px;
	}

	.meanings-legacy-page .knot-tabs {
		overflow-x: auto;
	}

	.meanings-legacy-page .knot-tab {
		flex-shrink: 0;
		padding: 10px 15px;
		font-size: 0.9rem;
	}
}

/* CMS legal pages: keep the native static template layout intact. */
body.cms-legal-page .hero.policy-hero {
	width: auto;
	max-width: none;
	margin-right: 0;
	margin-left: 0;
	display: block;
	grid-template-columns: none;
	gap: 0;
	align-items: initial;
	padding: 70px 0;
	overflow: hidden;
	background: linear-gradient(135deg, #fff9e6 0%, #fff5f5 100%);
}

body.cms-legal-page .policy-hero .hero-inner {
	display: grid;
	grid-template-columns: minmax(420px, 0.96fr) minmax(0, 1.04fr);
	align-items: center;
	gap: 72px;
}

body.cms-legal-page .policy-hero .hero-content {
	order: initial;
	max-width: 620px;
}

body.cms-legal-page .policy-hero .hero-visual {
	position: relative;
	order: initial;
	min-height: 560px;
	display: grid;
	place-items: center;
}

body.cms-legal-page .policy-hero .eyebrow {
	margin: 0 0 18px;
	color: var(--pink-dark);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 18px;
	font-style: italic;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0;
}

body.cms-legal-page .policy-hero .hero-main-img {
	display: none;
}

body.cms-legal-page .policy-content {
	padding: 60px 0;
}

body.cms-legal-page .policy-text {
	max-width: 800px;
	margin: 0 auto;
}

body.cms-legal-page .policy-text h2 {
	margin: 40px 0 20px;
	color: var(--brown);
	font-size: 28px;
}

body.cms-legal-page .policy-text h2:first-child {
	margin-top: 0;
}

body.cms-legal-page .policy-text p {
	margin-bottom: 16px;
	line-height: 1.8;
}

body.cms-legal-page .policy-text ul,
body.cms-legal-page .policy-text ol {
	margin-bottom: 20px;
	padding-left: 24px;
}

body.cms-legal-page .policy-text li {
	margin-bottom: 10px;
	line-height: 1.7;
}

@media (max-width: 1024px) {
	body.cms-legal-page .policy-hero .hero-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	body.cms-legal-page .policy-hero .hero-visual {
		order: 2;
	}

	body.cms-legal-page .policy-hero .hero-content {
		order: 1;
		max-width: 100%;
	}
}

@media (min-width: 761px) and (max-width: 1024px) {
	body.cms-legal-page .policy-hero .hero-inner {
		grid-template-columns: minmax(330px, 0.94fr) minmax(360px, 1.06fr);
		gap: 34px;
	}

	body.cms-legal-page .policy-hero .hero-content,
	body.cms-legal-page .policy-hero .hero-visual {
		order: initial;
	}

	body.cms-legal-page .policy-hero .hero-visual {
		min-height: auto;
	}
}

@media (max-width: 760px) {
	body.cms-legal-page .hero.policy-hero {
		padding: 70px 0;
	}

	body.cms-legal-page .policy-hero .hero-visual {
		min-height: auto;
	}
}

/* Free pattern detail: WordPress-managed content inside the CMS static layout. */
.single-pattern-detail .pattern-detail-article {
	margin: 0;
}

.single-pattern-detail .pattern-detail-visual img {
	aspect-ratio: 5 / 4;
	display: block;
	object-fit: cover;
}

.single-pattern-detail .pattern-info-grid .tag {
	align-self: flex-start;
}

.single-pattern-detail .material-icon {
	width: 52px;
	height: 52px;
	border: 1px solid rgba(245, 127, 145, 0.35);
	border-radius: 50%;
	background: #fff;
	color: var(--pink-dark);
	display: inline-grid;
	place-items: center;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 17px;
	font-weight: 700;
}

.single-pattern-detail .pattern-content-body {
	display: block;
	max-width: 980px;
	margin: 40px auto 0;
	padding: 34px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-soft);
}

.single-pattern-detail .pattern-content-body > :first-child {
	margin-top: 0;
}

.single-pattern-detail .pattern-content-body > :last-child {
	margin-bottom: 0;
}

.single-pattern-detail .pattern-content-body h2,
.single-pattern-detail .pattern-content-body h3,
.single-pattern-detail .pattern-content-body h4 {
	margin: 30px 0 14px;
	color: var(--brown);
	line-height: 1.2;
}

.single-pattern-detail .pattern-content-body p,
.single-pattern-detail .pattern-content-body li {
	color: var(--text);
	font-size: 16px;
	line-height: 1.75;
}

.single-pattern-detail .pattern-content-body p,
.single-pattern-detail .pattern-content-body ul,
.single-pattern-detail .pattern-content-body ol {
	margin-bottom: 18px;
}

.single-pattern-detail .pattern-content-body ul {
	padding-left: 22px;
}

.single-pattern-detail .pattern-content-body > ol {
	counter-reset: pattern-step;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding-left: 0;
}

.single-pattern-detail .pattern-content-body > ol > li {
	counter-increment: pattern-step;
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 22px;
	padding: 26px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--cream);
}

.single-pattern-detail .pattern-content-body > ol > li::before {
	content: counter(pattern-step);
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: var(--pink);
	color: #fff;
	display: grid;
	place-items: center;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 22px;
	font-weight: 700;
}

.single-pattern-detail .pattern-content-body > ol > li > :first-child {
	margin-top: 0;
}

.single-pattern-detail .pattern-content-body img {
	max-width: 100%;
	height: auto;
	border: 1px solid var(--line);
	border-radius: 12px;
}

.single-pattern-detail .pattern-resource-panel {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 32px;
	align-items: center;
	max-width: 980px;
	margin: 30px auto 0;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: var(--shadow-soft);
}

.single-pattern-detail .pattern-resource-media img {
	aspect-ratio: 16 / 10;
	width: 100%;
	height: auto;
	border-radius: 14px;
	object-fit: cover;
}

.single-pattern-detail .pattern-resource-copy h3 {
	margin: 0 0 12px;
	color: var(--brown);
}

.single-pattern-detail .pattern-resource-copy p {
	margin: 0 0 22px;
	line-height: 1.7;
}

.single-pattern-detail .pattern-link:visited,
.single-pattern-detail .view-link:visited {
	color: var(--pink-dark);
}

.single-pattern-detail .btn-primary:visited {
	color: #fff;
}

.single-pattern-detail .btn-outline:visited {
	color: var(--brown);
}

@media (max-width: 760px) {
	.single-pattern-detail .pattern-content-body {
		padding: 22px;
	}

	.single-pattern-detail .pattern-content-body > ol > li {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 22px;
	}

	.single-pattern-detail .pattern-resource-panel {
		grid-template-columns: 1fr;
		padding: 22px;
	}
}

.single-pattern-detail .pattern-detail-content .eyebrow {
	color: var(--pink-dark);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 18px;
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
}

.single-pattern-detail .pattern-detail-content h1 {
	max-width: 100%;
	overflow-wrap: normal;
	word-break: normal;
	text-wrap: balance;
}

@media (max-width: 760px) {
	.single-pattern-detail .pattern-detail-content h1 {
		font-size: 38px;
		line-height: 1.08;
	}

	.single-pattern-detail .pattern-detail-content p {
		max-width: 100%;
	}
}

.single-pattern-detail .pattern-detail-content > p:not(.eyebrow) {
	text-wrap: auto;
	overflow-wrap: normal;
	word-break: normal;
}

.single-pattern-detail .pattern-video-link {
	display: block;
	color: #fff;
	text-decoration: none;
}

.single-pattern-detail .pattern-video-link:visited,
.single-pattern-detail .pattern-video-link:hover,
.single-pattern-detail .pattern-video-link:focus {
	color: #fff;
}

.single-pattern-detail .pattern-video-link img {
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.single-pattern-detail .pattern-video-link .video-play-btn {
	color: #fff;
}

.single-pattern-detail .pattern-content-body > ol > li::before {
	grid-column: 1;
	grid-row: 1 / span 20;
}

.single-pattern-detail .pattern-content-body > ol > li > * {
	grid-column: 2;
}

@media (max-width: 760px) {
	.single-pattern-detail .pattern-content-body > ol > li::before,
	.single-pattern-detail .pattern-content-body > ol > li > * {
		grid-column: auto;
		grid-row: auto;
	}
}

/* Pattern detail final CMS alignment. */
.single-pattern-detail .pattern-materials > .container,
.single-pattern-detail .pattern-instructions > .container,
.single-pattern-detail .pattern-video > .container,
.single-pattern-detail .related-patterns > .container,
.single-pattern-detail .pattern-faq-section > .container {
	width: min(1180px, calc(100% - 40px));
}

.single-pattern-detail .pattern-materials .section-heading,
.single-pattern-detail .pattern-instructions .section-heading {
	text-align: left;
	margin-right: 0;
	margin-left: 0;
}

.single-pattern-detail .pattern-materials .section-heading h2,
.single-pattern-detail .pattern-instructions .section-heading h2,
.single-pattern-detail .related-patterns .section-heading h2,
.single-pattern-detail .pattern-faq-section .section-heading h2,
.single-pattern-detail .pattern-video .section-heading h2 {
	font-size: 30px;
	line-height: 1.15;
}

.single-pattern-detail .materials-list {
	gap: 14px;
	margin-top: 18px;
}

.single-pattern-detail .material-item {
	min-height: 150px;
	padding: 24px 18px;
	border-radius: 12px;
	background: #fffaf5;
}

.single-pattern-detail .material-icon {
	width: auto;
	height: auto;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	display: block;
	font-family: var(--font-body);
	font-size: 34px;
	font-weight: 400;
	line-height: 1;
}

.single-pattern-detail .pattern-content-body {
	max-width: none;
	margin: 30px 0 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.single-pattern-detail .pattern-content-body > ol {
	counter-reset: pattern-step;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin: 0;
	padding: 0;
}

.single-pattern-detail .pattern-content-body > ol > li {
	counter-increment: pattern-step;
	position: relative;
	display: block;
	min-height: 126px;
	padding: 32px 32px 32px 142px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
}

.single-pattern-detail .pattern-content-body > ol > li::before {
	content: counter(pattern-step);
	position: absolute;
	top: 32px;
	left: 32px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--pink);
	color: #fff;
	display: grid;
	place-items: center;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 24px;
	font-weight: 700;
}

.single-pattern-detail .pattern-content-body > ol > li > * {
	grid-column: auto;
}

.single-pattern-detail .pattern-content-body > ol > li h3 {
	margin: 0 0 16px;
	font-size: 20px;
	line-height: 1.25;
}

.single-pattern-detail .pattern-content-body > ol > li p {
	margin: 0 0 20px;
	font-size: 14px;
	line-height: 1.7;
}

.single-pattern-detail .pattern-content-body > ol > li img {
	width: 100%;
	max-width: 500px;
	border: 1px solid var(--line);
	border-radius: 12px;
}

.single-pattern-detail .related-patterns .patterns-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.single-pattern-detail .pattern-faq-section .faq-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.single-pattern-detail .pattern-faq-section details {
	margin-bottom: 0;
	box-shadow: none;
}

.single-pattern-detail .pattern-faq-section summary {
	min-height: 58px;
	font-size: 13px;
}

@media (max-width: 1024px) {
	.single-pattern-detail .related-patterns .patterns-grid,
	.single-pattern-detail .pattern-faq-section .faq-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.single-pattern-detail .pattern-materials > .container,
	.single-pattern-detail .pattern-instructions > .container,
	.single-pattern-detail .pattern-video > .container,
	.single-pattern-detail .related-patterns > .container,
	.single-pattern-detail .pattern-faq-section > .container {
		width: min(100% - 28px, 1180px);
	}

	.single-pattern-detail .pattern-content-body > ol > li {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 22px;
	}

	.single-pattern-detail .pattern-content-body > ol > li::before,
	.single-pattern-detail .pattern-content-body > ol > li > * {
		grid-column: auto;
		grid-row: auto;
	}

	.single-pattern-detail .related-patterns .patterns-grid,
	.single-pattern-detail .pattern-faq-section .faq-grid {
		grid-template-columns: 1fr;
	}
}

.single-pattern-detail .pattern-content-body > ol > li::before {
	grid-row: auto;
	align-self: start;
}

.single-pattern-detail .pattern-content-body > ol > li img {
	max-width: 500px;
	aspect-ratio: 2 / 1;
	object-fit: cover;
}



/* Pattern step mobile flow fix. */
@media (max-width: 760px) {
	.single-pattern-detail .pattern-content-body > ol > li {
		min-height: 0;
	}

	.single-pattern-detail .pattern-content-body > ol > li::before {
		position: static;
		top: auto;
		left: auto;
		margin-bottom: 20px;
	}
}



/* Shared XGPlayer modal playback. */
.video-placeholder.video-play-trigger,
button.pattern-video-link {
	width: 100%;
	padding: 0;
	border: 1px solid var(--line);
	background: var(--white);
	cursor: pointer;
	font: inherit;
	text-align: inherit;
}

.video-frame .video-placeholder {
	display: block;
	width: 100%;
	height: 100%;
}

.video-frame .video-placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cloud-video-player {
	overflow: hidden;
}

.cloud-video-player .xgplayer,
.cloud-video-player video {
	width: 100% !important;
	height: 100% !important;
	border-radius: 10px;
}

.video-status[hidden] {
	display: none;
}

body:has(.video-modal.is-open) {
	overflow: hidden;
}

/* WooCommerce My Account redesign. */
.account-section {
	background: linear-gradient(180deg, #fffaf5 0%, #fff7f8 100%);
}

.ays-account-page-heading {
	max-width: 780px;
	margin: 0 0 28px;
}

.ays-account-page-heading .eyebrow,
.ays-account-auth-copy .eyebrow,
.ays-account-recovery-copy .eyebrow,
.ays-account-welcome .eyebrow {
	margin: 0 0 10px;
	color: var(--pink-dark, #e95d73);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 18px;
	font-style: italic;
}

.ays-account-page-heading h1,
.ays-account-auth-copy h2,
.ays-account-recovery-copy h2,
.ays-account-welcome h2 {
	margin: 0 0 12px;
	color: var(--brown, #3c2f2f);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(34px, 4vw, 56px);
	line-height: 1.03;
	letter-spacing: 0;
}

.ays-account-page-heading p,
.ays-account-auth-copy > p,
.ays-account-recovery-copy > p,
.ays-account-welcome p {
	margin: 0;
	color: var(--muted, #8b7a7a);
	font-size: 16px;
	line-height: 1.7;
}

.woocommerce-cms-panel.ays-account-shortcode {
	margin-top: 0;
}

.ays-account-shortcode .woocommerce,
.ays-account-shortcode .woocommerce-notices-wrapper {
	font-family: inherit;
}

.ays-account-shortcode .woocommerce-error,
.ays-account-shortcode .woocommerce-info,
.ays-account-shortcode .woocommerce-message {
	margin: 0 0 20px;
	padding: 16px 18px;
	border: 1px solid var(--line, #eee2dc);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(93, 70, 60, 0.06);
	color: var(--text, #514444);
}

.ays-account-auth,
.ays-account-recovery {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
	gap: 30px;
	align-items: stretch;
}

.ays-account-auth-copy,
.ays-account-recovery-copy,
.ays-account-auth-card,
.ays-account-recovery-card {
	border: 1px solid rgba(233, 93, 115, 0.18);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 18px 48px rgba(93, 70, 60, 0.08);
}

.ays-account-auth-copy,
.ays-account-recovery-copy {
	display: flex;
	min-height: 460px;
	flex-direction: column;
	justify-content: center;
	padding: 34px;
	background: linear-gradient(135deg, #fff1f3, #fffaf5);
}

.ays-account-auth-benefits {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 28px;
}

.ays-account-auth-benefits article {
	padding: 16px;
	border: 1px solid var(--line, #eee2dc);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.76);
}

.ays-account-auth-benefits span {
	display: inline-grid;
	width: 42px;
	height: 42px;
	margin-bottom: 12px;
	place-items: center;
	border-radius: 50%;
	background: #fff;
	font-size: 20px;
}

.ays-account-auth-benefits strong {
	display: block;
	margin-bottom: 5px;
	color: var(--brown, #3c2f2f);
	font-weight: 900;
}

.ays-account-auth-benefits p,
.ays-account-auth-side p,
.ays-account-note,
.ays-account-recovery-card p {
	margin: 0;
	color: var(--muted, #8b7a7a);
	font-size: 14px;
	line-height: 1.6;
}

.ays-account-auth-card,
.ays-account-recovery-card {
	padding: 24px;
}

.ays-account-auth-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.ays-account-auth-grid--single {
	grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.72fr);
}

.ays-account-auth-form,
.ays-account-auth-side {
	padding: 22px;
	border: 1px solid var(--line, #eee2dc);
	border-radius: 16px;
	background: #fffaf5;
}

.ays-account-auth-form h2,
.ays-account-auth-side h3,
.ays-account-recovery-card h3,
.ays-account-card h3,
.ays-account-card-heading h3 {
	margin: 0 0 8px;
	color: var(--brown, #3c2f2f);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 26px;
	line-height: 1.2;
}

.ays-account-auth-form > p,
.ays-account-card-heading p {
	margin: 0 0 18px;
	color: var(--muted, #8b7a7a);
	font-size: 14px;
	line-height: 1.6;
}

.ays-account-shortcode .woocommerce form .form-row,
.ays-account-shortcode .woocommerce form .form-row-first,
.ays-account-shortcode .woocommerce form .form-row-last {
	float: none;
	width: 100%;
	margin: 0 0 15px;
	padding: 0;
}

.ays-account-shortcode .woocommerce form label {
	display: block;
	margin: 0 0 7px;
	color: var(--brown, #3c2f2f);
	font-weight: 800;
	line-height: 1.4;
}

.ays-account-shortcode .woocommerce input.input-text,
.ays-account-shortcode .woocommerce textarea,
.ays-account-shortcode .woocommerce select {
	width: 100%;
	min-height: 48px;
	border: 1px solid #ead3cb;
	border-radius: 12px;
	padding: 12px 14px;
	background: #fff;
	color: var(--text, #514444);
	font: inherit;
	box-shadow: none;
}

.ays-account-shortcode .woocommerce input.input-text:focus,
.ays-account-shortcode .woocommerce textarea:focus,
.ays-account-shortcode .woocommerce select:focus {
	outline: 2px solid rgba(245, 127, 145, 0.22);
	border-color: var(--pink, #f57f91);
}

.ays-account-form-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	margin: 4px 0 16px;
}

.ays-account-form-actions label {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	margin: 0 !important;
	color: var(--text, #514444);
	font-weight: 700 !important;
}

.ays-account-form-actions input[type="checkbox"] {
	width: 16px;
	height: 16px;
}

.ays-account-form-actions a,
.ays-account-text-link,
.ays-account-card-heading a,
.ays-account-order strong a,
.ays-account-note a {
	color: var(--pink-dark, #e95d73);
	font-weight: 900;
	text-decoration: none;
}

.ays-account-shortcode .woocommerce a.button,
.ays-account-shortcode .woocommerce button.button,
.ays-account-shortcode .woocommerce input.button,
.ays-account-shortcode .button,
.ays-account-shop-link {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--pink, #f57f91), var(--pink-dark, #e95d73));
	color: #fff !important;
	font-weight: 900;
	padding: 12px 22px;
	text-decoration: none;
	box-shadow: 0 12px 28px rgba(233, 93, 115, 0.22);
	cursor: pointer;
}

.ays-account-auth-form .button,
.ays-account-recovery-card .button {
	width: 100%;
}

.ays-account-auth-side {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 14px;
}

.ays-account-recovery-copy ul,
.ays-account-care-list {
	display: grid;
	gap: 10px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
	color: var(--text, #514444);
}

.ays-account-recovery-copy li,
.ays-account-care-list li {
	position: relative;
	padding-left: 24px;
	line-height: 1.6;
}

.ays-account-recovery-copy li::before,
.ays-account-care-list li::before {
	content: "闂?;
	position: absolute;
	left: 0;
	color: var(--pink-dark, #e95d73);
	font-weight: 900;
}

.ays-account-recovery-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.ays-account-recovery--sent .ays-account-recovery-card {
	gap: 18px;
}

.ays-account-layout {
	display: grid;
	grid-template-columns: 290px minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.woocommerce-cms-panel .woocommerce-MyAccount-navigation.ays-account-sidebar,
.woocommerce-cms-panel .woocommerce-MyAccount-content.ays-account-main {
	border: 0;
	box-shadow: none;
	background: transparent;
}

.ays-account-sidebar {
	position: sticky;
	top: 92px;
	overflow: hidden;
	border: 1px solid var(--line, #eee2dc) !important;
	border-radius: 18px;
	background: #fff !important;
	box-shadow: 0 18px 48px rgba(93, 70, 60, 0.08) !important;
}

.ays-account-profile {
	display: grid;
	gap: 12px;
	justify-items: center;
	padding: 26px 20px;
	text-align: center;
	background: linear-gradient(135deg, var(--soft-pink, #fff1f3), var(--cream, #fffaf5));
	border-bottom: 1px solid var(--line, #eee2dc);
}

.ays-account-avatar {
	display: grid;
	width: 70px;
	height: 70px;
	place-items: center;
	border-radius: 50%;
	background: #fff;
	color: var(--brown, #3c2f2f);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 32px;
	font-weight: 900;
	box-shadow: 0 12px 26px rgba(93, 70, 60, 0.1);
}

.ays-account-profile strong {
	display: block;
	color: var(--brown, #3c2f2f);
	font-size: 18px;
}

.ays-account-profile span {
	display: block;
	max-width: 230px;
	overflow-wrap: anywhere;
	color: var(--muted, #8b7a7a);
	font-size: 13px;
}

.ays-account-menu {
	display: grid;
	gap: 5px;
	margin: 0;
	padding: 14px;
	list-style: none;
}

.ays-account-menu li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ays-account-menu a {
	display: flex;
	min-height: 46px;
	align-items: center;
	gap: 10px;
	border-radius: 12px;
	padding: 10px 12px;
	color: var(--text, #514444);
	font-weight: 800;
	text-decoration: none;
}

.ays-account-menu a:hover,
.ays-account-menu .is-active a,
.ays-account-menu a[aria-current="page"] {
	background: var(--soft-pink, #fff1f3);
	color: var(--pink-dark, #e95d73);
}

.ays-account-menu-icon {
	display: inline-grid;
	width: 28px;
	height: 28px;
	place-items: center;
	border-radius: 50%;
	background: #fff;
	font-size: 14px;
}

.ays-account-help {
	margin: 0 14px 16px;
	padding: 16px;
	border-radius: 14px;
	background: #fffaf5;
	border: 1px solid var(--line, #eee2dc);
}

.ays-account-help strong {
	display: block;
	margin-bottom: 6px;
	color: var(--brown, #3c2f2f);
}

.ays-account-help p {
	margin: 0 0 10px;
	color: var(--muted, #8b7a7a);
	font-size: 13px;
	line-height: 1.55;
}

.ays-account-help a {
	color: var(--pink-dark, #e95d73);
	font-weight: 900;
	text-decoration: none;
}

.ays-account-main {
	min-width: 0;
}

.ays-account-dashboard {
	display: grid;
	gap: 22px;
}

.ays-account-welcome,
.ays-account-card {
	border: 1px solid var(--line, #eee2dc);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(93, 70, 60, 0.08);
}

.ays-account-welcome {
	display: flex;
	gap: 22px;
	align-items: center;
	justify-content: space-between;
	padding: 28px;
	background: linear-gradient(135deg, #fff, #fff1f3);
}

.ays-account-welcome h2 {
	font-size: clamp(30px, 3vw, 44px);
}

.ays-account-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.ays-account-stats article {
	display: flex;
	gap: 14px;
	align-items: center;
	min-width: 0;
	padding: 18px;
	border: 1px solid var(--line, #eee2dc);
	border-radius: 16px;
	background: #fffaf5;
}

.ays-account-stats article > span {
	display: grid;
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	place-items: center;
	border-radius: 14px;
	background: #fff;
	font-size: 20px;
}

.ays-account-stats strong {
	display: block;
	color: var(--brown, #3c2f2f);
	font-size: 22px;
	line-height: 1.1;
}

.ays-account-stats p {
	margin: 3px 0 0;
	color: var(--muted, #8b7a7a);
	font-size: 12px;
	font-weight: 800;
}

.ays-account-panels {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
	gap: 18px;
}

.ays-account-card {
	padding: 22px;
}

.ays-account-card--wide {
	grid-row: span 2;
}

.ays-account-card-heading {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 18px;
}

.ays-account-order-list {
	display: grid;
	gap: 12px;
}

.ays-account-order {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	gap: 14px;
	align-items: center;
	padding: 14px;
	border-radius: 14px;
	background: #fffaf5;
	border: 1px solid var(--line, #eee2dc);
}

.ays-account-order span:not(.ays-order-status) {
	display: block;
	margin-top: 3px;
	color: var(--muted, #8b7a7a);
	font-size: 13px;
}

.ays-order-status,
.woocommerce-orders-table .woocommerce-orders-table__cell-order-status {
	white-space: nowrap;
}

.ays-order-status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding: 6px 12px;
	border-radius: 999px;
	background: #e8f3ff;
	color: #2d6793;
	font-size: 12px;
	font-weight: 900;
}

.ays-order-status--completed {
	background: var(--mint, #dfeee1);
	color: #4e734c;
}

.ays-order-status--processing,
.ays-order-status--on-hold,
.ays-order-status--pending {
	background: #fff4d8;
	color: #9a6a09;
}

.ays-order-status--cancelled,
.ays-order-status--failed,
.ays-order-status--refunded {
	background: #f7e4e4;
	color: #9b3d3d;
}

.ays-order-total {
	color: var(--brown, #3c2f2f);
}

.ays-account-empty {
	display: grid;
	justify-items: start;
	gap: 10px;
	padding: 22px;
	border-radius: 16px;
	background: #fffaf5;
	border: 1px dashed rgba(233, 93, 115, 0.35);
}

.ays-account-empty > span {
	font-size: 28px;
}

.ays-account-empty h3 {
	margin: 0;
	color: var(--brown, #3c2f2f);
}

.ays-account-empty p {
	margin: 0 0 6px;
	color: var(--muted, #8b7a7a);
	line-height: 1.6;
}

.ays-account-actions {
	display: grid;
	gap: 10px;
	margin-top: 14px;
}

.ays-account-actions a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 13px 14px;
	border: 1px solid var(--line, #eee2dc);
	border-radius: 14px;
	background: #fffaf5;
	color: var(--text, #514444);
	font-weight: 850;
	text-decoration: none;
}

.ays-account-actions span {
	display: inline-grid;
	width: 30px;
	height: 30px;
	place-items: center;
	border-radius: 50%;
	background: #fff;
}

.ays-account-main .woocommerce-orders-table,
.ays-account-main table.shop_table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	border: 1px solid var(--line, #eee2dc);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(93, 70, 60, 0.06);
}

.ays-account-main table.shop_table th,
.ays-account-main table.shop_table td {
	padding: 15px;
	border-bottom: 1px solid var(--line, #eee2dc);
	text-align: left;
}

.ays-account-main table.shop_table tr:last-child th,
.ays-account-main table.shop_table tr:last-child td {
	border-bottom: 0;
}

.ays-account-main .woocommerce-Address,
.ays-account-main .woocommerce-address-fields,
.ays-account-main .woocommerce-EditAccountForm,
.ays-account-main .woocommerce-PaymentMethods {
	padding: 22px;
	border: 1px solid var(--line, #eee2dc);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(93, 70, 60, 0.06);
}

.ays-account-main .woocommerce-Address-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 14px;
}

.ays-account-main .woocommerce-Address-title h2,
.ays-account-main .woocommerce-EditAccountForm legend,
.ays-account-main h2,
.ays-account-main h3 {
	color: var(--brown, #3c2f2f);
	font-family: Georgia, "Times New Roman", serif;
	letter-spacing: 0;
}

.ays-account-main .woocommerce-Address-title h2 {
	margin: 0;
	font-size: 24px;
}

.ays-account-main .woocommerce-Address-title .edit {
	color: var(--pink-dark, #e95d73);
	font-weight: 900;
	text-decoration: none;
}

.ays-account-main address {
	color: var(--text, #514444);
	font-style: normal;
	line-height: 1.7;
}

.ays-account-main .woocommerce-EditAccountForm fieldset {
	margin: 20px 0;
	padding: 18px;
	border: 1px solid var(--line, #eee2dc);
	border-radius: 14px;
	background: #fffaf5;
}

.ays-account-main .woocommerce-EditAccountForm legend {
	padding: 0 8px;
	font-size: 20px;
	font-weight: 900;
}

@media (max-width: 1100px) {
	.ays-account-auth,
	.ays-account-recovery,
	.ays-account-layout,
	.ays-account-panels {
		grid-template-columns: 1fr;
	}

	.ays-account-sidebar {
		position: static;
	}

	.ays-account-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.ays-account-page-heading h1,
	.ays-account-auth-copy h2,
	.ays-account-recovery-copy h2,
	.ays-account-welcome h2 {
		font-size: 34px;
	}

	.ays-account-auth-copy,
	.ays-account-recovery-copy,
	.ays-account-auth-card,
	.ays-account-recovery-card,
	.ays-account-card,
	.ays-account-welcome {
		padding: 20px;
	}

	.ays-account-auth-grid,
	.ays-account-auth-grid--single,
	.ays-account-auth-benefits,
	.ays-account-stats {
		grid-template-columns: 1fr;
	}

	.ays-account-welcome,
	.ays-account-card-heading,
	.ays-account-order,
	.ays-account-form-actions {
		display: grid;
		justify-items: stretch;
	}

	.ays-account-order {
		grid-template-columns: 1fr;
	}

	.ays-account-main table.shop_table thead {
		display: none;
	}

	.ays-account-main table.shop_table tr,
	.ays-account-main table.shop_table td,
	.ays-account-main table.shop_table th {
		display: block;
		width: 100%;
	}

	.ays-account-main table.shop_table td::before,
	.ays-account-main table.shop_table th::before {
		content: attr(data-title);
		display: block;
		margin-bottom: 4px;
		color: var(--muted, #8b7a7a);
		font-size: 12px;
		font-weight: 900;
	}
}
/* Account form conflict fixes: keep WooCommerce forms full-width inside the redesigned account page. */
.ays-account-auth-card .ays-account-auth-grid {
	grid-template-columns: minmax(0, 1fr) !important;
}

.ays-account-shortcode .woocommerce form.login,
.ays-account-shortcode .woocommerce form.register {
	border: 0;
	border-radius: 0;
	background: transparent;
	margin: 18px 0 0;
	padding: 0;
}

.ays-account-shortcode .woocommerce form .form-row,
.ays-account-shortcode .woocommerce form .form-row-first,
.ays-account-shortcode .woocommerce form .form-row-last {
	display: block !important;
	grid-template-columns: none !important;
	gap: 0 !important;
	clear: both;
}

.ays-account-shortcode .woocommerce form.login label,
.ays-account-shortcode .woocommerce form.register label,
.ays-account-shortcode .woocommerce form.lost_reset_password label {
	width: auto;
	text-align: left;
}

.ays-account-shortcode .woocommerce form.login input.input-text,
.ays-account-shortcode .woocommerce form.register input.input-text,
.ays-account-shortcode .woocommerce form.lost_reset_password input.input-text {
	width: 100% !important;
	max-width: none !important;
}
/* Logged-in account dashboard layout reset. WooCommerce core floats this area by default. */
.woocommerce-account .woocommerce-cms-panel.ays-account-shortcode,
.woocommerce-account .woocommerce-cms-panel.ays-account-shortcode .woocommerce {
	width: 100% !important;
	max-width: none !important;
}

.woocommerce-account .woocommerce-cms-panel.ays-account-shortcode .ays-account-layout {
	display: grid !important;
	grid-template-columns: minmax(250px, 280px) minmax(0, 1fr) !important;
	gap: 30px !important;
	align-items: start !important;
	width: 100% !important;
	max-width: none !important;
}

.woocommerce-account .woocommerce-cms-panel.ays-account-shortcode .woocommerce-MyAccount-navigation.ays-account-sidebar,
.woocommerce-account .woocommerce-cms-panel.ays-account-shortcode .woocommerce-MyAccount-content.ays-account-main {
	float: none !important;
	clear: none !important;
	width: auto !important;
	max-width: none !important;
	min-width: 0 !important;
	box-sizing: border-box !important;
}

.woocommerce-account .woocommerce-cms-panel.ays-account-shortcode .woocommerce-MyAccount-navigation.ays-account-sidebar {
	display: block !important;
	min-width: 250px !important;
}

.woocommerce-account .woocommerce-cms-panel.ays-account-shortcode .woocommerce-MyAccount-navigation.ays-account-sidebar li::before {
	content: none !important;
	display: none !important;
}

.woocommerce-account .ays-account-menu a {
	width: 100%;
	box-sizing: border-box;
	white-space: normal;
}

.woocommerce-account .ays-account-menu-icon {
	flex: 0 0 28px;
}

.woocommerce-account .ays-account-main {
	display: block !important;
	min-width: 0 !important;
}

.woocommerce-account .ays-account-welcome {
	min-width: 0;
}

.woocommerce-account .ays-account-shop-link {
	flex: 0 0 auto;
	min-width: 176px;
	white-space: nowrap;
}

.woocommerce-account .ays-account-stats article {
	min-width: 0;
}

.woocommerce-account .ays-account-stats article div {
	min-width: 0;
}

.woocommerce-account .ays-account-stats p,
.woocommerce-account .ays-account-order span,
.woocommerce-account .ays-account-actions a {
	overflow-wrap: normal;
	word-break: normal;
}

@media (max-width: 1100px) {
	.woocommerce-account .woocommerce-cms-panel.ays-account-shortcode .ays-account-layout {
		grid-template-columns: 1fr !important;
	}

	.woocommerce-account .woocommerce-cms-panel.ays-account-shortcode .woocommerce-MyAccount-navigation.ays-account-sidebar {
		position: static;
		min-width: 0 !important;
	}
}
/* Contact page comment-backed form. */
.contact-message-section {
	background: #fffaf5;
}

.contact-message-layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
	gap: 28px;
	align-items: start;
}

.contact-message-intro,
.contact-comment-form {
	border: 1px solid var(--line, #eee2dc);
	border-radius: var(--radius, 18px);
	background: var(--white, #fff);
	box-shadow: var(--shadow-soft, 0 18px 48px rgba(93, 70, 60, 0.08));
}

.contact-message-intro {
	position: sticky;
	top: 104px;
	padding: 30px;
}

.contact-message-intro h2 {
	margin: 0 0 14px;
	color: var(--brown, #3c2f2f);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(32px, 3.2vw, 48px);
	line-height: 1.05;
}

.contact-message-intro p,
.contact-help-list li,
.contact-form-actions p {
	color: var(--muted, #8b7a7a);
	line-height: 1.65;
}

.contact-help-list {
	margin: 22px 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 12px;
}

.contact-help-list li {
	position: relative;
	padding-left: 28px;
}

.contact-help-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.7em;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--pink, #f57f91);
}

.contact-privacy-note {
	margin: 22px 0 0;
	padding: 14px;
	border-radius: 14px;
	background: #fff1f3;
	border: 1px solid rgba(245, 127, 145, 0.28);
	font-size: 14px;
}

.contact-comment-form {
	display: grid;
	gap: 18px;
	padding: 30px;
}

.contact-comment-form .field-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.contact-comment-form label {
	display: grid;
	gap: 8px;
	color: var(--brown, #3c2f2f);
	font-weight: 850;
}

.contact-comment-form label span:not(.screen-reader-text) {
	color: var(--muted, #8b7a7a);
	font-size: 12px;
	font-weight: 700;
}

.contact-comment-form input,
.contact-comment-form select,
.contact-comment-form textarea {
	width: 100%;
	min-height: 48px;
	border: 1px solid var(--line, #eee2dc);
	border-radius: 12px;
	background: #fff;
	padding: 12px 14px;
	color: var(--text, #514444);
	font: inherit;
}

.contact-comment-form textarea {
	resize: vertical;
}

.contact-comment-form input:focus,
.contact-comment-form select:focus,
.contact-comment-form textarea:focus {
	outline: 2px solid rgba(245, 127, 145, 0.22);
	border-color: var(--pink, #f57f91);
}

.contact-comment-form .checkbox-line,
.contact-comment-form .contact-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-weight: 700;
}

.contact-comment-form .checkbox-line input {
	width: 18px;
	min-width: 18px;
	height: 18px;
	min-height: 18px;
	margin-top: 4px;
}

.contact-form-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	justify-content: space-between;
	padding-top: 4px;
}

.contact-form-actions p {
	margin: 0;
	font-size: 14px;
}

.contact-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.contact-page .notice-bar {
	margin-top: 24px;
}

@media (max-width: 900px) {
	.contact-message-layout,
	.contact-comment-form .field-grid {
		grid-template-columns: 1fr;
	}

	.contact-message-intro {
		position: static;
	}
}

@media (max-width: 600px) {
	.contact-message-intro,
	.contact-comment-form {
		padding: 22px;
	}

	.contact-form-actions .btn {
		width: 100%;
	}
}
/* Contact form label alignment fix. */
.contact-comment-form label {
	display: block;
}

.contact-comment-form label > input,
.contact-comment-form label > select,
.contact-comment-form label > textarea {
	margin-top: 8px;
}

.contact-comment-form label span:not(.screen-reader-text) {
	display: inline;
	margin-left: 4px;
}
/* Header search overlay and search results page. */
body.search-is-open {
	overflow: hidden;
}

.site-search-overlay {
	align-items: flex-start;
	justify-content: center;
}

.site-search-overlay.is-open {
	display: flex;
}

.site-search-dialog {
	width: min(780px, calc(100vw - 32px));
	border-radius: 18px;
}

.site-search-head {
	grid-template-columns: minmax(0, 1fr) auto auto;
	gap: 10px;
}

.site-search-head input[type="search"] {
	min-width: 0;
	font-family: Georgia, "Times New Roman", serif;
	letter-spacing: 0;
}

.site-search-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 18px;
	border: 1px solid var(--pink, #f57f91);
	border-radius: 999px;
	background: var(--pink, #f57f91);
	color: #fff;
	font-weight: 900;
	cursor: pointer;
}

.site-search-submit:hover {
	background: var(--pink-dark, #e95d73);
}

.site-search-kicker {
	margin: 8px 12px 12px;
	color: var(--pink-dark, #e95d73);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.site-search-suggestions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0 12px 10px;
}

.site-search-suggestions a {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 0 13px;
	border: 1px solid var(--line, #eee2dc);
	border-radius: 999px;
	background: #fffaf5;
	color: var(--brown, #3c2f2f);
	font-weight: 800;
	text-decoration: none;
}

.site-search-suggestions a:hover {
	border-color: var(--pink, #f57f91);
	background: #fff1f3;
	color: var(--pink-dark, #e95d73);
}

.search-results-page {
	background: #fffaf5;
}

.search-hero {
	padding: 74px 0 66px;
	background:
		radial-gradient(circle at 76% 12%, rgba(245, 127, 145, 0.18), transparent 32%),
		linear-gradient(135deg, #fff7f7, #fffaf5 58%, #f7ede3);
	border-bottom: 1px solid var(--line, #eee2dc);
}

.search-hero-inner {
	max-width: 900px;
}

.search-hero h1 {
	margin: 0;
	max-width: 860px;
	color: var(--brown, #3c2f2f);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(44px, 6vw, 82px);
	line-height: 0.98;
}

.search-hero p:not(.eyebrow) {
	max-width: 720px;
	color: var(--text, #514444);
	font-size: 18px;
	line-height: 1.6;
}

.search-page-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	max-width: 760px;
	margin-top: 26px;
	padding: 10px;
	border: 1px solid rgba(245, 127, 145, 0.28);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 18px 42px rgba(93, 70, 60, 0.08);
}

.search-page-form input[type="search"] {
	width: 100%;
	min-height: 48px;
	border: 0;
	border-radius: 12px;
	background: #fff;
	padding: 0 16px;
	color: var(--brown, #3c2f2f);
	font: inherit;
	font-weight: 800;
}

.search-page-form input[type="search"]:focus {
	outline: 2px solid rgba(245, 127, 145, 0.24);
}

.search-results-section {
	padding-top: 54px;
}

.search-results-toolbar {
	display: flex;
	gap: 24px;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 28px;
}

.search-results-toolbar h2 {
	margin: 0;
	color: var(--brown, #3c2f2f);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(30px, 3vw, 46px);
}

.search-results-toolbar p {
	margin: 6px 0 0;
	color: var(--muted, #8b7a7a);
}

.search-quick-links {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	justify-content: flex-end;
	max-width: 560px;
}

.search-quick-links a {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 0 13px;
	border: 1px solid var(--line, #eee2dc);
	border-radius: 999px;
	background: #fff;
	color: var(--text, #514444);
	font-weight: 850;
	text-decoration: none;
}

.search-quick-links a:hover,
.search-quick-links a:visited:hover {
	border-color: var(--pink, #f57f91);
	background: #fff1f3;
	color: var(--pink-dark, #e95d73);
}

.search-result-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.search-result-card {
	display: grid;
	grid-template-rows: auto 1fr;
	overflow: hidden;
	border: 1px solid var(--line, #eee2dc);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 18px 42px rgba(93, 70, 60, 0.08);
}

.search-result-media {
	display: block;
	position: relative;
	background: linear-gradient(135deg, #fff1f3, #fffaf5);
	text-decoration: none;
}

.search-result-media img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.search-result-media span {
	display: grid;
	width: 100%;
	aspect-ratio: 4 / 3;
	place-items: center;
	color: var(--pink-dark, #e95d73);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 48px;
	font-weight: 900;
}

.search-result-body {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 10px;
	padding: 18px;
}

.search-result-meta {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
}

.search-result-type {
	display: inline-flex;
	min-height: 28px;
	align-items: center;
	padding: 0 10px;
	border-radius: 999px;
	background: #fff1f3;
	color: var(--pink-dark, #e95d73);
	font-size: 12px;
	font-weight: 900;
}

.search-result-price {
	color: var(--pink-dark, #e95d73);
	font-weight: 900;
}

.search-result-body h3 {
	margin: 0;
	color: var(--brown, #3c2f2f);
	font-size: 21px;
	line-height: 1.2;
}

.search-result-body h3 a,
.search-result-link {
	color: inherit;
	text-decoration: none;
}

.search-result-body p {
	margin: 0;
	color: var(--muted, #8b7a7a);
	line-height: 1.6;
}

.search-result-terms a {
	color: var(--pink-dark, #e95d73);
	font-weight: 800;
	text-decoration: none;
}

.search-result-link {
	margin-top: auto;
	color: var(--pink-dark, #e95d73);
	font-weight: 900;
}

.search-result-link:visited,
.search-quick-links a:visited,
.site-search-suggestions a:visited {
	color: inherit;
}

.search-no-results {
	max-width: 760px;
	padding: 34px;
	border: 1px solid var(--line, #eee2dc);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 18px 42px rgba(93, 70, 60, 0.08);
}

.search-no-results h2 {
	margin: 0 0 12px;
	color: var(--brown, #3c2f2f);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(30px, 3vw, 46px);
}

.search-empty-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

@media (max-width: 980px) {
	.search-result-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.search-results-toolbar {
		align-items: flex-start;
		flex-direction: column;
	}

	.search-quick-links {
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	.site-search-head,
	.search-page-form {
		grid-template-columns: 1fr;
	}

	.site-search-submit,
	.site-search-close,
	.search-page-form .btn {
		width: 100%;
	}

	.search-result-grid {
		grid-template-columns: 1fr;
	}

	.search-hero {
		padding: 52px 0;
	}
}
/* Search polish: full-page overlay, compact results header, centered controls. */
.header-actions .icon-btn[aria-label="Search"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
	line-height: 1;
}

.icon-btn__svg {
	display: block;
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.site-search-overlay {
	position: fixed !important;
	inset: 0 !important;
	z-index: 2147483000;
	display: none;
	align-items: flex-start;
	justify-content: center;
	min-height: 100vh;
	min-height: 100dvh;
	padding: clamp(28px, 8vh, 76px) 20px 24px;
	background: rgba(39, 32, 32, 0.38);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.site-search-overlay.is-open {
	display: flex;
}

.site-search-dialog {
	width: min(760px, calc(100vw - 36px));
	max-height: calc(100vh - 48px);
	max-height: calc(100dvh - 48px);
	margin: 0 auto;
	border-radius: 18px;
	box-shadow: 0 28px 80px rgba(39, 32, 32, 0.26);
}

.site-search-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto 44px;
	align-items: center;
	gap: 10px;
	padding: 14px 16px;
}

.site-search-head input[type="search"] {
	min-height: 46px;
	font-size: clamp(19px, 2.4vw, 26px);
	line-height: 1.15;
}

.site-search-submit {
	min-width: 96px;
	height: 44px;
	min-height: 44px;
	padding: 0 22px;
	line-height: 1;
	white-space: nowrap;
}

.site-search-close {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 44px !important;
	min-width: 44px;
	height: 44px;
	min-height: 44px;
	padding: 0;
	border: 1px solid rgba(238, 226, 220, 0.95);
	border-radius: 50%;
	background: #fffaf5;
	box-shadow: none;
	color: var(--brown, #3c2f2f);
	font-size: 0;
	line-height: 1;
	cursor: pointer;
	transition: 0.2s ease;
}

.site-search-close::before {
	content: "\00d7";
	font-family: var(--font-body, Inter, Arial, sans-serif);
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
}

.site-search-close:hover {
	border-color: rgba(245, 127, 145, 0.5);
	background: #fff1f3;
	color: var(--pink-dark, #e95d73);
	transform: none;
}

.site-search-results {
	max-height: calc(100vh - 178px);
	max-height: calc(100dvh - 178px);
	padding: 18px 24px 26px;
}

.search-hero {
	padding: 34px 0 30px;
	background: linear-gradient(135deg, #fff9f7, #fff4f5 56%, #fffaf5);
}

.search-hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
	align-items: end;
	gap: 26px;
	max-width: 1180px;
}

.search-hero-copy {
	min-width: 0;
}

.search-hero .eyebrow {
	margin: 0 0 8px;
	font-size: 12px;
	line-height: 1;
}

.search-hero h1 {
	max-width: 660px;
	font-size: clamp(30px, 3.4vw, 52px);
	line-height: 1.04;
}

.search-hero p:not(.eyebrow) {
	display: none;
}

.search-page-form {
	align-self: end;
	max-width: none;
	margin: 0;
	padding: 8px;
	border-radius: 16px;
	box-shadow: 0 14px 32px rgba(93, 70, 60, 0.07);
}

.search-page-form input[type="search"] {
	min-height: 44px;
}

.search-page-form .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 20px;
	line-height: 1;
	white-space: nowrap;
}

.search-results-section {
	padding-top: 38px;
}

.search-results-toolbar {
	margin-bottom: 22px;
}

.search-results-toolbar h2 {
	font-size: clamp(28px, 2.6vw, 38px);
}

@media (max-width: 800px) {
	.site-search-overlay {
		padding: 18px 14px;
	}

	.site-search-dialog {
		width: min(100%, calc(100vw - 28px));
		max-height: calc(100vh - 36px);
		max-height: calc(100dvh - 36px);
	}

	.site-search-head {
		grid-template-columns: minmax(0, 1fr) 42px;
		gap: 9px;
		padding: 12px;
	}

	.site-search-submit {
		grid-column: 1 / -1;
		width: 100%;
	}

	.site-search-close {
		grid-column: auto;
		width: 42px !important;
		min-width: 42px;
		height: 42px;
		min-height: 42px;
	}

	.site-search-results {
		max-height: calc(100vh - 196px);
		max-height: calc(100dvh - 196px);
		padding: 16px;
	}

	.search-hero {
		padding: 28px 0 26px;
	}

	.search-hero-inner {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.search-hero h1 {
		font-size: clamp(30px, 9vw, 42px);
	}

	.search-page-form {
		grid-template-columns: 1fr;
	}

	.search-page-form .btn {
		width: 100%;
	}
}

/* Professional About page. */
.about-page-v2 {
	background: #fffaf5;
}

.about-page-v2 .eyebrow {
	letter-spacing: 0;
}

.about-studio-hero {
	padding: 70px 0 64px;
	border-bottom: 1px solid var(--line, #eee2dc);
	background:
		linear-gradient(135deg, #fff7f8 0%, #fffaf5 52%, #f7ede3 100%);
}

.about-studio-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.85fr);
	align-items: center;
	gap: 54px;
}

.about-studio-hero__copy h1,
.about-story-copy h2,
.about-section-heading h2,
.about-process-copy h2,
.about-culture-panel h2,
.about-cta-panel h2 {
	margin: 0;
	color: var(--brown, #3c2f2f);
	font-family: Georgia, "Times New Roman", serif;
	line-height: 1.04;
	letter-spacing: 0;
}

.about-studio-hero__copy h1 {
	max-width: 760px;
	font-size: clamp(42px, 5.6vw, 78px);
}

.about-studio-hero__copy p:not(.eyebrow) {
	max-width: 680px;
	margin: 22px 0 0;
	color: var(--text, #514444);
	font-size: 18px;
	line-height: 1.75;
}

.about-studio-hero__actions,
.about-cta-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin-top: 30px;
}

.about-studio-hero__visual {
	position: relative;
	min-width: 0;
}

.about-studio-hero__main-img,
.about-story-media img,
.about-culture-panel img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.about-studio-hero__main-img {
	aspect-ratio: 1.16 / 1;
	border: 1px solid rgba(238, 226, 220, 0.95);
	border-radius: 22px;
	box-shadow: 0 26px 60px rgba(93, 70, 60, 0.12);
}

.about-studio-hero__note {
	position: absolute;
	right: 24px;
	bottom: -24px;
	width: min(300px, calc(100% - 48px));
	padding: 18px 20px;
	border: 1px solid rgba(238, 226, 220, 0.95);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 18px 42px rgba(93, 70, 60, 0.12);
}

.about-studio-hero__note strong,
.about-studio-hero__note span {
	display: block;
}

.about-studio-hero__note strong {
	color: var(--brown, #3c2f2f);
	font-weight: 900;
}

.about-studio-hero__note span {
	margin-top: 6px;
	color: var(--muted, #8b7a7a);
	line-height: 1.55;
}

.about-studio-proof {
	padding: 22px 0;
	border-bottom: 1px solid var(--line, #eee2dc);
	background: #fff;
}

.about-proof-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	border: 1px solid var(--line, #eee2dc);
	border-radius: 16px;
	overflow: hidden;
	background: #fffaf5;
}

.about-proof-grid div {
	padding: 20px 24px;
	border-right: 1px solid var(--line, #eee2dc);
}

.about-proof-grid div:last-child {
	border-right: 0;
}

.about-proof-grid strong,
.about-proof-grid span {
	display: block;
}

.about-proof-grid strong {
	color: var(--brown, #3c2f2f);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 30px;
	line-height: 1;
}

.about-proof-grid span {
	margin-top: 6px;
	color: var(--muted, #8b7a7a);
	line-height: 1.45;
}

.about-story-layout,
.about-process-layout,
.about-culture-panel,
.about-learning-layout,
.about-cta-panel {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
	gap: 48px;
	align-items: center;
}

.about-story-media img {
	aspect-ratio: 1 / 1;
	border: 1px solid var(--line, #eee2dc);
	border-radius: 22px;
	box-shadow: 0 20px 48px rgba(93, 70, 60, 0.1);
}

.about-story-copy h2,
.about-process-copy h2,
.about-culture-panel h2,
.about-cta-panel h2 {
	font-size: clamp(34px, 4vw, 56px);
}

.about-section-heading h2 {
	max-width: 790px;
	font-size: clamp(32px, 3.4vw, 48px);
}

.about-section-heading--center h2,
.about-section-heading--center .eyebrow {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.about-story-copy p:not(.eyebrow),
.about-process-copy p,
.about-culture-panel p {
	color: var(--text, #514444);
	font-size: 17px;
	line-height: 1.75;
}

.about-story-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.about-story-list span {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 14px;
	border: 1px solid var(--line, #eee2dc);
	border-radius: 999px;
	background: #fff;
	color: var(--brown, #3c2f2f);
	font-weight: 800;
}

.about-products-section,
.about-process-section,
.about-learning-section {
	background: #fff;
}

.about-product-grid,
.about-value-grid,
.about-learning-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-top: 30px;
}

.about-product-card,
.about-value-card,
.about-learning-grid a {
	border: 1px solid var(--line, #eee2dc);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 16px 36px rgba(93, 70, 60, 0.07);
}

.about-product-card {
	overflow: hidden;
	color: inherit;
	text-decoration: none;
	transition: 0.2s ease;
}

.about-product-card:hover,
.about-learning-grid a:hover {
	border-color: rgba(245, 127, 145, 0.55);
	transform: translateY(-2px);
}

.about-product-card img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.about-product-card strong,
.about-product-card span,
.about-learning-grid strong,
.about-learning-grid span {
	display: block;
}

.about-product-card strong {
	padding: 16px 16px 0;
	color: var(--brown, #3c2f2f);
	font-size: 17px;
	font-weight: 900;
}

.about-product-card span {
	padding: 8px 16px 18px;
	color: var(--muted, #8b7a7a);
	line-height: 1.55;
}

.about-value-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-value-card {
	padding: 24px;
}

.about-value-card__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #fff1f3;
	color: var(--pink-dark, #e95d73);
	font-weight: 900;
}

.about-value-card:nth-child(2) .about-value-card__mark {
	background: #dfeee1;
	color: #617c5b;
}

.about-value-card:nth-child(3) .about-value-card__mark {
	background: #f9df91;
	color: #7d5e18;
}

.about-value-card:nth-child(4) .about-value-card__mark {
	background: #bed6e8;
	color: #486b83;
}

.about-value-card h3 {
	margin: 18px 0 10px;
	color: var(--brown, #3c2f2f);
	font-size: 21px;
	line-height: 1.2;
}

.about-value-card p {
	margin: 0;
	color: var(--muted, #8b7a7a);
	line-height: 1.65;
}

.about-process-layout {
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
}

.about-process-copy .btn {
	margin-top: 20px;
}

.about-process-list {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: about-process;
}

.about-process-list li {
	counter-increment: about-process;
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
	padding: 20px 0;
	border-bottom: 1px solid var(--line, #eee2dc);
}

.about-process-list li:last-child {
	border-bottom: 0;
}

.about-process-list li::before {
	content: counter(about-process, decimal-leading-zero);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--pink, #f57f91);
	color: #fff;
	font-weight: 900;
}

.about-process-list strong {
	display: block;
	color: var(--brown, #3c2f2f);
	font-size: 18px;
}

.about-process-list span {
	display: block;
	margin-top: 6px;
	color: var(--muted, #8b7a7a);
	line-height: 1.55;
}

.about-culture-section {
	background: linear-gradient(135deg, #fff7f8 0%, #fffaf5 68%, #f7ede3 100%);
}

.about-culture-panel {
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
	padding: 36px;
	border: 1px solid var(--line, #eee2dc);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.68);
}

.about-culture-panel img {
	aspect-ratio: 4 / 3;
	border-radius: 16px;
	box-shadow: 0 20px 46px rgba(93, 70, 60, 0.1);
}

.about-text-link {
	display: inline-flex;
	margin-top: 14px;
	color: var(--pink-dark, #e95d73);
	font-weight: 900;
	text-decoration: none;
}

.about-text-link:visited {
	color: var(--pink-dark, #e95d73);
}

.about-learning-layout {
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
}

.about-learning-grid {
	grid-template-columns: 1fr;
	margin-top: 0;
}

.about-learning-grid a {
	padding: 22px 24px;
	color: inherit;
	text-decoration: none;
}

.about-learning-grid strong {
	color: var(--brown, #3c2f2f);
	font-size: 20px;
}

.about-learning-grid span {
	margin-top: 7px;
	color: var(--muted, #8b7a7a);
	line-height: 1.55;
}

.about-cta-section {
	background: #fffaf5;
}

.about-cta-panel {
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	padding: 34px 38px;
	border: 1px solid rgba(245, 127, 145, 0.25);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 18px 46px rgba(93, 70, 60, 0.08);
}

.about-cta-panel h2 {
	max-width: 760px;
	font-size: clamp(30px, 3vw, 44px);
}

.about-cta-actions {
	justify-content: flex-end;
	margin-top: 0;
}

@media (max-width: 1100px) {
	.about-studio-hero__inner,
	.about-story-layout,
	.about-process-layout,
	.about-culture-panel,
	.about-learning-layout,
	.about-cta-panel {
		grid-template-columns: 1fr;
	}

	.about-studio-hero__inner {
		gap: 38px;
	}

	.about-cta-actions {
		justify-content: flex-start;
	}
}

@media (max-width: 900px) {
	.about-proof-grid,
	.about-product-grid,
	.about-value-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.about-proof-grid div:nth-child(2) {
		border-right: 0;
	}

	.about-proof-grid div:nth-child(-n + 2) {
		border-bottom: 1px solid var(--line, #eee2dc);
	}
}

@media (max-width: 640px) {
	.about-studio-hero {
		padding: 46px 0 50px;
	}

	.about-studio-hero__copy h1 {
		font-size: clamp(36px, 12vw, 48px);
	}

	.about-studio-hero__copy p:not(.eyebrow),
	.about-story-copy p:not(.eyebrow),
	.about-process-copy p,
	.about-culture-panel p {
		font-size: 16px;
	}

	.about-studio-hero__actions,
	.about-cta-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.about-studio-hero__actions .btn,
	.about-cta-actions .btn {
		width: 100%;
		justify-content: center;
	}

	.about-studio-hero__note {
		position: static;
		width: 100%;
		margin-top: 12px;
	}

	.about-proof-grid,
	.about-product-grid,
	.about-value-grid {
		grid-template-columns: 1fr;
	}

	.about-proof-grid div,
	.about-proof-grid div:nth-child(2) {
		border-right: 0;
		border-bottom: 1px solid var(--line, #eee2dc);
	}

	.about-proof-grid div:last-child {
		border-bottom: 0;
	}

	.about-culture-panel,
	.about-cta-panel {
		padding: 24px;
	}

	.about-process-list li {
		grid-template-columns: 44px minmax(0, 1fr);
		gap: 12px;
	}

	.about-process-list li::before {
		width: 38px;
		height: 38px;
	}
}

/* About page middle-layout refinement. */
.about-page-v2 .section {
	padding-top: 68px;
	padding-bottom: 68px;
}

.about-values-section .about-section-heading {
	max-width: 720px;
	margin: 0 auto;
}

.about-value-grid {
	align-items: stretch;
}

.about-value-card {
	display: flex;
	min-height: 238px;
	flex-direction: column;
}

.about-value-card p {
	margin-top: auto;
}

.about-process-section {
	background: #fff;
}

.about-process-layout {
	grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
	align-items: stretch;
	gap: 34px;
	padding: 34px;
	border: 1px solid var(--line, #eee2dc);
	border-radius: 20px;
	background: #fffaf5;
	box-shadow: 0 18px 46px rgba(93, 70, 60, 0.07);
}

.about-process-copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
	justify-content: center;
}

.about-process-copy h2 {
	font-size: clamp(32px, 3.1vw, 48px);
}

.about-process-copy p {
	max-width: 520px;
}

.about-process-copy .btn {
	align-self: flex-start;
}

.about-process-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	min-width: 0;
}

.about-process-list li {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr);
	grid-template-rows: auto 1fr;
	gap: 6px 14px;
	min-width: 0;
	padding: 18px;
	border: 1px solid var(--line, #eee2dc);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(93, 70, 60, 0.055);
}

.about-process-list li::before {
	grid-row: 1 / 3;
	grid-column: 1;
	width: 40px;
	height: 40px;
}

.about-process-list strong {
	grid-column: 2;
	grid-row: 1;
	min-width: 0;
}

.about-process-list span {
	grid-column: 2;
	grid-row: 2;
	min-width: 0;
	margin-top: 0;
}

.about-culture-panel,
.about-learning-layout,
.about-cta-panel {
	max-width: 1180px;
}

@media (max-width: 1100px) {
	.about-process-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 760px) {
	.about-page-v2 .section {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.about-process-layout {
		padding: 22px;
	}

	.about-process-list {
		grid-template-columns: 1fr;
	}

	.about-process-list li {
		grid-template-columns: 42px minmax(0, 1fr);
	}
}

/* Independent support and policy pages. */
.studio-page-v2 {
	background: #fffaf5;
}

.studio-page-v2 .section {
	padding-top: 68px;
	padding-bottom: 68px;
}

.studio-hero {
	padding: 70px 0 64px;
	border-bottom: 1px solid var(--line, #eee2dc);
	background: linear-gradient(135deg, #fff7f8 0%, #fffaf5 54%, #f7ede3 100%);
}

.studio-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
	align-items: center;
	gap: 52px;
}

.studio-hero--compact-support .studio-hero__inner,
.policy-hero__inner {
	max-width: 920px;
}

.studio-hero--compact-support .studio-hero__inner {
	display: block;
}

.studio-hero__copy h1,
.studio-copy-block h2,
.studio-section-heading h2,
.policy-hero h1,
.policy-card h2,
.faq-group h2 {
	margin: 0;
	color: var(--brown, #3c2f2f);
	font-family: Georgia, "Times New Roman", serif;
	letter-spacing: 0;
	line-height: 1.04;
}

.studio-hero__copy h1,
.policy-hero h1 {
	font-size: clamp(40px, 5vw, 68px);
}

.studio-hero__copy p:not(.eyebrow),
.policy-hero p,
.studio-copy-block p,
.policy-card p,
.faq-group p {
	color: var(--text, #514444);
	font-size: 17px;
	line-height: 1.72;
}

.studio-hero__copy p:not(.eyebrow),
.policy-hero p {
	max-width: 720px;
	margin: 20px 0 0;
}

.studio-hero__actions,
.studio-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	margin-top: 28px;
}

.studio-hero__media,
.studio-image-card {
	position: relative;
	min-width: 0;
}

.studio-hero__media img,
.studio-image-card img {
	display: block;
	width: 100%;
	aspect-ratio: 1.16 / 1;
	object-fit: cover;
	border: 1px solid var(--line, #eee2dc);
	border-radius: 22px;
	box-shadow: 0 22px 52px rgba(93, 70, 60, 0.11);
}

.studio-floating-note {
	position: absolute;
	right: 22px;
	bottom: -22px;
	width: min(300px, calc(100% - 44px));
	padding: 16px 18px;
	border: 1px solid var(--line, #eee2dc);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 16px 38px rgba(93, 70, 60, 0.12);
}

.studio-floating-note strong,
.studio-floating-note span,
.studio-proof-grid strong,
.studio-proof-grid span {
	display: block;
}

.studio-floating-note strong {
	color: var(--brown, #3c2f2f);
	font-weight: 900;
}

.studio-floating-note span {
	margin-top: 6px;
	color: var(--muted, #8b7a7a);
	line-height: 1.5;
}

.studio-proof-strip,
.policy-summary-section,
.policy-timeline-section {
	padding: 22px 0;
	border-bottom: 1px solid var(--line, #eee2dc);
	background: #fff;
}

.studio-proof-grid,
.policy-summary-grid,
.policy-timeline-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border: 1px solid var(--line, #eee2dc);
	border-radius: 16px;
	overflow: hidden;
	background: #fffaf5;
}

.policy-summary-grid,
.policy-timeline-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.studio-proof-grid div,
.policy-summary-grid article,
.policy-timeline-grid article {
	padding: 20px 22px;
	border-right: 1px solid var(--line, #eee2dc);
}

.studio-proof-grid div:last-child,
.policy-summary-grid article:last-child,
.policy-timeline-grid article:last-child {
	border-right: 0;
}

.studio-proof-grid strong,
.policy-summary-grid strong,
.policy-timeline-grid strong {
	color: var(--brown, #3c2f2f);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 25px;
	line-height: 1.1;
}

.policy-summary-grid strong,
.policy-timeline-grid strong {
	display: block;
	font-size: 22px;
}

.studio-proof-grid span,
.policy-summary-grid span,
.policy-timeline-grid span {
	display: block;
	margin-top: 7px;
	color: var(--muted, #8b7a7a);
	line-height: 1.45;
}

.studio-two-column,
.studio-cta-panel {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
	gap: 48px;
	align-items: center;
}

.studio-two-column--reverse {
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
}

.studio-copy-block h2,
.studio-section-heading h2,
.studio-cta-panel h2 {
	font-size: clamp(32px, 3.4vw, 52px);
}

.studio-card-section,
.faq-groups-section,
.contact-message-section,
.policy-content-section {
	background: #fff;
}

.studio-card-grid {
	display: grid;
	gap: 18px;
}

.studio-card-grid--four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.studio-card-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.studio-info-card {
	min-width: 0;
	padding: 24px;
	border: 1px solid var(--line, #eee2dc);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 16px 36px rgba(93, 70, 60, 0.07);
}

.studio-info-card span:first-child {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 10px;
	border-radius: 999px;
	background: #fff1f3;
	color: var(--pink-dark, #e95d73);
	font-weight: 900;
}

.studio-info-card h3 {
	margin: 18px 0 10px;
	color: var(--brown, #3c2f2f);
	font-size: 21px;
	line-height: 1.2;
}

.studio-info-card p {
	margin: 0;
	color: var(--muted, #8b7a7a);
	line-height: 1.62;
}

.studio-step-list {
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
	counter-reset: studio-step;
}

.studio-step-list li {
	counter-increment: studio-step;
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 12px 14px;
	padding: 17px 0;
	border-bottom: 1px solid var(--line, #eee2dc);
}

.studio-step-list li::before {
	content: counter(studio-step, decimal-leading-zero);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--pink, #f57f91);
	color: #fff;
	font-weight: 900;
}

.studio-step-list strong,
.studio-step-list span {
	display: block;
	grid-column: 2;
}

.studio-step-list span {
	color: var(--muted, #8b7a7a);
	line-height: 1.55;
}

.studio-cta-section {
	background: #fffaf5;
}

.studio-cta-panel {
	grid-template-columns: minmax(0, 1fr) auto;
	padding: 34px 38px;
	border: 1px solid rgba(245, 127, 145, 0.25);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 18px 46px rgba(93, 70, 60, 0.08);
}

.studio-cta-actions {
	justify-content: flex-end;
	margin-top: 0;
}

.studio-text-link,
.policy-related-links a,
.faq-directory-grid a,
.contact-side-links a {
	color: var(--pink-dark, #e95d73);
	font-weight: 900;
	text-decoration: none;
}

.studio-text-link:visited,
.policy-related-links a:visited,
.faq-directory-grid a:visited,
.contact-side-links a:visited {
	color: var(--pink-dark, #e95d73);
}

.faq-directory-section {
	padding: 26px 0;
	background: #fff;
}

.faq-directory-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.faq-directory-grid a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 15px;
	border: 1px solid var(--line, #eee2dc);
	border-radius: 999px;
	background: #fffaf5;
}

.faq-groups-layout {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.faq-group {
	min-width: 0;
	padding: 26px;
	border: 1px solid var(--line, #eee2dc);
	border-radius: 18px;
	background: #fffaf5;
}

.faq-group h2 {
	margin-bottom: 18px;
	font-size: 30px;
}

.faq-group details {
	border-top: 1px solid var(--line, #eee2dc);
	background: transparent;
}

.faq-group details:first-of-type {
	border-top: 0;
}

.faq-group summary {
	cursor: pointer;
	padding: 16px 0;
	color: var(--brown, #3c2f2f);
	font-weight: 900;
}

.faq-group p {
	margin: 0 0 16px;
}

.contact-message-layout--v2 {
	align-items: start;
}

.contact-side-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.contact-side-links a {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 0 13px;
	border: 1px solid var(--line, #eee2dc);
	border-radius: 999px;
	background: #fff;
}

.contact-comment-form--v2 {
	box-shadow: 0 20px 50px rgba(93, 70, 60, 0.08);
}

.policy-hero {
	padding: 64px 0 58px;
	border-bottom: 1px solid var(--line, #eee2dc);
	background: linear-gradient(135deg, #fff7f8 0%, #fffaf5 58%, #f7ede3 100%);
}

.policy-review-note {
	display: inline-flex;
	margin-top: 22px;
	padding: 9px 13px;
	border: 1px solid var(--line, #eee2dc);
	border-radius: 999px;
	background: #fff;
	color: var(--muted, #8b7a7a);
	font-size: 13px;
	font-weight: 800;
}

.policy-layout {
	display: grid;
	grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.policy-sidebar {
	position: sticky;
	top: 142px;
	display: grid;
	gap: 8px;
	padding: 18px;
	border: 1px solid var(--line, #eee2dc);
	border-radius: 16px;
	background: #fffaf5;
}

.policy-sidebar strong {
	color: var(--brown, #3c2f2f);
	font-size: 16px;
}

.policy-sidebar a {
	padding: 8px 0;
	color: var(--muted, #8b7a7a);
	font-weight: 800;
	text-decoration: none;
}

.policy-content {
	display: grid;
	gap: 18px;
	min-width: 0;
}

.policy-card {
	padding: 28px;
	border: 1px solid var(--line, #eee2dc);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(93, 70, 60, 0.06);
}

.policy-card h2 {
	font-size: 32px;
}

.policy-card p:last-child {
	margin-bottom: 0;
}

.policy-related-section {
	background: #fffaf5;
}

.policy-related-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.policy-related-links a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 16px;
	border: 1px solid var(--line, #eee2dc);
	border-radius: 999px;
	background: #fff;
}

@media (max-width: 1100px) {
	.studio-hero__inner,
	.studio-two-column,
	.studio-two-column--reverse,
	.studio-cta-panel,
	.policy-layout {
		grid-template-columns: 1fr;
	}

	.policy-sidebar {
		position: static;
	}

	.studio-cta-actions {
		justify-content: flex-start;
	}
}

@media (max-width: 900px) {
	.studio-proof-grid,
	.policy-summary-grid,
	.policy-timeline-grid,
	.studio-card-grid--four,
	.studio-card-grid--three,
	.faq-groups-layout {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.studio-page-v2 .section {
		padding-top: 46px;
		padding-bottom: 46px;
	}

	.studio-hero,
	.policy-hero {
		padding: 44px 0;
	}

	.studio-hero__copy h1,
	.policy-hero h1 {
		font-size: clamp(34px, 11vw, 46px);
	}

	.studio-proof-grid,
	.policy-summary-grid,
	.policy-timeline-grid,
	.studio-card-grid--four,
	.studio-card-grid--three,
	.faq-groups-layout {
		grid-template-columns: 1fr;
	}

	.studio-floating-note {
		position: static;
		width: 100%;
		margin-top: 12px;
	}

	.studio-cta-panel,
	.policy-card,
	.faq-group {
		padding: 22px;
	}

	.studio-hero__actions,
	.studio-cta-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.studio-hero__actions .btn,
	.studio-cta-actions .btn {
		width: 100%;
		justify-content: center;
	}
}

body.cms-legal-page .studio-page-v2 .policy-content {
	padding: 0;
}
/* Pattern detail module polish: adaptive materials, left headings, clean video CTA. */
.single-pattern-detail .pattern-materials .materials-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
	align-items: stretch;
	margin-top: 30px;
}

.single-pattern-detail .pattern-materials .material-item {
	display: flex;
	min-height: 150px;
	height: auto;
	justify-content: center;
}

.single-pattern-detail .pattern-video .section-heading,
.single-pattern-detail .pattern-faq-section .section-heading {
	width: 100%;
	max-width: none;
	margin-right: 0;
	margin-left: 0;
	text-align: left;
}

.single-pattern-detail .pattern-video .section-heading.centered,
.single-pattern-detail .pattern-faq-section .section-heading.centered {
	text-align: left;
}

.single-pattern-detail .pattern-video .video-container {
	margin-top: 30px;
}

.single-pattern-detail .pattern-video-link .video-play-btn {
	min-width: 132px;
	min-height: 54px;
	justify-content: center;
	white-space: nowrap;
}

.single-pattern-detail .pattern-video-link .play-icon {
	display: inline-block;
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 9px solid currentColor;
	flex: 0 0 auto;
}

.single-pattern-detail .related-patterns .section-heading.row-heading {
	display: flex;
	width: 100%;
	max-width: none;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	text-align: left;
}

.single-pattern-detail .related-patterns .section-heading.row-heading > div {
	min-width: 0;
}

.single-pattern-detail .related-patterns .view-link {
	margin-left: auto;
	align-self: flex-end;
}

.single-pattern-detail .pattern-faq-section .faq-grid {
	margin-top: 30px;
}

@media (max-width: 760px) {
	.single-pattern-detail .pattern-materials .materials-list {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	}

	.single-pattern-detail .related-patterns .section-heading.row-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.single-pattern-detail .related-patterns .view-link {
		margin-left: 0;
		align-self: flex-start;
	}
}
/* Font Awesome account experience refinements. */
.page-my-account .ays-account-auth-benefits span,
.page-my-account .ays-account-stats article > span,
.page-my-account .ays-account-menu-icon,
.page-my-account .ays-account-actions span,
.page-my-account .ays-account-empty > span,
.page-my-account .ays-account-form-icon,
.page-my-account .ays-account-help-icon {
  color: var(--pink-dark, #e95d73);
}

.page-my-account .ays-account-auth-benefits span,
.page-my-account .ays-account-stats article > span {
  background: linear-gradient(145deg, #fff, #fff3f5);
  border: 1px solid rgba(233, 93, 115, .14);
  box-shadow: 0 8px 18px rgba(93, 70, 60, .07);
}

.page-my-account .ays-account-form-icon,
.page-my-account .ays-account-help-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 14px;
  background: var(--soft-pink, #fff1f3);
  font-size: 18px;
}

.page-my-account .ays-account-help-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  border-radius: 50%;
}

.page-my-account .ays-account-menu-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(233, 93, 115, .12);
  transition: transform .2s ease, background-color .2s ease;
}

.page-my-account .ays-account-menu a:hover .ays-account-menu-icon,
.page-my-account .ays-account-menu .is-active .ays-account-menu-icon {
  background: #fff;
  transform: translateX(2px);
}

.page-my-account .ays-account-auth-form,
.page-my-account .ays-account-auth-side {
  position: relative;
  overflow: hidden;
}

.page-my-account .ays-account-auth-form::after,
.page-my-account .ays-account-auth-side::after {
  position: absolute;
  width: 110px;
  height: 110px;
  right: -54px;
  top: -54px;
  border-radius: 50%;
  background: rgba(245, 127, 145, .06);
  content: "";
  pointer-events: none;
}

.page-my-account .ays-account-shortcode .button {
  gap: 9px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.page-my-account .ays-account-shortcode .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(233, 93, 115, .3);
}

.page-my-account .ays-account-actions a {
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}

.page-my-account .ays-account-actions a:hover {
  border-color: rgba(233, 93, 115, .35);
  background: #fff3f5;
  transform: translateX(3px);
}

.page-my-account .ays-account-actions .ays-action-arrow {
  margin-left: auto;
  color: #c9aaa3;
  font-size: 11px;
}

.page-my-account .ays-account-stats article i {
  font-size: 18px;
}

@media (max-width: 720px) {
  .page-my-account .ays-account-auth-benefits {
    grid-template-columns: 1fr;
  }

  .page-my-account .ays-account-auth-benefits article {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 13px;
    align-items: center;
  }

  .page-my-account .ays-account-auth-benefits article span {
    grid-row: span 2;
    margin-bottom: 0;
  }
}
/* Floating contact bar restored from CMS prototype. */
.floating-contact-bar {
  position: fixed;
  top: 50%;
  right: 18px;
  z-index: 1200;
  display: flex;
  width: 78px;
  flex-direction: column;
  overflow: visible;
  border-radius: 10px;
  background: linear-gradient(180deg, #f57f91 0%, #e95d73 48%, #3c2f2f 100%);
  box-shadow: 0 18px 44px rgba(93, 70, 60, .24);
  transform: translateY(-50%);
}

.floating-contact-item {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 82px;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.22);
  background: transparent;
  color: #fff;
  font-family: inherit;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.floating-contact-item:first-child { border-radius: 10px 10px 0 0; }
.floating-contact-item:last-child { border-bottom: 0; border-radius: 0 0 10px 10px; }
.floating-contact-item:hover,
.floating-contact-item:focus-visible,
.floating-contact-item.is-open { background: rgba(60,47,47,.22); color: #fff; }
.floating-contact-item:focus-visible { outline: 3px solid rgba(255,255,255,.9); outline-offset: -4px; }

.floating-contact-icon {
  display: inline-flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
}
.floating-contact-icon svg { width: 24px; height: 24px; fill: currentColor; }
.floating-contact-label { max-width: 72px; font-size: 11px; font-weight: 800; line-height: 1.15; white-space: nowrap; }

.floating-contact-qr {
  position: absolute;
  top: 50%;
  right: calc(100% + 14px);
  display: grid;
  width: 178px;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(47,41,38,.1);
  border-radius: 8px;
  background: #fff;
  color: #2f2926;
  box-shadow: 0 18px 46px rgba(47,41,38,.18);
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transform: translate(12px,-50%);
  transition: opacity .2s ease, transform .2s ease;
}
.floating-contact-qr::after {
  position: absolute;
  top: 50%;
  right: -8px;
  width: 16px;
  height: 16px;
  border-top: 1px solid rgba(47,41,38,.1);
  border-right: 1px solid rgba(47,41,38,.1);
  background: #fff;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}
.floating-contact-item:hover .floating-contact-qr,
.floating-contact-item:focus-visible .floating-contact-qr,
.floating-contact-item.is-open .floating-contact-qr { opacity: 1; pointer-events: auto; transform: translate(0,-50%); }
.floating-contact-qr strong { font-family: Georgia,"Times New Roman",serif; font-size: 20px; line-height: 1; }
.floating-contact-qr img { display: block; width: 150px; height: 150px; object-fit: contain; border-radius: 6px; background: #f8f6f1; }
.floating-contact-qr small { color: #70655f; font-size: 12px; line-height: 1.35; }
.floating-email-card { width: 228px; }
.floating-email-card small { padding: 10px 12px; border-radius: 6px; background: #fff1f3; color: #3c2f2f; font-weight: 800; overflow-wrap: anywhere; }

@media (max-width: 900px) {
  .floating-contact-bar { right: 10px; width: 70px; }
  .floating-contact-item { min-height: 68px; }
  .floating-contact-icon, .floating-contact-icon svg { width: 21px; height: 21px; }
  .floating-contact-label { font-size: 10px; }
  .floating-contact-qr { width: 148px; padding: 12px; }
  .floating-contact-qr img { width: 124px; height: 124px; }
}

@media (max-width: 560px) {
  .floating-contact-bar { top: auto; right: 12px; bottom: 88px; width: 62px; transform: none; }
  .floating-contact-item { min-height: 58px; gap: 5px; }
  .floating-contact-label { font-size: 9px; }
  .floating-contact-qr { right: calc(100% + 10px); width: 136px; }
  .floating-contact-qr img { width: 112px; height: 112px; }
}
.ays-contact-gateway-note {
  margin: 12px 0 0;
  padding: 12px 14px;
  border-left: 3px solid var(--pink-dark, #e95d73);
  border-radius: 8px;
  background: #fff1f3;
  color: var(--text, #514444);
  font-size: 13px;
  line-height: 1.55;
}

.ays-order-contact-next {
  margin: 28px 0;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(233, 93, 115, .2);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff, #fff1f3);
  box-shadow: 0 18px 44px rgba(93, 70, 60, .1);
}
.ays-order-contact-next h2 { margin: 0 0 10px; color: var(--brown, #3c2f2f); font-family: Georgia,"Times New Roman",serif; }
.ays-order-contact-next > p { color: var(--muted, #8b7a7a); line-height: 1.65; }
.ays-order-contact-options { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; margin: 22px 0; }
.ays-order-contact-options article,
.ays-order-contact-options a { display: grid; min-width: 0; gap: 8px; place-items: center; padding: 16px; border: 1px solid var(--line, #eee2dc); border-radius: 14px; background: #fff; color: var(--brown, #3c2f2f); text-align: center; text-decoration: none; }
.ays-order-contact-options img { width: 116px; height: 116px; object-fit: contain; }
.ays-order-contact-options span { max-width: 100%; color: var(--muted, #8b7a7a); font-size: 12px; overflow-wrap: anywhere; }
.ays-order-contact-next .ays-contact-payment-warning { margin-bottom: 0; padding: 12px 14px; border-radius: 10px; background: #fff4d8; color: #76540f; font-weight: 800; }
@media (max-width: 640px) { .ays-order-contact-options { grid-template-columns: 1fr 1fr; } .ays-order-contact-options a { grid-column: 1 / -1; } }
/* Refined Font Awesome video modal close button. */
.video-modal-close {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(233, 93, 115, .18);
  border-radius: 50%;
  background: var(--soft-pink, #fff1f3);
  color: var(--pink-dark, #e95d73);
  font-size: 16px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(93, 70, 60, .14);
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.video-modal-close i { display: block; line-height: 1; pointer-events: none; }
.video-modal-close:hover {
  border-color: var(--pink-dark, #e95d73);
  background: var(--pink-dark, #e95d73);
  color: #fff;
  box-shadow: 0 12px 28px rgba(233, 93, 115, .28);
  transform: rotate(6deg) scale(1.05);
}
.video-modal-close:focus-visible {
  outline: 3px solid rgba(245, 127, 145, .32);
  outline-offset: 3px;
}
.video-modal-close:active { transform: scale(.94); }
@media (max-width: 560px) {
  .video-modal-close { top: 14px; right: 14px; width: 38px; height: 38px; }
  .video-modal-dialog h2 { margin-right: 48px; }
}
/* Account error notice alignment fix. */
.ays-account-shortcode .woocommerce-error {
  min-height: 58px;
  margin: 0 0 22px;
  padding: 16px 20px 16px 58px;
  border: 1px solid #efc7cb;
  border-left: 4px solid #d94d5b;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff9f9, #fff2f4);
  color: #6d3439;
  box-shadow: 0 12px 28px rgba(157, 55, 65, .08);
  list-style: none;
}
.ays-account-shortcode .woocommerce-error::before {
  position: absolute;
  top: 50%;
  left: 18px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: #d94d5b;
  color: #fff;
  content: "\f06a";
  font-family: "Font Awesome 6 Free";
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}
.ays-account-shortcode .woocommerce-error li {
  margin: 0;
  padding: 0;
  color: inherit;
  line-height: 1.55;
  list-style: none;
}
.ays-account-shortcode .woocommerce-error li + li { margin-top: 7px; }
.ays-account-shortcode .woocommerce-error strong { color: #54282c; }
.ays-account-shortcode .woocommerce-error a {
  color: #b51f72;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.ays-account-shortcode .woocommerce-error a:hover { color: #7d1450; }
@media (max-width: 560px) {
  .ays-account-shortcode .woocommerce-error { padding: 14px 16px 14px 52px; }
  .ays-account-shortcode .woocommerce-error::before { left: 14px; }
}
.ays-account-shortcode .woocommerce-error:focus {
  outline: 2px solid rgba(217, 77, 91, .22);
  outline-offset: 2px;
}

/* Account information and success notice alignment. */
.ays-account-shortcode .woocommerce-info,
.ays-account-shortcode .woocommerce-message {
  position: relative;
  min-height: 58px;
  padding: 16px 20px 16px 58px;
  border-radius: 14px;
  list-style: none;
}
.ays-account-shortcode .woocommerce-info {
  border: 1px solid #cbdfea;
  border-left: 4px solid #4e8cac;
  background: linear-gradient(135deg, #fbfeff, #f0f8fc);
  color: #345c70;
  box-shadow: 0 12px 28px rgba(55, 110, 140, .08);
}
.ays-account-shortcode .woocommerce-message {
  border: 1px solid #cce1cf;
  border-left: 4px solid #5f9565;
  background: linear-gradient(135deg, #fcfffc, #f0f8f1);
  color: #3f6844;
  box-shadow: 0 12px 28px rgba(68, 117, 74, .08);
}
.ays-account-shortcode .woocommerce-info::before,
.ays-account-shortcode .woocommerce-message::before {
  position: absolute;
  top: 50%;
  left: 18px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-family: "Font Awesome 6 Free";
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}
.ays-account-shortcode .woocommerce-info::before {
  background: #4e8cac;
  content: "\f129";
}
.ays-account-shortcode .woocommerce-message::before {
  background: #5f9565;
  content: "\f00c";
}
.ays-account-shortcode .woocommerce-info:focus,
.ays-account-shortcode .woocommerce-message:focus {
  outline: 2px solid rgba(78, 140, 172, .2);
  outline-offset: 2px;
}
.ays-account-shortcode .woocommerce-info::after,
.ays-account-shortcode .woocommerce-message::after { display: block; clear: both; content: ""; }
.ays-account-shortcode .woocommerce-info .button,
.ays-account-shortcode .woocommerce-message .button {
  margin: -5px 0 -5px 20px;
}
@media (max-width: 640px) {
  .ays-account-shortcode .woocommerce-info,
  .ays-account-shortcode .woocommerce-message { padding: 14px 16px 14px 52px; }
  .ays-account-shortcode .woocommerce-info::before,
  .ays-account-shortcode .woocommerce-message::before { top: 27px; left: 14px; }
  .ays-account-shortcode .woocommerce-info .button,
  .ays-account-shortcode .woocommerce-message .button {
    float: none;
    width: 100%;
    margin: 14px 0 2px;
  }
}
/* Font Awesome footer refinement. */
.site-footer h3,
.site-footer h4 {
  display: flex;
  gap: 9px;
  align-items: center;
}
.site-footer h4 > i {
  display: inline-grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid rgba(233, 93, 115, .15);
  border-radius: 10px;
  background: rgba(255, 255, 255, .72);
  color: var(--pink-dark, #e95d73);
  font-size: 13px;
  box-shadow: 0 6px 16px rgba(93, 70, 60, .06);
}
.footer-heading-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--pink, #f57f91), var(--pink-dark, #e95d73));
  color: #fff;
  font-size: 14px;
  box-shadow: 0 8px 18px rgba(233, 93, 115, .2);
}
.footer-heart {
  margin-left: -3px;
  color: var(--pink-dark, #e95d73);
  font-size: 10px;
  transform: rotate(-10deg);
}
.footer-newsletter button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  transition: background-color .2s ease, box-shadow .2s ease;
}
.footer-newsletter button i { font-size: 12px; transition: transform .2s ease; }
.footer-newsletter button:hover { background: var(--pink-dark, #e95d73); box-shadow: 0 10px 22px rgba(233, 93, 115, .22); }
.footer-newsletter button:hover i { transform: translate(2px, -2px); }

.site-footer .social-icons a { font-size: 17px; }
.site-footer .social-icons a.facebook { color: #1877f2; }
.site-footer .social-icons a.tiktok { color: #111; }
.site-footer .social-icons a.rednote { color: #ff2442; }
.site-footer .social-icons a.instagram { color: #c13584; }
.site-footer .social-icons a:hover { color: #fff; }
.site-footer .social-icons a.facebook:hover { border-color: #1877f2; background: #1877f2; }
.site-footer .social-icons a.tiktok:hover { border-color: #111; background: #111; }
.site-footer .social-icons a.rednote:hover { border-color: #ff2442; background: #ff2442; }
.site-footer .social-icons a.instagram:hover { border-color: #c13584; background: #c13584; }

.footer-bottom p {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin: 0;
}
.footer-bottom p > i { color: var(--pink-dark, #e95d73); }
.footer-bottom a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  transition: color .2s ease, transform .2s ease;
}
.footer-bottom a i { color: #c68b95; font-size: 11px; }
.footer-bottom a:hover { transform: translateY(-1px); }
.footer-bottom a:hover i { color: var(--pink-dark, #e95d73); }

@media (max-width: 560px) {
  .footer-newsletter form { flex-wrap: wrap; gap: 9px; }
  .footer-newsletter input,
  .footer-newsletter button { width: 100%; min-height: 46px; border-radius: 10px; }
  .footer-bottom div { gap: 12px 16px; }
}
/* Checkout layout restoration. */
.checkout-section .woocommerce-cms-panel {
  margin-top: 24px;
}

.checkout-section form.woocommerce-checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  grid-template-rows: auto 1fr;
  align-items: start;
  gap: 14px 34px;
}

.checkout-section form.woocommerce-checkout #customer_details {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  width: 100%;
}

.checkout-section form.woocommerce-checkout #customer_details::before,
.checkout-section form.woocommerce-checkout #customer_details::after {
  display: none;
}

.checkout-section form.woocommerce-checkout #customer_details .col-1,
.checkout-section form.woocommerce-checkout #customer_details .col-2 {
  float: none;
  width: 100%;
  padding: 24px;
  border: 1px solid var(--border, #f0d7cf);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(121, 66, 55, 0.06);
}

.checkout-section .woocommerce-billing-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}

.checkout-section .woocommerce-billing-fields__field-wrapper .form-row {
  float: none;
  width: 100%;
  margin: 0;
}

.checkout-section .woocommerce-billing-fields__field-wrapper .form-row-wide,
.checkout-section .woocommerce-billing-fields__field-wrapper #billing_company_field,
.checkout-section .woocommerce-billing-fields__field-wrapper #billing_country_field,
.checkout-section .woocommerce-billing-fields__field-wrapper #billing_address_1_field,
.checkout-section .woocommerce-billing-fields__field-wrapper #billing_address_2_field,
.checkout-section .woocommerce-billing-fields__field-wrapper #billing_city_field,
.checkout-section .woocommerce-billing-fields__field-wrapper #billing_state_field,
.checkout-section .woocommerce-billing-fields__field-wrapper #billing_postcode_field,
.checkout-section .woocommerce-billing-fields__field-wrapper #billing_phone_field,
.checkout-section .woocommerce-billing-fields__field-wrapper #billing_email_field {
  grid-column: 1 / -1;
}

.checkout-section form.woocommerce-checkout .form-row label {
  display: block;
  float: none;
  width: auto;
  margin: 0 0 7px;
  line-height: 1.45;
  color: var(--text, #3d2b25);
  font-weight: 700;
}

.checkout-section form.woocommerce-checkout .form-row .woocommerce-input-wrapper,
.checkout-section form.woocommerce-checkout .form-row input.input-text,
.checkout-section form.woocommerce-checkout .form-row textarea,
.checkout-section form.woocommerce-checkout .form-row select,
.checkout-section form.woocommerce-checkout .select2-container {
  display: block;
  width: 100% !important;
}

.checkout-section form.woocommerce-checkout .select2-container .select2-selection--single {
  min-height: 46px;
  border: 1px solid #ead3cb;
  border-radius: 12px;
  background: #fffaf7;
}

.checkout-section form.woocommerce-checkout .select2-selection__rendered {
  padding: 8px 38px 8px 14px;
  line-height: 28px;
}

.checkout-section form.woocommerce-checkout .select2-selection__arrow {
  top: 9px;
  right: 9px;
}

.checkout-section form.woocommerce-checkout .woocommerce-additional-fields textarea {
  min-height: 125px;
  resize: vertical;
}

.checkout-section form.woocommerce-checkout #order_review_heading {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  padding: 0 4px;
}

.checkout-section form.woocommerce-checkout #order_review {
  grid-column: 2;
  grid-row: 2;
  width: 100%;
}

.checkout-section #order_review .woocommerce-checkout-review-order-table {
  margin: 0 0 18px;
}

.checkout-section #payment {
  border: 1px solid var(--border, #f0d7cf);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 34px rgba(121, 66, 55, 0.07);
}

.checkout-section #payment ul.payment_methods,
.checkout-section #payment .place-order {
  padding: 20px;
}

.checkout-section #payment #place_order {
  width: 100%;
  min-height: 48px;
}

@media (max-width: 900px) {
  .checkout-section form.woocommerce-checkout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .checkout-section form.woocommerce-checkout #customer_details,
  .checkout-section form.woocommerce-checkout #order_review_heading,
  .checkout-section form.woocommerce-checkout #order_review {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .checkout-section .woocommerce-billing-fields__field-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }

  .checkout-section .woocommerce-billing-fields__field-wrapper .form-row-first,
  .checkout-section .woocommerce-billing-fields__field-wrapper .form-row-last {
    grid-column: 1;
  }

  .checkout-section form.woocommerce-checkout #customer_details .col-1,
  .checkout-section form.woocommerce-checkout #customer_details .col-2 {
    padding: 18px;
  }
}

/* Checkout field internal alignment fix. */
.checkout-section form.woocommerce-checkout .form-row,
.checkout-section form.woocommerce-checkout .form-row-first,
.checkout-section form.woocommerce-checkout .form-row-last {
  display: block !important;
}

.checkout-section form.woocommerce-checkout .form-row::before,
.checkout-section form.woocommerce-checkout .form-row::after {
  display: none !important;
}

.checkout-section form.woocommerce-checkout .form-row label,
.checkout-section form.woocommerce-checkout .form-row .woocommerce-input-wrapper {
  position: static;
  inset: auto;
  max-width: none;
}

/* Keep Select2 source fields visually hidden without page overflow. */
.checkout-section form.woocommerce-checkout select.select2-hidden-accessible {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Refined tutorial video detail page. */
.tutorial-single-page {
  padding: 28px 0 80px;
  background:
    radial-gradient(circle at 8% 10%, rgba(246, 124, 145, .09), transparent 25%),
    radial-gradient(circle at 92% 32%, rgba(232, 168, 124, .12), transparent 24%),
    #fffaf6;
}

.tutorial-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #927b74;
  font-size: 13px;
}

.tutorial-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #765d56;
  font-weight: 700;
  text-decoration: none;
}

.tutorial-breadcrumb a:hover { color: var(--pink-dark, #e65773); }
.tutorial-breadcrumb > i { color: #d9bdb5; font-size: 9px; }
.tutorial-breadcrumb span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.tutorial-single { max-width: 1180px; }

.tutorial-single__hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  align-items: end;
  gap: 36px;
  overflow: hidden;
  margin-bottom: 26px;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid #efd8d0;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,244,241,.95));
  box-shadow: 0 20px 55px rgba(111, 63, 52, .10);
}

.tutorial-single__hero::after {
  content: '';
  position: absolute;
  right: -70px;
  top: -100px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,126,146,.18), rgba(247,126,146,0) 68%);
  pointer-events: none;
}

.tutorial-single__intro { position: relative; z-index: 1; }

.tutorial-single__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 20px;
}

.tutorial-single__badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #f0d5cf;
  border-radius: 999px;
  background: #fff;
  color: #d84f6b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .045em;
  text-transform: uppercase;
}

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

.tutorial-single__hero h1 {
  max-width: 850px;
  margin: 0;
  color: #3f302c;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(42px, 6vw, 74px);
  line-height: .98;
  letter-spacing: -.035em;
}

.tutorial-single__hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: #755f58;
  font-size: 18px;
  line-height: 1.7;
}

.tutorial-back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: #d84f6b;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.tutorial-back-link:hover { gap: 13px; }

.tutorial-single__accent {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 13px;
  min-height: 170px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 24px;
  background: linear-gradient(145deg, #f77e92, #e8a87c);
  color: #fff;
  box-shadow: 0 18px 35px rgba(230, 87, 115, .22);
  text-align: center;
}

.tutorial-single__accent i { font-size: 40px; }
.tutorial-single__accent span { max-width: 130px; font-family: Georgia, serif; font-size: 19px; font-weight: 700; line-height: 1.25; }

.tutorial-player-section { margin-bottom: 0; }

.tutorial-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 8px solid #fff;
  border-radius: 28px;
  background: #2b211e;
  box-shadow: 0 25px 60px rgba(65, 42, 35, .18);
}

.tutorial-video-frame .video-placeholder,
.tutorial-video-frame .video-placeholder img {
  width: 100%;
  height: 100%;
}

.tutorial-video-frame .video-placeholder { position: relative; display: block; padding: 0; border: 0; cursor: pointer; }
.tutorial-video-frame .video-placeholder img { display: block; object-fit: cover; transition: transform .55s ease, filter .4s ease; }

.tutorial-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34,24,20,.05), rgba(34,24,20,.30));
  transition: background .3s ease;
}

.tutorial-video-frame .video-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  transform: translate(-50%, -50%);
  padding: 12px 22px 12px 12px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: #d84f6b;
  box-shadow: 0 15px 35px rgba(45,28,23,.25);
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease;
}

.tutorial-video-frame .video-play-btn i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding-left: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f46e88, #efa274);
  color: #fff;
}

.tutorial-video-frame .video-placeholder:hover img { transform: scale(1.025); filter: saturate(1.04); }
.tutorial-video-frame .video-placeholder:hover .tutorial-video-overlay { background: rgba(34,24,20,.18); }
.tutorial-video-frame .video-placeholder:hover .video-play-btn { transform: translate(-50%, -50%) scale(1.04); box-shadow: 0 18px 45px rgba(45,28,23,.32); }

.tutorial-facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: calc(100% - 70px);
  margin: -20px auto 34px;
  overflow: hidden;
  border: 1px solid #efd9d2;
  border-radius: 20px;
  background: #efd9d2;
  box-shadow: 0 15px 40px rgba(94, 59, 49, .11);
}

.tutorial-facts article {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 19px 20px;
  background: #fff;
}

.tutorial-facts article > span {
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: #fff1f3;
  color: #eb627c;
}

.tutorial-facts small,
.tutorial-facts strong { display: block; }
.tutorial-facts small { margin-bottom: 3px; color: #9a8179; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.tutorial-facts strong { overflow: hidden; color: #4d3933; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.tutorial-facts strong a { color: inherit; text-decoration: none; }

.tutorial-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr);
  gap: 24px;
  align-items: stretch;
}

.tutorial-content-card,
.tutorial-next-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid #efd9d2;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(103, 65, 54, .08);
}

.tutorial-section-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px !important;
  color: #e25d76 !important;
  font-size: 12px !important;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tutorial-content-grid h2 {
  margin: 0 0 18px;
  color: #402f2a;
  font-family: Georgia, serif;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.12;
}

.tutorial-content-card .prose { color: #705a53; font-size: 16px; line-height: 1.75; }
.tutorial-content-card .prose p:first-child { margin-top: 0; }

.tutorial-learning-list {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.tutorial-learning-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #59443e;
  line-height: 1.55;
}

.tutorial-learning-list i {
  display: grid;
  flex: 0 0 24px;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  border-radius: 50%;
  background: #eaf7ef;
  color: #3e9a66;
  font-size: 11px;
}

.tutorial-next-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #fff7f6, #fff1e8);
}

.tutorial-next-card::after {
  content: '';
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(246,126,146,.10);
}

.tutorial-next-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f4778e, #eaa277);
  color: #fff;
  box-shadow: 0 12px 26px rgba(227,89,115,.20);
  font-size: 22px;
}

.tutorial-next-card > p:not(.tutorial-section-label) { color: #745d55; line-height: 1.65; }

.tutorial-actions { position: relative; z-index: 1; display: grid; gap: 10px; margin-top: 24px; }
.tutorial-actions .btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; width: 100%; margin: 0; text-align: center; }

@media (max-width: 900px) {
  .tutorial-single__hero { grid-template-columns: 1fr; }
  .tutorial-single__accent { display: none; }
  .tutorial-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); width: calc(100% - 30px); }
  .tutorial-content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .tutorial-single-page { padding-top: 18px; }
  .tutorial-breadcrumb span { display: none; }
  .tutorial-single__hero { padding: 26px 22px; border-radius: 20px; }
  .tutorial-single__hero h1 { font-size: 40px; }
  .tutorial-single__hero p { font-size: 16px; }
  .tutorial-video-frame { border-width: 4px; border-radius: 18px; }
  .tutorial-video-frame .video-play-btn { padding: 8px 15px 8px 8px; font-size: 13px; }
  .tutorial-video-frame .video-play-btn i { width: 36px; height: 36px; }
  .tutorial-facts { grid-template-columns: 1fr; width: calc(100% - 20px); margin-top: -10px; }
  .tutorial-content-card, .tutorial-next-card { padding: 24px 20px; border-radius: 20px; }
}

/* Footer studio introduction. */
.footer-studio-intro > p {
  max-width: 360px;
  margin: 16px 0 0;
}

.footer-studio-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.footer-studio-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid #efd9d2;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #795f58;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.footer-studio-points i {
  color: #ed647e;
  font-size: 11px;
}

@media (max-width: 600px) {
  .footer-studio-points {
    display: grid;
    justify-items: start;
  }
}

/* Editorial studio story detail. */
.studio-story-page {
  padding: 24px 0 0;
  background: #fffaf6;
  color: #4b3832;
}

.story-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  color: #9a8179;
  font-size: 13px;
}

.story-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #755c55;
  font-weight: 700;
  text-decoration: none;
}

.story-breadcrumb > i { color: #d8bbb2; font-size: 9px; }
.story-breadcrumb span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.story-hero {
  max-width: 1000px;
  padding-top: clamp(34px, 6vw, 74px);
  padding-bottom: clamp(34px, 5vw, 62px);
  text-align: center;
}

.story-hero__content { max-width: 850px; margin: 0 auto; }

.story-kicker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
}

.story-kicker > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #efd6ce;
  border-radius: 999px;
  background: #fff;
  color: #df5b75;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.story-kicker .platform-tag { position: static; inset: auto; margin: 0; }

.story-hero h1 {
  margin: 0;
  color: #392925;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(48px, 7vw, 84px);
  line-height: .98;
  letter-spacing: -.045em;
}

.story-deck {
  max-width: 700px;
  margin: 25px auto 0;
  color: #766059;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}

.story-byline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  text-align: left;
}

.story-byline__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f4788f, #e9a176);
  color: #fff;
  box-shadow: 0 9px 22px rgba(225, 88, 115, .2);
}

.story-byline strong,
.story-byline small { display: block; }
.story-byline strong { color: #49352f; font-size: 14px; }
.story-byline small { margin-top: 3px; color: #9a827a; font-size: 12px; }

.story-featured {
  max-width: 1120px;
  margin-top: 0;
  margin-bottom: 56px;
}

.story-featured img {
  display: block;
  width: 100%;
  max-height: 680px;
  aspect-ratio: 16 / 9;
  border: 8px solid #fff;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 25px 65px rgba(82, 52, 43, .16);
}

.story-featured figcaption {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: #9a8179;
  font-size: 12px;
}

.story-reading-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 760px);
  justify-content: center;
  gap: clamp(32px, 5vw, 68px);
  align-items: start;
  max-width: 1080px;
}

.story-rail {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
}

.story-rail-card {
  padding: 19px;
  border: 1px solid #ecd8d1;
  border-radius: 17px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 28px rgba(91, 56, 47, .06);
}

.story-rail-card > strong {
  display: block;
  margin-bottom: 12px;
  color: #46332d;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.story-toc a {
  position: relative;
  display: block;
  padding: 8px 0 8px 13px;
  border-left: 2px solid #f0d9d2;
  color: #806860;
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
}

.story-toc a:hover { border-color: #ed6b83; color: #dc5872; }

.story-share > div { display: flex; gap: 8px; }
.story-share a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0;
  border: 1px solid #eed9d2;
  border-radius: 50%;
  background: #fff8f6;
  color: #de5b74;
  text-decoration: none;
}
.story-share a:hover { transform: translateY(-2px); background: #ed6b83; color: #fff; }

.story-source-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
  color: #df5b75;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.story-article-column { min-width: 0; }

.story-article-content {
  color: #57433d;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.9;
}

.story-article-content > *:first-child { margin-top: 0; }
.story-article-content p { margin: 0 0 1.45em; }

.story-article-content .story-lead {
  margin-bottom: 1.7em;
  color: #44312c;
  font-size: 22px;
  line-height: 1.75;
}

.story-article-content h2 {
  scroll-margin-top: 110px;
  margin: 2.1em 0 .7em;
  color: #382824;
  font-size: clamp(29px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: -.025em;
}

.story-article-content h3 { margin-top: 1.8em; color: #3f2d28; font-size: 25px; }
.story-article-content a { color: #d9506b; text-underline-offset: 3px; }

.story-article-content blockquote {
  position: relative;
  margin: 36px 0;
  padding: 28px 30px 28px 64px;
  border: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff1f3, #fff7ee);
  color: #5b423b;
  font-size: 20px;
  font-style: italic;
  line-height: 1.65;
}

.story-article-content blockquote::before {
  content: '\201C';
  position: absolute;
  left: 23px;
  top: 15px;
  color: #ef7087;
  font-size: 58px;
  line-height: 1;
}
.story-article-content blockquote p:last-child { margin-bottom: 0; }

.story-cta {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-top: 54px;
  padding: 28px;
  border: 1px solid #efd5cd;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff1f3, #fff7ed);
}

.story-cta__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f4778e, #eaa278);
  color: #fff;
  font-size: 21px;
  box-shadow: 0 12px 25px rgba(224, 87, 114, .19);
}

.story-section-label {
  margin: 0 0 7px;
  color: #df5b75;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.story-cta h2 { margin: 0; color: #412e29; font-family: Georgia, serif; font-size: 27px; line-height: 1.15; }
.story-cta p:not(.story-section-label) { margin: 8px 0 0; color: #7b625a; font-size: 14px; line-height: 1.55; }
.story-cta .btn { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }

.story-article-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid #eadbd6;
  color: #9a8179;
  font-size: 12px;
}
.story-article-footer a,
.story-article-footer span { display: inline-flex; align-items: center; gap: 8px; }
.story-article-footer a { color: #d95670; font-weight: 800; text-decoration: none; }
.story-article-footer span i { color: #ee6b82; }

.story-related-section {
  margin-top: 88px;
  padding: 72px 0 82px;
  border-top: 1px solid #efddd6;
  background: #fff5f3;
}

.story-related-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}
.story-related-heading h2 { margin: 0; color: #3b2a26; font-family: Georgia, serif; font-size: clamp(34px, 4vw, 48px); }
.story-related-heading > a { display: inline-flex; align-items: center; gap: 8px; color: #dc5872; font-weight: 800; text-decoration: none; }

.story-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.story-related-grid article {
  overflow: hidden;
  border: 1px solid #ecd8d1;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(90, 56, 47, .07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.story-related-grid article:hover { transform: translateY(-4px); box-shadow: 0 20px 42px rgba(90, 56, 47, .12); }

.story-related-image { display: block; aspect-ratio: 4 / 3; overflow: hidden; }
.story-related-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.story-related-grid article:hover .story-related-image img { transform: scale(1.035); }
.story-related-grid article > div { padding: 21px; }
.story-related-grid small { color: #a0877f; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.story-related-grid h3 { margin: 8px 0 9px; font-family: Georgia, serif; font-size: 23px; line-height: 1.2; }
.story-related-grid h3 a { color: #432f2a; text-decoration: none; }
.story-related-grid p { margin: 0; color: #806860; font-size: 13px; line-height: 1.6; }
.story-read-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; color: #dc5872; font-size: 13px; font-weight: 900; text-decoration: none; }

@media (max-width: 900px) {
  .story-reading-layout { grid-template-columns: minmax(0, 760px); }
  .story-rail { position: static; grid-template-columns: 1fr auto; order: 2; margin-top: 10px; }
  .story-toc { display: none; }
  .story-source-link { align-self: center; }
  .story-cta { grid-template-columns: 52px minmax(0, 1fr); }
  .story-cta .btn { grid-column: 1 / -1; justify-content: center; }
  .story-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-related-grid article:last-child { display: none; }
}

@media (max-width: 600px) {
  .studio-story-page { padding-top: 17px; }
  .story-breadcrumb { margin-bottom: 12px; }
  .story-breadcrumb span { display: none; }
  .story-hero { padding-top: 32px; }
  .story-hero h1 { font-size: 48px; }
  .story-featured { margin-bottom: 38px; }
  .story-featured img { aspect-ratio: 4 / 3; border-width: 4px; border-radius: 18px; }
  .story-article-content { font-size: 17px; line-height: 1.8; }
  .story-article-content .story-lead { font-size: 20px; }
  .story-article-content blockquote { padding: 25px 22px 25px 50px; font-size: 18px; }
  .story-article-content blockquote::before { left: 16px; }
  .story-cta { grid-template-columns: 1fr; padding: 23px 20px; }
  .story-cta__icon { width: 50px; height: 50px; }
  .story-article-footer { flex-direction: column; }
  .story-rail { grid-template-columns: 1fr; }
  .story-related-heading { align-items: start; flex-direction: column; }
  .story-related-grid { grid-template-columns: 1fr; }
  .story-related-grid article:last-child { display: block; }
}

/* CMS reference alignment for studio stories. */
.story-hero.story-hero--split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  align-items: center;
  gap: clamp(46px, 7vw, 92px);
  max-width: 1180px;
  padding-top: clamp(42px, 6vw, 76px);
  padding-bottom: clamp(48px, 6vw, 78px);
  text-align: left;
}

.story-hero--split .story-hero__content {
  max-width: 620px;
  margin: 0;
}

.story-hero--split .story-kicker { justify-content: flex-start; }
.story-hero--split h1 { font-size: clamp(50px, 5.6vw, 76px); }
.story-hero--split .story-deck { max-width: 590px; margin-right: 0; margin-left: 0; }

.story-featured.story-featured--hero {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
}

.story-featured--hero img {
  max-height: none;
  aspect-ratio: 1 / 1;
  border-width: 7px;
  border-radius: 26px;
}

.story-image-badge {
  position: absolute;
  left: 20px;
  top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: rgba(255,255,255,.91);
  color: #da5670;
  box-shadow: 0 8px 20px rgba(69,42,34,.12);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.story-reading-layout {
  grid-template-columns: 280px minmax(0, 840px);
  gap: 40px;
  max-width: 1180px;
  padding-top: 58px;
  border-top: 1px solid #efddd7;
}

.story-rail { gap: 18px; }
.story-rail-card { padding: 22px; }

.story-studio-note > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 15px;
  border-radius: 13px;
  background: linear-gradient(135deg, #f4788f, #e9a176);
  color: #fff;
  box-shadow: 0 9px 20px rgba(224,87,114,.18);
}

.story-studio-note > strong { margin-bottom: 9px; }
.story-studio-note p { margin: 0; color: #806860; font-size: 13px; line-height: 1.6; }
.story-studio-note a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  color: #d95670;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.story-article-content {
  padding: 38px 42px;
  border: 1px solid #ecd9d2;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(91,56,47,.06);
}

.story-cta { margin-top: 24px; }

@media (max-width: 980px) {
  .story-hero.story-hero--split {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .8fr);
    gap: 34px;
  }

  .story-reading-layout {
    grid-template-columns: minmax(0, 760px);
    max-width: 820px;
  }
}

@media (max-width: 760px) {
  .story-hero.story-hero--split { grid-template-columns: 1fr; text-align: center; }
  .story-hero--split .story-hero__content { max-width: 760px; margin: 0 auto; }
  .story-hero--split .story-kicker { justify-content: center; }
  .story-hero--split .story-deck { margin-right: auto; margin-left: auto; }
  .story-hero--split .story-byline { justify-content: center; }
  .story-featured--hero { max-width: 580px !important; margin: 0 auto !important; }
  .story-featured--hero img { aspect-ratio: 4 / 3; }
  .story-reading-layout { padding-top: 38px; }
  .story-article-content { padding: 30px 26px; }
}

@media (max-width: 600px) {
  .story-hero.story-hero--split { padding-top: 28px; padding-bottom: 42px; }
  .story-hero--split h1 { font-size: 46px; }
  .story-image-badge { left: 13px; top: 13px; }
  .story-article-content { padding: 25px 20px; border-radius: 18px; }
}

/* Refined tutorials archive. */
body.page-template-page-tutorials .shop-hero,
body.post-type-archive-ays_video .shop-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 58px;
  background:
    radial-gradient(circle at 15% 20%, rgba(246,126,146,.13), transparent 25%),
    radial-gradient(circle at 85% 65%, rgba(232,168,124,.15), transparent 28%),
    #fff5f2;
}

.tutorial-page-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 11px !important;
  color: #e15b75 !important;
  font-size: 12px !important;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

body.page-template-page-tutorials .shop-hero h1,
body.post-type-archive-ays_video .shop-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(42px, 5vw, 62px);
}

body.page-template-page-tutorials .shop-hero .container > p:last-child,
body.post-type-archive-ays_video .shop-hero .container > p:last-child {
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
  font-size: 17px;
  line-height: 1.65;
}

.tutorial-filters {
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  padding: 7px;
  border: 1px solid #eedbd4;
  border-radius: 999px;
  background: #fff;
  width: fit-content;
  box-shadow: 0 10px 28px rgba(91,56,47,.06);
}

.tutorial-filters .filter-btn {
  min-height: 38px;
  padding: 8px 17px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #79625b;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.tutorial-filters .filter-btn:hover { color: #dc5872; transform: translateY(-1px); }
.tutorial-filters .filter-btn.active { background: linear-gradient(135deg, #f4778e, #eb9e78); color: #fff; box-shadow: 0 7px 17px rgba(223,86,113,.2); }

.tutorial-list { gap: 22px; }

.tutorial-item {
  grid-template-columns: minmax(300px, 370px) minmax(0, 1fr);
  gap: 0;
  border: 1px solid #ecd8d1;
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(91,56,47,.065);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.tutorial-item:hover {
  transform: translateY(-3px);
  border-color: #e8c8bf;
  box-shadow: 0 22px 48px rgba(91,56,47,.11);
}

.tutorial-thumb-lg { min-height: 280px; aspect-ratio: 4 / 3; background: #f7ece6; }
.tutorial-thumb-link { display: block; width: 100%; height: 100%; }
.tutorial-thumb-lg::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(44,28,23,.14));
}

.play-btn-lg {
  z-index: 2;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  padding: 0;
  border: 5px solid rgba(255,255,255,.72);
  background: rgba(255,255,255,.94);
  color: #e45f78;
  box-shadow: 0 15px 35px rgba(48,30,24,.24);
  font-size: 18px;
  text-decoration: none;
}

.play-btn-lg i { margin-left: 3px; line-height: 1; }
.play-btn-lg:hover { border-color: rgba(255,255,255,.42); background: linear-gradient(135deg, #f4778e, #eb9e78); color: #fff; }

.tutorial-thumb-lg .duration {
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(54,38,32,.78);
  backdrop-filter: blur(6px);
  font-size: 12px;
  font-weight: 800;
}

.tutorial-details {
  min-width: 0;
  padding: 30px 32px;
  justify-content: flex-start;
}

.tutorial-details > .tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-width: 0;
  margin: 0 0 13px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .045em;
  line-height: 1;
  text-transform: uppercase;
}

.tutorial-details h3 { margin: 0 0 10px; font-family: Georgia, serif; font-size: clamp(23px, 2.5vw, 29px); line-height: 1.18; }
.tutorial-details p { margin-bottom: 13px; font-size: 15px; }

.tutorial-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0 0 22px;
  color: #9a8179;
  font-size: 12px;
}

.tutorial-meta span { position: relative; }
.tutorial-meta span + span::before { content: ''; display: inline-block; width: 4px; height: 4px; margin: 0 10px 2px 0; border-radius: 50%; background: #e3bdb4; }

.tutorial-actions {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: auto;
}

.tutorial-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  margin: 0;
  padding: 11px 20px;
  border-radius: 999px;
  line-height: 1.2;
}

.tutorial-actions .btn-primary { flex: 1 1 auto; box-shadow: 0 10px 22px rgba(224,87,114,.18); }
.tutorial-actions .btn-outline { flex: 0 0 auto; min-width: 142px; border-color: #e6c9c1; background: #fff; color: #725850; }
.tutorial-actions .btn-outline i { font-size: 11px; transition: transform .2s ease; }
.tutorial-actions .btn-outline:hover { border-color: #e45f78; color: #db5871; }
.tutorial-actions .btn-outline:hover i { transform: translateX(3px); }

body.page-template-page-tutorials .seo-text,
body.post-type-archive-ays_video .seo-text {
  margin-top: 10px;
  padding-bottom: 72px;
}

body.page-template-page-tutorials .seo-text .container,
body.post-type-archive-ays_video .seo-text .container {
  position: relative;
  overflow: hidden;
  padding: 38px 42px;
  border: 1px solid #ecd8d1;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff, #fff4f1);
  box-shadow: 0 15px 38px rgba(91,56,47,.07);
}

.tutorial-library-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  color: #dc5872;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 860px) {
  .tutorial-item { grid-template-columns: minmax(260px, 42%) minmax(0, 1fr); }
  .tutorial-details { padding: 25px; }
  .tutorial-actions { align-items: stretch; flex-direction: column; }
  .tutorial-actions .btn-outline { min-width: 0; }
}

@media (max-width: 680px) {
  .tutorial-filters { width: 100%; overflow-x: auto; flex-wrap: nowrap; border-radius: 16px; }
  .tutorial-filters .filter-btn { flex: 0 0 auto; }
  .tutorial-item { grid-template-columns: 1fr; }
  .tutorial-thumb-lg { min-height: 0; aspect-ratio: 4 / 3; }
  .tutorial-details { padding: 24px 21px; }
  .tutorial-actions { flex-direction: row; }
  .tutorial-actions .btn-outline { min-width: 0; }
}

@media (max-width: 430px) {
  .tutorial-actions { flex-direction: column; }
  body.page-template-page-tutorials .seo-text .container,
  body.post-type-archive-ays_video .seo-text .container { padding: 28px 22px; }
}

/* Tutorial card action hierarchy fix. */
.tutorial-actions {
  justify-content: flex-start;
  gap: 22px;
  padding-top: 3px;
}

.tutorial-actions .btn-primary {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 190px;
  min-height: 48px;
  height: 48px;
  padding: 0 24px;
  white-space: nowrap;
}

.tutorial-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: auto;
  min-height: 44px;
  padding: 8px 3px;
  color: #725850;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease;
}

.tutorial-detail-link i {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid #e6c9c1;
  border-radius: 50%;
  color: #df5b74;
  font-size: 10px;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.tutorial-detail-link:hover { color: #d95670; }
.tutorial-detail-link:hover i { transform: translateX(3px); background: #e45f78; color: #fff; }

@media (max-width: 860px) {
  .tutorial-actions { align-items: center; flex-direction: row; }
  .tutorial-actions .btn-primary { min-width: 175px; }
}

@media (max-width: 430px) {
  .tutorial-actions { align-items: stretch; flex-direction: column; gap: 8px; }
  .tutorial-actions .btn-primary { width: 100% !important; min-width: 0; }
  .tutorial-detail-link { justify-content: center; }
}

/* Equal tutorial action buttons. */
.tutorial-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 190px));
  gap: 12px;
  justify-content: start;
  align-items: stretch;
}

.tutorial-actions .btn-primary,
.tutorial-actions .tutorial-detail-link {
  width: 100% !important;
  min-width: 0;
  min-height: 48px;
  height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.tutorial-actions .tutorial-detail-link {
  justify-content: center;
  gap: 9px;
  border: 1px solid #e7c9c1;
  background: #fffaf8;
  color: #725850;
  box-shadow: none;
}

.tutorial-actions .tutorial-detail-link i {
  display: inline-block;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  color: #df5b74;
  font-size: 11px;
}

.tutorial-actions .tutorial-detail-link:hover {
  border-color: #e45f78;
  background: #fff1f3;
  color: #d95670;
}

.tutorial-actions .tutorial-detail-link:hover i {
  transform: translateX(3px);
  background: transparent;
  color: #d95670;
}

@media (max-width: 860px) {
  .tutorial-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 430px) {
  .tutorial-actions { grid-template-columns: 1fr; }
}

/* Keep the actions inside the narrow CTA on tutorial detail pages. */
.tutorial-next-card .tutorial-actions {
  grid-template-columns: minmax(0, 1fr);
}

.tutorial-next-card .tutorial-actions .btn {
  min-width: 0;
  white-space: normal;
}

/* Subtle tutorial play action with interactive hover. */
.tutorial-actions .btn-primary.video-play-trigger {
  border: 1px solid #edc9cf;
  background: #fbecef;
  color: #b64f64;
  box-shadow: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.tutorial-actions .btn-primary.video-play-trigger i {
  color: #d96379;
  transition: color .2s ease, transform .2s ease;
}

.tutorial-actions .btn-primary.video-play-trigger:hover,
.tutorial-actions .btn-primary.video-play-trigger:focus-visible {
  transform: translateY(-2px);
  border-color: #e5677e;
  background: #e86f86;
  color: #fff;
  box-shadow: 0 10px 22px rgba(218, 83, 109, .22);
}

.tutorial-actions .btn-primary.video-play-trigger:hover i,
.tutorial-actions .btn-primary.video-play-trigger:focus-visible i {
  color: #fff;
  transform: scale(1.08);
}

.tutorial-actions .btn-primary.video-play-trigger:active {
  transform: translateY(0) scale(.98);
  box-shadow: 0 5px 12px rgba(218, 83, 109, .17);
}

/* Knot meanings archive and detail refinements. */
.meanings-legacy-page .knot-title h2 a,
.meanings-legacy-page .knot-title h2 a:visited,
.meanings-legacy-page .knot-title h2 {
	color: #fff;
	text-decoration: none;
}

.meanings-legacy-page .knot-tab {
	appearance: none;
	border: 0;
	border-bottom: 2px solid transparent;
	background: transparent;
	font: inherit;
}

.meanings-legacy-page .knot-tab:focus-visible {
	outline: 2px solid var(--primary-red);
	outline-offset: 3px;
}

.meanings-breadcrumb {
	display: flex;
	max-width: 1200px;
	margin: 0 auto 28px;
	gap: 9px;
	align-items: center;
	color: #74675d;
	font-size: 14px;
}

.meanings-breadcrumb a {
	color: var(--primary-red);
	font-weight: 800;
	text-decoration: none;
}

.meanings-single-page .meanings-single-title {
	margin-bottom: 38px;
}

.meanings-single-page .meanings-kicker {
	margin-bottom: 9px;
	color: var(--gold);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.meanings-single-page .knot-card-single {
	max-width: 1040px;
	margin-right: auto;
	margin-left: auto;
}

.meanings-single-page .knot-header-label {
	margin-bottom: 7px;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.meanings-single-page .meaning-lead {
	font-size: 18px;
	font-weight: 700;
}

.meanings-single-page .meaning-prose {
	line-height: 1.75;
}

.meanings-single-page .meaning-prose > :last-child {
	margin-bottom: 0;
}

.meanings-single-page .video-note {
	margin-top: 15px;
	font-style: italic;
}

.meanings-back-row {
	display: flex;
	justify-content: center;
	margin: 10px 0 0;
}

@media (max-width: 600px) {
	.meanings-breadcrumb {
		align-items: flex-start;
		flex-wrap: wrap;
	}

	.meanings-single-page .page-title h1 {
		font-size: 2rem;
	}
}
/* Dynamic talisman products and knot meaning stories. */
.talisman-clean-card .talisman-product-media {
	display: block;
}

.talisman-clean-card .product-info h3 a,
.talisman-clean-card .product-info h3 a:visited {
	color: inherit;
	text-decoration: none;
}

.talisman-clean-card .product-info h3 a:hover {
	color: #a91f32;
}

.talisman-clean-card .add-to-cart-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	text-decoration: none;
}

.talisman-knot-stories {
	background: #fff8f4;
}

.talisman-knot-stories-head {
	max-width: 720px;
}

.talisman-knot-story-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.talisman-knot-story-card {
	overflow: hidden;
	border: 1px solid #ead8cf;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 12px 30px rgba(76, 48, 39, .06);
}

.talisman-knot-story-image {
	display: block;
	height: 190px;
	overflow: hidden;
	background: linear-gradient(135deg, #fff2ed, #f4eadf);
}

.talisman-knot-story-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease;
}

.talisman-knot-story-card:hover .talisman-knot-story-image img {
	transform: scale(1.04);
}

.talisman-knot-story-card > div {
	padding: 22px;
}

.talisman-knot-story-card span {
	display: block;
	margin-bottom: 7px;
	color: #b42438;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.talisman-knot-story-card h3 {
	margin: 0 0 10px;
	font-family: Georgia, serif;
	font-size: 22px;
	line-height: 1.18;
}

.talisman-knot-story-card h3 a,
.talisman-knot-story-card h3 a:visited {
	color: #3f2e29;
	text-decoration: none;
}

.talisman-knot-story-card p {
	margin: 0 0 16px;
	color: #705c54;
	font-size: 14px;
	line-height: 1.6;
}

.talisman-story-link {
	color: #a91f32;
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
}

.talisman-knot-stories-action {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

@media (max-width: 980px) {
	.talisman-knot-story-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.talisman-knot-story-grid {
		grid-template-columns: 1fr;
	}
}
/* Refined WooCommerce cart based on the original studio cart concept. */
body.woocommerce-cart .cart-section {
	padding-top: 34px;
	background: linear-gradient(180deg, #fffaf7 0, #fff 460px);
}
body.woocommerce-cart .cart-section > .container > h1 {
	margin: 0 0 28px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(34px, 4vw, 52px);
	color: var(--ays-ink);
}
.woocommerce-cms-panel > .woocommerce {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 390px;
	gap: 30px;
	align-items: start;
}
.woocommerce-cms-panel > .woocommerce > .woocommerce-notices-wrapper,
.woocommerce-cms-panel > .woocommerce > .woocommerce-message,
.woocommerce-cms-panel > .woocommerce > .woocommerce-error,
.woocommerce-cms-panel > .woocommerce > .woocommerce-info {
	grid-column: 1 / -1;
}
.woocommerce-cms-panel .woocommerce-cart-form {
	min-width: 0;
	padding: 0;
	border: 1px solid #eadbd3;
	border-radius: 18px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 18px 44px rgba(82, 52, 42, .07);
}
.woocommerce-cms-panel .woocommerce-cart-form table.shop_table {
	margin: 0;
	border: 0;
	border-radius: 0;
	border-collapse: collapse;
}
.woocommerce-cms-panel .woocommerce-cart-form thead {
	background: #fff1ef;
}
.woocommerce-cms-panel .woocommerce-cart-form th {
	padding: 16px 12px;
	border: 0;
	color: #5a4038;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .055em;
	text-transform: uppercase;
}
.woocommerce-cms-panel .woocommerce-cart-form td {
	padding: 20px 12px;
	border-top: 1px solid #f0e3dc;
	vertical-align: middle;
}
.woocommerce-cms-panel .woocommerce-cart-form td.product-thumbnail { width: 104px; }
.woocommerce-cms-panel .woocommerce-cart-form td.product-thumbnail img {
	width: 84px;
	height: 84px;
	border-radius: 13px;
	object-fit: cover;
	background: #fff8f2;
}
.woocommerce-cms-panel .woocommerce-cart-form td.product-name a {
	color: #302522;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.25;
}
.woocommerce-cms-panel .woocommerce-cart-form td.product-name .variation {
	margin: 7px 0 0;
	color: #79655e;
	font-size: 12px;
}
.woocommerce-cms-panel .woocommerce-cart-form td.product-price,
.woocommerce-cms-panel .woocommerce-cart-form td.product-subtotal {
	color: #302522;
	font-weight: 800;
	white-space: nowrap;
}
.woocommerce-cms-panel .woocommerce-cart-form .quantity .qty {
	width: 62px;
	height: 40px;
	padding: 6px;
	border: 1px solid #dfcec6;
	border-radius: 10px;
	background: #fff;
}
.woocommerce-cms-panel .woocommerce-cart-form a.remove {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 50%;
	background: #fff0ee;
	color: #d64f64 !important;
	font-size: 23px;
	line-height: 1;
}
.woocommerce-cms-panel .woocommerce-cart-form a.remove:hover { background: #d64f64; color: #fff !important; }
.woocommerce-cms-panel .woocommerce-cart-form td.actions {
	padding: 18px 20px;
	background: #fffaf7;
}
.woocommerce-cms-panel .woocommerce-cart-form .coupon {
	display: flex;
	gap: 8px;
}
.woocommerce-cms-panel .woocommerce-cart-form .coupon .input-text {
	width: 190px;
	min-height: 43px;
	padding: 10px 13px;
	border: 1px solid #dfcec6;
	border-radius: 10px;
}
.woocommerce-cms-panel .woocommerce-cart-form button.button {
	min-height: 43px;
	border-radius: 10px;
	background: #352d29;
	color: #fff;
}
.woocommerce-cms-panel .cart-collaterals {
	width: auto;
	float: none;
	position: sticky;
	top: 104px;
}
.woocommerce-cart .cart-collaterals .cart_totals {
	width: 100%;
	float: none;
	padding: 25px;
	border: 1px solid #eadbd3;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 18px 44px rgba(82, 52, 42, .09);
}
.ays-summary-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 15px;
	margin-bottom: 16px;
}
.ays-summary-heading .eyebrow { margin: 0 0 5px; color: #df596f; font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.woocommerce-cart .cart-collaterals .cart_totals .ays-summary-heading h2 {
	margin: 0;
	padding: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 26px;
	color: #302522;
}
.ays-summary-lock { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 12px; background: #eaf6ee; }
.woocommerce-cart .cart-collaterals .cart_totals table { margin: 0; border: 0; border-radius: 0; }
.woocommerce-cart .cart-collaterals .cart_totals th,
.woocommerce-cart .cart-collaterals .cart_totals td { padding: 13px 0; border-top: 1px solid #f0e3dc; }
.woocommerce-cart .cart-collaterals .cart_totals th { color: #69564f; font-size: 14px; font-weight: 600; }
.woocommerce-cart .cart-collaterals .cart_totals td { color: #302522; font-weight: 800; text-align: right; }
.woocommerce-cart .cart-collaterals .cart_totals tr.order-total th,
.woocommerce-cart .cart-collaterals .cart_totals tr.order-total td { padding-top: 18px; font-size: 18px; color: #251d1a; }
.ays-total-note { margin: 3px 0 16px; color: #806e67; font-size: 12px; line-height: 1.5; }
.woocommerce-cart .wc-proceed-to-checkout { padding: 0; }
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	margin: 0;
	padding: 15px 18px;
	border-radius: 11px;
	background: linear-gradient(135deg, #f47689, #e4526b);
	box-shadow: 0 11px 25px rgba(228, 82, 107, .23);
	font-size: 15px;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover { background: #d94b63; }
.ays-cart-assurances { display: grid; gap: 1px; margin-top: 18px; border: 1px solid #eee1da; border-radius: 13px; overflow: hidden; background: #eee1da; }
.ays-assurance { display: grid; grid-template-columns: 30px 1fr; gap: 10px; padding: 12px; background: #fffaf7; }
.ays-assurance > span { font-size: 18px; }
.ays-assurance strong, .ays-assurance small { display: block; }
.ays-assurance strong { color: #3d302b; font-size: 13px; }
.ays-assurance small { margin-top: 2px; color: #7b6962; font-size: 11px; line-height: 1.45; }
.ays-cart-help { margin-top: 14px; padding: 15px; border-radius: 13px; background: #f2f7f1; }
.ays-cart-help > strong { color: #3d302b; font-size: 14px; }
.ays-cart-help p { margin: 5px 0 9px; color: #6f625c; font-size: 12px; line-height: 1.5; }
.ays-cart-help div { display: flex; flex-wrap: wrap; gap: 7px 13px; }
.ays-cart-help a { color: #b53d54; font-size: 11px; font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.ays-payment-note { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px 10px; margin-top: 15px; color: #7b6962; font-size: 10px; text-align: center; }
.ays-payment-note strong { padding: 5px 9px; border: 1px solid #d9cbc4; border-radius: 5px; color: #244b9b; font-size: 12px; }

@media (max-width: 980px) {
	.woocommerce-cms-panel > .woocommerce { grid-template-columns: minmax(0, 1fr) 340px; gap: 20px; }
	.woocommerce-cms-panel .woocommerce-cart-form th,
	.woocommerce-cms-panel .woocommerce-cart-form td { padding-left: 8px; padding-right: 8px; }
	.woocommerce-cms-panel .woocommerce-cart-form td.product-thumbnail { width: 82px; }
	.woocommerce-cms-panel .woocommerce-cart-form td.product-thumbnail img { width: 68px; height: 68px; }
}
@media (max-width: 780px) {
	.woocommerce-cms-panel > .woocommerce { display: block; }
	.woocommerce-cms-panel .cart-collaterals { position: static; margin-top: 22px; }
	.woocommerce-cms-panel .woocommerce-cart-form { overflow: visible; border: 0; background: transparent; box-shadow: none; }
	.woocommerce-cms-panel .woocommerce-cart-form table.shop_table_responsive tr { display: block; margin-bottom: 14px; padding: 16px; border: 1px solid #eadbd3; border-radius: 16px; background: #fff; box-shadow: 0 10px 28px rgba(82,52,42,.06); }
	.woocommerce-cms-panel .woocommerce-cart-form table.shop_table_responsive tr td { padding: 9px 0; border-top: 1px solid #f2e7e1; }
	.woocommerce-cms-panel .woocommerce-cart-form table.shop_table_responsive tr td.product-thumbnail { display: block; width: 100%; border: 0; text-align: left !important; }
	.woocommerce-cms-panel .woocommerce-cart-form td.product-thumbnail img { width: 92px; height: 92px; }
	.woocommerce-cms-panel .woocommerce-cart-form table.shop_table_responsive tr td.product-name { border: 0; text-align: left !important; }
	.woocommerce-cms-panel .woocommerce-cart-form table.shop_table_responsive tr td.product-name::before,
	.woocommerce-cms-panel .woocommerce-cart-form table.shop_table_responsive tr td.product-thumbnail::before { display: none; }
	.woocommerce-cms-panel .woocommerce-cart-form td.actions { margin-top: 10px; }
}
@media (max-width: 520px) {
	.woocommerce-cart .cart-collaterals .cart_totals { padding: 20px; }
	.woocommerce-cms-panel .woocommerce-cart-form .coupon { display: grid; float: none; }
	.woocommerce-cms-panel .woocommerce-cart-form .coupon .input-text { width: 100%; }
	.woocommerce-cms-panel .woocommerce-cart-form td.actions > .button { width: 100%; margin-top: 9px; }
}
/* Professional FAQ directory and stacked support CTA. */
.faq-page-v2 .studio-hero { padding-bottom: 78px; }
.faq-page-v2 .studio-hero__copy { max-width: 600px; }
.faq-page-v2 .studio-hero__copy > p:not(.eyebrow) { max-width: 570px; }
.faq-tools-section {
	position: relative;
	z-index: 2;
	padding: 0 0 34px;
	background: #fff;
}
.faq-tools-panel {
	margin-top: -34px;
	padding: 28px 30px;
	border: 1px solid rgba(225, 204, 194, .82);
	border-radius: 20px;
	background: rgba(255, 255, 255, .98);
	box-shadow: 0 20px 50px rgba(76, 48, 38, .09);
}
.faq-tools-copy { display: grid; grid-template-columns: minmax(220px, .8fr) minmax(320px, 1.2fr); column-gap: 24px; align-items: end; }
.faq-tools-copy .eyebrow { grid-column: 1 / -1; margin: 0 0 6px; }
.faq-tools-copy h2 { margin: 0; color: #302522; font-family: Georgia, "Times New Roman", serif; font-size: clamp(25px, 2.5vw, 36px); }
.faq-tools-copy > p:last-child { margin: 0 0 4px; color: #79665e; text-align: right; }
.faq-search-wrap { position: relative; display: flex; align-items: center; margin-top: 22px; }
.faq-search-icon { position: absolute; left: 17px; font-size: 16px; opacity: .65; pointer-events: none; }
.faq-search-input {
	width: 100%;
	height: 54px;
	padding: 0 78px 0 48px;
	border: 1px solid #dfcec6;
	border-radius: 13px;
	outline: none;
	background: #fffaf7;
	color: #302522;
	font-size: 15px;
	transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.faq-search-input:focus { border-color: #eb7287; background: #fff; box-shadow: 0 0 0 4px rgba(235,114,135,.12); }
.faq-search-clear { position: absolute; right: 10px; padding: 8px 10px; border: 0; background: transparent; color: #c8465e; cursor: pointer; font-weight: 800; }
.faq-page-v2 .faq-directory-grid { gap: 9px; margin-top: 18px; }
.faq-page-v2 .faq-directory-grid a {
	min-height: 36px;
	padding: 7px 13px;
	border: 1px solid #eadbd3;
	border-radius: 999px;
	background: #fff;
	font-size: 12px;
	transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.faq-page-v2 .faq-directory-grid a:hover { transform: translateY(-1px); border-color: #eb7287; background: #fff4f3; }
.faq-search-empty { margin: 22px 0 0; padding: 15px 17px; border-radius: 12px; background: #fff3f1; color: #724d46; font-weight: 700; }
.faq-page-v2 .faq-groups-section { padding-top: 48px; padding-bottom: 76px; background: linear-gradient(180deg, #fff 0, #fffaf7 100%); }
.faq-page-v2 .faq-groups-layout { gap: 24px; }
.faq-page-v2 .faq-group {
	padding: 28px 30px 18px;
	border-color: #eadbd3;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 12px 32px rgba(76, 48, 38, .055);
	scroll-margin-top: 110px;
}
.faq-page-v2 .faq-group-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 18px; }
.faq-page-v2 .faq-group-heading h2 { margin: 0; font-size: clamp(23px, 2.2vw, 30px); }
.faq-page-v2 .faq-group-heading span { flex: 0 0 auto; padding: 5px 9px; border-radius: 999px; background: #f3f7f0; color: #607159; font-size: 10px; font-weight: 800; }
.faq-page-v2 .faq-group details { border-top: 1px solid #eee2dc; }
.faq-page-v2 .faq-group summary {
	position: relative;
	padding: 17px 42px 17px 0;
	list-style: none;
	font-size: 14px;
	line-height: 1.45;
}
.faq-page-v2 .faq-group summary::-webkit-details-marker { display: none; }
.faq-page-v2 .faq-group summary::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 2px;
	display: grid;
	width: 26px;
	height: 26px;
	place-items: center;
	transform: translateY(-50%);
	border-radius: 50%;
	background: #fff0ee;
	color: #d64f68;
	font-size: 18px;
	font-weight: 500;
	transition: transform .2s ease, background .2s ease;
}
.faq-page-v2 .faq-group details[open] summary::after { content: "−"; background: #e95d73; color: #fff; }
.faq-page-v2 .faq-answer { padding: 0 42px 4px 0; }
.faq-page-v2 .faq-answer p { color: #685750; font-size: 14px; line-height: 1.72; }
.faq-page-v2 .studio-cta-section { padding: 72px 0; background: #fff8f4; }
.studio-cta-panel.studio-cta-panel--stacked {
	display: flex;
	max-width: 920px;
	align-items: center;
	flex-direction: column;
	gap: 0;
	padding: 48px 44px;
	text-align: center;
}
.studio-cta-panel--stacked > div:first-child { max-width: 720px; }
.studio-cta-panel--stacked h2 { margin: 8px auto 0; font-size: clamp(30px, 3.5vw, 46px); line-height: 1.14; }
.studio-cta-panel--stacked .studio-cta-actions { justify-content: center; margin-top: 26px; }
.studio-cta-panel--stacked .studio-cta-actions .btn { min-width: 158px; justify-content: center; }

@media (max-width: 760px) {
	.faq-page-v2 .studio-hero { padding-bottom: 58px; }
	.faq-tools-panel { margin-top: -24px; padding: 23px 20px; }
	.faq-tools-copy { display: block; }
	.faq-tools-copy > p:last-child { margin-top: 7px; text-align: left; }
	.faq-page-v2 .faq-directory-grid { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; scrollbar-width: thin; }
	.faq-page-v2 .faq-directory-grid a { flex: 0 0 auto; }
	.faq-page-v2 .faq-groups-section { padding-top: 32px; }
	.faq-page-v2 .faq-group { padding: 23px 20px 12px; }
	.studio-cta-panel.studio-cta-panel--stacked { padding: 34px 22px; }
}
/* FAQ compactness and accordion spacing refinements. */
.faq-page-v2 .faq-tools-section { padding-bottom: 26px; }
.faq-page-v2 .faq-tools-panel {
	max-width: 1040px;
	margin-top: -28px;
	padding: 22px 26px 20px;
	border-radius: 16px;
	box-shadow: 0 14px 36px rgba(76, 48, 38, .075);
}
.faq-page-v2 .faq-tools-copy { display: block; }
.faq-page-v2 .faq-tools-copy .eyebrow { margin-bottom: 3px; }
.faq-page-v2 .faq-tools-copy h2 { font-size: clamp(24px, 2.2vw, 31px); line-height: 1.2; }
.faq-page-v2 .faq-search-wrap { margin-top: 15px; }
.faq-page-v2 .faq-search-input { height: 48px; }
.faq-page-v2 .faq-directory-grid { margin-top: 13px; }
.faq-page-v2 .faq-directory-grid a { min-height: 32px; padding: 5px 11px; }

.faq-page-v2 .faq-groups-layout { gap: 22px; align-items: start; }
.faq-page-v2 .faq-group { padding: 24px; }
.faq-page-v2 .faq-group-heading { padding-bottom: 15px; }
.faq-page-v2 .faq-group details {
	border: 1px solid #eadbd3;
	border-radius: 11px;
	background: #fffdfb;
	overflow: hidden;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-page-v2 .faq-group details + details { margin-top: 10px; }
.faq-page-v2 .faq-group details[open] {
	border-color: #e4c8bd;
	box-shadow: 0 8px 20px rgba(76, 48, 38, .055);
}
.faq-page-v2 .faq-group summary { padding: 15px 48px 15px 16px; }
.faq-page-v2 .faq-group summary::after { right: 13px; }
.faq-page-v2 .faq-answer {
	padding: 0 48px 17px 16px;
	border-top: 1px solid #f2e5df;
	background: #fff;
}
.faq-page-v2 .faq-answer p { margin: 14px 0 0; }

.faq-page-v2 .studio-cta-section { padding: 50px 0; }
.faq-page-v2 .studio-cta-panel.studio-cta-panel--stacked {
	max-width: 760px;
	padding: 32px 34px;
	border-radius: 16px;
	box-shadow: 0 12px 32px rgba(76, 48, 38, .07);
}
.faq-page-v2 .studio-cta-panel--stacked h2 { margin-top: 5px; font-size: clamp(28px, 3vw, 38px); }
.faq-page-v2 .studio-cta-panel--stacked > div:first-child > p:last-child {
	margin: 10px auto 0;
	color: #705e57;
	font-size: 15px;
	line-height: 1.55;
}
.faq-page-v2 .studio-cta-panel--stacked .studio-cta-actions { margin-top: 20px; gap: 10px; }
.faq-page-v2 .studio-cta-panel--stacked .studio-cta-actions .btn { min-width: 0; padding: 11px 17px; }

@media (max-width: 760px) {
	.faq-page-v2 .faq-tools-panel { margin-top: -20px; padding: 19px 17px 17px; }
	.faq-page-v2 .faq-group { padding: 19px 16px; }
	.faq-page-v2 .faq-group-heading { align-items: flex-start; }
	.faq-page-v2 .faq-group summary { padding-left: 14px; }
	.faq-page-v2 .faq-answer { padding-left: 14px; padding-right: 14px; }
	.faq-page-v2 .studio-cta-section { padding: 36px 0; }
	.faq-page-v2 .studio-cta-panel.studio-cta-panel--stacked { padding: 27px 18px; }
}
/* Stable FAQ search icon without native search-field overlap. */
.faq-page-v2 .faq-search-wrap::before {
	content: "";
	position: absolute;
	z-index: 1;
	left: 18px;
	top: 50%;
	width: 12px;
	height: 12px;
	transform: translateY(-58%);
	border: 2px solid #8a7770;
	border-radius: 50%;
	pointer-events: none;
}
.faq-page-v2 .faq-search-wrap::after {
	content: "";
	position: absolute;
	z-index: 1;
	left: 30px;
	top: calc(50% + 5px);
	width: 7px;
	height: 2px;
	transform: rotate(45deg);
	border-radius: 2px;
	background: #8a7770;
	pointer-events: none;
}
.faq-page-v2 input.faq-search-input {
	-webkit-appearance: none;
	appearance: none;
	padding-left: 48px !important;
}
.faq-page-v2 input.faq-search-input::-webkit-search-decoration,
.faq-page-v2 input.faq-search-input::-webkit-search-cancel-button,
.faq-page-v2 input.faq-search-input::-webkit-search-results-button,
.faq-page-v2 input.faq-search-input::-webkit-search-results-decoration {
	display: none;
	-webkit-appearance: none;
}
/* FAQ search uses the theme's Font Awesome icon set. */
.faq-page-v2 .faq-search-wrap::before,
.faq-page-v2 .faq-search-wrap::after {
	content: none;
	display: none;
}
.faq-page-v2 .faq-search-icon {
	position: absolute;
	z-index: 1;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: #8a7770;
	font-size: 15px;
	line-height: 1;
	pointer-events: none;
}
/* WordPress-managed header and footer navigation. */
.main-nav .header-menu {
	display: flex;
	width: 100%;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}
.main-nav .header-menu > li {
	position: relative;
	display: flex;
	align-items: center;
	margin: 0;
}
.main-nav .header-menu > li + li { border-left: 1px solid rgba(226, 188, 178, .72); }
.main-nav .header-menu a { text-decoration: none; }
.main-nav .header-menu > li.current-menu-item > a,
.main-nav .header-menu > li.current-menu-parent > a,
.main-nav .header-menu > li.current_page_parent > a {
	color: #b84e5d;
	background: linear-gradient(180deg, rgba(255,239,238,.98), rgba(255,218,216,.74));
	box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}
.main-nav .menu-item-has-children > a::after {
	content: "\f078";
	margin-left: 6px;
	font-family: "Font Awesome 6 Free";
	font-size: 9px;
	font-weight: 900;
}
.main-nav .sub-menu {
	position: absolute;
	z-index: 1000;
	top: calc(100% + 8px);
	left: 0;
	display: none;
	min-width: 210px;
	margin: 0;
	padding: 8px;
	border: 1px solid rgba(226,188,178,.85);
	border-radius: 13px;
	background: #fff;
	box-shadow: 0 16px 38px rgba(74,48,40,.14);
	list-style: none;
}
.main-nav .sub-menu::before {
	content: "";
	position: absolute;
	bottom: 100%;
	left: 0;
	width: 100%;
	height: 10px;
}
.main-nav .menu-item-has-children:hover > .sub-menu,
.main-nav .menu-item-has-children:focus-within > .sub-menu { display: block; }
.main-nav .sub-menu li { margin: 0; }
.main-nav .sub-menu a {
	display: flex;
	width: 100%;
	min-height: 38px;
	align-items: center;
	padding: 8px 11px;
	border-radius: 8px;
	font-size: 13px;
}
.main-nav .sub-menu a:hover,
.main-nav .sub-menu .current-menu-item > a { color: #b84e5d; background: #fff0f3; }

.site-footer .footer-menu,
.site-footer .footer-legal-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}
.site-footer .footer-menu li { margin: 0; }
.site-footer .footer-menu a { display: inline-flex; }
.footer-legal-menu { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-legal-menu li { margin: 0; }
.footer-legal-menu a { display: inline !important; margin: 0 !important; }

@media (max-width: 760px) {
	.main-nav.open { display: block; }
	.main-nav .header-menu { display: flex; align-items: stretch; flex-direction: column; }
	.main-nav .header-menu > li { display: block; width: 100%; border-left: 0 !important; }
	.main-nav .header-menu > li > a { width: 100%; justify-content: flex-start; }
	.main-nav .sub-menu {
		position: static;
		display: block;
		min-width: 0;
		margin: 0 0 6px 15px;
		padding: 3px 0 3px 12px;
		border: 0;
		border-left: 2px solid #f1d3d2;
		border-radius: 0;
		box-shadow: none;
	}
	.main-nav .sub-menu::before { display: none; }
	.main-nav .sub-menu a { min-height: 36px; font-size: 14px; }
	.footer-legal-menu { gap: 10px 15px; }
}
/* Unified compact, stacked CTA structure across the site. */
.about-cta-section,
.studio-cta-section,
.patterns-final-cta,
.talisman-final-cta {
	padding-top: 48px;
	padding-bottom: 48px;
}
.site-cta-panel {
	display: flex !important;
	width: min(calc(100% - 40px), 780px);
	max-width: 780px !important;
	align-items: center !important;
	justify-content: center !important;
	flex-direction: column !important;
	gap: 0 !important;
	margin-right: auto;
	margin-left: auto;
	padding: 30px 34px !important;
	text-align: center;
}
.site-cta-panel > div:not(.site-cta-actions) {
	width: 100%;
	max-width: 660px;
}
.site-cta-panel .eyebrow,
.site-cta-panel .patterns-kicker,
.site-cta-panel .talisman-kicker,
.site-cta-panel .story-section-label {
	margin: 0 0 6px;
}
.site-cta-panel h2 {
	max-width: 660px !important;
	margin: 0 auto;
	font-size: clamp(28px, 3vw, 38px) !important;
	line-height: 1.16;
}
.site-cta-panel h2 + p {
	max-width: 600px;
	margin: 10px auto 0;
	font-size: 15px;
	line-height: 1.55;
}
.site-cta-actions {
	display: flex !important;
	width: auto !important;
	max-width: 100% !important;
	align-items: center;
	justify-content: center !important;
	flex-wrap: wrap;
	gap: 10px !important;
	margin-top: 20px !important;
}
.site-cta-actions .btn,
.site-cta-actions .about-text-link,
.site-cta-actions .studio-text-link {
	display: inline-flex;
	width: auto;
	min-width: 0;
	align-items: center;
	justify-content: center;
	margin: 0 !important;
	padding: 11px 17px;
}
.talisman-final-panel.site-cta-panel { padding-bottom: 26px !important; }
.talisman-final-cta .talisman-disclaimer { margin-right: auto; margin-left: auto; text-align: center; }
.story-cta.site-cta-panel { margin-top: 34px; margin-bottom: 0; }
.story-cta.site-cta-panel .story-cta__icon { margin: 0 auto 12px; }

@media (max-width: 640px) {
	.about-cta-section,
	.studio-cta-section,
	.patterns-final-cta,
	.talisman-final-cta { padding-top: 34px; padding-bottom: 34px; }
	.site-cta-panel {
		width: min(calc(100% - 24px), 780px);
		padding: 25px 18px !important;
	}
	.site-cta-actions { width: 100% !important; flex-direction: column; }
	.site-cta-actions .btn,
	.site-cta-actions .about-text-link,
	.site-cta-actions .studio-text-link { width: 100%; }
}
/* Floating contact 2026 responsive redesign. */
.floating-contact-bar { width: 72px; overflow: visible; border-radius: 16px; box-shadow: 0 16px 40px rgba(60,47,47,.2); }
.floating-contact-item { min-height: 74px; gap: 7px; }
.floating-contact-item:first-child { border-radius: 16px 16px 0 0; }
.floating-contact-item:last-child { border-radius: 0 0 16px 16px; }
.floating-contact-icon { width: 26px; height: 26px; font-size: 21px; line-height: 1; }
.floating-contact-icon i { display: block; line-height: 1; }
@media (max-width: 680px) {
  body { padding-bottom: calc(86px + env(safe-area-inset-bottom)); }
  .floating-contact-bar { top:auto; right:12px; bottom:calc(10px + env(safe-area-inset-bottom)); left:12px; z-index:1300; width:auto; height:64px; flex-direction:row; overflow:visible; border:1px solid rgba(233,93,115,.2); border-radius:18px; background:rgba(255,250,248,.96); box-shadow:0 12px 34px rgba(60,47,47,.18); transform:none; backdrop-filter:blur(14px); }
  .floating-contact-item { min-width:0; min-height:62px; flex:1 1 25%; gap:4px; padding:7px 3px 6px; border-right:1px solid rgba(233,93,115,.14); border-bottom:0; background:transparent; color:#4b3734; }
  .floating-contact-item:first-child { border-radius:17px 0 0 17px; }
  .floating-contact-item:last-child { border-right:0; border-radius:0 17px 17px 0; }
  .floating-contact-item:hover, .floating-contact-item:focus-visible, .floating-contact-item.is-open { background:#fff0f2; color:#d94f68; }
  .floating-contact-item:focus-visible { outline:2px solid #f57f91; outline-offset:-3px; }
  .floating-contact-icon, .floating-contact-icon svg { width:24px; height:24px; }
  .floating-contact-icon { font-size:21px; color:#e95d73; }
  .floating-back-top .floating-contact-icon { color:#5a4541; }
  .floating-contact-label { max-width:none; font-size:10px; line-height:1.1; color:inherit; }
  .floating-contact-qr { top:auto; right:auto; bottom:calc(100% + 13px); left:50%; width:156px; padding:12px; border-radius:14px; transform:translate(-50%,8px); }
  .floating-contact-qr::after { top:auto; right:auto; bottom:-7px; left:50%; border-top:0; border-right:1px solid rgba(47,41,38,.1); border-bottom:1px solid rgba(47,41,38,.1); transform:translateX(-50%) rotate(45deg); }
  .floating-contact-item:first-child .floating-contact-qr { left:0; transform:translate(0,8px); }
  .floating-contact-item:first-child .floating-contact-qr::after { left:25%; }
  .floating-contact-item:hover .floating-contact-qr, .floating-contact-item:focus-visible .floating-contact-qr, .floating-contact-item.is-open .floating-contact-qr { transform:translate(-50%,0); }
  .floating-contact-item:first-child:hover .floating-contact-qr, .floating-contact-item:first-child:focus-visible .floating-contact-qr, .floating-contact-item:first-child.is-open .floating-contact-qr { transform:translate(0,0); }
  .floating-contact-qr img { width:130px; height:130px; }
  .floating-email-card { display:none; }
}
@media (max-width:370px) { .floating-contact-bar { right:8px; left:8px; } .floating-contact-label { font-size:9px; } }
/* Compact flush mobile contact dock. */
@media (max-width: 680px) {
  body { padding-bottom: calc(54px + env(safe-area-inset-bottom)); }
  .floating-contact-bar {
    right: 0;
    bottom: 0;
    left: 0;
    height: calc(52px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 13px 13px 0 0;
    box-shadow: 0 -5px 18px rgba(60,47,47,.12);
  }
  .floating-contact-item {
    min-height: 52px;
    gap: 2px;
    padding: 5px 2px 4px;
  }
  .floating-contact-item:first-child { border-radius: 13px 0 0 0; }
  .floating-contact-item:last-child { border-radius: 0 13px 0 0; }
  .floating-contact-icon,
  .floating-contact-icon svg { width: 19px; height: 19px; }
  .floating-contact-icon { font-size: 17px; }
  .floating-contact-label { font-size: 9px; line-height: 1; }
  .floating-contact-qr { bottom: calc(100% + 9px); }
}
@media (max-width: 370px) {
  .floating-contact-bar { right: 0; left: 0; }
}
/* Flush mobile dock square edges. */
@media (max-width: 680px) {
  .floating-contact-bar,
  .floating-contact-item:first-child,
  .floating-contact-item:last-child { border-radius: 0; }
}
/* Professional compact mobile homepage. */
@media (max-width: 760px) {
  .cms-home .hero { padding: 34px 0 30px; }
  .cms-home .hero-inner { gap: 0; }
  .cms-home .hero-visual { display: none; }
  .cms-home .eyebrow { margin-bottom: 10px; font-size: 14px; }
  .cms-home .hero h1 { max-width: 350px; font-size: clamp(36px, 10.5vw, 42px); line-height: .98; }
  .cms-home .hero-desc { margin: 16px 0 18px; font-size: 14px; line-height: 1.55; }
  .cms-home .hero-proof-strip { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 7px; margin-bottom: 18px; }
  .cms-home .hero-proof-strip div { min-height: 62px; padding: 10px 8px; border-radius: 11px; box-shadow: none; }
  .cms-home .hero-proof-strip strong { margin-bottom: 3px; font-size: 20px; }
  .cms-home .hero-proof-strip span { font-size: 10px; line-height: 1.2; }
  .cms-home .hero-buttons { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
  .cms-home .hero-buttons .btn { min-height: 42px; padding: 0 8px; font-size: 12px; }
  .cms-home .hero-buttons .play-icon { width: 18px; height: 18px; font-size: 8px; }

  .cms-home .section { padding: 30px 0; }
  .cms-home .section-heading { margin-bottom: 17px; }
  .cms-home .section-heading h2,
  .cms-home .faq-section h2 { margin-bottom: 0; font-size: 25px; line-height: 1.12; }
  .cms-home .row-heading { display: flex; align-items: flex-end; gap: 10px; }
  .cms-home .row-heading > div { min-width: 0; }
  .cms-home .view-link { flex: 0 0 auto; margin-top: 0; font-size: 11px; }

  .cms-home .category-grid { gap: 10px; }
  .cms-home .category-card { min-height: 0; border-radius: 12px; }
  .cms-home .category-img { height: 108px; }
  .cms-home .category-card h3 { min-height: 44px; padding: 8px 6px; font-size: 12px; }

  .cms-home .promo-panel { gap: 16px; padding: 18px; border-radius: 16px; }
  .cms-home .promo-visual { order: -1; min-height: 0; }
  .cms-home .promo-img { width: 100%; max-height: 178px; aspect-ratio: 16 / 9; border-radius: 12px; }
  .cms-home .promo-content h2 { margin-bottom: 10px; font-size: 28px; }
  .cms-home .promo-content p:not(.eyebrow) { margin-bottom: 16px; font-size: 14px; line-height: 1.55; }
  .cms-home .promo-content .btn { min-height: 42px; padding: 0 18px; font-size: 13px; }
  .cms-home .promo-disclaimer { margin-top: 10px; font-size: 10px; }

  .cms-home .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
  .cms-home .product-card { min-height: 0; border-radius: 12px; }
  .cms-home .product-info { min-height: 116px; gap: 6px; padding: 10px 8px; }
  .cms-home .product-info h3 { min-height: 34px; font-size: 12px; line-height: 1.25; }
  .cms-home .price { font-size: 13px; }
  .cms-home .add-to-cart-btn { width: 100%; min-height: 32px; padding: 6px 7px; font-size: 11px; }

  .cms-home .tutorial-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
  .cms-home .tutorial-card { min-height: 0; border-radius: 12px; }
  .cms-home .tutorial-thumb { aspect-ratio: 4 / 3; }
  .cms-home .play-overlay { left: 9px; bottom: 9px; width: 30px; height: 30px; font-size: 10px; }
  .cms-home .tutorial-info { min-height: 62px; gap: 0; padding: 10px; }
  .cms-home .tutorial-info h3 { min-height: 2.5em; margin: 0; font-size: 12px; line-height: 1.25; }
  .cms-home .tutorial-info .tag,
  .cms-home .tutorial-info p { display: none; }

  .cms-home .custom-panel { min-height: 0; gap: 18px; padding: 20px; border-radius: 16px; }
  .cms-home .custom-text h2 { margin-bottom: 10px; font-size: 28px; }
  .cms-home .custom-text p { margin-bottom: 16px; font-size: 14px; line-height: 1.55; }
  .cms-home .custom-text .btn { min-height: 42px; padding: 0 16px; font-size: 13px; }
  .cms-home .custom-features { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; padding: 0; }
  .cms-home .custom-features div { min-height: 0; gap: 7px; font-size: 12px; line-height: 1.3; }
  .cms-home .custom-features strong { flex-basis: 24px; width: 24px; height: 24px; font-size: 10px; }
  .cms-home .custom-visual { display: none; }

  .cms-home .blog-grid { grid-template-columns: minmax(0,1fr); gap: 10px; }
  .cms-home .blog-card { display: grid; grid-template-columns: 106px minmax(0,1fr); min-height: 94px; border-radius: 12px; }
  .cms-home .blog-img { width: 106px; height: 94px; aspect-ratio: auto; }
  .cms-home .blog-content { min-height: 0; justify-content: center; gap: 0; padding: 11px 12px; }
  .cms-home .blog-content h3 { min-height: 0; margin: 0; font-size: 14px; line-height: 1.3; }
  .cms-home .blog-content p,
  .cms-home .blog-content span { display: none; }

  .cms-home .faq-section { padding-top: 24px; }
  .cms-home .faq-grid { gap: 9px; margin-top: 14px; }
  .cms-home .faq-grid details { min-height: 0; padding: 12px 14px; }
}
/* Sitewide professional mobile refinement. */
@media (max-width: 760px) {
  /* Shared mobile rhythm. */
  .shop-hero { padding: 34px 0 30px; }
  .shop-hero h1 { font-size: clamp(34px, 10vw, 42px); line-height: 1.04; }
  .shop-hero p { font-size: 14px; line-height: 1.55; }
  .shop-content { padding-top: 28px; padding-bottom: 32px; }
  .shop-filters { gap: 12px; margin-bottom: 20px; }
  .filter-group, .tutorial-filters, .blog-filter-tabs { overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; }
  .filter-group::-webkit-scrollbar, .tutorial-filters::-webkit-scrollbar, .blog-filter-tabs::-webkit-scrollbar { display: none; }
  .filter-btn { flex: 0 0 auto; }
  .seo-text { padding-top: 28px; padding-bottom: 32px; }
  .seo-text .container { padding: 22px 18px !important; }
  .seo-text h2 { font-size: 26px; }

  /* Shop: always keep two products per row on phones. */
  .shop-products-container { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
  .shop-product-item { border-radius: 12px; }
  .shop-product-details { display: flex; min-height: 116px; flex-direction: column; padding: 10px 8px; }
  .shop-product-details h3 { min-height: 2.5em; margin-bottom: 5px; font-size: 12px; line-height: 1.25; }
  .shop-product-details h3 a { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .shop-product-price { margin-bottom: 8px; font-size: 14px; }
  .shop-add-cart { min-height: 32px; margin-top: auto; padding: 6px; border-radius: 8px; font-size: 11px; }
  .shop-product-badge { top: 7px; left: 7px; padding: 3px 7px; font-size: 9px; }

  /* Tutorial archive: compact two-column lesson cards. */
  .tutorial-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
  .tutorial-item { display: flex; min-width: 0; flex-direction: column; border-radius: 12px; }
  .tutorial-thumb-lg { min-height: 0; aspect-ratio: 4 / 3; }
  .tutorial-thumb-lg .duration { right: 7px; bottom: 7px; font-size: 9px; }
  .tutorial-details { display: flex; min-height: 104px; flex: 1; flex-direction: column; padding: 10px; }
  .tutorial-details .tag, .tutorial-details > p, .tutorial-meta { display: none; }
  .tutorial-details h3 { min-height: 2.5em; margin: 0; font-size: 13px; line-height: 1.25; }
  .tutorial-details h3 a { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .tutorial-actions { display: block; margin-top: auto; padding-top: 8px; }
  .tutorial-actions .btn-primary { width: 100% !important; min-height: 32px; height: 32px; padding: 0 7px; font-size: 10px; }
  .tutorial-actions .tutorial-detail-link { display: none; }
  body.page-template-page-tutorials .seo-text, body.post-type-archive-ays_video .seo-text { padding-bottom: 32px; }

  /* Free patterns: hide duplicate hero art and make the library scannable. */
  .patterns-learning-page .section { padding: 32px 0; }
  .patterns-learning-hero { padding: 36px 0 32px; }
  .patterns-learning-hero-inner { gap: 0; }
  .patterns-learning-visual { display: none; }
  .patterns-learning-copy h1 { font-size: 38px; }
  .patterns-learning-copy > p { margin: 16px 0 20px; font-size: 14px; line-height: 1.55; }
  .patterns-learning-actions { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
  .patterns-learning-actions .btn { min-height: 40px; padding: 0 8px; font-size: 11px; }
  .patterns-path-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .patterns-path-grid a, .patterns-path-grid a:last-child { min-height: 94px; padding: 14px 8px; border-right: 1px solid rgba(47,41,38,.08); border-bottom: 0; text-align: center; }
  .patterns-path-grid span { font-size: 9px; }
  .patterns-path-grid strong { margin: 7px 0 0; font-size: 15px; }
  .patterns-path-grid p { display: none; }
  .patterns-section-head { margin-bottom: 18px; }
  .patterns-section-head h2, .connected-panel h2 { font-size: 27px; }
  .patterns-section-head > p:not(.patterns-kicker) { display: none; }
  .linked-patterns-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
  .linked-pattern-card { min-width: 0; border-radius: 12px; }
  .linked-pattern-card .pattern-content { min-height: 112px; padding: 10px; }
  .linked-pattern-card .pattern-content h3 { min-height: 2.5em; margin: 6px 0; font-size: 13px; line-height: 1.25; }
  .linked-pattern-card .pattern-content p { display: none; }
  .linked-pattern-card .pattern-meta { gap: 4px; font-size: 9px; }
  .pattern-resource-links { grid-template-columns: 1fr; gap: 0; }
  .pattern-resource-links a { min-height: 30px; font-size: 10px; }
  .pattern-resource-links a:not(:first-child) { display: none; }
  .connected-learning-grid { gap: 10px; }
  .connected-panel { padding: 18px; }
  .connected-panel p:not(.patterns-kicker) { display: none; }
  .connected-panel .btn { min-height: 38px; margin-top: 14px; font-size: 11px; }
  .tips-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
  .tip-card { padding: 16px 12px; }
  .tip-card h3 { font-size: 16px; }
  .tip-card p { display: none; }

  /* Blog archive: compact platform links and two-column content cards. */
  .platform-blog-page .section { padding: 32px 0; }
  .platform-blog-hero { padding: 36px 0 32px; }
  .platform-blog-hero-inner { gap: 0; }
  .platform-blog-visual { display: none; }
  .platform-blog-copy h1 { font-size: 38px; }
  .platform-blog-copy > p { margin: 16px 0 20px; font-size: 14px; line-height: 1.55; }
  .platform-hero-actions { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
  .platform-hero-actions .btn { min-height: 40px; padding: 0 8px; font-size: 11px; }
  .platform-link-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .platform-link-card, .platform-link-card:last-child { min-height: 112px; padding: 15px 12px; border-right: 1px solid rgba(47,41,38,.08); }
  .platform-link-card span { height: 24px; margin-bottom: 8px; font-size: 9px; }
  .platform-link-card strong { font-size: 18px; }
  .platform-link-card p { display: none; }
  .platform-section-head { margin-bottom: 18px; }
  .platform-section-head h2 { font-size: 27px; }
  .platform-section-head > p:not(.platform-kicker) { display: none; }
  .platform-content-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
  .platform-content-card { min-width: 0; border-radius: 12px; }
  .platform-card-media { aspect-ratio: 4 / 3; }
  .platform-pill, .content-type-pill { top: 7px; min-height: 21px; padding: 0 6px; font-size: 8px; }
  .platform-pill { left: 7px; }
  .content-type-pill { right: 7px; }
  .platform-card-body { min-height: 90px; padding: 10px; }
  .platform-card-body h3 { min-height: 2.5em; margin: 0; font-size: 13px; line-height: 1.25; }
  .platform-card-body h3 a { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .platform-card-body p { display: none; }
  .platform-card-actions { grid-template-columns: 1fr; margin-top: 8px; }
  .platform-card-actions a { min-height: 29px; padding: 0 5px; font-size: 9px; }
  .platform-card-actions a + a { display: none; }
  .platform-strategy-section { display: none; }

  /* About: one key image, then compact two-column proof and card grids. */
  .about-page-v2 .section { padding: 32px 0; }
  .about-studio-hero { padding: 36px 0 32px; }
  .about-studio-hero__inner { gap: 0; }
  .about-studio-hero__visual { display: none; }
  .about-studio-hero__copy h1 { font-size: 38px; }
  .about-studio-hero__copy p:not(.eyebrow) { margin-top: 16px; font-size: 14px; line-height: 1.55; }
  .about-studio-hero__actions { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; margin-top: 20px; }
  .about-studio-hero__actions .btn { min-height: 40px; padding: 0 8px; font-size: 11px; }
  .about-studio-proof { padding: 14px 0; }
  .about-proof-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .about-proof-grid div, .about-proof-grid div:nth-child(2) { padding: 13px; border-right: 1px solid var(--line,#eee2dc); }
  .about-proof-grid strong { font-size: 22px; }
  .about-proof-grid span { margin-top: 3px; font-size: 11px; }
  .about-story-layout { gap: 20px; }
  .about-story-media img { max-height: 230px; aspect-ratio: 16 / 9; }
  .about-story-copy h2, .about-process-copy h2, .about-culture-panel h2 { font-size: 29px; }
  .about-story-copy p:not(.eyebrow), .about-process-copy p, .about-culture-panel p { font-size: 14px; line-height: 1.55; }
  .about-product-grid, .about-value-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin-top: 18px; }
  .about-product-card strong { padding: 10px; font-size: 13px; }
  .about-product-card span { display: none; }
  .about-value-card { padding: 15px 12px; }
  .about-value-card__mark { width: 30px; height: 30px; font-size: 11px; }
  .about-value-card h3 { margin: 10px 0 6px; font-size: 16px; }
  .about-value-card p { font-size: 12px; line-height: 1.45; }
  .about-process-list li { grid-template-columns: 38px minmax(0,1fr); gap: 10px; padding: 13px 0; }
  .about-process-list li::before { width: 32px; height: 32px; font-size: 10px; }
  .about-culture-panel { gap: 16px; padding: 18px; }
  .about-culture-panel img { max-height: 180px; aspect-ratio: 16 / 9; }
  .about-learning-layout { gap: 18px; }
  .about-learning-grid a { padding: 15px; }

  /* Talismans: products and meaning cards use two columns; decorative hero art is removed. */
  .talisman-page .section { padding: 32px 0; }
  .talisman-minimal-hero { padding: 36px 0 32px; }
  .talisman-minimal-hero-inner { gap: 0; }
  .talisman-editorial-visual { display: none; }
  .talisman-minimal-copy h1 { font-size: 38px; }
  .talisman-minimal-copy > p:not(.talisman-kicker) { margin: 16px 0 20px; font-size: 14px; line-height: 1.55; }
  .talisman-hero-actions { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
  .talisman-hero-actions .btn { min-height: 40px; padding: 0 8px; font-size: 11px; }
  .talisman-belief-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .talisman-belief-grid > div, .talisman-belief-grid > div:last-child { min-height: 104px; padding: 15px 10px; border-right: 1px solid rgba(47,41,38,.08); }
  .talisman-product-row { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
  .talisman-clean-card { min-width: 0; border-radius: 12px; }
  .talisman-clean-card .product-info { min-height: 134px; padding: 10px; }
  .talisman-clean-card .product-info h3 { min-height: 2.35em; margin: 5px 0; font-size: 14px; }
  .talisman-clean-card .product-desc { display: none; }
  .talisman-clean-card .price { margin: auto 0 8px; font-size: 15px; }
  .talisman-clean-card .add-to-cart-btn { height: 32px; flex-basis: 32px; font-size: 10px; }
  .talisman-knot-story-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
  .talisman-knot-story-card { min-width: 0; }
  .talisman-knot-story-card > div { padding: 10px; }
  .talisman-knot-story-card h3 { font-size: 15px; }
  .talisman-knot-story-card p, .talisman-story-link { display: none; }
  .talisman-temple-inner { gap: 20px; }
  .talisman-temple-image img { height: 190px; }
  .talisman-service-list { margin: 18px 0; }
  .talisman-service-list div { padding: 12px 0; }
  .talisman-meaning-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .talisman-meaning-grid > div { padding: 15px; }
  .meaning-dot { width: 18px; height: 18px; margin-bottom: 10px; }
  .talisman-meaning-grid strong { font-size: 18px; }
  .talisman-meaning-grid p { font-size: 11px; line-height: 1.4; }

  /* Detail and service pages: smaller hero/media and tighter cards without changing forms. */
  .tutorial-single__hero { padding: 22px 18px; }
  .tutorial-single__hero h1 { font-size: 36px; }
  .tutorial-facts { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .tutorial-content-card, .tutorial-next-card { padding: 20px 17px; }
  .studio-page-v2 .section, .faq-page-v2 .section, .contact-page-v2 .section { padding-top: 32px; padding-bottom: 32px; }
  .studio-hero, .policy-hero { padding-top: 36px; padding-bottom: 32px; }
  .studio-hero__media, .policy-hero__media { display: none; }
  .checkout-section, .cart-section, .account-section { padding-top: 28px; padding-bottom: 32px; }
  .checkout-section form.woocommerce-checkout #customer_details .col-1,
  .checkout-section form.woocommerce-checkout #customer_details .col-2 { padding: 16px; }
}
@media (max-width: 370px) {
  .shop-products-container, .tutorial-list, .linked-patterns-grid, .platform-content-grid, .talisman-product-row, .talisman-knot-story-grid { gap: 7px; }
}
/* Mobile shop filters stay inside the viewport. */
@media (max-width: 760px) {
  .shop-filter-bar { min-width: 0; overflow: hidden; }
  .shop-filter-bar .filter-group {
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }
  .shop-filter-bar .filter-group::-webkit-scrollbar { display: none; }
  .shop-filter-bar .filter-btn { flex: 0 0 auto; }
}
@media (max-width: 760px) {
  .shop-filters { min-width: 0; max-width: 100%; overflow: hidden; }
  .shop-filters .filter-group {
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }
  .shop-filters .filter-group::-webkit-scrollbar { display: none; }
  .shop-filters .filter-btn { flex: 0 0 auto; }
}
/* Mobile primary-menu submenus open only after tapping their parent item. */
@media (max-width: 760px) {
  .main-nav .menu-item-has-children > .sub-menu {
    display: none !important;
  }
  .main-nav .menu-item-has-children.submenu-open > .sub-menu {
    display: block !important;
  }
  .main-nav .menu-item-has-children > a::after {
    transition: transform .2s ease;
  }
  .main-nav .menu-item-has-children.submenu-open > a::after {
    transform: rotate(180deg);
  }
}
/* Theme fallback About dropdown follows the same mobile accordion behavior. */
@media (max-width: 760px) {
  .main-nav .nav-dropdown > .nav-dropdown-content { display: none !important; }
  .main-nav .nav-dropdown.submenu-open > .nav-dropdown-content { display: block !important; }
  .main-nav .nav-dropdown-btn span { display: inline-block; transition: transform .2s ease; }
  .main-nav .nav-dropdown.submenu-open > .nav-dropdown-btn span { transform: rotate(180deg); }
}