/*
 * AquaArtistryCuts — main stylesheet
 * Palette is fixed by the brand brief. Everything is a CSS variable so dark
 * mode is a single override block rather than a second set of rules.
 */

:root {
	--aac-bg: #F7FFFC;
	--aac-primary: #397B79;
	--aac-aqua: #8DE1E5;
	--aac-soft-aqua: #DDF4F0;
	--aac-muted-teal: #97C0BD;
	--aac-white: #FFFFFF;
	--aac-text: #253838;
	--aac-text-muted: #667777;
	--aac-border: #D5E9E4;
	--aac-card: #FFFFFF;
	--aac-success: #4F9B78;
	--aac-radius: 18px;

	--aac-radius-sm: 12px;
	--aac-radius-pill: 999px;
	--aac-shadow: 0 1px 2px rgba(37, 56, 56, .04), 0 10px 30px rgba(57, 123, 121, .08);
	--aac-shadow-lift: 0 4px 12px rgba(37, 56, 56, .06), 0 22px 48px rgba(57, 123, 121, .15);
	--aac-focus: #1F6F6D;

	--aac-wrap: 1200px;
	--aac-gap: 24px;
	--aac-speed: 180ms;
	--aac-ease: cubic-bezier(.2, .7, .3, 1);

	--aac-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

[data-theme="dark"] {
	--aac-bg: #132020;
	--aac-card: #192929;
	--aac-text: #EEF8F5;
	--aac-text-muted: #AFC5C2;
	--aac-border: #29413F;
	--aac-white: #192929;
	--aac-soft-aqua: #1E3433;
	--aac-shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 8px 24px rgba(0, 0, 0, .25);
	--aac-shadow-lift: 0 2px 4px rgba(0, 0, 0, .35), 0 14px 34px rgba(0, 0, 0, .35);
	--aac-focus: #8DE1E5;
}

/* ---------------------------------------------------------------- reset */

*, *::before, *::after { box-sizing: border-box; }

::selection {
	background: color-mix(in srgb, var(--aac-aqua) 58%, var(--aac-white));
	color: var(--aac-title, var(--aac-text));
}

::-moz-selection {
	background: color-mix(in srgb, var(--aac-aqua) 58%, var(--aac-white));
	color: var(--aac-title, var(--aac-text));
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	background: radial-gradient(circle at 7% 0%, rgba(141, 225, 229, .2), transparent 26rem), var(--aac-bg);
	color: var(--aac-text);
	font-family: var(--aac-font);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; }
img { border-style: none; }

h1, h2, h3, h4 {
	margin: 0 0 .5em;
	line-height: 1.2;
	font-weight: 650;
	letter-spacing: -.015em;
	color: var(--aac-text);
}

h1 { font-size: clamp(1.75rem, 1.3rem + 2vw, 2.6rem); }
h2 { font-size: clamp(1.35rem, 1.1rem + 1.1vw, 1.85rem); }
h3 { font-size: 1.05rem; }

p { margin: 0 0 1em; }

a { color: var(--aac-primary); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--aac-focus); }

ul, ol { margin: 0 0 1em; padding-left: 1.2em; }

button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
	outline: 2px solid var(--aac-focus);
	outline-offset: 2px;
	border-radius: 4px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 200;
	padding: 12px 18px;
	background: var(--aac-primary);
	color: #fff;
	border-radius: 0 0 var(--aac-radius-sm) 0;
	text-decoration: none;
}
.skip-link:focus { left: 0; color: #fff; }

.wrap {
	width: 100%;
	max-width: var(--aac-wrap);
	margin: 0 auto;
	padding: 0 20px;
}

.site { display: flex; flex-direction: column; min-height: 100vh; }
.site-main { flex: 1 0 auto; }

.eyebrow {
	display: inline-block;
	font-size: .74rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--aac-primary);
	margin-bottom: 6px;
}
.eyebrow--link { text-decoration: none; }
.eyebrow--link:hover { color: var(--aac-focus); }

/* -------------------------------------------------------------- buttons */

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border: 1px solid transparent;
	border-radius: var(--aac-radius-sm);
	font-size: .95rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background-color var(--aac-speed) var(--aac-ease),
		border-color var(--aac-speed) var(--aac-ease),
		color var(--aac-speed) var(--aac-ease),
		transform var(--aac-speed) var(--aac-ease);
}

.button--primary { background: linear-gradient(135deg, var(--aac-primary), var(--aac-focus)); border-color: var(--aac-primary); color: #fff; box-shadow: 0 8px 20px rgba(57, 123, 121, .16); }
.button--primary:hover { background: linear-gradient(135deg, var(--aac-focus), var(--aac-primary)); border-color: var(--aac-focus); color: #fff; transform: translateY(-1px); }
.button--primary:active { transform: translateY(1px); }

.button--secondary { background: transparent; border-color: var(--aac-primary); color: var(--aac-primary); }
.button--secondary:hover { background: var(--aac-soft-aqua); color: var(--aac-focus); }
.button--secondary:active { transform: translateY(1px); }

.button--ghost { background: transparent; border-color: var(--aac-border); color: var(--aac-text); }
.button--ghost:hover { border-color: var(--aac-muted-teal); background: var(--aac-card); }

.button--block { width: 100%; }

.button[aria-disabled="true"], .button:disabled {
	opacity: .5;
	pointer-events: none;
}

.text-link { font-weight: 600; text-decoration: underline; }

.icon-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid transparent;
	border-radius: var(--aac-radius-sm);
	background: transparent;
	color: var(--aac-text);
	cursor: pointer;
	transition: background-color var(--aac-speed) var(--aac-ease), border-color var(--aac-speed) var(--aac-ease);
}
.icon-button:hover { background: var(--aac-soft-aqua); border-color: var(--aac-border); }

/* --------------------------------------------------------- announcement */

.announcement {
	background: linear-gradient(90deg, var(--aac-primary), #4F9996 54%, var(--aac-primary));
	color: #fff;
	font-size: .875rem;
	text-align: center;
}
.announcement__inner { max-width: var(--aac-wrap); margin: 0 auto; padding: 5px 20px; }
.announcement a { color: #fff; text-decoration: underline; }

/* --------------------------------------------------------------- header */

.site-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: color-mix(in srgb, var(--aac-card) 86%, transparent);
	backdrop-filter: saturate(150%) blur(10px);
	border-bottom: 1px solid var(--aac-border);
}

.site-header__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	max-width: var(--aac-wrap);
	margin: 0 auto;
	padding: 10px 20px;
}

.site-header__left { display: flex; align-items: center; gap: 8px; justify-self: start; }
.site-header__right { display: flex; align-items: center; gap: 4px; justify-self: end; }
.site-header__brand { display: inline-flex; margin-left: 8px; padding-left: 12px; border-left: 1px solid var(--aac-border); }

.site-brand { display: inline-flex; align-items: center; text-decoration: none; color: var(--aac-text); }
.site-brand--text { font-weight: 700; font-size: 1.1rem; letter-spacing: -.02em; }
.site-logo { display: block; }
.site-logo--mobile { display: none; }

.menu-toggle { display: none; }

.primary-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.primary-menu li { position: relative; }
.primary-menu a {
	display: block;
	padding: 9px 12px;
	border-radius: var(--aac-radius-sm);
	color: var(--aac-text);
	font-size: .93rem;
	font-weight: 550;
	text-decoration: none;
	transition: background-color var(--aac-speed) var(--aac-ease), color var(--aac-speed) var(--aac-ease);
}
.primary-menu a:hover { background: var(--aac-soft-aqua); color: var(--aac-focus); }
.primary-menu .current-menu-item > a { color: var(--aac-primary); }

.primary-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 190px;
	margin: 0;
	padding: 6px;
	list-style: none;
	background: var(--aac-card);
	border: 1px solid var(--aac-border);
	border-radius: var(--aac-radius);
	box-shadow: var(--aac-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-4px);
	transition: opacity var(--aac-speed) var(--aac-ease), transform var(--aac-speed) var(--aac-ease), visibility var(--aac-speed);
}
.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

/* ---------------------------------------------------------- mobile menu */

.mobile-menu { position: fixed; inset: 0; z-index: 120; }
.mobile-menu[hidden] { display: none; }

.mobile-menu__backdrop { position: absolute; inset: 0; background: rgba(19, 32, 32, .45); }

.mobile-menu__panel {
	position: relative;
	width: min(88%, 340px);
	height: 100%;
	margin-left: 0;
	padding: 16px 20px 40px;
	background: var(--aac-card);
	border-right: 1px solid var(--aac-border);
	overflow-y: auto;
	animation: aac-slide-in var(--aac-speed) var(--aac-ease);
}

@keyframes aac-slide-in { from { transform: translateX(-14px); opacity: .6; } to { transform: none; opacity: 1; } }

.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.mobile-menu__title { font-weight: 700; }
.mobile-menu__heading { font-size: .78rem; text-transform: uppercase; letter-spacing: .09em; color: var(--aac-text-muted); margin: 18px 0 10px; }

.mobile-menu-list, .mobile-menu-list .sub-menu { margin: 0; padding: 0; list-style: none; }
.mobile-menu-list a {
	display: block;
	padding: 12px 4px;
	border-bottom: 1px solid var(--aac-border);
	color: var(--aac-text);
	text-decoration: none;
	font-weight: 550;
}
.mobile-menu-list .sub-menu a { padding-left: 18px; font-weight: 450; color: var(--aac-text-muted); }

/* -------------------------------------------------------- search overlay */

.search-overlay { position: fixed; inset: 0; z-index: 130; }
.search-overlay[hidden] { display: none; }
.search-overlay__backdrop { position: absolute; inset: 0; background: rgba(19, 32, 32, .45); }

.search-overlay__panel {
	position: relative;
	max-width: 720px;
	margin: 8vh auto 0;
	padding: 20px;
	background: var(--aac-card);
	border: 1px solid var(--aac-border);
	border-radius: var(--aac-radius);
	box-shadow: var(--aac-shadow-lift);
}

.search-form__field {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 8px 6px 14px;
	background: var(--aac-bg);
	border: 1px solid var(--aac-border);
	border-radius: var(--aac-radius-sm);
}
.search-form__field:focus-within { border-color: var(--aac-primary); }
.search-form__field .icon { flex: none; color: var(--aac-text-muted); }

.search-form input[type="search"] {
	flex: 1;
	min-width: 0;
	padding: 10px 0;
	border: 0;
	background: transparent;
	outline: none;
}

.search-hint { margin: 10px 2px 0; font-size: .82rem; color: var(--aac-text-muted); }

.search-results { margin-top: 14px; }
.search-results:empty { margin-top: 0; }

.suggestion-list { margin: 0; padding: 0; list-style: none; }
.suggestion {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px;
	border-radius: var(--aac-radius-sm);
	color: var(--aac-text);
	text-decoration: none;
	transition: background-color var(--aac-speed) var(--aac-ease);
}
.suggestion:hover, .suggestion:focus { background: var(--aac-soft-aqua); }

.suggestion__thumb {
	flex: none;
	width: 48px;
	height: 48px;
	object-fit: contain;
	background: #fff;
	border: 1px solid var(--aac-border);
	border-radius: 8px;
}
.suggestion__title { display: block; font-weight: 600; font-size: .92rem; }
.suggestion__meta { display: block; font-size: .78rem; color: var(--aac-text-muted); }
.suggestion__badge { margin-left: auto; font-size: .76rem; font-weight: 700; color: var(--aac-primary); }

.suggestion-empty { padding: 10px 8px; color: var(--aac-text-muted); font-size: .9rem; }
.suggestion-all { display: block; padding: 10px 8px; font-weight: 600; font-size: .9rem; }

/* ----------------------------------------------------------------- hero */

.hero { position: relative; isolation: isolate; overflow: hidden; padding: clamp(52px, 8vw, 100px) 0 clamp(40px, 6vw, 72px); background: linear-gradient(145deg, rgba(221, 244, 240, .86), rgba(255, 255, 255, .72) 52%, rgba(141, 225, 229, .18)); border-bottom: 1px solid rgba(151, 192, 189, .3); }
.hero__inner { text-align: center; }
.hero__title { max-width: 20ch; margin: 0 auto .4em; }
.hero__text { max-width: 56ch; margin: 0 auto 28px; color: var(--aac-text-muted); font-size: 1.05rem; }

.hero__search { position: relative; max-width: 620px; margin: 0 auto; }

.hero__search-field {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 6px 6px 16px;
	background: var(--aac-card);
	border: 1px solid var(--aac-border);
	border-radius: var(--aac-radius-pill);
	box-shadow: var(--aac-shadow);
}
.hero__search-field:focus-within { border-color: var(--aac-primary); }
.hero__search-field .icon { flex: none; color: var(--aac-text-muted); }
.hero__search-field input[type="search"] {
	flex: 1;
	min-width: 0;
	padding: 12px 0;
	border: 0;
	background: transparent;
	outline: none;
}
.hero__search-field .button { border-radius: var(--aac-radius-pill); padding: 11px 22px; }

.search-results--inline {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 8px);
	z-index: 40;
	text-align: left;
	background: var(--aac-card);
	border-radius: var(--aac-radius);
	box-shadow: var(--aac-shadow-lift);
}
.search-results--inline:not(:empty) { border: 1px solid var(--aac-border); padding: 8px; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }

/* ------------------------------------------------------------- sections */

.section { padding: clamp(28px, 4vw, 52px) 0; }
.section--tinted { background: linear-gradient(145deg, var(--aac-soft-aqua), color-mix(in srgb, var(--aac-white) 86%, var(--aac-soft-aqua))); }
[data-theme="dark"] .section--tinted { background: var(--aac-card); }

.section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 22px;
}
.section-title { margin: 0; letter-spacing: -.025em; text-wrap: balance; }
.section-title--small { font-size: 1.15rem; }
.section-sub { margin: 6px 0 0; color: var(--aac-text-muted); font-size: .92rem; }

.section-link {
	font-size: .92rem;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}
.section-link:hover { text-decoration: underline; }

.chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.chip-row--scroll { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; scrollbar-width: thin; }
.chip-row--scroll li { flex: none; }

.chip {
	display: inline-block;
	padding: 9px 16px;
	background: var(--aac-card);
	border: 1px solid var(--aac-border);
	border-radius: var(--aac-radius-pill);
	color: var(--aac-text);
	font-size: .9rem;
	font-weight: 550;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color var(--aac-speed) var(--aac-ease), border-color var(--aac-speed) var(--aac-ease), color var(--aac-speed) var(--aac-ease);
}
.chip:hover { background: var(--aac-soft-aqua); border-color: var(--aac-muted-teal); color: var(--aac-focus); }

.pinned { display: grid; grid-template-columns: minmax(240px, 320px) 1fr; gap: clamp(20px, 3vw, 40px); align-items: start; }
.pinned__text { color: var(--aac-text-muted); }
.pinned__grid .design-grid { margin: 0; }

/* ------------------------------------------------------------ card grid */

.design-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--aac-gap);
	margin: 0;
	padding: 0;
	list-style: none;
}

.design-card > article { height: 100%; display: flex; flex-direction: column; }

.design-card__media {
	position: relative;
	display: block;
	background: #FFFFFF;
	border: 1px solid var(--aac-border);
	border-radius: var(--aac-radius);
	overflow: hidden;
	aspect-ratio: 1 / 1;
	transition: border-color var(--aac-speed) var(--aac-ease), box-shadow var(--aac-speed) var(--aac-ease), transform var(--aac-speed) var(--aac-ease);
}
[data-theme="dark"] .design-card__media { background: #F7FBFA; }

.design-card__media-link { display: block; width: 100%; height: 100%; }

.design-media__img,
.design-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 10px;
	transition: transform var(--aac-speed) var(--aac-ease);
}

.design-media__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(45deg, #F4FAF9, #F4FAF9 10px, #EAF4F2 10px, #EAF4F2 20px);
}

.design-card:hover .design-card__media { border-color: var(--aac-muted-teal); box-shadow: var(--aac-shadow-lift); transform: translateY(-2px); }
.design-card:hover .design-media__img { transform: scale(1.03); }

.design-card__hover {
	position: absolute;
	left: 50%;
	bottom: 12px;
	transform: translate(-50%, 6px);
	padding: 7px 14px;
	border-radius: var(--aac-radius-pill);
	background: rgba(37, 56, 56, .82);
	color: #fff;
	font-size: .8rem;
	font-weight: 600;
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--aac-speed) var(--aac-ease), transform var(--aac-speed) var(--aac-ease);
}
.design-card:hover .design-card__hover { opacity: 1; transform: translate(-50%, 0); }

.design-card__body { padding: 12px 2px 0; }

.design-card__title { margin: 0 0 4px; font-size: .98rem; font-weight: 600; line-height: 1.35; }
.design-card__title a { color: var(--aac-text); text-decoration: none; }
.design-card__title a:hover { color: var(--aac-primary); }

.design-card__meta { margin: 0; font-size: .82rem; color: var(--aac-text-muted); display: flex; gap: 8px; flex-wrap: wrap; }
.design-card__meta > span + span::before { content: "·"; margin-right: 8px; }

/* --------------------------------------------------------------- badges */

.badge-row { position: absolute; top: 10px; left: 10px; display: flex; flex-wrap: wrap; gap: 6px; z-index: 2; }

.badge {
	display: inline-block;
	padding: 4px 10px;
	border-radius: var(--aac-radius-pill);
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .01em;
	background: var(--aac-card);
	color: var(--aac-text);
	border: 1px solid var(--aac-border);
}
.badge--free { background: var(--aac-success); border-color: var(--aac-success); color: #fff; }
.badge--new { background: var(--aac-aqua); border-color: var(--aac-aqua); color: #17403F; }
.badge--price { background: var(--aac-card); color: var(--aac-text); }
.badge--bundle { background: var(--aac-primary); border-color: var(--aac-primary); color: #fff; }

.design-single .badge-row { position: static; margin: 0 0 18px; }

/* ------------------------------------------------------------ favorites */

.favorite-button {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 1px solid var(--aac-border);
	border-radius: 50%;
	background: var(--aac-card);
	color: var(--aac-text-muted);
	cursor: pointer;
	transition: color var(--aac-speed) var(--aac-ease), border-color var(--aac-speed) var(--aac-ease), transform var(--aac-speed) var(--aac-ease);
}
.favorite-button:hover { color: #C4566B; border-color: #E7B8C1; }
.favorite-button[aria-pressed="true"] { color: #C4566B; }
.favorite-button[aria-pressed="true"] svg { fill: currentColor; }

.design-single__share .favorite-button { position: static; width: 42px; height: 42px; }

/* --------------------------------------------------------- single design */

.design-single { padding-bottom: 20px; }

.design-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
	gap: clamp(24px, 4vw, 56px);
	align-items: start;
	padding-top: 12px;
}

.design-gallery__main {
	margin: 0;
	background: #fff;
	border: 1px solid var(--aac-border);
	border-radius: var(--aac-radius);
	overflow: hidden;
	aspect-ratio: 1 / 1;
}
.design-gallery__img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }

.design-gallery__thumbs {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
}
.design-gallery__thumb {
	width: 66px;
	height: 66px;
	padding: 4px;
	border: 1px solid var(--aac-border);
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
	transition: border-color var(--aac-speed) var(--aac-ease);
}
.design-gallery__thumb img { width: 100%; height: 100%; object-fit: contain; }
.design-gallery__thumb:hover { border-color: var(--aac-muted-teal); }
.design-gallery__thumb.is-active { border-color: var(--aac-primary); }

.design-single__title { margin-bottom: 12px; }
.design-single__excerpt { color: var(--aac-text-muted); font-size: 1.02rem; }

.design-actions { display: grid; gap: 14px; margin: 22px 0; }

.offer {
	padding: 18px;
	background: var(--aac-card);
	border: 1px solid var(--aac-border);
	border-radius: var(--aac-radius);
}
.offer--free { border-color: var(--aac-muted-teal); }

.offer__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.offer__title { margin: 0; font-size: 1rem; }
.offer__price { font-weight: 700; color: var(--aac-primary); }
.offer__price del { color: var(--aac-text-muted); font-weight: 400; margin-right: 6px; }
.offer__price ins { text-decoration: none; }
.offer__text { margin: 0 0 14px; font-size: .9rem; color: var(--aac-text-muted); }
.offer__note { margin: 8px 0 0; font-size: .8rem; color: var(--aac-text-muted); text-align: center; }
.offer__unavailable { margin: 0; font-size: .9rem; color: var(--aac-text-muted); }

.design-facts { margin: 22px 0 0; display: grid; gap: 0; }
.design-facts__row {
	display: grid;
	grid-template-columns: minmax(120px, 40%) 1fr;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid var(--aac-border);
	font-size: .9rem;
}
.design-facts dt { color: var(--aac-text-muted); margin: 0; }
.design-facts dd { margin: 0; font-weight: 550; }

.design-single__share { display: flex; align-items: center; gap: 10px; margin: 20px 0; }

.license-box {
	margin-top: 20px;
	padding: 16px 18px;
	background: var(--aac-soft-aqua);
	border-radius: var(--aac-radius);
}
[data-theme="dark"] .license-box { background: var(--aac-card); border: 1px solid var(--aac-border); }
.license-box__level { margin: 0 0 4px; }
.license-box__summary { margin: 0 0 10px; font-size: .9rem; color: var(--aac-text-muted); }

.design-description, .design-howto { padding: 28px 20px 0; }
.entry-content { max-width: 72ch; }
.entry-content img { border-radius: var(--aac-radius); }

.sticky-actions {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 90;
	display: none;
	gap: 10px;
	padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
	background: var(--aac-card);
	border-top: 1px solid var(--aac-border);
	box-shadow: 0 -6px 20px rgba(37, 56, 56, .08);
}
.sticky-actions .button { flex: 1; padding: 13px 12px; }

/* -------------------------------------------------------------- filters */

.filters { margin: 0 0 24px; }

.filters__bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

.filters__sort select {
	padding: 10px 14px;
	border: 1px solid var(--aac-border);
	border-radius: var(--aac-radius-sm);
	background: var(--aac-card);
}

.filters__panel {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 18px 24px;
	margin-top: 16px;
	padding: 20px;
	background: var(--aac-card);
	border: 1px solid var(--aac-border);
	border-radius: var(--aac-radius);
}
.filters__panel[hidden] { display: none; }

.filters__group { margin: 0; padding: 0; border: 0; }
.filters__legend { padding: 0 0 8px; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--aac-text-muted); }
.filters__options { display: grid; gap: 7px; }
.filters__option { display: flex; align-items: center; gap: 8px; font-size: .9rem; cursor: pointer; }

.filters__actions { grid-column: 1 / -1; display: flex; gap: 10px; flex-wrap: wrap; }

/* ------------------------------------------------------ archive & pages */

.archive-header { padding: 26px 0 20px; }
.archive-title { margin: 0 0 8px; }
.archive-intro { max-width: 70ch; color: var(--aac-text-muted); }

.breadcrumbs { padding: 14px 0 0; font-size: .84rem; color: var(--aac-text-muted); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li + li::before { content: "/"; margin-right: 6px; color: var(--aac-border); }
.breadcrumbs a { color: var(--aac-text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--aac-primary); text-decoration: underline; }

.pagination-wrap { padding: 34px 0 10px; }

.pagination .nav-links, .aacuts-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}
.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--aac-border);
	border-radius: var(--aac-radius-sm);
	background: var(--aac-card);
	color: var(--aac-text);
	text-decoration: none;
	font-weight: 550;
	transition: background-color var(--aac-speed) var(--aac-ease), border-color var(--aac-speed) var(--aac-ease);
}
.page-numbers:hover { background: var(--aac-soft-aqua); border-color: var(--aac-muted-teal); }
.page-numbers.current { background: var(--aac-primary); border-color: var(--aac-primary); color: #fff; }
.page-numbers.dots { border-color: transparent; background: transparent; }

.empty-state {
	max-width: 520px;
	margin: 40px auto 60px;
	padding: 34px 24px;
	text-align: center;
	background: var(--aac-card);
	border: 1px solid var(--aac-border);
	border-radius: var(--aac-radius);
}
.empty-state__text { color: var(--aac-text-muted); }
.empty-state .button { margin: 6px 4px 0; }

.cta-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	padding: clamp(24px, 4vw, 40px);
	background: linear-gradient(135deg, var(--aac-primary), var(--aac-focus));
	border-radius: var(--aac-radius);
	color: #fff;
}
.cta-card__title { color: #fff; margin: 0 0 6px; }
.cta-card__text { margin: 0; max-width: 54ch; opacity: .92; }
.cta-card .button--primary { background: #fff; border-color: #fff; color: var(--aac-focus); }
.cta-card .button--primary:hover { background: var(--aac-soft-aqua); border-color: var(--aac-soft-aqua); color: var(--aac-focus); }

/* ----------------------------------------------------------- newsletter */

.newsletter {
	margin: 20px 0 40px;
	padding: clamp(26px, 4vw, 44px);
	background: linear-gradient(145deg, var(--aac-card), color-mix(in srgb, var(--aac-soft-aqua) 54%, var(--aac-card)));
	border: 1px solid var(--aac-border);
	border-radius: var(--aac-radius);
	text-align: center;
}
.newsletter__title { margin: 0 0 8px; }
.newsletter__text { max-width: 52ch; margin: 0 auto 20px; color: var(--aac-text-muted); }
.newsletter__form { max-width: 460px; margin: 0 auto; }
.newsletter__form input[type="email"], .newsletter__form input[type="text"] {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--aac-border);
	border-radius: var(--aac-radius-sm);
	background: var(--aac-bg);
}
.newsletter__placeholder { font-size: .88rem; color: var(--aac-text-muted); }

/* -------------------------------------------------------------- ad slot */

.ad-slot { margin: 30px 0; text-align: center; }
.ad-slot__label {
	display: block;
	margin-bottom: 6px;
	font-size: .68rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--aac-text-muted);
}
.ad-slot img, .ad-slot iframe { max-width: 100%; }

/* ----------------------------------------------------------------- blog */

.blog-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(24px, 4vw, 48px); align-items: start; padding-top: 10px; padding-bottom: 40px; }
body.no-sidebar .blog-layout { grid-template-columns: minmax(0, 1fr); }
.blog-layout .blog-sidebar { position: sticky; top: 92px; }

.page-layout { padding: 20px 20px 50px; }
.page-title { margin-bottom: 18px; }

.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--aac-gap); margin: 0; padding: 0; list-style: none; }
.post-grid--list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.post-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--aac-card);
	border: 1px solid var(--aac-border);
	border-radius: var(--aac-radius);
	overflow: hidden;
	color: var(--aac-text);
	text-decoration: none;
	transition: border-color var(--aac-speed) var(--aac-ease), box-shadow var(--aac-speed) var(--aac-ease), transform var(--aac-speed) var(--aac-ease);
}
.post-card__link:hover { border-color: var(--aac-muted-teal); box-shadow: var(--aac-shadow-lift); transform: translateY(-2px); }

.post-card__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.post-card__img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { display: block; padding: 16px 18px 20px; }
.post-card__meta { display: block; font-size: .78rem; color: var(--aac-text-muted); margin-bottom: 6px; }
.post-card__title { display: block; font-weight: 650; font-size: 1.02rem; line-height: 1.35; }
.post-card__excerpt { display: block; margin-top: 8px; font-size: .88rem; color: var(--aac-text-muted); }

.post-single__header { padding: 10px 0 18px; }
.post-single__meta { color: var(--aac-text-muted); font-size: .88rem; }
.post-single__media { margin: 0 0 24px; }
.post-single__img { width: 100%; border-radius: var(--aac-radius); }

.widget { margin-bottom: 28px; padding: 18px; background: var(--aac-card); border: 1px solid var(--aac-border); border-radius: var(--aac-radius); }
.widget-title { font-size: .95rem; margin-bottom: 10px; }
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget li + li { margin-top: 8px; }

.comments-area { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--aac-border); }
.comment-list { list-style: none; padding: 0; }
.comment-list .children { list-style: none; padding-left: 20px; }
.comment-body { padding: 14px 0; border-bottom: 1px solid var(--aac-border); }

.error-404 { padding: 40px 20px 60px; text-align: center; }
.error-404__text { max-width: 46ch; margin: 0 auto 22px; color: var(--aac-text-muted); }
.error-404__actions { margin: 20px 0 40px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.error-404 .search-form { max-width: 460px; margin: 0 auto; }

.search-group { margin-bottom: 40px; }
.search-form--inline .search-form__field { background: var(--aac-card); }

/* --------------------------------------------------------------- footer */

.site-footer { margin-top: 40px; background: var(--aac-card); border-top: 1px solid var(--aac-border); }

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) repeat(auto-fit, minmax(150px, 1fr));
	gap: 32px;
	max-width: var(--aac-wrap);
	margin: 0 auto;
	padding: 44px 20px 32px;
}

.footer-about { margin: 14px 0 16px; max-width: 44ch; font-size: .9rem; color: var(--aac-text-muted); }

.footer-heading { font-size: .78rem; text-transform: uppercase; letter-spacing: .09em; color: var(--aac-text-muted); margin: 0 0 12px; }

.footer-menu { list-style: none; margin: 0; padding: 0; }
.footer-menu li + li { margin-top: 9px; }
.footer-menu a { color: var(--aac-text); text-decoration: none; font-size: .92rem; }
.footer-menu a:hover { color: var(--aac-primary); text-decoration: underline; }

.social-links { display: flex; gap: 8px; list-style: none; margin: 0; padding: 0; }
.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--aac-border);
	border-radius: 50%;
	color: var(--aac-text-muted);
	transition: color var(--aac-speed) var(--aac-ease), border-color var(--aac-speed) var(--aac-ease);
}
.social-links a:hover { color: var(--aac-primary); border-color: var(--aac-muted-teal); }

.site-footer__bottom {
	border-top: 1px solid var(--aac-border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
	max-width: var(--aac-wrap);
	margin: 0 auto;
	padding: 18px 20px 26px;
	font-size: .84rem;
	color: var(--aac-text-muted);
}
.copyright { margin: 0; }
.legal-menu { display: flex; gap: 16px; list-style: none; margin: 0; padding: 0; }
.legal-menu a { color: var(--aac-text-muted); text-decoration: none; }
.legal-menu a:hover { color: var(--aac-primary); text-decoration: underline; }

/* ------------------------------------------------------ modern storefront */

.hero::before,
.hero::after {
	content: "";
	position: absolute;
	z-index: -1;
	width: clamp(180px, 28vw, 420px);
	aspect-ratio: 1;
	border-radius: 50%;
	filter: blur(2px);
	pointer-events: none;
}
.hero::before { left: -10%; top: -45%; background: radial-gradient(circle, rgba(141, 225, 229, .42), transparent 68%); }
.hero::after { right: -8%; bottom: -70%; background: radial-gradient(circle, rgba(101, 160, 159, .24), transparent 68%); }
[data-theme="dark"] .hero { background: linear-gradient(145deg, rgba(30, 52, 51, .95), rgba(19, 32, 32, .82), rgba(57, 123, 121, .16)); }

.hero__eyebrow {
	margin: 0 0 12px;
	color: var(--aac-primary);
	font-size: .76rem;
	font-weight: 750;
	letter-spacing: .13em;
	text-transform: uppercase;
}
.hero__title { letter-spacing: -.035em; text-wrap: balance; }
.hero__trust {
	display: flex;
	justify-content: center;
	gap: 10px 24px;
	flex-wrap: wrap;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
	color: var(--aac-text-muted);
	font-size: .83rem;
}
.hero__trust li::before { content: "✓"; margin-right: 7px; color: var(--aac-primary); font-weight: 800; }

.primary-menu > .menu-item-has-children > a::after { content: "⌄"; display: inline-block; margin-left: 6px; color: var(--aac-text-muted); transform: translateY(-1px); }
.primary-menu .sub-menu a { padding: 10px 12px; }

.design-card > article {
	background: color-mix(in srgb, var(--aac-card) 94%, var(--aac-soft-aqua));
	border: 1px solid var(--aac-border);
	border-radius: calc(var(--aac-radius) + 2px);
	overflow: hidden;
	box-shadow: var(--aac-shadow);
	transition: transform 260ms var(--aac-ease), box-shadow 260ms var(--aac-ease), border-color 260ms var(--aac-ease);
}
.design-card:hover > article { transform: translateY(-5px); box-shadow: var(--aac-shadow-lift); border-color: var(--aac-muted-teal); }
.design-card__media { border: 0; border-bottom: 1px solid var(--aac-border); border-radius: 0; }
.design-card:hover .design-card__media { transform: none; box-shadow: none; border-color: var(--aac-border); }
.design-card__body { display: flex; flex: 1; flex-direction: column; padding: 16px; }
.design-card__purchase { margin-top: auto; padding-top: 14px; }

.badge--sale { background: linear-gradient(135deg, #E85D75, #C43F5A); border-color: #C43F5A; color: #fff; box-shadow: 0 4px 12px rgba(196, 63, 90, .22); }

.offer { box-shadow: var(--aac-shadow); }
.offer--premium { background: linear-gradient(145deg, var(--aac-card), color-mix(in srgb, var(--aac-soft-aqua) 52%, var(--aac-card))); }
.offer__actions { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 10px; }

.site-footer { background: linear-gradient(155deg, var(--aac-card), color-mix(in srgb, var(--aac-soft-aqua) 58%, var(--aac-card))); }
.aac-order-lookup,
.aac-order-receipt { width: min(100% - 28px, 840px); margin: clamp(36px, 7vw, 88px) auto; padding: clamp(24px, 5vw, 54px); border: 1px solid var(--aac-border); border-radius: 24px; background: linear-gradient(145deg, var(--aac-card), var(--aac-soft-aqua)); box-shadow: var(--aac-shadow-lift); }
.aac-order-receipt > h1, .aac-order-lookup > h1 { margin-bottom: 12px; }
.aac-order-files { margin: 28px 0 0; padding: 0; list-style: none; }
.aac-order-files li { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 0; border-top: 1px solid var(--aac-border); }
.aac-order-files span { display: grid; }
.aac-order-files small { color: var(--aac-text-muted); }
.aac-order-lookup--error { border-color: #E7B8C1; }

.reveal-ready .aac-reveal { opacity: 0; transform: translateY(18px); transition: opacity 520ms var(--aac-ease), transform 520ms var(--aac-ease); }
.reveal-ready .aac-reveal.is-revealed { opacity: 1; transform: none; }

/* ---------------------------------------------------------- breakpoints */

@media (max-width: 1024px) {
	.design-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.pinned { grid-template-columns: 1fr; }
	.design-single__layout { grid-template-columns: 1fr; }
	.blog-layout { grid-template-columns: minmax(0, 1fr); }
	.blog-layout .blog-sidebar { position: static; }
}

@media (max-width: 860px) {
	.primary-nav { display: none; }
	.menu-toggle { display: inline-flex; }

	.site-header__inner { grid-template-columns: auto minmax(0, 1fr); }

	.site-brand.has-mobile-logo .site-logo--desktop { display: none; }
	.site-brand.has-mobile-logo .site-logo--mobile { display: block; }

	.post-grid, .post-grid--list { grid-template-columns: 1fr; }

	.single-design .sticky-actions { display: flex; }
	.single-design .site-footer { padding-bottom: 72px; }

}

@media (max-width: 560px) {
	:root { --aac-gap: 14px; }

	.wrap { padding: 0 14px; }
	.site-header__inner { padding: 8px 12px; }
	.site-header__right { gap: 0; }
	.site-header__right .icon-button { width: 38px; height: 38px; }
	.site-header__brand { margin-left: 3px; padding-left: 7px; }
	.site-header__brand .site-logo { max-width: 96px; object-fit: contain; }
	.site-brand--text { max-width: 98px; font-size: .88rem; line-height: 1.1; text-align: right; }

	.design-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.design-card__title { font-size: .9rem; }
	.design-card__meta { font-size: .76rem; }

	.hero__search-field { flex-wrap: wrap; border-radius: var(--aac-radius); padding: 10px; }
	.hero__search-field input[type="search"] { flex: 1 1 100%; padding: 6px 4px; }
	.hero__search-field .button { flex: 1 1 100%; border-radius: var(--aac-radius-sm); }
	.hero__actions .button { flex: 1 1 100%; }

	.search-overlay__panel { margin: 0; height: 100%; border-radius: 0; border: 0; }

	.filters__panel { grid-template-columns: 1fr; }

	.section-head { align-items: flex-start; }

	.cta-card { flex-direction: column; align-items: flex-start; }
	.cta-card .button { width: 100%; }
	.offer__actions { grid-template-columns: 1fr; }
	.aac-order-files li { align-items: stretch; flex-direction: column; }
	.aac-order-files .button { width: 100%; }

	.site-footer__inner { grid-template-columns: 1fr; gap: 26px; }
}

@media (max-width: 380px) {
	.design-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------- preferences */

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
	}
	.design-card:hover .design-card__media,
	.design-card:hover > article,
	.post-card__link:hover { transform: none; }
}

@media print {
	.site-header, .site-footer, .payment-trust-strip, .sticky-actions, .filters, .ad-slot, .announcement { display: none !important; }
	body { background: #fff; }
}


/* ------------------------------------------------- refined storefront 2.1 */

:root {
	--aac-font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--aac-display-font: "Syne", "Manrope", sans-serif;
	--aac-button: #5D8F8C;
	--aac-button-hover: #4F807D;
}

h1, h2, h3, h4,
.site-brand--text,
.section-title,
.hero__title,
.design-single__title {
	font-family: var(--aac-display-font);
	font-weight: 700;
	letter-spacing: -.035em;
}

body { font-family: var(--aac-font); }

.button--primary {
	background: linear-gradient(135deg, var(--aac-button), #75A7A3);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 6px 16px rgba(57, 123, 121, .11);
}
.button--primary:hover {
	background: linear-gradient(135deg, var(--aac-button-hover), #689895);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 8px 18px rgba(57, 123, 121, .14);
}
.button--secondary {
	background: rgba(221, 244, 240, .55);
	border-color: rgba(93, 143, 140, .34);
	color: #477773;
}
.button--secondary:hover { background: rgba(221, 244, 240, .82); border-color: rgba(93, 143, 140, .5); }

.announcement {
	position: relative;
	z-index: 70;
	display: block;
	background: linear-gradient(100deg, #3F7772, #5C928D 52%, #3F7772);
	box-shadow: 0 4px 18px rgba(37, 56, 56, .1);
}
.announcement__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 40px;
	padding: 4px 20px;
}
.announcement__copy { display: grid; line-height: 1.25; text-align: left; }
.announcement__copy strong { font-family: var(--aac-display-font); font-size: .88rem; letter-spacing: -.01em; }
.announcement__copy span { color: rgba(255, 255, 255, .82); font-size: .72rem; }
.announcement__cta {
	padding: 5px 11px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .94);
	color: #356A66 !important;
	font-size: .7rem;
	font-weight: 800;
	text-decoration: none !important;
	white-space: nowrap;
}

.site-header {
	position: sticky;
	overflow: clip;
	isolation: isolate;
	border-bottom: 0;
	box-shadow: 0 7px 24px rgba(37, 56, 56, .07);
}
.site-header::before,
.site-header::after {
	content: "";
	position: absolute;
	z-index: -1;
	pointer-events: none;
	opacity: .18;
}
.site-header::before {
	top: -36px;
	left: 9%;
	width: 76px;
	height: 76px;
	border: 1px solid var(--aac-muted-teal);
	border-radius: 20px;
	transform: rotate(24deg);
	animation: aac-header-geometry 10s ease-in-out infinite alternate;
}
.site-header::after {
	right: 11%;
	bottom: -28px;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(141, 225, 229, .8), transparent);
	animation: aac-header-geometry 12s ease-in-out -3s infinite alternate-reverse;
}
@keyframes aac-header-geometry {
	from { transform: translate3d(0, 0, 0) rotate(18deg); }
	to { transform: translate3d(18px, 8px, 0) rotate(42deg); }
}

.site-header__inner { position: relative; display: flex; align-items: center; gap: 16px; }
.site-header__left { display: flex; align-items: center; gap: 14px; min-width: 0; }
.site-header__right { margin-left: auto; }
.site-header__brand { order: -1; display: inline-flex; margin: 0; padding: 0 16px 0 0; border: 0; }
.site-brand--text { text-align: left; }
.primary-menu a { font-family: var(--aac-font); }

.hero,
.design-card__media,
.site-footer,
.offer,
.license-box { border-color: transparent; }
.hero { border-bottom: 0; }
.design-card__media { border-bottom: 0; }

.card-action {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 42px;
	padding: 10px 14px;
	border: 0;
	border-radius: var(--aac-radius-sm);
	background: rgba(221, 244, 240, .72);
	color: #477773;
	font-size: .84rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color var(--aac-speed) var(--aac-ease), transform var(--aac-speed) var(--aac-ease);
}
.card-action:hover { background: rgba(201, 234, 229, .95); color: #356A66; transform: translateY(-1px); }

.offer--commercial {
	background: linear-gradient(145deg, var(--aac-card), color-mix(in srgb, var(--aac-soft-aqua) 42%, var(--aac-card)));
}
.offer__actions { grid-template-columns: 1fr; }

.instant-download-banner {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: clamp(22px, 4vw, 42px);
	margin-bottom: 18px;
	padding: 13px 16px;
	border-radius: 14px;
	background: linear-gradient(135deg, #E6F7EC, #F5FCF7);
	color: #286C49;
	box-shadow: 0 8px 22px rgba(40, 108, 73, .08);
}
.instant-download-banner__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	border-radius: 10px;
	background: #CBEED8;
	font-size: 1rem;
	font-weight: 800;
}
.instant-download-banner > span:last-child { display: grid; line-height: 1.3; }
.instant-download-banner strong { font-family: var(--aac-display-font); font-size: .9rem; }
.instant-download-banner small { color: #4D7D61; font-size: .75rem; }

.license-box--commercial {
	padding: 22px;
	border: 0;
	background: linear-gradient(145deg, rgba(221, 244, 240, .7), var(--aac-card));
	box-shadow: 0 10px 28px rgba(57, 123, 121, .08);
}
.license-box__rules { display: grid; gap: 14px; margin: 16px 0 18px; padding: 0; list-style: none; }
.license-box__rules li { position: relative; display: grid; gap: 3px; padding-left: 30px; }
.license-box__rules li::before {
	position: absolute;
	top: 1px;
	left: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 21px;
	height: 21px;
	border-radius: 50%;
	font-size: .72rem;
	font-weight: 900;
}
.license-box__rules .is-allowed::before { content: "✓"; background: #D8F1E2; color: #2F7751; }
.license-box__rules .is-restricted::before { content: "×"; background: #F6E3E6; color: #9B4555; }
.license-box__rules strong { font-size: .88rem; }
.license-box__rules span { color: var(--aac-text-muted); font-size: .8rem; line-height: 1.5; }

.payment-trust-strip {
	margin-top: 42px;
	background: linear-gradient(180deg, color-mix(in srgb, var(--aac-card) 90%, transparent), color-mix(in srgb, var(--aac-soft-aqua) 25%, var(--aac-card)));
}
.payment-trust-strip__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 11px;
	max-width: var(--aac-wrap);
	margin: 0 auto;
	padding: 10px 16px;
	overflow-x: auto;
	scrollbar-width: none;
}
.payment-trust-strip__inner::-webkit-scrollbar { display: none; }
.payment-trust-badge {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 5px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--aac-text-muted);
	box-shadow: none;
	font-size: .64rem;
	font-weight: 680;
	line-height: 1;
	white-space: nowrap;
}
.payment-trust-badge__icon { display: grid; place-items: center; width: 14px; height: 14px; color: var(--aac-primary); }
.payment-trust-badge__icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.payment-logo-divider { flex: 0 0 1px; width: 1px; height: 18px; margin: 0 1px; background: color-mix(in srgb, var(--aac-primary) 20%, var(--aac-border)); }
.payment-logo-list { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 9px; }
.payment-logo { display: inline-flex; flex: 0 0 auto; align-items: center; justify-content: center; height: 20px; color: var(--aac-title); font-style: normal; line-height: 1; white-space: nowrap; }
.payment-logo b,
.payment-logo em,
.payment-logo i { font-style: normal; }
.payment-logo--paypal { color: #253b80; font-family: Arial, sans-serif; font-size: .69rem; font-weight: 800; letter-spacing: -.035em; }
.payment-logo--apple { gap: 3px; color: var(--aac-title); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: .75rem; font-weight: 720; }
.payment-logo--apple svg { width: 14px; height: 17px; fill: currentColor; }
.payment-logo--google { gap: 3px; font-family: Arial, sans-serif; font-size: .61rem; letter-spacing: -.04em; }
.payment-logo--google b { display: inline-flex; }
.payment-logo--google b i:nth-child(1),
.payment-logo--google b i:nth-child(4) { color: #4285f4; }
.payment-logo--google b i:nth-child(2),
.payment-logo--google b i:nth-child(6) { color: #ea4335; }
.payment-logo--google b i:nth-child(3) { color: #fbbc05; }
.payment-logo--google b i:nth-child(5) { color: #34a853; }
.payment-logo--google em { color: var(--aac-title); font-size: .69rem; font-weight: 650; letter-spacing: 0; }
.payment-logo--mastercard { position: relative; width: 29px; }
.payment-logo--mastercard i { position: absolute; width: 18px; height: 18px; border-radius: 50%; background: #eb001b; }
.payment-logo--mastercard i:first-child { left: 1px; }
.payment-logo--mastercard i:last-child { right: 1px; background: #f79e1b; opacity: .92; }
.payment-logo--visa { color: #1434cb; font-family: Arial, sans-serif; font-size: .75rem; font-style: italic; font-weight: 900; letter-spacing: -.055em; transform: skew(-8deg); }
.payment-cards-message { flex: 0 0 auto; color: var(--aac-text-muted); font-size: .61rem; font-weight: 720; white-space: nowrap; }
.payment-trust-strip + .site-footer--minimal { margin-top: 0; }

@media (max-width: 760px) {
	.payment-trust-strip__inner { justify-content: flex-start; gap: 9px; padding: 9px 11px; }
	.payment-trust-badge { font-size: .59rem; }
	.payment-trust-badge__icon { width: 13px; height: 13px; }
	.payment-logo-list { gap: 8px; }
}
.site-footer--minimal {
	margin-top: 42px;
	padding: 0;
	border: 0;
	background: color-mix(in srgb, var(--aac-soft-aqua) 38%, var(--aac-card));
	box-shadow: 0 -8px 26px rgba(37, 56, 56, .04);
}
.site-footer__minimal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	max-width: var(--aac-wrap);
	margin: 0 auto;
	padding: 18px 20px;
	color: var(--aac-text-muted);
	font-size: .8rem;
}
.quick-links { display: flex; align-items: center; justify-content: flex-end; gap: 14px; min-width: 0; }
.quick-links__label { color: var(--aac-text); font-weight: 800; white-space: nowrap; }
.quick-links__menu { display: flex; align-items: center; gap: 14px; margin: 0; padding: 0; list-style: none; }
.quick-links__menu li { margin: 0; }
.quick-links__menu a { color: var(--aac-text-muted); text-decoration: none; white-space: nowrap; }
.quick-links__menu a:hover { color: var(--aac-primary); }

.back-to-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 90;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 13px;
	border: 0;
	border-radius: 999px;
	background: #466F6C;
	color: #fff;
	box-shadow: 0 10px 28px rgba(37, 56, 56, .2);
	font-size: .76rem;
	font-weight: 800;
	cursor: pointer;
	transition: opacity var(--aac-speed) var(--aac-ease), transform var(--aac-speed) var(--aac-ease);
}
.back-to-top[hidden] { display: none; }
.back-to-top:hover { transform: translateY(-2px); background: #395F5C; }

@media (max-width: 860px) {
	.site-header__left { flex: 1; gap: 8px; }
	.site-header__brand { padding-right: 5px; }
	.menu-toggle { order: 2; }
	.site-header__right { flex: 0 0 auto; }
	.site-footer__minimal { align-items: flex-start; flex-direction: column; }
	.quick-links { align-items: flex-start; flex-wrap: wrap; justify-content: flex-start; }
	.quick-links__menu { flex-wrap: wrap; gap: 8px 14px; }
}

@media (max-width: 560px) {
	.announcement__inner { align-items: center; flex-direction: row; gap: 8px; min-height: 38px; padding: 4px 12px; }
	.announcement__copy { min-width: 0; text-align: left; }
	.announcement__copy strong { display: block; font-size: .75rem; line-height: 1.15; }
	.announcement__cta { flex: 0 0 auto; align-self: center; padding: 4px 8px; font-size: .64rem; }
	.site-header__inner { gap: 5px; }
	.site-header__brand { margin: 0; padding: 0; }
	.site-brand--text { max-width: 110px; text-align: left; }
	.instant-download-banner { margin-left: 14px; margin-right: 14px; }
	.back-to-top { right: 12px; bottom: 14px; }
}

[data-theme="dark"] .instant-download-banner { background: linear-gradient(135deg, #1D3B2D, #193329); color: #B8E5C8; }
[data-theme="dark"] .instant-download-banner small { color: #96C5A7; }
[data-theme="dark"] .announcement__cta { background: #ECF7F5; color: #2F6661 !important; }


/* --------------------------------------------- storefront controls 2.2 */

.announcement__inner { align-items: center; }
.announcement__copy { display: block; }

.product-feature-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: clamp(22px, 4vw, 42px);
	margin-bottom: 18px;
	padding-top: 0;
	padding-bottom: 0;
}
.product-feature {
	display: flex;
	align-items: center;
	gap: 11px;
	min-width: 0;
	padding: 14px 16px;
	border-top: 1px solid #BFE6CF;
	border-bottom: 1px solid #BFE6CF;
	background: linear-gradient(135deg, #E7F8ED, #F8FCF9);
}
.product-feature:first-child { border-left: 1px solid #BFE6CF; border-radius: 14px 0 0 14px; }
.product-feature:last-child { border-right: 1px solid #BFE6CF; border-radius: 0 14px 14px 0; }
.product-feature + .product-feature { border-left: 1px solid rgba(57, 123, 85, .14); }
.product-feature__icon {
	display: inline-grid;
	place-items: center;
	width: 36px;
	height: 36px;
	flex: 0 0 36px;
	border-radius: 11px;
	background: #CDEED9;
	color: #2D7750;
}
.product-feature__icon svg { width: 19px; height: 19px; }
.product-feature > span:last-child { display: grid; min-width: 0; gap: 2px; line-height: 1.25; }
.product-feature strong { color: #28583E; font-family: var(--aac-display-font); font-size: clamp(.76rem, 1.3vw, .9rem); }
.product-feature small { overflow: hidden; color: #527763; font-size: .7rem; text-overflow: ellipsis; white-space: nowrap; }
.section--trending { position: relative; }
.section--trending::before { content: ""; position: absolute; inset: 8% 0 auto; height: 72%; z-index: -1; background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--aac-soft-aqua) 22%, transparent), transparent); pointer-events: none; }

@media (max-width: 760px) {
	.product-feature-strip { grid-template-columns: 1fr; }
	.product-feature { border: 1px solid #BFE6CF; border-bottom: 0; }
	.product-feature:first-child { border-radius: 14px 14px 0 0; }
	.product-feature:last-child { border-bottom: 1px solid #BFE6CF; border-radius: 0 0 14px 14px; }
	.product-feature + .product-feature { border-left: 1px solid #BFE6CF; }
}

@media (max-width: 560px) {
	.product-feature-strip { margin-left: 14px; margin-right: 14px; }
}

[data-theme="dark"] .product-feature { border-color: #315946; background: linear-gradient(135deg, #1D3B2D, #193329); }
[data-theme="dark"] .product-feature + .product-feature { border-left-color: #315946; }
[data-theme="dark"] .product-feature strong { color: #B8E5C8; }
[data-theme="dark"] .product-feature small { color: #96C5A7; }
[data-theme="dark"] .product-feature__icon { background: #284D39; color: #A8DDBA; }


/* ----------------------------------------------- hero sale browser 2.3 */

.hero__title {
	max-width: var(--aac-hero-width, 30ch);
	font-family: var(--aac-hero-font, var(--aac-display-font));
	font-size: clamp(2.6rem, 7vw, var(--aac-hero-size, 88px));
	font-weight: var(--aac-hero-weight, 200);
	line-height: .98;
}

.product-sale-panel {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: clamp(15px, 2.4vw, 25px);
	overflow: hidden;
	margin: 4px 0 22px;
	padding: clamp(17px, 2.5vw, 25px);
	border-radius: 20px;
	background: radial-gradient(circle at 82% 15%, rgba(255,255,255,.2), transparent 24%), linear-gradient(135deg, #922C4A, #D64D6C 58%, #E97A67);
	color: #fff;
	box-shadow: 0 17px 38px rgba(158, 42, 73, .22);
}
.product-sale-panel::after { content: ""; position: absolute; width: 120px; height: 120px; right: -55px; bottom: -75px; border: 1px solid rgba(255,255,255,.25); border-radius: 40% 60% 55% 45%; transform: rotate(30deg); }
.product-sale-panel__seal { display: grid; place-items: center; width: clamp(76px, 9vw, 98px); aspect-ratio: 1; border: 2px dashed rgba(255,255,255,.75); border-radius: 50%; background: rgba(110,19,48,.28); box-shadow: inset 0 0 0 5px rgba(255,255,255,.12); transform: rotate(-6deg); }
.product-sale-panel__seal strong { font-family: var(--aac-display-font); font-size: clamp(1rem, 2vw, 1.4rem); letter-spacing: .07em; }
.product-sale-panel__seal small { margin-top: -22px; font-size: .84rem; font-weight: 800; }
.product-sale-panel__message { display: grid; gap: 2px; }
.product-sale-panel__message small { color: rgba(255,255,255,.76); font-size: .66rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.product-sale-panel__message strong { color: #fff; font-family: var(--aac-display-font); font-size: clamp(1.35rem, 3vw, 2.25rem); line-height: 1; }
.product-sale-panel__message em { margin-top: 4px; color: #FFE8B5; font-size: .84rem; font-style: normal; font-weight: 800; }

.footer-product-browser { position: relative; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 8px; padding: clamp(18px, 3vw, 28px) max(12px, calc((100vw - var(--aac-wrap)) / 2)); border-top: 1px solid var(--aac-border); background: linear-gradient(180deg, color-mix(in srgb, var(--aac-soft-aqua) 34%, var(--aac-card)), var(--aac-card)); }
.footer-product-browser__rail { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(145px, 16vw, 230px); gap: 11px; overflow-x: auto; padding: 2px; scrollbar-width: none; scroll-snap-type: x proximity; }
.footer-product-browser__rail::-webkit-scrollbar { display: none; }
.footer-product-preview { position: relative; overflow: hidden; aspect-ratio: 4 / 3; border-radius: 13px; background: var(--aac-soft-aqua); box-shadow: 0 7px 20px rgba(45,78,75,.1); scroll-snap-align: start; }
.footer-product-preview img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.footer-product-preview:hover img { transform: scale(1.035); }
.footer-product-preview__placeholder { display: grid; place-items: center; width: 100%; height: 100%; color: var(--aac-muted-teal); }
.footer-product-preview__placeholder svg { width: 34px; height: 34px; }
.footer-product-preview__sale { position: absolute; top: 8px; left: 8px; padding: 5px 8px; border-radius: 999px; background: linear-gradient(135deg, #C43F5A, #E86B78); color: #fff; font-size: .68rem; font-weight: 850; box-shadow: 0 5px 13px rgba(144,37,63,.25); }
.footer-product-browser__arrow { display: grid; place-items: center; width: 38px; height: 38px; padding: 0; border: 1px solid var(--aac-border); border-radius: 50%; background: var(--aac-card); color: var(--aac-text); cursor: pointer; box-shadow: 0 6px 16px rgba(45,78,75,.08); }
.footer-product-browser__arrow span { margin-top: -2px; font-size: 1.65rem; line-height: 1; }
.footer-product-browser__arrow:hover { border-color: var(--aac-muted-teal); color: var(--aac-primary); transform: translateY(-1px); }

@media (max-width: 720px) {
	.product-sale-panel { grid-template-columns: auto 1fr; }
	.footer-product-browser { gap: 5px; padding-left: 7px; padding-right: 7px; }
	.footer-product-browser__rail { grid-auto-columns: min(64vw, 210px); }
	.footer-product-browser__arrow { width: 34px; height: 34px; }
}
@media (max-width: 420px) {
	.product-sale-panel__seal { width: 72px; }
	.product-sale-panel { gap: 12px; padding: 15px; }
}
@media (prefers-reduced-motion: no-preference) {
	.product-sale-panel__seal { animation: aacuts-sale-breathe 2.8s ease-in-out infinite; }
	@keyframes aacuts-sale-breathe { 0%, 100% { transform: rotate(-6deg) scale(1); } 50% { transform: rotate(-4deg) scale(1.035); } }
}

/* ----------------------------------------- compact sale offer strip 2.4 */

.product-sale-panel--compact {
	position: relative;
	display: grid;
	grid-template-columns: 104px minmax(150px, .72fr) minmax(300px, 1.45fr) auto;
	align-items: center;
	gap: clamp(10px, 1.8vw, 20px);
	min-height: 112px;
	max-height: 126px;
	overflow: hidden;
	margin: 14px 0 20px;
	padding: 27px 14px 10px;
	border: 1px solid color-mix(in srgb, var(--aac-muted-teal) 45%, var(--aac-border));
	border-radius: 17px;
	background: radial-gradient(circle at 92% 0, rgba(255,255,255,.74), transparent 28%), linear-gradient(112deg, #EDF9F6, #DDEFF4 60%, #F1ECF7);
	color: var(--aac-text);
	box-shadow: 0 12px 30px rgba(45, 91, 88, .13);
}
.product-sale-panel--compact::after { content: none; }
.product-sale-panel__discount-cap { position: absolute; z-index: 5; top: 0; left: 0; display: inline-flex; align-items: center; gap: 6px; min-height: 25px; padding: 3px 16px 4px 13px; border-radius: 0 0 14px 0; background: linear-gradient(105deg, #66507D, #84649A); color: #fff; box-shadow: 5px 6px 14px rgba(79, 55, 97, .17); }
.product-sale-panel__discount-cap strong { color: #fff; font-family: var(--aac-display-font); font-size: .92rem; line-height: 1; }
.product-sale-panel__discount-cap small { color: #F9F2FF; font-size: .59rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.product-sale-panel__frames { position: relative; width: 96px; height: 72px; }
.product-sale-panel__frame { position: absolute; top: 2px; left: 17px; display: grid; place-items: center; width: 65px; height: 66px; overflow: hidden; padding: 4px 4px 11px; border: 1px solid rgba(76,98,96,.18); border-radius: 4px; background: #fff; color: var(--aac-muted-teal); box-shadow: 0 7px 15px rgba(43,74,72,.16); transform: rotate(-8deg) translateX(-14px); }
.product-sale-panel__frame:nth-child(2) { z-index: 2; transform: rotate(5deg) translateX(6px) translateY(-1px); }
.product-sale-panel__frame:nth-child(3) { z-index: 3; transform: rotate(-1deg) translateX(19px) translateY(3px); }
.product-sale-panel__frame img { width: 100%; height: 100%; object-fit: cover; }
.product-sale-panel__frame svg { width: 25px; height: 25px; }
.product-sale-panel--compact .product-sale-panel__message { display: grid; gap: 1px; min-width: 0; }
.product-sale-panel--compact .product-sale-panel__message > small { color: #5C7C78; font-size: .57rem; letter-spacing: .13em; }
.product-sale-panel--compact .product-sale-panel__message > strong { overflow: hidden; color: #59436C; font-size: clamp(1.02rem, 1.8vw, 1.38rem); line-height: 1.05; text-overflow: ellipsis; white-space: nowrap; }
.product-sale-panel--compact .product-sale-panel__message > span { color: #526E6B; font-size: .68rem; font-weight: 750; white-space: nowrap; }
.product-sale-panel--compact .product-sale-panel__message em { margin: 0 3px 0 0; color: #C14A60; font-size: inherit; }
.product-sale-panel__current-price { margin-top: 2px; }
.product-sale-panel__current-price .aac-price { display: inline-flex; align-items: baseline; gap: 6px; }
.product-sale-panel__current-price del { color: #879794; font-weight: 600; }
.product-sale-panel__current-price ins { color: #2E7772; font-size: .92rem; font-weight: 900; text-decoration: none; }
.product-sale-panel__carousel { display: grid; grid-template-columns: 29px minmax(0, 1fr) 29px; align-items: center; min-width: 0; height: 76px; overflow: hidden; border: 1px solid rgba(67,127,137,.18); border-radius: 12px; background: linear-gradient(135deg, rgba(221,243,246,.9), rgba(234,247,246,.92)); }
.product-sale-panel__stage { min-width: 0; height: 100%; }
.product-sale-panel__slide { display: grid; grid-template-columns: 66px minmax(0, 1fr); align-items: center; gap: 9px; height: 100%; padding: 6px; color: inherit; text-decoration: none; }
.product-sale-panel__slide[hidden] { display: none; }
.product-sale-panel__thumb { position: relative; width: 64px; height: 62px; overflow: hidden; border-radius: 9px; background: #fff; }
.product-sale-panel__thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-sale-panel__thumb > svg { width: 100%; height: 100%; padding: 19px; color: var(--aac-muted-teal); }
.product-sale-panel__thumb small { position: absolute; top: 4px; left: 4px; padding: 3px 5px; border-radius: 999px; background: linear-gradient(105deg, #66507D, #84649A); color: #fff; font-size: .47rem; font-weight: 850; white-space: nowrap; }
.product-sale-panel__deal-copy { display: grid; min-width: 0; gap: 1px; }
.product-sale-panel__deal-copy > small { color: #C14A60; font-size: .55rem; font-weight: 850; letter-spacing: .02em; }
.product-sale-panel__deal-copy > strong { overflow: hidden; color: #294946; font-size: .76rem; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; }
.product-sale-panel__deal-copy .aac-price { display: inline-flex; gap: 5px; color: #2E7772; font-size: .66rem; font-weight: 850; }
.product-sale-panel__deal-copy del { color: #8C9B99; font-weight: 550; }
.product-sale-panel__deal-copy ins { color: #2E7772; text-decoration: none; }
.product-sale-panel__arrow { display: grid; place-items: center; width: 25px; height: 25px; margin: 0 auto; padding: 0; border: 1px solid rgba(65,121,126,.18); border-radius: 50%; background: rgba(255,255,255,.84); color: #3D716D; cursor: pointer; }
.product-sale-panel__arrow span { margin-top: -2px; font-size: 1.12rem; line-height: 1; }
.product-sale-panel__arrow:hover { background: #fff; color: #66507D; transform: scale(1.04); }
[data-theme="dark"] .product-sale-panel--compact { border-color: #345B59; background: linear-gradient(112deg, #173937, #1D4144 60%, #2D2638); }
[data-theme="dark"] .product-sale-panel__carousel { border-color: #345B59; background: linear-gradient(135deg, #234B4E, #203F40); }
[data-theme="dark"] .product-sale-panel--compact .product-sale-panel__message > strong, [data-theme="dark"] .product-sale-panel__deal-copy > strong { color: #EAF7F4; }
[data-theme="dark"] .product-sale-panel--compact .product-sale-panel__message > span, [data-theme="dark"] .product-sale-panel--compact .product-sale-panel__message > small { color: #A6C9C4; }

@media (max-width: 1080px) {
	.product-sale-panel--compact { grid-template-columns: 96px minmax(145px, .7fr) minmax(270px, 1.4fr); }
}
@media (max-width: 760px) {
	.product-sale-panel--compact { grid-template-columns: 90px minmax(0, 1fr); max-height: none; min-height: 0; padding: 29px 12px 11px; }
	.product-sale-panel__carousel { grid-column: 2; height: 72px; }
	.product-sale-panel--compact .product-sale-panel__message { align-self: end; }
}
@media (max-width: 520px) {
	.product-sale-panel--compact { grid-template-columns: 78px minmax(0, 1fr); gap: 8px; }
	.product-sale-panel__frames { width: 76px; transform: scale(.82); transform-origin: left center; }
	.product-sale-panel__carousel { grid-column: 1 / -1; }
	.product-sale-panel--compact .product-sale-panel__message > span { white-space: normal; }
}
@media (prefers-reduced-motion: no-preference) {
	.product-sale-panel__slide:not([hidden]) { animation: aacuts-deal-in .32s ease both; }
	@keyframes aacuts-deal-in { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: none; } }
}

/* ------------------------------------------- darker theme title colors 2.4 */

:root { --aac-title: #214F4D; }
[data-theme="dark"] { --aac-title: #BFE5DF; }
h1, h2, h3, h4,
.section-title,
.archive-title,
.page-title,
.design-single__title,
.design-card__title a,
.post-card__title,
.widget-title,
.footer-heading,
.quick-links__label {
	color: var(--aac-title);
}
.design-card__title a:hover, .post-card__link:hover .post-card__title { color: var(--aac-primary); }

/* ------------------------------------------ sale and product refinements 2.5 */

.homepage-sale-strip .product-sale-panel--compact { margin-top: 12px; margin-bottom: 8px; }
.product-sale-panel--compact {
	grid-template-columns: 108px minmax(165px, .62fr) minmax(390px, 1.62fr) auto;
	min-height: 132px;
	max-height: 148px;
	padding-top: 34px;
	border-color: color-mix(in srgb, #D85772 24%, var(--aac-border));
}
.product-sale-panel__discount-cap { min-height: 28px; padding: 4px 18px 5px 14px; background: linear-gradient(105deg, #C83E5B, #EF6D89 58%, #F49AA9); box-shadow: 5px 7px 16px rgba(181, 48, 79, .22); }
.product-sale-panel__discount-cap strong { font-size: 1rem; }
.product-sale-panel__discount-cap small { color: #FFF5F7; }
.product-sale-panel__tape { position: absolute; z-index: 6; top: 5px; left: 50%; max-width: 250px; overflow: hidden; padding: 5px 19px; background: var(--aac-sale-tape-bg, #F4C85B); color: var(--aac-sale-tape-color, #4D3B1D); clip-path: polygon(4% 0, 96% 2%, 100% 50%, 96% 100%, 3% 97%, 0 48%); font-size: .64rem; font-weight: 850; letter-spacing: .055em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; transform: translateX(-50%) rotate(-1deg); box-shadow: 0 5px 10px rgba(75,58,25,.13); }
.product-sale-panel__carousel { grid-template-columns: 34px minmax(0, 1fr) 34px; height: 96px; border-radius: 14px; }
.product-sale-panel__slide { grid-template-columns: 84px minmax(0, 1fr); gap: 12px; padding: 7px; }
.product-sale-panel__thumb { width: 82px; height: 80px; border-radius: 10px; }
.product-sale-panel__thumb small { display: none; }
.product-sale-panel__deal-copy { gap: 2px; }
.product-sale-panel__deal-copy > small { font-size: .62rem; }
.product-sale-panel__deal-copy > strong { font-size: .88rem; }
.product-sale-panel__deal-copy .aac-price { font-size: .75rem; }
.product-sale-panel__arrow { width: 29px; height: 29px; }
.product-sale-panel__arrow span { font-size: 1.3rem; }
.product-feature-strip { margin-top: 8px; }

.section--latest .section-title, .section--trending .section-title { font-family: var(--aac-hero-font, var(--aac-display-font)); font-weight: var(--aac-hero-weight, 200); letter-spacing: -.035em; }
.section--latest { padding-bottom: clamp(10px, 1.5vw, 18px); }
.section--trending { padding-top: clamp(10px, 1.5vw, 18px); }
.design-single__title { font-weight: 500; }

.design-gallery__zoom { position: relative; display: block; width: 100%; height: 100%; margin: 0; padding: 0; border: 0; background: transparent; cursor: zoom-in; }
.design-gallery__zoom-hint { position: absolute; right: 12px; bottom: 12px; padding: 6px 10px; border-radius: 999px; background: rgba(30,61,59,.78); color: #fff; font-size: .66rem; font-weight: 800; opacity: 0; transform: translateY(4px); transition: opacity .2s ease, transform .2s ease; }
.design-gallery__zoom:hover .design-gallery__zoom-hint, .design-gallery__zoom:focus-visible .design-gallery__zoom-hint { opacity: 1; transform: none; }
.design-gallery-lightbox[hidden] { display: none; }
.design-gallery-lightbox { position: fixed; z-index: 1000; inset: 0; display: grid; place-items: center; padding: 24px; }
.design-gallery-lightbox__backdrop { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(10,24,23,.88); cursor: zoom-out; }
.design-gallery-lightbox__panel { position: relative; z-index: 1; display: grid; place-items: center; overflow: hidden; width: min(90vw, 960px); height: auto; max-height: calc(100dvh - 48px); padding: 14px; border-radius: 18px; background: var(--aac-card); box-shadow: 0 30px 90px rgba(0,0,0,.38); }
.design-gallery-lightbox__panel img { display: block; width: auto; height: auto; max-width: 100%; max-height: calc(100dvh - 76px); object-fit: contain; }
.design-gallery-lightbox__close { position: absolute; z-index: 2; top: 10px; right: 10px; display: grid; place-items: center; width: 38px; height: 38px; padding: 0; border: 0; border-radius: 50%; background: #fff; color: #284946; font-size: 1.5rem; cursor: pointer; box-shadow: 0 6px 20px rgba(0,0,0,.18); }

.design-single__layout { column-gap: clamp(24px, 4vw, 56px); row-gap: 0; }
.design-single__related { grid-column: 1; min-width: 0; }
.design-single__license { grid-column: 2; min-width: 0; }
.design-single__license .license-box { height: 100%; margin-top: 0; }
.design-related-compact { margin: 0; padding: 0; }
.design-related-compact__head { margin: 0 0 10px; }
.design-related-compact__head .eyebrow { margin-bottom: 2px; }
.design-related-compact__head .section-title { margin: 0; }
.design-related-compact .design-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.design-related-compact .design-card__body { padding: 10px; }
.design-related-compact .design-card__title { font-size: .78rem; }
.design-related-compact .design-card__meta { font-size: .68rem; }

.aacuts-sale-tape-controls { margin-top: 18px; grid-template-columns: minmax(220px, 2fr) minmax(120px, 1fr) minmax(120px, 1fr); }

@media (max-width: 1080px) {
	.product-sale-panel--compact { grid-template-columns: 98px minmax(150px, .58fr) minmax(300px, 1.4fr) auto; }
}
@media (max-width: 900px) {
	.product-sale-panel--compact { grid-template-columns: 88px minmax(0, 1fr) auto; max-height: none; }
	.product-sale-panel__frames { grid-column: 1; grid-row: 1; }
	.product-sale-panel--compact .product-sale-panel__message { grid-column: 2; grid-row: 1; }
	.product-sale-panel__carousel { grid-column: 1 / -1; grid-row: 2; }
}
@media (max-width: 520px) {
	.product-sale-panel--compact { grid-template-columns: 76px minmax(0, 1fr); }
	.product-sale-panel__carousel { grid-column: 1 / -1; grid-row: 3; height: 94px; }
	.product-sale-panel__tape { left: auto; right: 7px; max-width: 170px; transform: rotate(-1deg); }
	.design-gallery-lightbox { padding: 10px; }
	.design-gallery-lightbox__panel { width: 100%; height: auto; max-height: calc(100dvh - 20px); padding: 8px; }
	.design-gallery-lightbox__panel img { max-height: calc(100dvh - 36px); }
	.design-related-compact .design-grid { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(150px, 68vw); grid-template-columns: none; overflow-x: auto; padding-bottom: 6px; scroll-snap-type: x proximity; }
	.design-related-compact .design-card { scroll-snap-align: start; }
	.aacuts-sale-tape-controls { grid-template-columns: 1fr; }
}


/* v2.5 related-license mobile stack */
@media (max-width: 1024px) {
	.design-single__related, .design-single__license { grid-column: 1; }
}


/* ------------------------------------------ storefront refinements 2.6 */

.discovery-filter {
	position: relative;
	z-index: 18;
	border-bottom: 1px solid color-mix(in srgb, var(--aac-primary) 12%, transparent);
	background: color-mix(in srgb, var(--aac-card) 90%, transparent);
	box-shadow: 0 7px 24px rgba(57, 123, 121, .055);
	backdrop-filter: blur(14px) saturate(125%);
}
.discovery-filter__inner { display: flex; align-items: center; gap: clamp(18px, 3vw, 34px); min-height: 48px; overflow-x: auto; padding-top: 6px; padding-bottom: 6px; scrollbar-width: none; }
.discovery-filter__inner::-webkit-scrollbar { display: none; }
.discovery-filter__sort, .discovery-filter__categories { display: flex; flex: 0 0 auto; align-items: center; gap: 5px; white-space: nowrap; }
.discovery-filter__sort strong { color: var(--aac-title); font-family: var(--aac-display-font); font-size: .8rem; letter-spacing: .02em; }
.discovery-filter__chevron { margin-right: 2px; color: var(--aac-muted-teal); font-size: 1.15rem; line-height: 1; }
.discovery-filter a { padding: 6px 10px; border-radius: 999px; color: var(--aac-text-muted); font-size: .75rem; font-weight: 720; line-height: 1; text-decoration: none; transition: color var(--aac-speed) var(--aac-ease), background var(--aac-speed) var(--aac-ease), transform var(--aac-speed) var(--aac-ease); }
.discovery-filter a:hover, .discovery-filter a.is-active { background: color-mix(in srgb, var(--aac-soft-aqua) 75%, var(--aac-card)); color: var(--aac-primary); transform: translateY(-1px); }
.discovery-filter__categories { gap: 0; }
.discovery-filter__categories::before { content: ''; align-self: stretch; width: 1px; margin-right: 10px; background: var(--aac-border); }
.discovery-filter__categories a { position: relative; border-radius: 7px; }
.discovery-filter__categories a + a::before { content: ''; position: absolute; left: -1px; top: 25%; width: 1px; height: 50%; background: var(--aac-border); }

.hero-sale-tape { display: inline-flex; align-items: center; justify-content: center; width: fit-content; max-width: min(92vw, 680px); margin: 0 auto 12px; padding: 9px 28px 10px; background: linear-gradient(108deg, color-mix(in srgb, var(--aac-sale-tape-bg, #F4C85B) 82%, #fff), var(--aac-sale-tape-bg, #F4C85B)); color: var(--aac-sale-tape-color, #4D3B1D); clip-path: polygon(3% 2%, 97% 0, 100% 48%, 97% 100%, 2% 97%, 0 51%); font-family: var(--aac-display-font); font-size: clamp(1rem, 1.3vw, var(--aac-sale-tape-size, 20px)); font-weight: 800; letter-spacing: .035em; line-height: 1.15; text-align: center; text-transform: uppercase; filter: drop-shadow(0 8px 10px rgba(57, 91, 76, .13)); transform-origin: center; }
.hero__trust { width: fit-content; max-width: 100%; margin-right: auto; margin-left: auto; padding: 10px 18px; border: 1px solid rgba(79, 155, 120, .14); border-radius: 999px; background: linear-gradient(100deg, rgba(79, 155, 120, .08), rgba(141, 225, 229, .13), rgba(79, 155, 120, .08)); box-shadow: inset 0 1px rgba(255,255,255,.72); backdrop-filter: blur(8px); }

.product-sale-panel--compact {
	grid-template-columns: 108px minmax(155px, .58fr) minmax(340px, 1.5fr) minmax(270px, auto);
	min-height: 144px;
	max-height: none;
	padding-top: 40px;
	border: 0;
	background:
		radial-gradient(circle at 7% 0%, rgba(141, 225, 229, .22), transparent 25rem),
		linear-gradient(118deg, rgba(247,255,252,.93), rgba(221,244,240,.74) 52%, rgba(255,255,255,.86));
	box-shadow: inset 0 1px rgba(255,255,255,.94), 0 17px 38px rgba(57, 123, 121, .13);
	backdrop-filter: blur(16px) saturate(132%);
}
.product-sale-panel__tape { top: 7px; max-width: 340px; padding: 7px 25px 8px; font-size: clamp(.78rem, 1vw, var(--aac-sale-tape-size, 20px)); box-shadow: 0 7px 16px rgba(75,58,25,.14); }
.product-sale-panel__carousel { height: 106px; border: 0; background: linear-gradient(135deg, rgba(255,255,255,.52), rgba(221,244,240,.48)); box-shadow: inset 0 1px rgba(255,255,255,.88), 0 8px 21px rgba(57,123,121,.08); backdrop-filter: blur(10px); }
.product-sale-panel__slide { grid-template-columns: 92px minmax(0, 1fr); }
.product-sale-panel__thumb { width: 90px; height: 90px; }
[data-theme="dark"] .product-sale-panel--compact { border: 0; background: radial-gradient(circle at 7% 0%, rgba(141,225,229,.10), transparent 24rem), linear-gradient(118deg, rgba(25,51,49,.94), rgba(28,65,62,.84), rgba(24,47,46,.92)); }
[data-theme="dark"] .product-sale-panel__carousel { border: 0; background: linear-gradient(135deg, rgba(45,83,80,.62), rgba(31,65,63,.58)); }

@media (max-width: 1080px) {
	.product-sale-panel--compact { grid-template-columns: 96px minmax(145px, .58fr) minmax(285px, 1.2fr); }
}
@media (max-width: 760px) {
	.discovery-filter__inner { padding-right: 14px; padding-left: 14px; }
	.discovery-filter__categories::before { margin-right: 6px; }
	.product-sale-panel--compact { grid-template-columns: 84px minmax(0, 1fr); }
	.product-sale-panel__carousel { grid-column: 1 / -1; grid-row: 2; }
}
@media (max-width: 520px) {
	.hero-sale-tape { margin-bottom: 9px; padding: 8px 21px; }
	.hero__trust { justify-content: center; width: 100%; border-radius: 16px; }
	.product-sale-panel__tape { right: 8px; left: 8px; max-width: none; text-align: center; transform: rotate(-1deg); }
	.product-sale-panel__slide { grid-template-columns: 82px minmax(0, 1fr); }
	.product-sale-panel__thumb { width: 80px; height: 80px; }
}

@media (prefers-reduced-motion: no-preference) {
	.hero-sale-tape--pop { animation: aacuts-hero-tape-pop 5.5s ease-in-out infinite; }
	.hero-sale-tape--shake { animation: aacuts-hero-tape-shake 6s ease-in-out infinite; }
	.hero-sale-tape--pop-shake { animation: aacuts-hero-tape-pop-shake 6.5s ease-in-out infinite; }
	@keyframes aacuts-hero-tape-pop { 0%, 8%, 100% { transform: scale(1); } 3% { transform: scale(1.045); } 6% { transform: scale(.995); } }
	@keyframes aacuts-hero-tape-shake { 0%, 7%, 100% { transform: rotate(0); } 2% { transform: rotate(-1deg); } 4% { transform: rotate(1deg); } 6% { transform: rotate(-.45deg); } }
	@keyframes aacuts-hero-tape-pop-shake { 0%, 9%, 100% { transform: scale(1) rotate(0); } 2% { transform: scale(1.045) rotate(-.8deg); } 4% { transform: scale(1.025) rotate(.9deg); } 6% { transform: scale(1.008) rotate(-.4deg); } 8% { transform: scale(1) rotate(0); } }
}


/* ---------------------------------------- product gallery slideshow 2.6 */

.design-gallery__main { position: relative; }
.design-gallery__thumbs[hidden] { display: none !important; }
.design-gallery__nav { position: absolute; z-index: 4; top: 50%; display: grid; place-items: center; width: 42px; height: 42px; margin: 0; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.88); color: var(--aac-primary); cursor: pointer; box-shadow: 0 8px 24px rgba(37,56,56,.16), inset 0 1px rgba(255,255,255,.92); backdrop-filter: blur(10px); transform: translateY(-50%); transition: color var(--aac-speed) var(--aac-ease), background var(--aac-speed) var(--aac-ease), transform var(--aac-speed) var(--aac-ease); }
.design-gallery__nav--prev { left: 14px; }
.design-gallery__nav--next { right: 14px; }
.design-gallery__nav span { margin-top: -3px; font-size: 1.8rem; line-height: 1; }
.design-gallery__nav:hover { background: #fff; color: var(--aac-focus); transform: translateY(-50%) scale(1.06); }
.design-gallery__counter { position: absolute; z-index: 4; bottom: 14px; left: 50%; padding: 5px 10px; border-radius: 999px; background: rgba(37,56,56,.72); color: #fff; font-size: .68rem; font-weight: 800; font-variant-numeric: tabular-nums; line-height: 1; letter-spacing: .06em; transform: translateX(-50%); backdrop-filter: blur(8px); }
[data-theme="dark"] .design-gallery__nav { background: rgba(25,41,41,.88); color: var(--aac-aqua); }
@media (max-width: 520px) {
	.design-gallery__nav { width: 38px; height: 38px; }
	.design-gallery__nav--prev { left: 9px; }
	.design-gallery__nav--next { right: 9px; }
	.design-gallery__counter { bottom: 9px; }
}


.aacuts-license-link-control { margin-top: 18px; }
.license-box__full-link { margin: 14px 0 0; padding-top: 12px; border-top: 1px solid color-mix(in srgb, var(--aac-primary) 14%, transparent); font-size: .82rem; }
.license-box__full-link .text-link { font-weight: 780; }


/* ---------------------------------------- aligned 1500 × 1000 product art */

.design-gallery__main,
.design-card__media { aspect-ratio: 3 / 2; }
.design-gallery__img,
.design-card__media img { object-fit: contain; }


/* -------------------------------- glass navigation + subscription 2.7 */

.site-header { padding: 7px 14px; background: transparent; box-shadow: none; }
.site-header__inner { padding: 8px 12px; border: 1px solid rgba(255,255,255,.7); border-radius: 20px; background: linear-gradient(120deg, rgba(255,255,255,.76), rgba(221,244,240,.55)); box-shadow: inset 0 1px rgba(255,255,255,.94), 0 12px 30px rgba(57,123,121,.10); backdrop-filter: blur(18px) saturate(145%); }
.primary-menu { gap: 3px; padding: 4px; border: 1px solid rgba(255,255,255,.58); border-radius: 15px; background: linear-gradient(120deg, rgba(255,255,255,.48), rgba(221,244,240,.38)); box-shadow: inset 0 1px rgba(255,255,255,.8); backdrop-filter: blur(14px) saturate(135%); }
.primary-menu a { padding: 10px 14px; font-size: 1.02rem; font-weight: 650; }
[data-theme="dark"] .site-header__inner { border-color: rgba(141,225,229,.12); background: linear-gradient(120deg, rgba(25,41,41,.88), rgba(30,61,59,.74)); }
[data-theme="dark"] .primary-menu { border-color: rgba(141,225,229,.1); background: rgba(30,61,59,.48); }

.discovery-filter { z-index: 24; margin: 12px 0 18px; border: 0; background: transparent; box-shadow: none; backdrop-filter: none; }
.discovery-filter__inner { display: block; min-height: 0; overflow: visible; padding-top: 0; padding-bottom: 0; }
.discovery-filter__dropdown { position: relative; width: min(100%, 1180px); }
.discovery-filter__dropdown summary { display: flex; align-items: center; gap: 10px; min-height: 58px; padding: 10px 15px; border: 1px solid rgba(255,255,255,.72); border-radius: 18px; background: linear-gradient(120deg, rgba(255,255,255,.76), rgba(221,244,240,.54), rgba(247,255,252,.78)); color: var(--aac-title); box-shadow: inset 0 1px rgba(255,255,255,.95), 0 12px 30px rgba(57,123,121,.10); cursor: pointer; list-style: none; backdrop-filter: blur(18px) saturate(145%); }
.discovery-filter__dropdown summary::-webkit-details-marker { display: none; }
.discovery-filter__dropdown summary strong { font-family: var(--aac-display-font); font-size: 1.03rem; letter-spacing: -.015em; }
.discovery-filter__filter-icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 11px; background: rgba(141,225,229,.23); color: var(--aac-primary); }
.discovery-filter__filter-icon svg { width: 20px; height: 20px; }
.discovery-filter__current { margin-left: auto; color: var(--aac-text-muted); font-size: .93rem; font-weight: 700; }
.discovery-filter__caret { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 9px; background: rgba(255,255,255,.55); transition: transform .2s ease; }
.discovery-filter__caret svg { width: 17px; height: 17px; }
.discovery-filter__dropdown[open] .discovery-filter__caret { transform: rotate(180deg); }
.discovery-filter__panel { position: absolute; z-index: 30; top: calc(100% + 8px); left: 0; width: min(100%, 940px); padding: 18px; border: 1px solid rgba(255,255,255,.72); border-radius: 20px; background: linear-gradient(130deg, rgba(255,255,255,.9), rgba(221,244,240,.83)); box-shadow: inset 0 1px rgba(255,255,255,.96), 0 22px 55px rgba(37,76,73,.18); backdrop-filter: blur(24px) saturate(150%); }
.discovery-filter__group + .discovery-filter__group { margin-top: 15px; padding-top: 15px; border-top: 1px solid rgba(57,123,121,.12); }
.discovery-filter__label { display: block; margin-bottom: 8px; color: var(--aac-text-muted); font-size: .72rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.discovery-filter__links { display: flex; flex-wrap: wrap; gap: 7px; }
.discovery-filter__links a { padding: 9px 13px; border: 1px solid rgba(57,123,121,.09); border-radius: 11px; background: rgba(255,255,255,.46); color: var(--aac-text); font-size: .92rem; font-weight: 700; text-decoration: none; }
.discovery-filter__links a:hover, .discovery-filter__links a.is-active { border-color: rgba(57,123,121,.18); background: rgba(221,244,240,.92); color: var(--aac-primary); transform: translateY(-1px); }
[data-theme="dark"] .discovery-filter__dropdown summary, [data-theme="dark"] .discovery-filter__panel { border-color: rgba(141,225,229,.12); background: linear-gradient(130deg, rgba(25,41,41,.94), rgba(29,66,63,.9)); }
[data-theme="dark"] .discovery-filter__links a { background: rgba(36,76,73,.56); }

.design-single__layout { align-items: start; row-gap: 0; }
.design-single__visual-column, .design-single__details-column { display: flex; min-width: 0; flex-direction: column; }
.design-single__related { min-width: 0; margin: 0; padding: 0; }
.design-related-compact { margin: 0; padding: 0; }
.design-related-compact__head { margin-top: 0; padding-top: 0; }
.design-related-compact .design-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.design-related-compact .design-card__hover { display: none !important; }
.design-single__commerce { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(210px, .8fr); align-items: stretch; gap: 14px; margin-top: 14px; }
.design-single__license, .design-single__subscription { min-width: 0; }
.design-single__license .license-box, .design-single__subscription .subscription-box { height: 100%; margin: 0; }

.subscription-box { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.7); border-radius: 22px; background: radial-gradient(circle at 12% 0, rgba(141,225,229,.19), transparent 18rem), linear-gradient(130deg, rgba(255,255,255,.76), rgba(221,244,240,.53)); box-shadow: inset 0 1px rgba(255,255,255,.95), 0 15px 36px rgba(57,123,121,.11); backdrop-filter: blur(18px) saturate(140%); }
.subscription-box::after { content: ''; position: absolute; right: -40px; bottom: -55px; width: 140px; height: 140px; border-radius: 50%; background: rgba(141,225,229,.13); pointer-events: none; }
.subscription-box__copy, .subscription-box__signup { position: relative; z-index: 1; }
.subscription-box__kicker { display: block; margin-bottom: 5px; color: var(--aac-primary); font-size: .68rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.subscription-box h2 { margin: 0; color: var(--aac-title); font-size: clamp(1.05rem, 1.5vw, 1.38rem); line-height: 1.16; }
.subscription-box__copy p { margin: 7px 0 0; color: var(--aac-text-muted); font-size: .82rem; line-height: 1.48; }
.subscription-box__form { display: flex; gap: 7px; }
.subscription-box__form input[type="email"] { min-width: 0; flex: 1; height: 43px; padding: 0 12px; border: 1px solid rgba(57,123,121,.16); border-radius: 12px; background: rgba(255,255,255,.72); box-shadow: inset 0 1px 2px rgba(37,56,56,.04); }
.subscription-box__form button, .subscription-box__connect { display: inline-flex; align-items: center; justify-content: center; min-height: 43px; padding: 0 14px; border: 0; border-radius: 12px; background: linear-gradient(135deg, var(--aac-button), #75A7A3); color: #fff; font-size: .78rem; font-weight: 800; text-decoration: none; cursor: pointer; }
.subscription-box__signup small { display: block; margin-top: 7px; color: var(--aac-text-muted); font-size: .66rem; }
.subscription-box--hero, .subscription-box--section { display: grid; grid-template-columns: minmax(0, .9fr) minmax(300px, 1.1fr); align-items: center; gap: 22px; width: min(100%, 920px); margin: 22px auto 0; padding: 18px 20px; text-align: left; }
.subscription-box--product { display: flex; flex-direction: column; justify-content: center; gap: 14px; padding: 18px; }
.subscription-box--product .subscription-box__form { flex-direction: column; }
.subscription-box--product .subscription-box__form button { width: 100%; }
[data-theme="dark"] .subscription-box { border-color: rgba(141,225,229,.12); background: radial-gradient(circle at 12% 0, rgba(141,225,229,.09), transparent 18rem), linear-gradient(130deg, rgba(25,41,41,.9), rgba(29,66,63,.74)); }
[data-theme="dark"] .subscription-box__form input[type="email"] { border-color: rgba(141,225,229,.14); background: rgba(16,35,34,.72); }

@media (max-width: 1052px) {
	.design-single__layout { grid-template-columns: 1fr; }
	.design-single__commerce { grid-template-columns: minmax(0, 1.2fr) minmax(230px, .8fr); }
}
@media (max-width: 760px) {
	.site-header { padding-right: 8px; padding-left: 8px; }
	.site-header__inner { border-radius: 16px; }
	.discovery-filter__panel { position: relative; top: auto; margin-top: 8px; width: 100%; }
	.subscription-box--hero, .subscription-box--section { grid-template-columns: 1fr; gap: 13px; }
	.design-single__commerce { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
	.primary-menu { padding: 0; border: 0; background: transparent; box-shadow: none; }
	.discovery-filter { margin-top: 8px; }
	.discovery-filter__dropdown summary { min-height: 52px; padding: 8px 10px; }
	.discovery-filter__current { display: none; }
	.discovery-filter__panel { padding: 13px; }
	.discovery-filter__links a { flex: 1 1 auto; text-align: center; }
	.subscription-box--hero, .subscription-box--section { padding: 16px; }
	.subscription-box__form { flex-direction: column; }
	.subscription-box__form button { width: 100%; }
}

.design-single__commerce--subscription-only { grid-template-columns: minmax(260px, 420px); justify-content: end; }
@media (max-width: 760px) { .design-single__commerce--subscription-only { grid-template-columns: 1fr; } }


/* -------------------------------- pointer-reactive header geometry 2.7 */

.site-header::before { animation-duration: var(--aac-header-geometry-speed, 10s); }
.site-header::after { animation-duration: calc(var(--aac-header-geometry-speed, 10s) * 1.2); }
.site-header:hover::before, .site-header:hover::after { opacity: calc(.18 + (var(--aac-header-pointer-strength, .58) * .24)); }
.site-header__inner { --aac-header-pointer-x: 50%; --aac-header-pointer-y: 50%; isolation: isolate; overflow: hidden; }
.site-header__inner > * { position: relative; z-index: 2; }
.site-header__inner::after { content: ''; position: absolute; z-index: 1; inset: 0; border-radius: inherit; background-image: linear-gradient(30deg, rgba(33,79,77,.34) 1px, transparent 1px), linear-gradient(150deg, rgba(57,123,121,.29) 1px, transparent 1px), linear-gradient(90deg, rgba(141,225,229,.22) 1px, transparent 1px); background-size: 34px 58px, 34px 58px, 68px 58px; background-position: 0 0, 0 0, 0 0; opacity: 0; pointer-events: none; -webkit-mask-image: radial-gradient(circle 155px at var(--aac-header-pointer-x) var(--aac-header-pointer-y), #000 0, rgba(0,0,0,.92) 42%, transparent 100%); mask-image: radial-gradient(circle 155px at var(--aac-header-pointer-x) var(--aac-header-pointer-y), #000 0, rgba(0,0,0,.92) 42%, transparent 100%); transition: opacity .18s ease; }
.site-header__inner.is-pointer-active::after { opacity: var(--aac-header-pointer-strength, .58); }
[data-theme="dark"] .site-header__inner::after { background-image: linear-gradient(30deg, rgba(141,225,229,.34) 1px, transparent 1px), linear-gradient(150deg, rgba(151,192,189,.28) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px); }
@media (prefers-reduced-motion: reduce), (pointer: coarse) {
	.site-header::before, .site-header::after { animation: none !important; }
	.site-header__inner::after { display: none; }
}

.license-box__full-link { text-align: center; }


/* ---------------------------- visible category rail + tighter header 2.7.1 */

.site-header { padding: 3px 14px; }
.site-header__inner { padding: 5px 10px; }
.primary-menu { padding: 3px; }
.primary-menu a { padding: 7px 13px; }

.discovery-filter__inner { display: flex; align-items: center; gap: 10px; overflow: visible; }
.discovery-filter__dropdown { flex: 0 0 auto; width: auto; }
.discovery-filter__dropdown summary { min-width: 250px; min-height: 52px; padding: 7px 11px; border-radius: 16px; }
.discovery-filter__panel { width: 310px; padding: 14px; }
.discovery-filter__visible-categories { display: flex; min-width: 0; flex: 1 1 auto; align-items: center; gap: 9px; min-height: 52px; padding: 7px 10px 7px 14px; border: 1px solid rgba(255,255,255,.72); border-radius: 16px; background: linear-gradient(120deg, rgba(255,255,255,.72), rgba(221,244,240,.5)); box-shadow: inset 0 1px rgba(255,255,255,.92), 0 10px 26px rgba(57,123,121,.08); backdrop-filter: blur(18px) saturate(140%); }
.discovery-filter__visible-categories > strong { flex: 0 0 auto; color: var(--aac-title); font-family: var(--aac-display-font); font-size: .92rem; white-space: nowrap; }
.discovery-filter__category-links { display: flex; min-width: 0; flex: 1 1 auto; gap: 4px; overflow-x: auto; padding: 2px; scrollbar-width: none; }
.discovery-filter__category-links::-webkit-scrollbar { display: none; }
.discovery-filter__category-links a { flex: 0 0 auto; padding: 7px 10px; border-radius: 9px; color: var(--aac-text-muted); font-size: .82rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.discovery-filter__category-links a:hover, .discovery-filter__category-links a.is-active { background: rgba(221,244,240,.9); color: var(--aac-primary); }
[data-theme="dark"] .discovery-filter__visible-categories { border-color: rgba(141,225,229,.12); background: linear-gradient(120deg, rgba(25,41,41,.9), rgba(29,66,63,.75)); }

@media (max-width: 760px) {
	.site-header { padding: 2px 8px; }
	.site-header__inner { padding: 4px 8px; }
	.discovery-filter__inner { padding-right: 10px; padding-left: 10px; }
	.discovery-filter__dropdown summary { min-width: 205px; }
	.discovery-filter__panel { position: absolute; top: calc(100% + 7px); width: 285px; margin-top: 0; }
	.discovery-filter__visible-categories > strong { font-size: .82rem; }
}
@media (max-width: 520px) {
	.discovery-filter__inner { gap: 6px; }
	.discovery-filter__dropdown summary { min-width: 148px; min-height: 48px; padding: 6px 8px; }
	.discovery-filter__filter-icon { width: 32px; height: 32px; }
	.discovery-filter__dropdown summary strong { font-size: .88rem; }
	.discovery-filter__visible-categories { min-height: 48px; padding: 6px 7px; }
	.discovery-filter__visible-categories > strong { display: none; }
	.discovery-filter__category-links a { padding: 7px 9px; font-size: .78rem; }
}


/* ----------------------- cursor-following geometric lines + dots 2.7.2 */

.site-header__inner::before {
	content: '';
	position: absolute;
	z-index: 1;
	inset: 0;
	border-radius: inherit;
	background-image:
		radial-gradient(circle 6px at var(--aac-header-pointer-x) var(--aac-header-pointer-y), rgba(33,79,77,.86) 0 2px, rgba(57,123,121,.3) 2.5px, transparent 6px),
		radial-gradient(circle, rgba(33,79,77,.58) 0 1.7px, rgba(141,225,229,.28) 1.8px 2.6px, transparent 2.8px);
	background-size: auto, 34px 29px;
	background-position: 0 0, 0 0;
	opacity: 0;
	pointer-events: none;
	-webkit-mask-image: radial-gradient(circle 165px at var(--aac-header-pointer-x) var(--aac-header-pointer-y), #000 0, rgba(0,0,0,.96) 40%, rgba(0,0,0,.42) 72%, transparent 100%);
	mask-image: radial-gradient(circle 165px at var(--aac-header-pointer-x) var(--aac-header-pointer-y), #000 0, rgba(0,0,0,.96) 40%, rgba(0,0,0,.42) 72%, transparent 100%);
	transition: opacity .16s ease;
	animation: aacuts-header-dot-drift calc(var(--aac-header-geometry-speed, 10s) * 1.5) linear infinite alternate;
}
.site-header__inner.is-pointer-active::before { opacity: calc(var(--aac-header-pointer-strength, .58) * .92); }
.site-header__inner::after {
	background-image:
		linear-gradient(30deg, rgba(33,79,77,.4) 1px, transparent 1px),
		linear-gradient(150deg, rgba(57,123,121,.36) 1px, transparent 1px),
		linear-gradient(90deg, rgba(141,225,229,.3) 1px, transparent 1px);
	background-size: 34px 58px, 34px 58px, 68px 58px;
	-webkit-mask-image: radial-gradient(circle 170px at var(--aac-header-pointer-x) var(--aac-header-pointer-y), #000 0, rgba(0,0,0,.96) 38%, rgba(0,0,0,.45) 72%, transparent 100%);
	mask-image: radial-gradient(circle 170px at var(--aac-header-pointer-x) var(--aac-header-pointer-y), #000 0, rgba(0,0,0,.96) 38%, rgba(0,0,0,.45) 72%, transparent 100%);
}
.site-header__inner.is-pointer-active::after { opacity: var(--aac-header-pointer-strength, .58); }
@keyframes aacuts-header-dot-drift {
	from { background-position: 0 0, 0 0; }
	to { background-position: 0 0, 17px 9px; }
}
[data-theme="dark"] .site-header__inner::before {
	background-image:
		radial-gradient(circle 6px at var(--aac-header-pointer-x) var(--aac-header-pointer-y), rgba(141,225,229,.92) 0 2px, rgba(151,192,189,.38) 2.5px, transparent 6px),
		radial-gradient(circle, rgba(141,225,229,.62) 0 1.7px, rgba(255,255,255,.2) 1.8px 2.6px, transparent 2.8px);
}
@media (prefers-reduced-motion: reduce), (pointer: coarse) {
	.site-header__inner::before { display: none; animation: none !important; }
}


/* ------------------------ global laser cursor + compact homepage 2.8 */

.site-header::before,
.site-header::after,
.site-header__inner::before,
.site-header__inner::after { display: none !important; content: none !important; }

.aacuts-laser-cursor { --aac-laser-x: -100px; --aac-laser-y: -100px; position: fixed; z-index: 9999; top: 0; left: 0; width: var(--aac-laser-size, 8px); height: var(--aac-laser-size, 8px); border: 1px solid color-mix(in srgb, var(--aac-laser-color, #8DE1E5) 82%, #fff); border-radius: 50%; background: #fff; box-shadow: 0 0 calc(var(--aac-laser-glow, 30px) * .25) 2px var(--aac-laser-color, #8DE1E5), 0 0 var(--aac-laser-glow, 30px) color-mix(in srgb, var(--aac-laser-color, #8DE1E5) 72%, transparent); opacity: 0; pointer-events: none; transform: translate3d(var(--aac-laser-x), var(--aac-laser-y), 0) translate(-50%, -50%); transition: opacity .12s ease; will-change: transform; }
.aacuts-laser-cursor.is-visible { opacity: 1; }
.aacuts-laser-cursor::after { content: ''; position: absolute; inset: -5px; border: 1px solid color-mix(in srgb, var(--aac-laser-color, #8DE1E5) 78%, transparent); border-radius: 50%; opacity: 0; }
.aacuts-laser-cursor.is-clicked::after { animation: aacuts-laser-pulse .36s ease-out; }
@keyframes aacuts-laser-pulse { from { opacity: .8; transform: scale(.55); } to { opacity: 0; transform: scale(1.8); } }
@media (pointer: coarse) { .aacuts-laser-cursor { display: none !important; } }
@media (prefers-reduced-motion: reduce) { .aacuts-laser-cursor, .aacuts-laser-cursor::after { transition: none; animation: none !important; } }

.home .hero { padding-top: var(--aac-hero-top-spacing, 18px); }
.home .section--creative-tools { padding-top: var(--aac-creative-tools-top-spacing, 18px); }
.subscription-box { display: none !important; }
.design-single__commerce { grid-template-columns: 1fr; }
.discovery-filter__visible-categories { padding-left: 10px; }


/* ---------------- hero geometry, compact sharing and discovery feed 2.9 */

.hero::before,
.hero::after { content: ''; position: absolute; inset: 0; pointer-events: none; }
.hero::before {
	z-index: 0;
	background-image:
		linear-gradient(30deg, color-mix(in srgb, var(--aac-hero-pattern-color, #397B79) 62%, transparent) 1px, transparent 1px),
		linear-gradient(150deg, color-mix(in srgb, var(--aac-hero-pattern-color, #397B79) 52%, transparent) 1px, transparent 1px),
		radial-gradient(circle, color-mix(in srgb, var(--aac-hero-pattern-color, #397B79) 76%, #fff) 0 1.5px, transparent 1.8px);
	background-size: 58px 100px, 58px 100px, 58px 50px;
	background-position: center, center, 0 0;
	opacity: var(--aac-hero-pattern-opacity, .22);
}
.hero::after {
	z-index: 1;
	background:
		radial-gradient(circle at 50% 33%, rgba(255,255,255,.82) 0, rgba(255,255,255,.5) 30%, transparent 62%),
		linear-gradient(115deg, rgba(221,244,240,.44), rgba(255,255,255,.2) 52%, rgba(141,225,229,.22));
}
.hero__inner { position: relative; z-index: 2; }
[data-theme="dark"] .hero::after { background: radial-gradient(circle at 50% 33%, rgba(25,41,41,.62), transparent 62%), linear-gradient(115deg, rgba(29,66,63,.34), rgba(19,32,32,.16), rgba(57,123,121,.24)); }

.aacuts-laser-cursor { width: var(--aac-laser-size, 4px); height: var(--aac-laser-size, 4px); border-width: 0; }

.design-related-compact .design-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-flow: row; grid-auto-columns: auto; overflow: visible; }
.design-related-compact .design-card { min-width: 0; }

.design-single__share { align-items: center; flex-wrap: wrap; gap: 8px; }
.design-single__share .button { min-height: 44px; padding: 9px 13px; white-space: nowrap; }
.design-single__share .button svg { flex: 0 0 auto; }

.home-discovery-feed { padding: 0 0 clamp(28px, 5vw, 58px); }
.home-discovery-feed .design-grid { margin-top: 0; }
.home-discovery-feed .pagination-wrap { padding-bottom: 0; }

@media (max-width: 760px) {
	.design-related-compact .design-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; padding-bottom: 0; scroll-snap-type: none; }
	.design-related-compact .design-card__body { padding: 8px; }
	.design-related-compact .design-card__title { font-size: .72rem; }
}


/* ---------------------- Creative Tools and compact trust details 3.0 */

.section--latest { display: none !important; }
.section--creative-tools { background: linear-gradient(150deg, color-mix(in srgb, var(--aac-soft-aqua) 52%, transparent), transparent 70%); }
.badge--tool { border-color: color-mix(in srgb, var(--aac-primary) 28%, transparent); background: linear-gradient(135deg, var(--aac-primary), var(--aac-muted-teal)); color: #fff; }
.creative-tool-card__excerpt { margin: 5px 0 0; color: var(--aac-text-muted); font-size: .8rem; line-height: 1.45; }
.creative-tool-card__launch { margin-top: 12px; }

.creative-tools-archive { padding-top: clamp(28px, 5vw, 60px); padding-bottom: clamp(40px, 7vw, 90px); }
.creative-tools-archive .archive-header { margin-bottom: 24px; }

.creative-tool-launch { padding: 22px 0 50px; }
.creative-tool-launch__bar { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 14px; }
.creative-tool-launch__bar .eyebrow { margin-bottom: 2px; }
.creative-tool-launch__title { margin: 0; color: var(--aac-title); font-size: clamp(1.35rem, 3vw, 2rem); font-weight: 560; }
.creative-tool-launch__viewport { min-height: 70vh; }
.creative-tool-launch__frame { display: block; width: 100%; height: min(80vh, 980px); min-height: 620px; border: 1px solid var(--aac-border); border-radius: 20px; background: #fff; box-shadow: var(--aac-shadow); }
.creative-tool-launch__empty { padding: clamp(28px, 5vw, 60px); border: 1px solid var(--aac-border); border-radius: 20px; background: var(--aac-card); text-align: center; }

.hero__trust li { display: inline-flex; align-items: center; gap: 7px; }
.hero__trust li::before { display: none; content: none; }
.hero__trust-icon { display: inline-grid; flex: 0 0 auto; place-items: center; width: 24px; height: 24px; border-radius: 8px; background: color-mix(in srgb, var(--aac-primary) 11%, transparent); color: var(--aac-primary); }
.hero__trust-icon svg { width: 15px; height: 15px; }
.hero__trust li:nth-child(2) .hero__trust-icon { background: color-mix(in srgb, var(--aac-aqua) 35%, transparent); color: var(--aac-title); }
.hero__trust li:nth-child(3) .hero__trust-icon { background: color-mix(in srgb, var(--aac-success) 13%, transparent); color: var(--aac-success); }

.license-box__full-link { margin-top: 10px; font-size: .7rem; line-height: 1.35; letter-spacing: 0; }
.license-box__full-link .text-link { font-size: inherit; font-weight: 650; }

@media (max-width: 700px) {
	.creative-tool-launch__bar { align-items: flex-start; flex-direction: column; }
	.creative-tool-launch__frame { min-height: 70vh; border-radius: 14px; }
	.hero__trust li { justify-content: flex-start; }
}


/* ---------------------------------------------- clear free-license terms */
.free-license-details { margin: 12px 0 15px; padding: 12px 13px; border: 1px solid color-mix(in srgb, var(--aac-success) 18%, var(--aac-border)); border-radius: 12px; background: color-mix(in srgb, var(--aac-success) 6%, var(--aac-card)); }
.free-license-details__title { display: block; margin-bottom: 7px; color: var(--aac-title); font-size: .82rem; }
.free-license-details ul { display: grid; gap: 6px; margin: 0; padding: 0; list-style: none; }
.free-license-details li { position: relative; padding-left: 20px; color: var(--aac-text-muted); font-size: .75rem; line-height: 1.4; }
.free-license-details li::before { position: absolute; left: 0; top: .03em; font-weight: 850; }
.free-license-details li.is-allowed::before { content: '✓'; color: var(--aac-success); }
.free-license-details li.is-restricted::before { content: '×'; color: #B84E61; }


/* Remove thumbnail hover labels; card actions remain below the preview. */
.design-card__hover { display: none !important; }


/* -------------------------- Full-screen Creative Tool shell 3.1 */
body.creative-tool-standalone {
	min-height: 100vh;
	min-height: 100dvh;
	margin: 0;
	overflow: hidden;
	background: var(--aac-bg);
}

.creative-tool-standalone #wpadminbar { display: none !important; }
.creative-tool-standalone.admin-bar { margin-top: 0 !important; }
.creative-tool-standalone .site-laser-dot { display: none; }

.creative-tool-shell {
	display: flex;
	flex-direction: column;
	height: 100vh;
	height: 100dvh;
	min-height: 0;
	background:
		radial-gradient(circle at 50% -80%, color-mix(in srgb, var(--aac-aqua) 45%, transparent), transparent 58%),
		var(--aac-bg);
}

.creative-tool-shell__bar {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	grid-template-areas: "browse logo credit";
	align-items: center;
	gap: clamp(12px, 2vw, 28px);
	flex: 0 0 auto;
	min-height: 76px;
	padding: 10px clamp(14px, 3vw, 44px);
	border-bottom: 1px solid color-mix(in srgb, var(--aac-primary) 15%, transparent);
	background: linear-gradient(120deg, color-mix(in srgb, var(--aac-card) 90%, transparent), color-mix(in srgb, var(--aac-soft-aqua) 56%, transparent));
	box-shadow: 0 12px 34px rgba(32, 79, 77, .08);
	backdrop-filter: blur(18px) saturate(135%);
	-webkit-backdrop-filter: blur(18px) saturate(135%);
}

.creative-tool-shell__browse { grid-area: browse; justify-self: start; min-width: 0; }
.creative-tool-shell__logo { grid-area: logo; justify-self: center; line-height: 0; }
.creative-tool-shell__credit { grid-area: credit; justify-self: end; max-width: 32ch; margin: 0; color: var(--aac-text-muted); font-size: clamp(.68rem, .8vw, .78rem); line-height: 1.35; text-align: right; }
.creative-tool-shell__credit em { font-style: italic; }
.creative-tool-shell__logo .site-brand { display: inline-flex; align-items: center; justify-content: center; }
.creative-tool-shell__logo .site-logo { display: block; max-height: 50px; max-width: min(240px, 28vw); object-fit: contain; }
.creative-tool-shell__logo .site-title-text { color: var(--aac-title); font-family: var(--aac-display-font); font-size: clamp(1rem, 2vw, 1.35rem); font-weight: 700; }

.creative-tool-shell__browse-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 42px;
	padding: 9px 15px;
	font-size: clamp(.72rem, 1vw, .86rem);
	white-space: nowrap;
}

.creative-tool-shell__browse-link span { font-size: 1.05em; transition: transform .2s ease; }
.creative-tool-shell__browse-link:hover span { transform: translateX(-3px); }

.creative-tool-shell__main { position: relative; display: flex; flex: 1 1 auto; min-height: 0; width: 100%; overflow: hidden; }
.creative-tool-shell__frame { display: block; flex: 1 1 auto; width: 100%; height: 100%; min-height: 0; border: 0; background: #f7fffd; }
.creative-tool-shell__empty { width: min(680px, calc(100% - 32px)); margin: auto; padding: clamp(28px, 5vw, 56px); border: 1px solid var(--aac-border); border-radius: 22px; background: var(--aac-card); box-shadow: var(--aac-shadow); text-align: center; }

@media (max-width: 760px) {
	.creative-tool-shell__bar {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		grid-template-areas: "logo logo" "browse credit";
		gap: 8px 12px;
		min-height: 106px;
		padding: 8px 12px 10px;
	}
	.creative-tool-shell__logo .site-logo { max-height: 38px; max-width: 190px; }
	.creative-tool-shell__browse-link { min-height: 36px; padding: 7px 10px; white-space: normal; }
	.creative-tool-shell__credit { max-width: 25ch; font-size: .62rem; }
}

@media (max-width: 430px) {
	.creative-tool-shell__bar { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); }
	.creative-tool-shell__browse-link { font-size: .65rem; line-height: 1.2; }
	.creative-tool-shell__credit { font-size: .58rem; }
}

@media (prefers-reduced-motion: reduce) {
	.creative-tool-shell__browse-link span { transition: none; }
}


/* Creative Tools editable italic heading tagline 3.1.1 */
.creative-tools-heading {
	display: flex;
	align-items: baseline;
	flex: 1 1 680px;
	gap: clamp(10px, 1.7vw, 22px);
	min-width: 0;
}

.creative-tools-tagline {
	margin: 0;
	color: var(--aac-text-muted);
	font-size: clamp(.78rem, 1.15vw, .95rem);
	font-weight: 450;
	line-height: 1.45;
}

.creative-tools-tagline em { font-style: italic; }

@media (max-width: 760px) {
	.creative-tools-heading { align-items: flex-start; flex-basis: 100%; flex-direction: column; gap: 5px; }
}


/* Compact sticky storefront navigation for Creative Tools 3.2 */
.creative-tool-standalone { --aac-tool-bar-height: var(--aac-tool-header-height, 54px); }
.creative-tool-shell__bar.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	display: block;
	flex: 0 0 auto;
	min-height: 0;
	padding: 3px 10px;
	border: 0;
	background: color-mix(in srgb, var(--aac-bg) 84%, transparent);
	box-shadow: 0 7px 22px rgba(32, 79, 77, .08);
	backdrop-filter: blur(18px) saturate(135%);
	-webkit-backdrop-filter: blur(18px) saturate(135%);
}

.creative-tool-shell__bar .site-header__inner {
	width: 100%;
	max-width: none;
	min-height: calc(var(--aac-tool-bar-height) - 6px);
	padding: 2px 9px;
	border-radius: 13px;
}

.creative-tool-shell__bar .site-logo { height: min(34px, calc(var(--aac-tool-bar-height) - 16px)) !important; max-width: min(220px, 24vw); }
.creative-tool-shell__bar .site-title-text { font-size: clamp(.98rem, 1.55vw, 1.18rem); }
.creative-tool-shell__bar .primary-menu { padding: 2px; border-radius: 12px; }
.creative-tool-shell__bar .primary-menu a { padding: 6px 11px; font-size: .88rem; }
.creative-tool-shell__bar .icon-button { width: 34px; height: 34px; }
.creative-tool-shell__bar .site-header__brand { padding-right: 10px; }
.creative-tool-shell__main { overscroll-behavior: contain; }
.creative-tool-shell__frame { overflow: auto; }

@media (max-width: 760px) {
	.creative-tool-shell__bar.site-header { display: block; min-height: 0; padding: 2px 6px; }
	.creative-tool-shell__bar .site-header__inner { min-height: 44px; padding: 2px 6px; }
	.creative-tool-shell__bar .site-logo { height: 30px !important; max-width: 170px; }
	.creative-tool-shell__bar .site-header__brand { padding-right: 3px; }
}


/* Zero-gap Creative Tool viewport 3.2.1 — Creative Tool pages only. */
.creative-tool-standalone .creative-tool-shell { gap: 0 !important; }
.creative-tool-standalone .creative-tool-shell__bar.site-header {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	box-shadow: none;
}

.creative-tool-standalone .creative-tool-shell__bar .site-header__inner {
	min-height: max(44px, calc(var(--aac-tool-bar-height) - 10px));
	margin: 0 !important;
	padding: 0 8px !important;
	border-width: 0 0 1px !important;
	border-radius: 0 !important;
	box-shadow: none;
}

.creative-tool-standalone .creative-tool-shell__bar .site-logo { height: 30px !important; }
.creative-tool-standalone .creative-tool-shell__bar .primary-menu { margin: 0; padding-block: 0; }
.creative-tool-standalone .creative-tool-shell__bar .primary-menu a { padding-block: 5px; }
.creative-tool-standalone .creative-tool-shell__main,
.creative-tool-standalone .creative-tool-shell__frame {
	margin: 0 !important;
	padding: 0 !important;
	vertical-align: top;
}

@media (max-width: 760px) {
	.creative-tool-standalone .creative-tool-shell__bar.site-header { padding: 0 !important; }
	.creative-tool-standalone .creative-tool-shell__bar .site-header__inner { min-height: 42px; padding: 0 5px !important; }
	.creative-tool-standalone .creative-tool-shell__bar .site-logo { height: 28px !important; }
}


/* Creative Tool menu archive shortcut and free-use credit 3.2.2 */
html:has(body.creative-tool-standalone),
body.creative-tool-standalone {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

.creative-tool-standalone .creative-tool-shell__shortcut {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 5px;
	min-height: 30px;
	padding: 4px 9px;
	border: 1px solid var(--aac-border);
	border-radius: 9px;
	background: linear-gradient(135deg, var(--aac-soft-aqua), var(--aac-card));
	color: var(--aac-primary);
	font-size: .72rem;
	font-weight: 700;
	line-height: 1.15;
	text-decoration: none;
	white-space: nowrap;
}

.creative-tool-standalone .creative-tool-shell__shortcut:hover { border-color: var(--aac-muted-teal); background: var(--aac-soft-aqua); color: var(--aac-focus); }
.creative-tool-standalone .creative-tool-shell__shortcut span { font-size: 1.05em; }
.creative-tool-standalone .creative-tool-shell__credit-inline { flex: 0 1 31ch; margin: 0; color: var(--aac-text-muted); font-size: .62rem; line-height: 1.25; }
.creative-tool-standalone .creative-tool-shell__credit-inline em { font-style: italic; }

@media (max-width: 1180px) {
	.creative-tool-standalone .creative-tool-shell__credit-inline { display: none; }
}

@media (max-width: 820px) {
	.creative-tool-standalone .creative-tool-shell__shortcut { min-height: 28px; padding: 3px 7px; font-size: .64rem; white-space: normal; }
}

@media (max-width: 540px) {
	.creative-tool-standalone .creative-tool-shell__shortcut { max-width: 110px; }
}


/* Full-width pages, minimal contact page and mobile performance polish 3.3 */
.page-layout,
.blog-layout--full { grid-template-columns: minmax(0, 1fr); width: min(calc(100% - 32px), 1080px); margin-inline: auto; }
.blog-layout--full .blog-main { width: 100%; min-width: 0; }
.single-post .blog-layout--full { width: min(calc(100% - 32px), 900px); }
.page-single { width: min(100%, 920px); margin-inline: auto; }
.entry-content { overflow-wrap: anywhere; }
.entry-content iframe, .entry-content table { max-width: 100%; }

.contact-page { display: grid; grid-template-columns: minmax(0, .78fr) minmax(420px, 1.22fr); align-items: start; gap: clamp(24px, 5vw, 68px); width: min(calc(100% - 32px), 1080px); padding-block: clamp(34px, 7vw, 86px); }
.contact-page__intro { position: sticky; top: 86px; }
.contact-page__intro h1 { margin: 4px 0 13px; color: var(--aac-title); font-family: var(--aac-display-font); font-size: clamp(2rem, 4.2vw, 3.7rem); font-weight: 620; letter-spacing: -.04em; }
.contact-page__intro > p { color: var(--aac-text-muted); line-height: 1.65; }
.contact-card { padding: clamp(20px, 4vw, 36px); border: 1px solid var(--aac-border); border-radius: 22px; background: linear-gradient(145deg, var(--aac-card), color-mix(in srgb, var(--aac-soft-aqua) 34%, var(--aac-card))); box-shadow: var(--aac-shadow); }
.contact-form { display: grid; gap: 16px; }
.contact-form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.contact-form label { display: grid; gap: 7px; color: var(--aac-title); font-size: .8rem; font-weight: 760; }
.contact-form label small { color: var(--aac-text-muted); font-weight: 500; }
.contact-form input, .contact-form textarea { width: 100%; min-height: 46px; padding: 11px 13px; border: 1px solid var(--aac-border); border-radius: 11px; background: color-mix(in srgb, var(--aac-card) 92%, transparent); color: var(--aac-text); transition: border-color var(--aac-speed), box-shadow var(--aac-speed); }
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--aac-primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--aac-primary) 14%, transparent); outline: 0; }
.contact-form .button { justify-self: start; min-height: 46px; }
.contact-form__trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-notice { margin-bottom: 16px; padding: 11px 13px; border-radius: 10px; font-size: .82rem; }
.contact-notice--success { background: color-mix(in srgb, var(--aac-success) 12%, var(--aac-card)); color: var(--aac-success); }
.contact-notice--error { background: #FCEDEF; color: #9A4050; }

@media (max-width: 760px) {
	body { font-size: 15px; }
	.wrap, .page-layout, .blog-layout--full, .contact-page { width: min(calc(100% - 24px), 100%); }
	.page-layout, .blog-layout--full { padding-block: 18px; }
	.page-title, .archive-title { font-size: clamp(1.55rem, 8vw, 2.15rem); line-height: 1.12; }
	.entry-content { font-size: .94rem; line-height: 1.65; }
	.contact-page { grid-template-columns: 1fr; gap: 18px; padding-block: 24px 38px; }
	.contact-page__intro { position: static; }
	.contact-page__intro h1 { font-size: clamp(1.9rem, 10vw, 2.65rem); }
	.contact-card { padding: 18px 14px; border-radius: 16px; }
	.contact-form__row { grid-template-columns: 1fr; }
	.contact-form input, .contact-form textarea, .contact-form .button { font-size: 16px; }
	.post-grid, .design-grid { min-width: 0; }
	.entry-content table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
	.hero-sale-tape { max-width: min(86vw, 390px); margin-bottom: 7px; padding: 5px 14px 6px; font-size: clamp(.72rem, 3.2vw, .88rem); line-height: 1.1; letter-spacing: .025em; }
}

@media (max-width: 430px) {
	body { font-size: 14.5px; }
	.section { padding-block: 24px; }
	.section-title { font-size: clamp(1.25rem, 7vw, 1.65rem); }
	.section-sub { font-size: .82rem; }
	.hero-sale-tape { max-width: 84vw; padding: 4px 11px 5px; font-size: .7rem; }
}


/* Header, sharing and trust strip 3.5 */
.primary-menu a,
.mobile-menu a,
.mobile-menu-list a,
.mobile-menu-list .sub-menu a { color: var(--aac-title); }
.primary-menu .current-menu-item > a { color: var(--aac-focus); }
.hero__trust {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
}
.design-single__badges { margin: 0 0 18px; }
.design-single__badges .badge-row { position: static; margin: 0; }

@media (max-width: 760px) {
	.single-laser_file .product-sale-panel { display: none; }
	.hero-sale-tape {
		max-width: min(72vw, 275px);
		margin-bottom: 5px;
		padding: 3px 9px 4px;
		font-size: .64rem;
		line-height: 1.05;
		letter-spacing: .015em;
	}
	.product-sale-panel--compact {
		grid-template-columns: 66px minmax(0, 1fr);
		gap: 7px;
		min-height: 0;
		padding: 29px 8px 8px;
		border-radius: 14px;
	}
	.product-sale-panel__tape {
		top: 4px;
		right: 8px;
		left: 8px;
		max-width: none;
		padding: 4px 9px 5px;
		font-size: .6rem;
	}
	.product-sale-panel__thumb { width: 64px; height: 64px; }
	.product-sale-panel__slide { grid-template-columns: 66px minmax(0, 1fr); }
}
@media (max-width: 430px) {
	.hero-sale-tape { max-width: 70vw; padding: 3px 8px; font-size: .6rem; }
	.product-sale-panel--compact { padding-top: 27px; }
	.product-sale-panel__tape { font-size: .56rem; }
}


/* v3.7 full-width pages, business details, privacy consent and instant delivery */
.page-single { width: min(100%, 1120px); }
.page-single .entry-content { width: 100%; max-width: none; }
.contact-page { display: block; width: min(calc(100% - 32px), 1120px); }
.contact-page__intro { position: static; }
.contact-business { display: grid; gap: 10px; margin-top: 25px; }
.contact-business > p { max-width: none; margin: 0; color: var(--aac-text); line-height: 1.72; }
.contact-business__information { margin-top: 9px; padding: clamp(18px, 3vw, 28px); border: 1px solid var(--aac-border); border-radius: 18px; background: linear-gradient(145deg, color-mix(in srgb, var(--aac-soft-aqua) 46%, var(--aac-card)), var(--aac-card)); }
.contact-business__information h2 { margin-bottom: 17px; color: var(--aac-title); font-family: var(--aac-display-font); font-size: clamp(1.25rem, 2.2vw, 1.65rem); }
.contact-business__information dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px 22px; margin: 0; }
.contact-business__information dl > div { display: grid; gap: 3px; min-width: 0; padding-bottom: 11px; border-bottom: 1px solid color-mix(in srgb, var(--aac-border) 76%, transparent); }
.contact-business__information dt { color: var(--aac-text-muted); font-size: .69rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-business__information dd { margin: 0; color: var(--aac-title); font-weight: 700; overflow-wrap: anywhere; }
.contact-card { width: 100%; margin-top: 22px; }
.contact-form__privacy { display: flex !important; grid-template-columns: none !important; align-items: flex-start; gap: 10px !important; color: var(--aac-text-muted) !important; font-size: .76rem !important; font-weight: 550 !important; line-height: 1.5; }
.contact-form__privacy input { width: 17px !important; min-height: 17px !important; flex: 0 0 17px; margin: 2px 0 0; accent-color: var(--aac-primary); }
.contact-form__privacy a { font-weight: 750; }
.copyright { display: flex; flex-wrap: wrap; gap: 3px 8px; }
.copyright__business { color: var(--aac-text-muted); }
.product-sale-panel__delivery { position: relative; z-index: 1; display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 13px; min-width: 270px; padding: 17px 19px; overflow: hidden; border: 1px solid color-mix(in srgb, var(--aac-sale-accent-ink) 16%, transparent); border-radius: 18px; background: var(--aac-sale-accent); color: var(--aac-sale-accent-ink); box-shadow: inset 0 1px rgba(255,255,255,.24), 0 14px 28px color-mix(in srgb, var(--aac-sale-accent) 24%, transparent); }
.product-sale-panel__delivery svg { width: 32px; height: 32px; padding: 7px; overflow: visible; border-radius: 50%; background: color-mix(in srgb, var(--aac-sale-accent) 25%, rgba(255,255,255,.76)); box-sizing: content-box; filter: drop-shadow(0 3px 5px rgba(31,54,51,.1)); }
.product-sale-panel__delivery span { display: grid; gap: 3px; }
.product-sale-panel__delivery em { width: fit-content; margin-bottom: 1px; padding: 2px 7px; border: 1px solid color-mix(in srgb, currentColor 40%, transparent); border-radius: 999px; color: inherit; font-size: .54rem; font-style: normal; font-weight: 850; letter-spacing: .13em; line-height: 1.15; text-transform: uppercase; }
.product-sale-panel__delivery strong { color: inherit; font-family: var(--aac-display-font); font-size: 1.04rem; font-weight: 800; line-height: 1.1; text-shadow: 0 1px 2px var(--aac-sale-accent-shadow, rgba(18,38,36,.22)); }
.product-sale-panel__delivery small { color: inherit; font-size: .66rem; font-weight: 800; line-height: 1.3; opacity: .94; text-shadow: 0 1px 2px var(--aac-sale-accent-shadow, rgba(18,38,36,.22)); }
.cookie-consent { position: fixed; z-index: 520; bottom: 18px; width: min(430px, calc(100vw - 28px)); padding: 20px; border: 1px solid color-mix(in srgb, var(--aac-border) 82%, transparent); border-radius: 20px; background: linear-gradient(145deg, color-mix(in srgb, var(--aac-card) 92%, transparent), color-mix(in srgb, var(--aac-soft-aqua) 72%, var(--aac-card))); box-shadow: 0 22px 65px rgba(26, 58, 56, .2); backdrop-filter: blur(18px) saturate(135%); }
.cookie-consent--left { left: 18px; }
.cookie-consent--right { right: 18px; }
.cookie-consent[hidden], .cookie-consent [hidden], .cookie-preferences-reopen[hidden] { display: none !important; }
.cookie-consent__eyebrow { margin: 0 0 4px; color: var(--aac-primary); font-size: .65rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.cookie-consent h2 { margin: 0 0 8px; color: var(--aac-title); font-family: var(--aac-display-font); font-size: 1.24rem; }
.cookie-consent p { margin: 0 0 13px; color: var(--aac-text-muted); font-size: .78rem; line-height: 1.58; }
.cookie-consent__privacy-link { display: inline-block; margin-bottom: 14px; font-size: .74rem; font-weight: 750; }
.cookie-consent__actions { display: flex; flex-wrap: wrap; gap: 7px; }
.cookie-consent__actions .button { min-height: 38px; padding: 7px 12px; font-size: .72rem; }
.cookie-consent__manage { border: 0; background: transparent; color: var(--aac-primary); cursor: pointer; font-size: .72rem; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.cookie-consent__options { display: grid; gap: 8px; margin: 13px 0 15px; }
.cookie-consent__option { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 11px; border: 1px solid var(--aac-border); border-radius: 11px; background: color-mix(in srgb, var(--aac-card) 82%, transparent); }
.cookie-consent__option span { display: grid; gap: 2px; }
.cookie-consent__option strong { color: var(--aac-title); font-size: .76rem; }
.cookie-consent__option small { color: var(--aac-text-muted); font-size: .65rem; line-height: 1.35; }
.cookie-consent__option input { width: 18px; height: 18px; flex: 0 0 18px; accent-color: var(--aac-primary); }
.cookie-preferences-reopen { position: fixed; z-index: 510; bottom: 12px; left: 12px; padding: 6px 9px; border: 1px solid var(--aac-border); border-radius: 999px; background: color-mix(in srgb, var(--aac-card) 92%, transparent); color: var(--aac-text-muted); box-shadow: var(--aac-shadow); cursor: pointer; font-size: .62rem; font-weight: 750; backdrop-filter: blur(10px); }
.cookie-preferences-reopen--right { right: 12px; left: auto; }
@media (max-width: 1080px) and (min-width: 761px) { .product-sale-panel--compact .product-sale-panel__delivery { grid-column: 1 / -1; justify-self: center; } }
@media (max-width: 760px) { .contact-business__information dl { grid-template-columns: 1fr; } .cookie-consent { right: 10px; bottom: 10px; left: 10px; width: auto; padding: 16px; border-radius: 16px; } .cookie-consent__actions { display: grid; grid-template-columns: 1fr; } .cookie-consent__actions .button, .cookie-consent__manage { width: 100%; justify-content: center; } }

/* v3.14.6 compact privacy panel */
.cookie-consent { bottom: 12px; width: min(360px, calc(100vw - 20px)); padding: 14px; border-radius: 15px; box-shadow: 0 16px 44px rgba(26, 58, 56, .17); backdrop-filter: blur(16px) saturate(130%); }
.cookie-consent--left { left: 12px; }
.cookie-consent--right { right: 12px; }
.cookie-consent__eyebrow { margin-bottom: 2px; font-size: .57rem; letter-spacing: .11em; }
.cookie-consent h2 { margin-bottom: 5px; font-size: 1.04rem; line-height: 1.16; }
.cookie-consent p { margin-bottom: 8px; font-size: .69rem; line-height: 1.45; }
.cookie-consent__privacy-link { margin-bottom: 9px; font-size: .65rem; }
.cookie-consent__actions { gap: 5px; }
.cookie-consent__actions .button { min-height: 32px; padding: 5px 9px; font-size: .65rem; }
.cookie-consent__manage { min-height: 32px; padding: 4px 6px; font-size: .65rem; }
.cookie-consent__options { gap: 5px; margin: 9px 0 10px; }
.cookie-consent__option { gap: 10px; padding: 7px 8px; border-radius: 9px; }
.cookie-consent__option span { gap: 1px; }
.cookie-consent__option strong { font-size: .7rem; }
.cookie-consent__option small { font-size: .58rem; line-height: 1.3; }
.cookie-consent__option input { width: 16px; height: 16px; flex-basis: 16px; }
.cookie-preferences-reopen { bottom: 10px; left: 10px; padding: 5px 8px; font-size: .58rem; }
.cookie-preferences-reopen--right { right: 10px; left: auto; }
@media (max-width: 760px) { .cookie-consent { right: 8px; bottom: 8px; left: 8px; padding: 11px; border-radius: 13px; } .cookie-consent p { font-size: .66rem; } .cookie-consent__actions { display: flex; } .cookie-consent__actions .button { width: auto; flex: 1 1 auto; } .cookie-consent__manage { width: auto; flex: 1 0 100%; justify-content: center; } }

/* ------------------------------------------------ guest design cart 3.9 */
.cart-toggle { position: relative; }
.cart-toggle__count { position: absolute; top: 2px; right: 1px; display: grid; place-items: center; min-width: 17px; height: 17px; padding: 0 4px; border: 2px solid color-mix(in srgb, var(--aac-card) 88%, transparent); border-radius: 999px; background: linear-gradient(135deg, #D84868, #F07187); color: #fff; font-size: .54rem; font-weight: 900; line-height: 1; }
.cart-toggle__count[hidden] { display: none; }
body.cart-is-open { overflow: hidden; }
.cart-drawer { position: fixed; z-index: 700; inset: 0; display: grid; justify-items: end; }
.cart-drawer[hidden] { display: none !important; }
.cart-drawer__backdrop { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: rgba(24,45,43,.38); cursor: pointer; opacity: 0; backdrop-filter: blur(3px); transition: opacity .22s ease; }
.cart-drawer__panel { position: relative; display: grid; grid-template-rows: auto minmax(0,1fr) auto; width: min(440px, 100vw); height: 100%; overflow: hidden; border-left: 1px solid color-mix(in srgb, var(--aac-border) 78%, transparent); background: linear-gradient(150deg, color-mix(in srgb, var(--aac-card) 96%, var(--aac-soft-aqua)), var(--aac-card)); color: var(--aac-text); box-shadow: -22px 0 60px rgba(23,53,50,.2); transform: translateX(102%); transition: transform .22s var(--aac-ease); }
.cart-drawer.is-open .cart-drawer__backdrop { opacity: 1; }
.cart-drawer.is-open .cart-drawer__panel { transform: translateX(0); }
.cart-drawer__header { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 20px 16px; border-bottom: 1px solid var(--aac-border); background: color-mix(in srgb, var(--aac-soft-aqua) 34%, transparent); }
.cart-drawer__header .eyebrow { margin: 0 0 3px; font-size: .6rem; }
.cart-drawer__header h2 { margin: 0; color: var(--aac-title); font-family: var(--aac-display-font); font-size: 1.36rem; line-height: 1.1; }
.cart-drawer__close { flex: 0 0 auto; border-color: var(--aac-border); background: color-mix(in srgb, var(--aac-card) 78%, transparent); }
.cart-drawer__body { min-height: 0; overflow-y: auto; padding: 16px 18px; overscroll-behavior: contain; }
.cart-drawer__empty { display: grid; justify-items: center; min-height: 310px; align-content: center; padding: 30px; text-align: center; }
.cart-drawer__empty[hidden] { display: none; }
.cart-drawer__empty-icon { display: grid; place-items: center; width: 70px; height: 70px; margin-bottom: 16px; border-radius: 24px; background: linear-gradient(145deg, var(--aac-soft-aqua), color-mix(in srgb, var(--aac-card) 88%, var(--aac-aqua))); color: var(--aac-primary); box-shadow: var(--aac-shadow); transform: rotate(-3deg); }
.cart-drawer__empty h3 { margin: 0 0 7px; color: var(--aac-title); font-family: var(--aac-display-font); font-size: 1.15rem; }
.cart-drawer__empty p { max-width: 30ch; margin: 0; color: var(--aac-text-muted); font-size: .78rem; line-height: 1.55; }
.cart-drawer__items { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.cart-item { display: grid; grid-template-columns: 88px minmax(0,1fr) auto; align-items: center; gap: 11px; padding: 10px; border: 1px solid color-mix(in srgb, var(--aac-border) 82%, transparent); border-radius: 15px; background: color-mix(in srgb, var(--aac-card) 90%, transparent); box-shadow: 0 7px 20px rgba(30,65,62,.06); }
.cart-item__media { display: grid; place-items: center; width: 88px; aspect-ratio: 3 / 2; overflow: hidden; border-radius: 10px; background: var(--aac-soft-aqua); color: var(--aac-primary); text-decoration: none; }
.cart-item__media img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__placeholder { font-size: 1.2rem; }
.cart-item__copy { display: grid; min-width: 0; gap: 4px; }
.cart-item__title { overflow: hidden; color: var(--aac-title); font-family: var(--aac-display-font); font-size: .79rem; font-weight: 750; line-height: 1.25; text-decoration: none; text-overflow: ellipsis; white-space: nowrap; }
.cart-item__title:hover { color: var(--aac-primary); }
.cart-item__license { color: var(--aac-text-muted); font-size: .59rem; }
.cart-item__side { display: grid; justify-items: end; gap: 6px; }
.cart-item__price { color: var(--aac-title); font-size: .75rem; white-space: nowrap; }
.cart-item__remove { padding: 0; border: 0; background: transparent; color: #B5455B; cursor: pointer; font-size: .59rem; font-weight: 750; text-decoration: underline; text-underline-offset: 2px; }
.cart-drawer__status { min-height: 18px; margin: 10px 2px 0; color: var(--aac-primary); font-size: .68rem; line-height: 1.4; }
.cart-drawer__status.is-error { color: #B33F55; }
.cart-drawer__footer { padding: 17px 20px calc(18px + env(safe-area-inset-bottom)); border-top: 1px solid var(--aac-border); background: color-mix(in srgb, var(--aac-card) 94%, var(--aac-soft-aqua)); box-shadow: 0 -10px 26px rgba(33,66,63,.06); }
.cart-drawer__footer[hidden] { display: none; }
.cart-drawer__total { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 9px; }
.cart-drawer__total span { color: var(--aac-text-muted); font-size: .72rem; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.cart-drawer__total strong { color: var(--aac-title); font-family: var(--aac-display-font); font-size: 1.28rem; }
.cart-drawer__assurance { display: flex; align-items: flex-start; gap: 7px; margin: 0 0 13px; color: var(--aac-text-muted); font-size: .65rem; line-height: 1.4; }
.cart-drawer__assurance svg { flex: 0 0 auto; color: var(--aac-primary); }
.cart-drawer__checkout { gap: 9px; min-height: 48px; }
.cart-drawer__continue { display: block; margin: 10px auto 5px; padding: 2px; border: 0; background: transparent; color: var(--aac-primary); cursor: pointer; font-size: .68rem; font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.cart-drawer__footer > small { display: block; color: var(--aac-text-muted); font-size: .57rem; line-height: 1.35; text-align: center; }
.design-card__purchase--cart { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 7px; }
.design-card__purchase--cart .card-action { min-width: 0; padding: 9px 7px; font-size: .7rem; }
.card-action--cart { gap: 5px; cursor: pointer; background: color-mix(in srgb, var(--aac-primary) 12%, var(--aac-card)); color: var(--aac-primary); }
.card-action--cart:hover { background: color-mix(in srgb, var(--aac-primary) 20%, var(--aac-card)); }
.card-action--cart.is-in-cart { background: var(--aac-primary); color: #fff; }
.offer__actions--purchase { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
.offer__actions--purchase .button { gap: 7px; min-width: 0; padding-right: 9px; padding-left: 9px; }
.offer__actions--purchase .button:only-child { grid-column: 1 / -1; }
.button[data-aac-cart-add].is-in-cart { border-color: var(--aac-primary); background: color-mix(in srgb, var(--aac-primary) 14%, var(--aac-card)); color: var(--aac-primary); box-shadow: none; }
.sticky-actions .button[data-aac-cart-add] { cursor: pointer; }
@media (max-width: 560px) {
	.cart-drawer__panel { width: 100vw; border-left: 0; }
	.cart-drawer__header { padding: 15px 14px 12px; }
	.cart-drawer__body { padding: 12px; }
	.cart-drawer__footer { padding: 14px 14px calc(14px + env(safe-area-inset-bottom)); }
	.cart-item { grid-template-columns: 72px minmax(0,1fr) auto; gap: 8px; padding: 8px; }
	.cart-item__media { width: 72px; }
	.cart-item__title { font-size: .72rem; }
	.design-card__purchase--cart .card-action { min-height: 38px; padding: 7px 4px; font-size: .62rem; }
	.design-card__purchase--cart .card-action--cart svg { display: none; }
	.sticky-actions { flex-wrap: wrap; gap: 6px; }
	.sticky-actions .button { min-width: calc(33.333% - 6px); padding: 11px 7px; font-size: .72rem; }
}
@media (prefers-reduced-motion: reduce) { .cart-drawer__backdrop, .cart-drawer__panel { transition: none; } }
@media print { .cart-drawer, .cart-toggle { display: none !important; } }

/* -------------------------------------- Supplied theme-aware Lottie teasers 3.16.3 */
.creative-tools-grid > .design-card > article { height: 100%; }
.creative-tool-teaser > article { position: relative; background: linear-gradient(150deg, color-mix(in srgb, var(--aac-card) 86%, var(--aac-primary)), color-mix(in srgb, var(--aac-soft-aqua) 78%, var(--aac-primary))); }
.creative-tool-teaser__media { position: relative; isolation: isolate; overflow: hidden; background: radial-gradient(circle at 76% 31%, color-mix(in srgb, var(--aac-aqua) 42%, transparent), transparent 31%), radial-gradient(circle at 19% 76%, color-mix(in srgb, var(--aac-primary) 22%, transparent), transparent 35%), linear-gradient(145deg, color-mix(in srgb, var(--aac-card) 74%, var(--aac-soft-aqua)), color-mix(in srgb, var(--aac-soft-aqua) 80%, var(--aac-primary))); }
.creative-tool-teaser__media::before { position: absolute; z-index: 0; inset: 0; background-image: linear-gradient(color-mix(in srgb, var(--aac-primary) 10%, transparent) 1px, transparent 1px), linear-gradient(90deg, color-mix(in srgb, var(--aac-primary) 10%, transparent) 1px, transparent 1px); background-size: 31px 31px; content: ''; mask-image: linear-gradient(135deg, transparent 3%, #000 45%, transparent 95%); }
.creative-tool-teaser__badge { border-color: color-mix(in srgb, var(--aac-primary) 25%, transparent); background: color-mix(in srgb, var(--aac-card) 82%, transparent); color: var(--aac-primary); box-shadow: 0 8px 22px color-mix(in srgb, var(--aac-primary) 12%, transparent); backdrop-filter: blur(8px); }
.aacuts-lottie-stage { position: absolute; z-index: 1; top: 50%; left: 50%; display: grid; place-items: center; width: 86%; height: 86%; overflow: visible; transform: translate(-50%, -50%); }
.aacuts-lottie-stage > svg { display: block; width: auto !important; max-width: 100%; height: 100% !important; aspect-ratio: 1 / 1; overflow: visible; }
[data-aacuts-lottie="software-wireframe"] > svg { transform: translateY(-18%) scale(1.08) !important; transform-origin: 50% 50%; }
[data-aacuts-lottie="learning-drawing"] > svg { transform: translateY(-14%) scale(1.04) !important; transform-origin: 50% 50%; }
.aacuts-lottie-fallback { display: grid; place-items: center; width: 82px; height: 82px; border: 2px solid color-mix(in srgb, var(--aac-primary) 35%, var(--aac-border)); border-radius: 50%; color: var(--aac-primary); font-size: 2rem; animation: aacuts-lottie-wait 1.2s ease-in-out infinite alternate; }
.aacuts-lottie-stage.is-lottie-ready .aacuts-lottie-fallback { display: none; }
.aacuts-lottie-stage.has-lottie-error .aacuts-lottie-fallback { animation: none; opacity: .72; }
@keyframes aacuts-lottie-wait { from { opacity: .45; transform: scale(.92); } to { opacity: 1; transform: scale(1.04); } }
.creative-tool-teaser__body { gap: 0; }
.creative-tool-teaser__kicker { margin: 0 0 6px; color: var(--aac-primary); font-size: .62rem; font-weight: 850; letter-spacing: .1em; line-height: 1.25; text-transform: uppercase; }
.creative-tool-teaser__body .design-card__title { color: var(--aac-title); }
.creative-tool-teaser__text { margin: 7px 0 14px; color: var(--aac-text-muted); font-size: .76rem; line-height: 1.5; }
.creative-tool-teaser__status { display: inline-flex; align-items: center; align-self: flex-start; gap: 7px; min-height: 38px; margin-top: auto; padding: 8px 12px; border: 1px solid color-mix(in srgb, var(--aac-primary) 20%, var(--aac-border)); border-radius: 11px; background: color-mix(in srgb, var(--aac-soft-aqua) 66%, var(--aac-card)); color: var(--aac-primary); font-size: .68rem; font-weight: 800; }
@media (max-width: 760px) {
	.aacuts-lottie-stage { width: 88%; height: 88%; }
	.creative-tool-teaser__kicker { font-size: .57rem; }
	.creative-tool-teaser__text { font-size: .7rem; }
	.creative-tool-teaser__status { min-height: 35px; padding: 7px 10px; font-size: .62rem; }
}
@media (prefers-reduced-motion: reduce) { .aacuts-lottie-fallback { animation: none !important; } }

/* Keep mobile homepage previews focused: Coming Soon plus two cards per section. */
@media (max-width: 760px) {
	.home .creative-tools-grid > .design-card:nth-child(n + 4),
	.home .section--freebie-friday .design-grid > .design-card:nth-child(n + 4) {
		display: none;
	}
}

/* ------------------------------------------------ paint containment 3.15.0 */
@supports (content-visibility: auto) {
	.home .site-main > .section {
		content-visibility: auto;
		contain-intrinsic-size: auto 720px;
	}
}
