/* ==========================================================================
   saCoder Store - main stylesheet
   Brand direction: soft lavender-violet gradient system, pill controls,
   large rounded cards, Space Grotesk display over DM Sans body.
   ========================================================================== */

@font-face {
	font-family: 'Space Grotesk';
	src: url('../fonts/SpaceGrotesk.ttf') format('truetype');
	font-weight: 300 700;
	font-display: swap;
}
@font-face {
	font-family: 'DM Sans';
	src: url('../fonts/DMSans.ttf') format('truetype');
	font-weight: 100 1000;
	font-display: swap;
}

:root {
	--bg: #F4F1FC;
	--bg-soft: #FBFAFF;
	--surface: #FFFFFF;
	--ink: #221733;
	--muted: #64587E;
	--accent: #6D28D9;
	--accent-strong: #5B21B6;
	--accent-soft: #EDE6FD;
	--pink: #F0ABFC;
	--lilac: #C4B5FD;
	--line: #E6E0F5;
	--font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
	--font-body: 'DM Sans', 'Segoe UI', sans-serif;
	--r-sm: 12px;
	--r-md: 20px;
	--r-lg: 28px;
	--shadow: 0 18px 45px rgba(78, 44, 158, 0.10);
	--shadow-soft: 0 8px 24px rgba(78, 44, 158, 0.08);
	--hero-grad: linear-gradient(135deg, #E9E3FC 0%, #F3E8FF 38%, #FBE8FF 68%, #F6EFFE 100%);
	--container: 1180px;
}

/* Reset ---------------------------------------------------------------- */

:where(*, *::before, *::after) { box-sizing: border-box; }
:where(h1, h2, h3, h4, p, ul, ol, figure, blockquote) { margin: 0; }
:where(ul, ol) { padding: 0; list-style: none; }
:where(img) { max-width: 100%; height: auto; display: block; }
:where(a) { color: inherit; text-decoration: none; }
:where(button) { font: inherit; cursor: pointer; border: 0; background: none; }

html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--bg-soft);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
	font-family: var(--font-display);
	line-height: 1.12;
	font-weight: 700;
	letter-spacing: -0.015em;
}

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.container--narrow { width: min(760px, calc(100% - 48px)); }

.section { padding: 88px 0; }
.empty { color: var(--muted); padding: 48px 0; }

/* Buttons & pills ------------------------------------------------------ */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: 999px;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 16px;
	padding: 14px 28px;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-sm { padding: 10px 20px; font-size: 15px; }
.btn-lg { padding: 17px 36px; font-size: 17px; }
.btn-primary {
	background: linear-gradient(120deg, #7C3AED, #A855F7);
	color: #fff;
	box-shadow: 0 10px 24px rgba(124, 58, 237, 0.35);
}
.btn-primary:hover { box-shadow: 0 14px 30px rgba(124, 58, 237, 0.45); transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #34234e; }
.btn-outline { border: 2px solid var(--accent); color: var(--accent); background: transparent; }
.btn-outline:hover { background: var(--accent-soft); }
.btn-ghost { background: var(--accent-soft); color: var(--accent-strong); border-radius: 999px; padding: 9px 18px; font-weight: 700; font-size: 14px; }
.btn-ghost:hover { background: #E2D7FB; }

.pill {
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
	padding: 9px 18px;
	font-size: 14.5px;
	font-weight: 500;
	color: var(--muted);
	background: var(--surface);
	border: 1px solid var(--line);
	transition: all 0.15s ease;
}
.pill:hover { border-color: var(--lilac); color: var(--ink); }
.pill--active { background: var(--ink); border-color: var(--ink); color: #fff; }
.pill--soft { background: var(--accent-soft); border: 0; color: var(--accent-strong); font-weight: 700; }

.badge {
	position: absolute;
	top: 14px;
	left: 14px;
	border-radius: 999px;
	padding: 6px 13px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.02em;
}
.badge-free { background: rgba(255, 255, 255, 0.92); color: var(--accent-strong); }
.badge-pro { background: var(--ink); color: #F3E8FF; }

/* Navigation ------------------------------------------------------------ */

.site-nav-wrap { position: sticky; top: 14px; z-index: 50; padding: 0 24px; }
.site-nav {
	width: min(var(--container), 100%);
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	background: rgba(255, 255, 255, 0.86);
	backdrop-filter: blur(14px);
	border: 1px solid rgba(230, 224, 245, 0.9);
	border-radius: 999px;
	box-shadow: var(--shadow-soft);
	padding: 10px 12px 10px 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 20px; }
.brand-mark {
	display: inline-grid;
	place-items: center;
	width: 34px; height: 34px;
	border-radius: 11px;
	background: linear-gradient(135deg, #7C3AED, #C084FC);
	color: #fff;
	font-size: 19px;
}
.brand-name span { color: var(--accent); }
.nav-menu { display: flex; gap: 6px; }
.nav-menu a {
	display: block;
	padding: 9px 15px;
	border-radius: 999px;
	font-weight: 500;
	font-size: 15.5px;
	color: var(--muted);
	transition: all 0.15s ease;
}
.nav-menu a:hover, .nav-menu .current-menu-item a, .nav-menu .current_page_item a { color: var(--ink); background: var(--accent-soft); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 999px; background: var(--accent-soft); position: relative; }
.nav-toggle span {
	position: absolute; left: 12px; right: 12px; height: 2.5px; border-radius: 2px;
	background: var(--ink); transition: transform 0.2s ease, top 0.2s ease;
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 24px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { top: 20px; transform: rotate(-45deg); }

.mobile-menu { display: none; }
@media (max-width: 900px) {
	.nav-menu-wrap { display: none; }
	.nav-toggle { display: block; }
	.mobile-menu[hidden] { display: none; }
	.mobile-menu:not([hidden]) {
		display: block;
		width: min(var(--container), 100%);
		margin: 8px auto 0;
		background: var(--surface);
		border: 1px solid var(--line);
		border-radius: var(--r-md);
		box-shadow: var(--shadow);
		overflow: hidden;
	}
	.mobile-menu__list a { display: block; padding: 14px 22px; font-weight: 500; border-bottom: 1px solid var(--line); }
	.mobile-menu__list li:last-child a { border-bottom: 0; }
}
@media (max-width: 480px) {
	.site-nav-wrap { top: 8px; padding: 0 14px; }
	.site-nav { padding: 8px 8px 8px 16px; gap: 12px; }
	.brand { font-size: 17px; white-space: nowrap; }
	.brand-mark { width: 30px; height: 30px; font-size: 17px; border-radius: 9px; }
	.nav-actions .btn { padding: 9px 14px; font-size: 13.5px; white-space: nowrap; }
	.hero-search { flex-wrap: nowrap; }
	.hero-search input { font-size: 15px; }
	.how-grid, .cat-grid, .product-grid, .quote-grid { gap: 16px; }
	.section { padding: 64px 0; }
}

/* Hero ------------------------------------------------------------------ */

.hero { position: relative; overflow: clip; background: var(--hero-grad); padding: 96px 0 110px; text-align: center; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; pointer-events: none; }
.hero-glow--1 { width: 480px; height: 480px; left: -160px; top: -120px; background: #C4B5FD; }
.hero-glow--2 { width: 520px; height: 520px; right: -180px; bottom: -200px; background: #F5D0FE; }

.hero-inner { position: relative; z-index: 2; width: min(820px, calc(100% - 48px)); }
.hero-title { font-size: clamp(38px, 5.6vw, 64px); line-height: 1.08; }
.hero-sub { margin: 22px auto 0; max-width: 560px; font-size: 19px; color: var(--muted); }

.hero-search {
	margin: 36px auto 0;
	display: flex;
	align-items: center;
	gap: 8px;
	width: min(620px, 100%);
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 8px 8px 8px 20px;
	box-shadow: var(--shadow);
}
.hero-search__icon { display: inline-flex; color: var(--muted); }
.hero-search input {
	flex: 1; min-width: 0; border: 0; outline: 0;
	font: 500 16px var(--font-body); color: var(--ink); background: transparent;
}
.hero-search input::placeholder { color: #9C90B8; }

.hero-note { margin-top: 20px; font-size: 14.5px; color: var(--muted); }
.hero-note a { color: var(--accent); font-weight: 700; }

.hero-orbs { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-orb {
	position: absolute;
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid rgba(255, 255, 255, 0.85);
	box-shadow: var(--shadow);
	pointer-events: auto;
	animation: orb-float 7s ease-in-out infinite;
}
.hero-orb img { width: 100%; height: 100%; object-fit: cover; }
.hero-orb--1 { width: 130px; height: 130px; left: 4%;  top: 14%;  animation-delay: 0s; }
.hero-orb--2 { width: 92px;  height: 92px;  left: 13%; bottom: 12%; animation-delay: 1.2s; }
.hero-orb--3 { width: 108px; height: 108px; right: 5%; top: 18%;  animation-delay: 0.6s; }
.hero-orb--4 { width: 84px;  height: 84px;  right: 15%; bottom: 16%; animation-delay: 1.8s; }
.hero-orb--5 { width: 72px;  height: 72px;  left: 26%; top: 6%;   animation-delay: 2.4s; }
.hero-orb--6 { width: 76px;  height: 76px;  right: 27%; top: 5%;  animation-delay: 3s; }
@keyframes orb-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-14px); }
}
@media (max-width: 1080px) {
	.hero-orb--5, .hero-orb--6 { display: none; }
	.hero-orb--1 { width: 100px; height: 100px; }
	.hero-orb--3 { width: 88px; height: 88px; }
}
@media (max-width: 720px) {
	.hero-orbs { display: none; }
	.hero { padding: 64px 0 72px; }
}

/* Trust strip ------------------------------------------------------------ */

.trust { background: var(--bg-soft); padding: 34px 0 6px; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.trust-label { font-size: 13.5px; text-transform: uppercase; letter-spacing: 0.12em; color: #9C90B8; font-weight: 700; }
.trust-list { display: flex; gap: 12px 26px; flex-wrap: wrap; justify-content: center; }
.trust-list li {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 18px;
	color: #A79BC5;
}

/* Section heads ----------------------------------------------------------- */

.section-head { text-align: center; max-width: 620px; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 44px); }
.section-head p { margin-top: 14px; color: var(--muted); font-size: 17.5px; }

.split-head {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 32px;
	align-items: end;
	margin-bottom: 48px;
}
.split-head h2 { font-size: clamp(30px, 3.6vw, 44px); }
.split-head p { color: var(--muted); font-size: 17px; }
@media (max-width: 800px) { .split-head { grid-template-columns: 1fr; gap: 12px; } }

/* How it works ------------------------------------------------------------ */

.how { background: var(--bg-soft); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.how-card {
	position: relative;
	border-radius: var(--r-lg);
	padding: 34px 28px 30px;
	border: 1px solid rgba(255, 255, 255, 0.7);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
}
.how-card::before {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(160deg, var(--tint-1, #EDE6FD), var(--tint-2, #F8E9FE));
	z-index: -1;
}
.how-card--1 { --tint-1: #EDE6FD; --tint-2: #F6ECFE; }
.how-card--2 { --tint-1: #F3E3FD; --tint-2: #FDEBFA; }
.how-card--3 { --tint-1: #E7E7FE; --tint-2: #F3E9FD; }
.how-num {
	display: inline-grid; place-items: center;
	width: 46px; height: 46px;
	border-radius: 15px;
	background: var(--surface);
	box-shadow: var(--shadow-soft);
	font-family: var(--font-display);
	font-weight: 700; font-size: 20px;
	color: var(--accent);
	margin-bottom: 20px;
}
.how-card h3 { font-size: 21px; margin-bottom: 10px; }
.how-card p { color: var(--muted); font-size: 15.5px; }
@media (max-width: 800px) { .how-grid { grid-template-columns: 1fr; } }

/* Gallery strip ------------------------------------------------------------ */

.strip { padding: 20px 0 8px; overflow: hidden; }
.strip-track {
	display: flex; gap: 20px;
	width: max-content;
	animation: strip-scroll 42s linear infinite;
}
.strip-item {
	width: 300px; aspect-ratio: 4 / 3;
	border-radius: var(--r-md);
	overflow: hidden;
	flex: none;
	box-shadow: var(--shadow-soft);
	border: 1px solid rgba(255, 255, 255, 0.8);
}
.strip-item img { width: 100%; height: 100%; object-fit: cover; }
@keyframes strip-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.strip-track { animation: none; }
	.hero-orb { animation: none; }
	.marquee-track { animation: none; }
}

/* Categories ---------------------------------------------------------------- */

.cats { background: var(--bg-soft); }
.cat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: minmax(200px, auto);
	gap: 20px;
}
.cat-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 10px;
	border-radius: var(--r-lg);
	padding: 28px;
	background: linear-gradient(165deg, #FFFFFF, #F6F1FE);
	border: 1px solid var(--line);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cat-card--feature {
	grid-column: span 2;
	grid-row: span 2;
	justify-content: center;
	background: linear-gradient(150deg, #EDE6FD 0%, #F6E7FD 55%, #FDF0FB 100%);
	border: 0;
}
.cat-card--feature h3 { font-size: clamp(26px, 2.6vw, 34px); }
.cat-count {
	font-size: 13px; font-weight: 700;
	text-transform: uppercase; letter-spacing: 0.1em;
	color: var(--accent);
}
.cat-card h3 { font-size: 20px; }
.cat-card p { color: var(--muted); font-size: 15px; }
.cat-card--feature p { max-width: 420px; }
.cat-link { font-weight: 700; font-size: 15px; color: var(--accent); }
@media (max-width: 1000px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } .cat-card--feature { grid-column: span 2; grid-row: auto; } }
@media (max-width: 620px) { .cat-grid { grid-template-columns: 1fr; } .cat-card--feature { grid-column: auto; } }

/* Marquee band ---------------------------------------------------------------- */

.marquee { overflow: hidden; padding: 46px 0; background: linear-gradient(90deg, #F3E8FF, #FBE8FF 50%, #EFE9FE); }
.marquee-track {
	display: flex; align-items: center; gap: 28px;
	width: max-content;
	animation: strip-scroll 30s linear infinite;
}
.marquee-track span {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(34px, 4.6vw, 56px);
	color: transparent;
	-webkit-text-stroke: 1.5px #B9A6E8;
	white-space: nowrap;
}
.marquee-track i { color: #C9B8F0; font-style: normal; font-size: 28px; }

/* Product cards ---------------------------------------------------------------- */

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .product-grid, .product-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .product-grid, .product-grid--3 { grid-template-columns: 1fr; } }

.product-card {
	display: flex; flex-direction: column;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	overflow: hidden;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-card__media { position: relative; display: block; aspect-ratio: 4 / 3; background: var(--accent-soft); overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__placeholder {
	display: block; width: 100%; height: 100%;
	background: linear-gradient(140deg, #EDE6FD, #F8E9FE 60%, #FDEBFA);
}
.product-card__body { display: flex; flex-direction: column; gap: 10px; padding: 20px 22px 22px; flex: 1; }
.product-card__meta { display: flex; justify-content: space-between; align-items: center; font-size: 13.5px; }
.product-card__cat { color: var(--muted); font-weight: 500; }
.product-card__price { color: var(--accent-strong); font-weight: 700; }
.product-card__title { font-size: 19px; line-height: 1.25; }
.product-card__title a:hover { color: var(--accent); }
.product-card__body .btn-ghost { align-self: flex-start; margin-top: auto; }

.section-more { text-align: center; margin-top: 44px; }

/* Testimonials ------------------------------------------------------------------ */

.loved { background: var(--bg-soft); }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; } }
.quote-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 30px;
	display: flex; flex-direction: column; gap: 24px;
	box-shadow: var(--shadow-soft);
}
.quote-card blockquote { font-size: 16.5px; color: #3E3357; }
.quote-card figcaption { display: flex; align-items: center; gap: 14px; font-size: 14.5px; color: var(--muted); }
.quote-card figcaption strong { color: var(--ink); font-size: 15.5px; }
.avatar {
	display: inline-grid; place-items: center;
	width: 44px; height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, #C4B5FD, #F0ABFC);
	color: #fff; font-weight: 700; font-size: 14px;
	font-family: var(--font-display);
}

/* CTA band ----------------------------------------------------------------------- */

.cta-wrap { padding-top: 20px; }
.cta-band {
	text-align: center;
	background: linear-gradient(140deg, #7C3AED 0%, #9333EA 45%, #C026D3 100%);
	color: #fff;
	border-radius: var(--r-lg);
	padding: 72px 32px;
	box-shadow: 0 24px 60px rgba(124, 58, 237, 0.35);
}
.cta-band h2 { font-size: clamp(30px, 4vw, 46px); }
.cta-band p { margin: 16px auto 30px; max-width: 460px; color: #EFE4FF; font-size: 17.5px; }

/* Footer --------------------------------------------------------------------------- */

.site-footer { background: #241735; color: #CFC4E4; margin-top: 60px; }
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
	padding: 64px 0 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { margin-top: 16px; font-size: 15px; max-width: 300px; color: #A99BC8; }
.site-footer .brand { color: #fff; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 16px; letter-spacing: 0.04em; }
.footer-col ul { display: grid; gap: 10px; font-size: 15px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #3A2A52; padding: 22px 0; font-size: 14px; color: #A99BC8; }

/* Shop ---------------------------------------------------------------------------- */

.shop-head {
	background: var(--hero-grad);
	padding: 72px 0 44px;
	text-align: center;
}
.shop-head h1 { font-size: clamp(32px, 4.4vw, 52px); }
.shop-head > .container > p { margin: 16px auto 0; max-width: 540px; color: var(--muted); font-size: 17.5px; }
.shop-search {
	margin: 30px auto 0;
	display: flex; align-items: center; gap: 8px;
	width: min(520px, 100%);
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 6px 6px 6px 20px;
	box-shadow: var(--shadow-soft);
}
.shop-search input { flex: 1; min-width: 0; border: 0; outline: 0; font: 500 15.5px var(--font-body); background: transparent; color: var(--ink); }
.filter-pills { margin-top: 26px; display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.shop-body { padding-top: 56px; }

.pagination { margin-top: 48px; display: flex; justify-content: center; }
.pagination .page-numbers {
	display: inline-grid; place-items: center;
	min-width: 42px; height: 42px;
	margin: 0 4px;
	padding: 0 10px;
	border-radius: 999px;
	background: var(--surface);
	border: 1px solid var(--line);
	font-weight: 700; color: var(--muted);
}
.pagination .page-numbers.current { background: var(--ink); border-color: var(--ink); color: #fff; }

/* Single product -------------------------------------------------------------------- */

.product-single { padding: 36px 0 80px; }
.crumbs { display: flex; gap: 10px; align-items: center; font-size: 14px; color: var(--muted); margin-bottom: 30px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--accent); }

.product-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: start; }
@media (max-width: 880px) { .product-layout { grid-template-columns: 1fr; gap: 32px; } }

.product-media__main {
	border-radius: var(--r-lg);
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--accent-soft);
	box-shadow: var(--shadow);
}
.product-media__main img { width: 100%; }
.product-media__note { margin-top: 12px; font-size: 13.5px; color: var(--muted); }

.product-title { font-size: clamp(28px, 3.4vw, 42px); margin-top: 16px; }
.product-excerpt { margin-top: 14px; color: var(--muted); font-size: 17.5px; }

.product-buy {
	margin-top: 26px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 22px;
	display: grid;
	gap: 14px;
	box-shadow: var(--shadow-soft);
}
.product-price { display: flex; align-items: baseline; gap: 12px; }
.price-value { font-family: var(--font-display); font-weight: 700; font-size: 34px; color: var(--accent-strong); }
.price-note { color: var(--muted); font-size: 14.5px; }
.product-buy .btn { width: 100%; }
.product-buy__note { font-size: 13.5px; color: var(--muted); text-align: center; }

.product-specs { margin-top: 20px; display: grid; gap: 0; background: var(--bg-soft); border-radius: var(--r-md); overflow: hidden; }
.product-specs li { display: flex; justify-content: space-between; padding: 13px 18px; font-size: 14.5px; border-bottom: 1px solid var(--line); }
.product-specs li:last-child { border-bottom: 0; }
.product-specs span { color: var(--muted); }
.product-specs strong { font-weight: 700; }

.product-content { margin-top: 64px; max-width: 760px; }
.product-content h2 { font-size: 26px; margin-bottom: 18px; }
.product-content p { margin-bottom: 16px; color: #3E3357; }
.product-content ul { list-style: disc; padding-left: 22px; margin: 0 0 16px; color: #3E3357; }
.product-content li { margin-bottom: 6px; }

.related { margin-top: 72px; }
.related h2 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 28px; }

/* EDD checkout / shortcodes (theme-styled) ------------------------------------------- */

#edd_checkout_wrap, #edd_purchase_history_wrapper, .edd_download_purchase_form { font-size: 16px; }
.edd_checkout_cart, .edd-table { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.edd_checkout_cart th, .edd_checkout_cart td, .edd-table th, .edd-table td { padding: 14px 18px; border-bottom: 1px solid var(--line); text-align: left; }
.edd_checkout_cart th { background: var(--bg-soft); font-family: var(--font-display); }
#edd_purchase_form_wrap, .edd_checkout_form_wrap {
	background: var(--surface); border: 1px solid var(--line);
	border-radius: var(--r-md); padding: 26px; margin-top: 24px;
}
.edd_checkout_form_wrap label, #edd_purchase_form label { font-weight: 700; font-size: 14.5px; display: block; margin-bottom: 6px; }
.edd-input, #edd_purchase_form input[type="email"], #edd_purchase_form input[type="text"], .edd_checkout_form_wrap input[type="email"], .edd_checkout_form_wrap input[type="text"] {
	width: 100%;
	border: 1.5px solid var(--line);
	border-radius: 12px;
	padding: 12px 16px;
	font: 500 15.5px var(--font-body);
	color: var(--ink);
	background: var(--bg-soft);
	margin-bottom: 18px;
}
.edd-input:focus { outline: 2px solid var(--lilac); border-color: var(--accent); }
.edd-submit, input[type="submit"].edd-submit {
	background: linear-gradient(120deg, #7C3AED, #A855F7);
	color: #fff;
	border: 0;
	border-radius: 999px;
	font: 700 16px var(--font-body);
	padding: 14px 32px;
	box-shadow: 0 10px 24px rgba(124, 58, 237, 0.35);
}
.edd-alert { border-radius: var(--r-sm); padding: 14px 18px; margin: 16px 0; font-size: 15px; }
.edd-alert.error { background: #FDECEF; color: #9F1239; }
.edd-alert.success { background: #EAF7F0; color: #14664A; }
#edd_checkout_form_wrap legend, .edd_checkout_form_wrap legend { font-family: var(--font-display); font-weight: 700; font-size: 19px; padding-top: 10px; }

/* Pages ------------------------------------------------------------------------------- */

.page-head { background: var(--hero-grad); padding: 64px 0; }
.page-head h1 { font-size: clamp(30px, 4vw, 48px); }
.page-body { padding-top: 56px; }
.page-body p { margin-bottom: 18px; color: #3E3357; }
.page-body h2 { font-size: 26px; margin: 34px 0 14px; }
.page-body ul { list-style: disc; padding-left: 22px; margin: 0 0 18px; color: #3E3357; }
.page-body li { margin-bottom: 8px; }

.list-item { border-bottom: 1px solid var(--line); padding: 28px 0; }
.list-item h2 { font-size: 24px; }
.list-item h2 a:hover { color: var(--accent); }
.list-meta { font-size: 13.5px; color: var(--muted); margin: 6px 0 10px; }

/* Contact form ------------------------------------------------------------------------- */

.contact-form { display: grid; gap: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px; box-shadow: var(--shadow-soft); }
.contact-form label { font-weight: 700; font-size: 14.5px; display: block; margin-bottom: 6px; }
.contact-form input, .contact-form textarea {
	width: 100%;
	border: 1.5px solid var(--line);
	border-radius: 12px;
	padding: 12px 16px;
	font: 500 15.5px var(--font-body);
	color: var(--ink);
	background: var(--bg-soft);
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--lilac); border-color: var(--accent); }
.contact-status { border-radius: var(--r-sm); padding: 13px 17px; font-size: 15px; }
.contact-status--sent { background: #EAF7F0; color: #14664A; }
.contact-status--error { background: #FDECEF; color: #9F1239; }

/* 404 ------------------------------------------------------------------------------------ */

.err-num {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(72px, 12vw, 140px);
	line-height: 1;
	background: linear-gradient(120deg, #7C3AED, #C026D3);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 10px;
}

/* Misc ------------------------------------------------------------------------------------ */

::selection { background: #DDD1FB; color: var(--ink); }
:focus-visible { outline: 3px solid var(--lilac); outline-offset: 2px; border-radius: 6px; }
