/* ============================================================
   homepage.css — Shop front-page styles
   ============================================================ */

/* ── Custom Cursor ──────────────────────────────────────────── */

body.home { cursor: none; }

.cursor-dot,
.cursor-ring {
	position: fixed;
	top: 0; left: 0;
	border-radius: 50%;
	pointer-events: none;
	z-index: 9999;
	will-change: transform;
}

.cursor-dot {
	width: 5px; height: 5px;
	background-color: var(--color-accent);
	margin: -2.5px 0 0 -2.5px;
	box-shadow: 0 0 6px rgba(22,243,253,0.8), 0 0 14px rgba(22,243,253,0.4);
	transition: width 0.2s ease, height 0.2s ease;
}

.cursor-ring {
	width: 34px; height: 34px;
	border: 1px solid rgba(255,255,255,0.22);
	margin: -17px 0 0 -17px;
	transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.cursor-dot.cursor--active  { width: 8px; height: 8px; margin: -4px 0 0 -4px; }
.cursor-ring.cursor--active { width: 52px; height: 52px; margin: -26px 0 0 -26px; border-color: rgba(22,243,253,0.5); background-color: rgba(22,243,253,0.04); }

/* ── Disable custom cursor on touch/non-hover devices ───────── */
@media (hover: none) {
	body.home { cursor: auto; }
	.cursor-dot, .cursor-ring { display: none; }
}

/* ── Film grain overlay ──────────────────────────────────────── */

@keyframes film-grain {
	0%   { transform: translate(0,    0);    }
	11%  { transform: translate(-3px, 2px);  }
	22%  { transform: translate(2px,  -3px); }
	33%  { transform: translate(-2px, -2px); }
	44%  { transform: translate(3px,  2px);  }
	55%  { transform: translate(-2px, 3px);  }
	66%  { transform: translate(1px,  -2px); }
	77%  { transform: translate(-3px, 1px);  }
	88%  { transform: translate(2px,  3px);  }
}

.shop-intro::before,
.shop-featured::before {
	content: '';
	position: absolute;
	inset: -8px;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
	background-size: 180px 180px;
	opacity: 0.038;
	pointer-events: none;
	z-index: 0;
	mix-blend-mode: overlay;
	animation: film-grain 0.09s steps(1) infinite;
}

.shop-intro    { position: relative; overflow: hidden; }
.shop-featured { position: relative; overflow: hidden; }

/* ── Word-split text reveal ─────────────────────────────────── */

.word-wrap { display: inline-block; overflow: hidden; vertical-align: bottom; }
.word {
	display: inline-block;
	transform: translateY(110%);
	transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: calc( var(--wi, 0) * 60ms );
}
.words-visible .word { transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   SHOP INTRO
   ═══════════════════════════════════════════════════════════ */

.shop-intro {
	background-color: #080808;
	padding-top: calc(var(--header-h) + 4.5rem);
	padding-bottom: 0;
	border-bottom: 1px solid rgba(255,255,255,0.05);
}

.shop-intro__inner {
	max-width: var(--max-width);
	margin-inline: auto;
	padding-inline: var(--space-md);
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	gap: 3rem;
	padding-bottom: 2.75rem;
	position: relative;
	z-index: 1;
}

.shop-intro__eyebrow {
	font-size: 0.56rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.25);
	margin-bottom: 0.9rem;
}

.shop-intro__title {
	font-family: var(--font-display);
	font-size: clamp(1.9rem, 3.2vw, 3rem);
	font-weight: 300;
	letter-spacing: -0.04em;
	line-height: 1.1;
	color: var(--color-white);
}

.shop-intro__title em {
	font-style: normal;
	color: var(--color-accent);
	text-shadow: var(--accent-glow);
}

.shop-cat-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
	justify-content: flex-end;
}

.shop-cat-pill {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1.2rem;
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 100px;
	font-family: var(--font-display);
	font-size: 0.62rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.45);
	text-decoration: none;
	cursor: pointer;
	transition: border-color 0.22s ease, color 0.22s ease, background-color 0.22s ease;
}

.shop-cat-pill:hover,
.shop-cat-pill--active {
	border-color: rgba(22,243,253,0.38);
	color: var(--color-accent);
	background-color: rgba(22,243,253,0.05);
}

/* ── Trust bar ───────────────────────────────────────────────── */

.shop-trust-bar {
	max-width: var(--max-width);
	margin-inline: auto;
	padding-inline: var(--space-md);
	display: flex;
	flex-wrap: wrap;
	gap: 0 2.5rem;
	align-items: center;
	border-top: 1px solid rgba(255,255,255,0.04);
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
	position: relative;
	z-index: 1;
}

.shop-trust-item {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	font-family: var(--font-display);
	font-size: 0.6rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.28);
	white-space: nowrap;
}

.shop-trust-dot {
	width: 4px;
	height: 4px;
	background-color: var(--color-accent);
	border-radius: 50%;
	box-shadow: 0 0 6px rgba(22,243,253,0.8), 0 0 12px rgba(22,243,253,0.35);
	flex-shrink: 0;
}

@media (max-width: 860px) {
	.shop-intro__inner {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.shop-cat-pills { justify-content: flex-start; }
}

@media (max-width: 480px) {
	.shop-trust-bar { gap: 0.75rem 1.5rem; }
	.shop-trust-item { font-size: 0.54rem; }
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT GRID — NEW RELEASES
   ═══════════════════════════════════════════════════════════ */

.shop-featured {
	background-color: #0d0d0d;
	padding: 4.5rem 0 5rem;
}

.shop-featured__inner {
	max-width: var(--max-width);
	margin-inline: auto;
	padding-inline: var(--space-md);
	position: relative;
	z-index: 1;
}

/* ── Section header (shared) ─────────────────────────────────── */

.section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2rem;
}

.section-header__left {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.section-header__title {
	font-family: var(--font-pilo);
	font-size: 1.75rem;
	font-weight: 400;
	letter-spacing: 0.01em;
	color: rgba(255,255,255,0.88);
}

.section-header__rule {
	width: 44px;
	height: 1px;
	background: rgba(255,255,255,0.08);
	flex-shrink: 0;
}

.section-header__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-family: var(--font-display);
	font-size: 0.62rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.28);
	text-decoration: none;
	transition: color 0.22s ease, gap 0.25s ease;
	cursor: pointer;
}

.section-header__cta:hover {
	color: var(--color-accent);
	gap: 0.7rem;
}

/* ── Product grid ────────────────────────────────────────────── */

.product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2px;
}

/* ── Product card ────────────────────────────────────────────── */

.product-card {
	background: #141414;
	border: 1px solid rgba(255,255,255,0.055);
	overflow: hidden;
	position: relative;
	transition: border-color 0.28s ease, box-shadow 0.28s ease;
	cursor: pointer;
}

.product-card:hover {
	border-color: rgba(22,243,253,0.22);
	box-shadow: 0 0 32px rgba(22,243,253,0.055);
}

.product-card__inner {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	height: 100%;
}

.product-card__img-wrap {
	aspect-ratio: 4/3;
	overflow: hidden;
	background: #111;
	position: relative;
	flex-shrink: 0;
}

.product-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: grayscale(18%) brightness(0.88);
	transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), filter 0.32s ease;
}

.product-card:hover .product-card__img {
	transform: scale(1.05);
	filter: grayscale(0%) brightness(1);
}

.product-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #181818 0%, #101010 100%);
}

.product-card__badge {
	position: absolute;
	top: 0.7rem;
	right: 0.7rem;
	font-family: var(--font-display);
	font-size: 0.46rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	background: var(--color-accent);
	color: #080808;
	padding: 0.2rem 0.55rem;
	font-weight: 700;
	z-index: 2;
	border-radius: 1px;
}

.product-card__body {
	padding: 1.25rem 1.4rem 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.product-card__cat {
	display: block;
	font-family: var(--font-display);
	font-size: 0.5rem;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--color-accent);
	opacity: 0.6;
	margin-bottom: 0.5rem;
}

.product-card__name {
	font-family: var(--font-pilo);
	font-size: 1.3rem;
	line-height: 1.1;
	color: rgba(255,255,255,0.88);
	margin-bottom: auto;
	padding-bottom: 1rem;
	letter-spacing: 0;
	transition: color 0.2s ease;
}

.product-card:hover .product-card__name { color: var(--color-white); }

.product-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid rgba(255,255,255,0.055);
	padding-top: 0.9rem;
}

.product-card__price {
	font-family: var(--font-display);
	font-size: 0.88rem;
	font-weight: 500;
	color: rgba(255,255,255,0.6);
	line-height: 1;
}

/* WooCommerce price HTML overrides */
.product-card__price .price         { display: inline; }
.product-card__price .amount        { color: var(--color-white); }
.product-card__price del            { opacity: 0.38; font-size: 0.8em; margin-right: 0.3em; }
.product-card__price del .amount    { color: rgba(255,255,255,0.38); }
.product-card__price ins            { text-decoration: none; }

.product-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-family: var(--font-display);
	font-size: 0.56rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.22);
	transition: color 0.22s ease, gap 0.25s ease;
}

.product-card:hover .product-card__link {
	color: var(--color-accent);
	gap: 0.6rem;
}

.shop-featured__empty {
	padding: 4rem 0;
	text-align: center;
	color: rgba(255,255,255,0.25);
	font-size: 0.88rem;
}

.shop-featured__empty a {
	color: var(--color-accent);
	text-decoration: underline;
	text-underline-offset: 3px;
}

@media (max-width: 960px) {
	.product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
	.product-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
	.product-card__name { font-size: 1.1rem; }
	.product-card__body { padding: 1rem 1rem 1.25rem; }
}

/* ═══════════════════════════════════════════════════════════
   SOFTWARE SPOTLIGHT
   ═══════════════════════════════════════════════════════════ */

.shop-software {
	background-color: var(--color-black);
	padding: 5.5rem 0;
	position: relative;
	overflow: hidden;
}

.shop-software::before {
	content: '';
	position: absolute;
	inset: -8px;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
	background-size: 180px 180px;
	opacity: 0.032;
	pointer-events: none;
	z-index: 0;
	mix-blend-mode: overlay;
	animation: film-grain 0.09s steps(1) infinite;
}

.shop-software__inner {
	max-width: var(--max-width);
	margin-inline: auto;
	padding-inline: var(--space-md);
	position: relative;
	z-index: 1;
}

.shop-software__header {
	margin-bottom: 3.5rem;
	max-width: 680px;
}

.shop-software__title {
	font-family: var(--font-display);
	font-size: clamp(1.9rem, 3vw, 3.2rem);
	font-weight: 300;
	letter-spacing: -0.04em;
	line-height: 1.05;
	color: var(--color-white);
	margin-top: var(--space-xs);
	margin-bottom: 1rem;
}

.shop-software__title em { font-style: normal; color: var(--color-accent); }

.shop-software__lead {
	font-size: 0.92rem;
	line-height: 1.8;
	color: rgba(255,255,255,0.38);
}

.software-grid {
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.software-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 420px;
	border-top: 1px solid rgba(255,255,255,0.05);
}

.software-card--flip { direction: rtl; }
.software-card--flip > * { direction: ltr; }

.software-card__screen {
	position: relative;
	overflow: hidden;
	background-color: #111;
}

.software-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top left;
	filter: brightness(0.85);
	display: block;
	transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), filter 0.32s ease;
}

.software-card:hover .software-card__img {
	transform: scale(1.03);
	filter: brightness(1);
}

.software-card__info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 3.5rem 4rem;
	background-color: #0a0a0a;
	border-left: 1px solid rgba(255,255,255,0.04);
}

.software-card--flip .software-card__info {
	border-left: none;
	border-right: 1px solid rgba(255,255,255,0.04);
}

.software-card__tag {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 0.52rem;
	font-weight: 500;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.18);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 2px;
	padding: 0.22rem 0.55rem;
	margin-bottom: 1.5rem;
	align-self: flex-start;
}

.software-card__name {
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 2.8vw, 2.6rem);
	font-weight: 300;
	letter-spacing: -0.04em;
	line-height: 0.95;
	color: var(--color-white);
	margin-bottom: 1.25rem;
}

.software-card__desc {
	font-size: 0.88rem;
	line-height: 1.75;
	color: rgba(255,255,255,0.38);
	margin-bottom: 1.75rem;
	max-width: 42ch;
}

.software-card__features {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.software-card__features li {
	font-size: 0.7rem;
	letter-spacing: 0.08em;
	color: rgba(255,255,255,0.26);
	padding-left: 1rem;
	position: relative;
}

.software-card__features li::before {
	content: '—';
	position: absolute;
	left: 0;
	color: var(--color-accent);
	opacity: 0.5;
	font-size: 0.58rem;
}

.software-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-display);
	font-size: 0.65rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.32);
	text-decoration: none;
	transition: color 0.25s ease, gap 0.28s ease, text-shadow 0.25s ease;
	align-self: flex-start;
	cursor: pointer;
}

.software-card__cta:hover {
	color: var(--color-accent);
	gap: 0.85rem;
	text-shadow: 0 0 10px rgba(22,243,253,0.45);
}

@media (max-width: 860px) {
	.software-card { grid-template-columns: 1fr; min-height: auto; }
	.software-card--flip { direction: ltr; }
	.software-card__screen { aspect-ratio: 16/9; }
	.software-card__img { height: 100%; }
	.software-card__info { padding: 2.5rem var(--space-md); }
	.software-card--flip .software-card__info { border-right: none; }
}

/* ═══════════════════════════════════════════════════════════
   MUSIC PREVIEW
   ═══════════════════════════════════════════════════════════ */

.shop-music {
	background-color: #141414;
	padding: 5.5rem 0;
}

.shop-music__inner {
	max-width: var(--max-width);
	margin-inline: auto;
	padding-inline: var(--space-md);
}

.shop-music__header {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	gap: 2rem;
	margin-bottom: 2.5rem;
}

.shop-music__title {
	font-family: var(--font-display);
	font-size: clamp(1.9rem, 3vw, 3.2rem);
	font-weight: 300;
	letter-spacing: -0.04em;
	line-height: 1.05;
	color: var(--color-white);
	margin-top: var(--space-xs);
	margin-bottom: 0.65rem;
}

.shop-music__title em { font-style: normal; color: var(--color-accent); }

.shop-music__lead {
	font-size: 0.88rem;
	line-height: 1.75;
	color: rgba(255,255,255,0.38);
	max-width: 52ch;
}

.shop-music__meta {
	display: flex;
	gap: 2rem;
	align-items: center;
	flex-shrink: 0;
	padding-bottom: 0.4rem;
}

.music-stat { display: flex; flex-direction: column; align-items: flex-end; gap: 0.1rem; }

.music-stat__num {
	font-family: var(--font-pilo);
	font-size: 2.2rem;
	line-height: 1;
	color: var(--color-accent);
	text-shadow: var(--accent-glow);
}

.music-stat__label {
	font-size: 0.5rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.28);
}

.music-grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 3px;
	margin-bottom: 2rem;
}

.music-card { position: relative; cursor: pointer; }

.music-card__img-wrap {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	background: #111;
}

.music-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: grayscale(35%) brightness(0.8);
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.music-card__img--placeholder {
	background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
}

.music-card:hover .music-card__img {
	transform: scale(1.06);
	filter: grayscale(0%) brightness(1);
}

.music-card__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,0.44);
	opacity: 0;
	transition: opacity 0.25s ease;
	color: var(--color-accent);
}

.music-card:hover .music-card__overlay { opacity: 1; }

.music-card__genre {
	display: block;
	font-family: var(--font-display);
	font-size: 0.5rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.26);
	margin-top: 0.45rem;
	text-align: center;
	padding-inline: 0.15rem;
}

.shop-music__footer { display: flex; justify-content: flex-end; }

.music-browse-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-display);
	font-size: 0.64rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.32);
	text-decoration: none;
	cursor: pointer;
	transition: color 0.22s ease, gap 0.28s ease;
}

.music-browse-cta:hover { color: var(--color-accent); gap: 0.85rem; }

@media (max-width: 1000px) { .music-grid { grid-template-columns: repeat(4, 1fr); } }

@media (max-width: 640px) {
	.shop-music__header { grid-template-columns: 1fr; }
	.shop-music__meta { justify-content: flex-start; }
	.music-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 400px) {
	.music-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ═══════════════════════════════════════════════════════════
   PRESETS PREVIEW
   ═══════════════════════════════════════════════════════════ */

.shop-presets {
	background-color: #0e0e0e;
	padding: 5.5rem 0;
}

.shop-presets__inner {
	max-width: var(--max-width);
	margin-inline: auto;
	padding-inline: var(--space-md);
}

.shop-presets__header {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	gap: 2rem;
	margin-bottom: 2.5rem;
}

.shop-presets__title {
	font-family: var(--font-display);
	font-size: clamp(1.9rem, 3vw, 3.2rem);
	font-weight: 300;
	letter-spacing: -0.04em;
	line-height: 1.05;
	color: var(--color-white);
	margin-top: var(--space-xs);
	margin-bottom: 0.65rem;
}

.shop-presets__title em { font-style: normal; color: #fb7185; }

.shop-presets__lead {
	font-size: 0.88rem;
	line-height: 1.75;
	color: rgba(255,255,255,0.38);
	max-width: 52ch;
}

.shop-presets__meta {
	display: flex;
	gap: 2rem;
	align-items: center;
	flex-shrink: 0;
	padding-bottom: 0.4rem;
}

.presets-stat { display: flex; flex-direction: column; align-items: flex-end; gap: 0.1rem; }

.presets-stat__num {
	font-family: var(--font-pilo);
	font-size: 2.2rem;
	line-height: 1;
	color: #fb7185;
	text-shadow: 0 0 18px rgba(251,113,133,0.45);
}

.presets-stat__label {
	font-size: 0.5rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.28);
}

/* ── Software Grid ────────────────────────────────────────── */

.presets-sw-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 2rem;
}

.presets-sw-card {
	background: #111;
	padding: 1.4rem 1.6rem;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	transition: background 0.2s;
}

.presets-sw-card:hover { background: #161616; }

.presets-sw-card__icon {
	display: flex;
	align-items: center;
	margin-bottom: 0.4rem;
}

.presets-sw-card__name {
	font-family: var(--font-display);
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--color-white);
	line-height: 1.2;
}

.presets-sw-card__sub {
	font-size: 0.6rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.28);
}

/* Per-software accent colours */
.presets-sw-card--amber  .presets-sw-card__icon { color: #fbbf24; }
.presets-sw-card--rose   .presets-sw-card__icon { color: #fb7185; }
.presets-sw-card--blue   .presets-sw-card__icon { color: #60a5fa; }
.presets-sw-card--cyan   .presets-sw-card__icon { color: var(--color-accent); }
.presets-sw-card--purple .presets-sw-card__icon { color: #a78bfa; }
.presets-sw-card--green  .presets-sw-card__icon { color: #4ade80; }

/* ── Footer CTA ───────────────────────────────────────────── */

.shop-presets__footer { display: flex; justify-content: flex-end; }

.presets-browse-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-display);
	font-size: 0.64rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.32);
	text-decoration: none;
	transition: color 0.22s ease, gap 0.28s ease;
}

.presets-browse-cta:hover { color: #fb7185; gap: 0.85rem; }

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 640px) {
	.shop-presets__header { grid-template-columns: 1fr; }
	.shop-presets__meta { justify-content: flex-start; }
	.presets-sw-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
	.presets-sw-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   SHOP CTA
   ═══════════════════════════════════════════════════════════ */

.shop-cta {
	background-color: var(--color-black);
	border-top: 1px solid rgba(255,255,255,0.05);
	padding: 7rem 0;
	text-align: center;
}

.shop-cta__inner {
	max-width: 640px;
	margin-inline: auto;
	padding-inline: var(--space-md);
}

.shop-cta__title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4.5vw, 3.8rem);
	font-weight: 300;
	letter-spacing: -0.04em;
	line-height: 1;
	color: var(--color-white);
	margin-top: var(--space-xs);
	margin-bottom: 1.5rem;
}

.shop-cta__sub {
	font-size: 0.92rem;
	line-height: 1.8;
	color: rgba(255,255,255,0.35);
	margin-bottom: 2.75rem;
}

.shop-cta__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ═══════════════════════════════════════════════════════════
   CINEMATIC AMBIENT SYSTEM
   ═══════════════════════════════════════════════════════════ */

/* Scan Lines */
body.home .scan-lines {
	position: fixed;
	inset: 0;
	background: repeating-linear-gradient(
		to bottom,
		transparent 0px, transparent 3px,
		rgba(0,0,0,0.02) 3px, rgba(0,0,0,0.02) 4px
	);
	pointer-events: none;
	z-index: 9990;
}

/* Film Strip Rail */
.film-strip {
	position: fixed;
	left: 0; top: 0; bottom: 0;
	width: 26px;
	z-index: 800;
	pointer-events: none;
	background: rgba(3,3,3,0.94);
	border-right: 1px solid rgba(255,255,255,0.05);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 7px;
	padding: 7px 0;
	overflow: hidden;
}

.film-sprocket {
	width: 12px; height: 8px;
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 1.5px;
	background: rgba(255,255,255,0.015);
	flex-shrink: 0;
}

@media (max-width: 900px) { .film-strip { display: none; } }

/* Timecode HUD */
.timecode-hud {
	position: fixed;
	bottom: 1.75rem;
	left: 36px;
	z-index: 801;
	pointer-events: none;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.timecode-hud__reel {
	font-family: monospace;
	font-size: 0.46rem;
	letter-spacing: 0.18em;
	color: rgba(255,255,255,0.16);
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.timecode-hud__rec {
	color: var(--color-accent);
	animation: rec-pulse 2.4s ease-in-out infinite;
}

@keyframes rec-pulse {
	0%, 100% { opacity: 0; }
	50%       { opacity: 0.7; }
}

.timecode-hud__tc {
	font-family: monospace;
	font-size: 0.58rem;
	letter-spacing: 0.1em;
	color: rgba(255,255,255,0.18);
}

@media (max-width: 900px) { .timecode-hud { display: none; } }

/* Reel Changeover Cue */
.reel-cue {
	position: fixed;
	top: calc(var(--header-h, 72px) + 1.25rem);
	right: 1.5rem;
	z-index: 801;
	width: 9px; height: 9px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.55);
	background: transparent;
	pointer-events: none;
	opacity: 0;
}

.reel-cue.is-active { animation: cue-blink 0.8s ease-in-out forwards; }

@keyframes cue-blink {
	0%   { opacity: 0; }
	15%  { opacity: 0.8; }
	30%  { opacity: 0; }
	45%  { opacity: 0.8; }
	60%  { opacity: 0; }
	75%  { opacity: 0.6; }
	100% { opacity: 0; }
}

/* ── Reduced motion ──────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
	.word { transform: none; transition: none; }
	.cursor-dot, .cursor-ring { display: none; }
	.product-card__img,
	.software-card__img,
	.music-card__img { transition: none; }
	.shop-intro::before,
	.shop-featured::before,
	.shop-software::before { animation: none; }
}

/* ── Mobile ──────────────────────────────────────────────────── */

@media (max-width: 640px) {
	.timecode-hud { display: none; }
	.shop-cta { padding: 5rem 0; }
	.section-header__title { font-size: 1.4rem; }
}
