/* =========================================================================
   script.casino — Light premium SaaS design system (Stripe/Linear feel)
   ========================================================================= */

:root {
	--bg: #ffffff;
	--bg-soft: #f7f8fb;
	--bg-tint: #f0f2fb;

	--ink: #0f172a;          /* slate-900 */
	--text: #334155;         /* slate-700 */
	--text-dim: #64748b;     /* slate-500 */
	--text-mute: #64748b;    /* slate-500 — WCAG AA on white */

	--border: #e7e9f2;
	--border-strong: #d6d9e8;

	/* Gold accent system */
	--gold: #c9a227;          /* primary gold */
	--gold-bright: #e6c763;   /* highlight (use on dark backgrounds) */
	--gold-deep: #9a7b1a;     /* text-safe gold on white */
	--gold-ink: #2a2208;      /* near-black text for use ON gold */

	--indigo: #9a7b1a;        /* accent for text/icons on light bg (kept name for compatibility) */
	--indigo-600: #826615;
	--violet: #c9a227;
	--cyan: #c9a227;
	--emerald: #10b981;
	--amber: #f59e0b;

	--accent-soft: #faf3e0;   /* gold tint */

	--grad: linear-gradient(135deg, #e6c763 0%, #c9a227 48%, #a67c1a 100%);
	--grad-bright: linear-gradient(135deg, #f0d27a 0%, #d4af37 50%, #b8860b 100%);
	--grad-text: linear-gradient(120deg, #9a7b1a 0%, #c9a227 45%, #d4af37 100%);

	--radius: 16px;
	--radius-lg: 24px;
	--radius-sm: 10px;

	--shadow-xs: 0 1px 2px rgba(16, 24, 40, 0.05);
	--shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.04), 0 4px 12px -4px rgba(16, 24, 40, 0.08);
	--shadow: 0 1px 3px rgba(16, 24, 40, 0.05), 0 12px 28px -10px rgba(16, 24, 40, 0.12);
	--shadow-lg: 0 24px 60px -24px rgba(201, 162, 39, 0.30), 0 8px 24px -12px rgba(16, 24, 40, 0.12);

	--container: 1200px;
	--gap: 24px;

	--ff-display: "Sora", system-ui, -apple-system, sans-serif;
	--ff-body: "Inter", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	font-family: var(--ff-body);
	background: var(--bg);
	color: var(--text);
	line-height: 1.65;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	min-height: 100vh;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .18s ease, opacity .18s ease; }
a:hover { color: var(--indigo); }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.12; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
:focus-visible { outline: 2px solid var(--indigo); outline-offset: 3px; border-radius: 6px; }
::selection { background: rgba(201, 162, 39, 0.16); color: var(--ink); }

/* ---------- Accessibility ---------- */
.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:focus { position: fixed; top: 12px; left: 12px; z-index: 1000; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px; width: auto; height: auto; clip: auto; white-space: normal; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container--narrow { max-width: 800px; }
.sc-main { position: relative; z-index: 1; }
.sc-section { padding-block: clamp(56px, 8vw, 110px); position: relative; }
.sc-section--tight { padding-block: clamp(40px, 6vw, 72px); }
.sc-section--soft { background: var(--bg-soft); border-block: 1px solid var(--border); }

/* ---------- Decorative background (subtle, light) ---------- */
.sc-bg { position: absolute; inset: 0 0 auto 0; height: 760px; z-index: 0; overflow: hidden; pointer-events: none; }
.sc-bg__blob { position: absolute; border-radius: 50%; filter: blur(110px); opacity: 0.25; }
.sc-bg__blob--1 { width: 460px; height: 460px; top: -220px; right: -60px; background: radial-gradient(circle, rgba(201,162,39,.16), transparent 70%); }
.sc-bg__blob--2 { width: 400px; height: 400px; top: -200px; left: -140px; background: radial-gradient(circle, rgba(212,175,55,.12), transparent 70%); }
.sc-bg__blob--3 { display: none; }
.sc-bg__grid { position: absolute; inset: 0;
	background-image: linear-gradient(rgba(15,23,42,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(15,23,42,0.035) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(120% 80% at 50% 0%, #000 0%, transparent 70%);
	-webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 0%, transparent 70%);
}

/* ---------- Card / surface ---------- */
.glass, .sc-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }

/* ---------- Type helpers ---------- */
.grad-text { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.sc-step__num.grad-text,
.sc-stat__num.grad-text {
	background: none;
	color: var(--gold-deep);
	-webkit-text-fill-color: var(--gold-deep);
}
.eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--ff-display); font-weight: 600; font-size: .76rem;
	letter-spacing: .1em; text-transform: uppercase; color: var(--indigo);
	padding: 6px 13px; border-radius: 999px;
	background: var(--accent-soft); border: 1px solid rgba(201,162,39,.14);
}
.eyebrow .sc-icon { width: 15px; height: 15px; color: var(--indigo); }

/* ---------- Buttons ---------- */
.sc-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 9px;
	font-family: var(--ff-display); font-weight: 600; font-size: .95rem;
	padding: 12px 22px; border-radius: 12px; border: 1px solid transparent;
	cursor: pointer; white-space: nowrap; transition: transform .16s ease, box-shadow .22s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.sc-btn .sc-icon { width: 18px; height: 18px; }
.sc-btn--lg { padding: 15px 28px; font-size: 1.02rem; }
.sc-btn--block { width: 100%; }

.sc-btn--grad { background: var(--grad); color: var(--gold-ink); box-shadow: 0 8px 20px -8px rgba(201,162,39,.6); }
.sc-btn--grad:hover { color: var(--gold-ink); transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(201,162,39,.75); }

.sc-btn--glass { background: #fff; color: var(--ink); border-color: var(--border-strong); box-shadow: var(--shadow-xs); }
.sc-btn--glass:hover { color: var(--ink); transform: translateY(-2px); border-color: var(--text-mute); box-shadow: var(--shadow-sm); }

.sc-btn--ghost { background: #fff; color: var(--ink); border-color: var(--border); padding: 10px 18px; font-size: .9rem; box-shadow: var(--shadow-xs); }
.sc-btn--ghost:hover { color: var(--indigo); border-color: var(--border-strong); }

/* ---------- Header ---------- */
.sc-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color .25s ease, box-shadow .25s ease; }
.sc-header.is-stuck { border-bottom-color: var(--border); box-shadow: var(--shadow-xs); }
.sc-header__inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.sc-header__brand { flex: 0 0 auto; }
.sc-nav { flex: 1 1 auto; display: flex; justify-content: center; }
.sc-header__actions { flex: 0 0 auto; display: flex; align-items: center; gap: 10px; }

.sc-brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--ff-display); font-weight: 800; font-size: 1.3rem; letter-spacing: -0.03em; color: var(--ink); white-space: nowrap; }
.sc-brand:hover { color: var(--ink); }
.sc-brand .sc-brand__logo { height: 46px; width: auto; max-width: none; display: block; flex: 0 0 auto; }
.sc-brand__name { color: var(--ink); }
.sc-brand__tld { color: var(--gold-deep); }
.custom-logo { max-height: 44px; width: auto; }

/* Primary menu */
.sc-menu { display: flex; align-items: center; gap: 2px; }
.sc-menu li { position: relative; }
.sc-menu a { display: inline-flex; align-items: center; gap: 6px; padding: 9px 13px; border-radius: 9px; color: var(--text); font-weight: 500; font-size: .94rem; white-space: nowrap; }
.sc-menu a:hover, .sc-menu .current-menu-item > a { color: var(--ink); background: var(--bg-soft); }
.sc-menu .menu-item-has-children > a::after { content: ""; width: 6px; height: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-left: 3px; margin-top: -3px; opacity: .5; }
.sc-menu .sub-menu { position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 8px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .18s ease, transform .18s ease, visibility .18s; z-index: 50; }
.sc-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sc-menu .sub-menu a { display: block; padding: 9px 12px; border-radius: 8px; }

/* Icon buttons + cart */
.sc-icon-btn, .sc-cart-link { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 11px; color: var(--text); background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-xs); }
.sc-icon-btn:hover, .sc-cart-link:hover { color: var(--indigo); border-color: var(--border-strong); }
.sc-cart-count { position: absolute; top: -6px; right: -6px; min-width: 18px; height: 18px; padding: 0 5px; display: grid; place-items: center; font-size: .68rem; font-weight: 700; background: var(--grad); color: #fff; border-radius: 999px; }
.sc-header__cta { display: inline-flex; margin-left: 4px; }

/* Burger */
.sc-burger { display: none; width: 42px; height: 42px; border-radius: 11px; background: #fff; border: 1px solid var(--border); flex-direction: column; gap: 4px; align-items: center; justify-content: center; box-shadow: var(--shadow-xs); }
.sc-burger span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
.sc-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.sc-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.sc-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.sc-mobile { display: none; padding: 16px 24px 28px; border-top: 1px solid var(--border); background: #fff; }
.sc-mobile.is-open { display: block; }
.sc-mobile__menu { display: flex; flex-direction: column; gap: 2px; margin-bottom: 16px; }
.sc-mobile__menu a { display: block; padding: 12px 14px; border-radius: 10px; color: var(--ink); font-weight: 500; }
.sc-mobile__menu a:hover { background: var(--bg-soft); }
.sc-mobile__menu .sub-menu { padding-left: 14px; }

/* ---------- Hero ---------- */
.sc-hero { padding-block: clamp(56px, 9vw, 120px) clamp(40px, 6vw, 72px); position: relative; z-index: 1; }
.sc-hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.sc-hero__title { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; margin: 20px 0 18px; color: var(--ink); }
.sc-hero__sub { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--text-dim); max-width: 540px; }
.sc-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 24px; }
.sc-hero__trust { display: flex; flex-wrap: wrap; gap: 18px; }
.sc-hero__trust li { display: inline-flex; align-items: center; gap: 8px; color: var(--text-dim); font-size: .92rem; }
.sc-hero__trust .sc-icon { width: 18px; height: 18px; color: var(--emerald); }

/* Hero visual — app window mockup */
.sc-hero__visual { position: relative; min-height: 440px; }
.sc-mock { background: #fff; border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden; }
.sc-mock__bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid var(--border); background: #fcfcfe; }
.sc-mock__dot { width: 10px; height: 10px; border-radius: 50%; background: #e2e6f0; }
.sc-mock__dot:nth-child(1){ background:#ff5f57 } .sc-mock__dot:nth-child(2){ background:#febc2e } .sc-mock__dot:nth-child(3){ background:#28c840 }
.sc-mock__url { margin-left: 12px; font-style: normal; font-size: .76rem; color: var(--text-mute); background: #f2f4f9; padding: 4px 12px; border-radius: 7px; }
.sc-mock__body { display: grid; grid-template-columns: 56px 1fr; min-height: 358px; }
.sc-mock__nav { border-right: 1px solid var(--border); padding: 16px 0; display: flex; flex-direction: column; align-items: center; gap: 14px; background: #fcfcfe; }
.sc-mock__logo { width: 26px; height: 26px; border-radius: 8px; background: var(--grad); }
.sc-mock__nav i { width: 22px; height: 22px; border-radius: 7px; background: #eef0f6; display: block; }
.sc-mock__nav i.is-active { background: var(--accent-soft); box-shadow: inset 0 0 0 1.5px rgba(201,162,39,.4); }
.sc-mock__main { padding: 18px 20px; }
.sc-mock__head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.sc-mock__head b { font-family: var(--ff-display); color: var(--ink); font-size: 1rem; display: block; }
.sc-mock__head small { color: var(--text-mute); font-size: .76rem; }
.sc-mock__live { font-size: .68rem; font-weight: 700; color: var(--emerald); background: rgba(16,185,129,.1); padding: 5px 11px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; }
.sc-mock__live::before { content:""; width:6px; height:6px; border-radius:50%; background: var(--emerald); }
.sc-mock__tiles { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 16px; }
.sc-mock__tile { border: 1px solid var(--border); border-radius: 12px; padding: 12px; }
.sc-mock__tile small { color: var(--text-mute); font-size: .68rem; display: block; }
.sc-mock__tile b { font-family: var(--ff-display); color: var(--ink); font-size: 1.02rem; display: block; margin: 3px 0; }
.sc-mock__tile i { font-style: normal; font-size: .66rem; font-weight: 700; }
.sc-mock__tile i.up { color: var(--emerald); }
.sc-mock__chart { display: flex; align-items: flex-end; gap: 7px; height: 92px; padding: 14px; border: 1px solid var(--border); border-radius: 12px; margin-bottom: 14px; }
.sc-mock__chart span { flex: 1; height: var(--h); background: var(--grad); border-radius: 5px 5px 2px 2px; opacity: .9; animation: rise 1s ease backwards; }
.sc-mock__chart span:nth-child(odd){ opacity:.5 }
.sc-mock__rows { display: flex; flex-direction: column; gap: 8px; }
.sc-mock__row { display: flex; align-items: center; justify-content: space-between; padding: 9px 12px; border: 1px solid var(--border); border-radius: 10px; }
.sc-mock__row span { width: 38%; height: 8px; border-radius: 4px; background: #eef0f6; }
.sc-mock__row b { font-family: var(--ff-display); font-size: .82rem; color: var(--emerald); }
@keyframes rise { from { height: 0; opacity: 0; } }

.sc-hero__badge { position: absolute; display: flex; align-items: center; gap: 11px; padding: 12px 16px; border-radius: 14px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); }
.sc-hero__badge .sc-icon { width: 22px; height: 22px; color: var(--indigo); }
.sc-hero__badge strong { display: block; font-family: var(--ff-display); font-weight: 700; font-size: 1rem; color: var(--ink); line-height: 1.1; }
.sc-hero__badge span { font-size: .74rem; color: var(--text-mute); }
.sc-hero__badge { top: -4%; left: -7%; }
.sc-hero__badge--2 { top: auto; bottom: 6%; right: -6%; left: auto; }
.sc-hero__badge--2 .sc-icon { color: var(--emerald); }

/* Hero product collage */
.sc-hero__collage {
	position: relative;
	width: 100%;
	min-height: 420px;
	max-width: 520px;
	margin-inline: auto;
}
.sc-hero__collage-item {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: var(--shadow-lg);
	background: #0c0c0f;
	transition: transform .25s ease, box-shadow .25s ease;
}
.sc-hero__collage-item:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 24px 48px -20px rgba(20, 20, 14, .35);
	z-index: 5;
}
.sc-hero__collage-item img,
.sc-hero__collage-item .sc-product-shot {
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: contain;
	object-position: center;
	display: block;
	background: #0c0c0f;
}
.sc-hero__collage-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 16px;
}
.sc-hero__collage-item.is-main {
	width: 58%;
	top: 8%;
	left: 18%;
	aspect-ratio: 4 / 3;
	z-index: 3;
}
.sc-hero__collage-item.is-secondary {
	width: 42%;
	top: 0;
	right: 0;
	aspect-ratio: 3 / 4;
	z-index: 2;
}
.sc-hero__collage-item.is-tertiary {
	width: 38%;
	bottom: 6%;
	left: 0;
	aspect-ratio: 4 / 3;
	z-index: 2;
}
.sc-hero__collage-item.is-accent {
	width: 34%;
	bottom: 0;
	right: 8%;
	aspect-ratio: 1;
	z-index: 4;
	border-radius: 14px;
}
.sc-trusted--slim { padding-block: 20px; }

.float-a { animation: floaty 7s ease-in-out infinite; }
.float-b { animation: floaty 5s ease-in-out infinite .4s; }
.float-c { animation: floaty 6s ease-in-out infinite .8s; }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ---------- Trusted-by strip ---------- */
.sc-trusted { padding-block: 28px; border-block: 1px solid var(--border); }
.sc-trusted__label { text-align: center; color: var(--text-mute); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.sc-trusted__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 44px; }
.sc-trusted__row span { font-family: var(--ff-display); font-weight: 700; font-size: 1.15rem; color: var(--text-mute); letter-spacing: -.02em; opacity: .8; }

/* ---------- Stats ---------- */
.sc-stats { display: grid; grid-template-columns: repeat(4, 1fr); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.sc-stat { text-align: center; padding: 8px; position: relative; }
.sc-stat + .sc-stat::before { content: ""; position: absolute; left: 0; top: 18%; height: 64%; width: 1px; background: var(--border); }
.sc-stat__num { display: block; font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.sc-stat__label { color: var(--text-dim); font-size: .9rem; }

/* ---------- Section heads ---------- */
.sc-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 42px; flex-wrap: wrap; }
.sc-section__head--center { flex-direction: column; align-items: center; text-align: center; }
.sc-section__title { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-top: 12px; }
.sc-section__lead { color: var(--text-dim); max-width: 620px; margin-top: 12px; font-size: 1.05rem; }

/* ---------- Grids ---------- */
.sc-grid { display: grid; gap: var(--gap); }
.sc-grid--3, .sc-grid--products { grid-template-columns: repeat(3, 1fr); }
.sc-grid--products-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Product card ---------- */
.product-card { display: flex; flex-direction: column; overflow: hidden; transition: transform .22s ease, box-shadow .25s ease, border-color .25s ease; }
.product-card:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: var(--shadow-lg); }
.product-card { height: 100%; }
.product-card__media {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 4 / 3;
	flex: 0 0 auto;
	background: #0c0c0f;
	line-height: 0;
	border-radius: 12px 12px 0 0;
}
.product-card__media img,
.sc-product-shot {
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: contain;
	object-position: center;
	display: block;
}
.product-card__media .sc-product-shot {
	max-height: 100%;
}
.product-card:hover .product-card__media img { transform: none; }
.sc-grid--products .product-card,
.sc-grid--products-2 .product-card,
.sc-home-carousel-band .product-card { height: 100%; }
.product-card__placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; padding: 18px; background: linear-gradient(135deg, #1c1608, #3a2c0a 55%, #120e05); }

/* Branded product cover (no image) */
.sc-cover, .product-card__placeholder { background: radial-gradient(120% 80% at 50% 0%, rgba(212,175,55,.18), transparent 60%), linear-gradient(135deg, #1c1608, #2a200a 55%, #0f0c05); }
.sc-cover { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 11px; aspect-ratio: 4 / 3; width: 100%; text-align: center; padding: 22px; border-radius: 12px; }
.sc-cover--single { border-radius: var(--radius-lg); }
.sc-cover__mark, .product-card__placeholder .sc-cover__mark {
	display: grid; place-items: center; width: 56px; height: 56px; border-radius: 15px;
	background: rgba(212,175,55,.14); border: 1px solid rgba(212,175,55,.4);
	font-family: var(--ff-display); font-weight: 800; font-size: 1.1rem; color: var(--gold-bright);
}
.sc-cover__mark .sc-icon { width: 28px; height: 28px; color: var(--gold-bright); }
.sc-cover--single .sc-cover__mark { width: 74px; height: 74px; border-radius: 18px; font-size: 1.75rem; }
.sc-cover__name, .product-card__placeholder .sc-cover__name { font-family: var(--ff-display); font-weight: 800; font-size: 1.05rem; color: #fff; line-height: 1.25; max-width: 92%; }
.sc-cover--single .sc-cover__name { font-size: 1.8rem; }
.sc-cover__tag, .product-card__placeholder .sc-cover__tag { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-bright); }
.product-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-card__title { font-size: 1.16rem; }
.product-card__title a { color: var(--ink); } .product-card__title a:hover { color: var(--indigo); }
.product-card__meta { display: inline-flex; align-items: center; gap: 6px; color: var(--text-mute); font-size: .85rem; }
.product-card__meta .sc-icon { width: 15px; height: 15px; color: var(--indigo); }
.product-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 6px; }
.product-card__price { font-family: var(--ff-display); font-weight: 700; font-size: 1.25rem; color: var(--ink); }
.product-card__price del { color: var(--text-mute); font-weight: 400; font-size: .85rem; margin-right: 6px; }
.product-card__price ins { text-decoration: none; background: none; color: var(--ink); }
.product-card__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-top: 4px;
}
.product-card__actions .sc-btn { justify-content: center; padding: 10px 12px; font-size: .82rem; }
.product-card--compact .product-card__body { padding: 16px 18px 18px; }
.product-card--compact .product-card__title { font-size: 1.05rem; }
.sc-btn--sm { padding: 10px 14px; font-size: .84rem; }
.sc-btn--light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.25); }
.sc-btn--light:hover { background: rgba(255,255,255,.2); color: #fff; }

/* Homepage split product sections */
.sc-home-split {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: clamp(32px, 5vw, 56px);
	align-items: center;
}
.sc-home-split--media-right .sc-home-split__grid { order: 1; }
.sc-home-split--media-right .sc-home-split__copy { order: 2; }
.sc-home-split--media-left { grid-template-columns: 0.85fr 1.15fr; }
.sc-home-split--media-left .sc-home-split__grid { order: 2; }
.sc-home-split--media-left .sc-home-split__copy { order: 1; }
.sc-home-split__title {
	font-size: clamp(1.7rem, 3vw, 2.4rem);
	margin: 12px 0 14px;
}
.sc-home-split__text {
	color: var(--text-dim);
	font-size: 1.02rem;
	line-height: 1.65;
	max-width: 42ch;
	margin-bottom: 24px;
}
.sc-grid--products-2 { grid-template-columns: repeat(2, 1fr); }

/* Dark best-sellers band */
.sc-home-carousel-band {
	padding-block: clamp(56px, 8vw, 96px);
	background: linear-gradient(135deg, #14140e 0%, #2a200a 45%, #1a1508 100%);
	color: #fff;
}
.sc-home-carousel-band .eyebrow--light { color: #e6c763; border-color: rgba(230, 199, 99, .35); }
.sc-home-carousel-band__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 32px;
	flex-wrap: wrap;
}
.sc-home-carousel-band__title {
	font-size: clamp(1.7rem, 3vw, 2.4rem);
	color: #fff;
	margin-top: 10px;
}
.sc-home-carousel-band__text {
	color: rgba(255, 255, 255, .72);
	max-width: 52ch;
	margin-top: 10px;
	font-size: .98rem;
	line-height: 1.6;
}
.sc-home-carousel-band .product-card {
	background: #fff;
}

/* Carousel */
.sc-carousel { position: relative; }
.sc-carousel__track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 8px;
	scrollbar-width: none;
}
.sc-carousel__track::-webkit-scrollbar { display: none; }
.sc-carousel__slide {
	flex: 0 0 min(320px, 85vw);
	scroll-snap-align: start;
}
.sc-carousel__slide--testimonial { flex: 0 0 min(380px, 90vw); }
.sc-carousel__track--testimonials .testimonial { height: 100%; min-height: 260px; }
.sc-carousel__btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid var(--border);
	background: #fff;
	box-shadow: var(--shadow-sm);
	display: grid;
	place-items: center;
	cursor: pointer;
	color: var(--ink);
}
.sc-home-carousel-band .sc-carousel__btn {
	border-color: rgba(255,255,255,.2);
	background: rgba(255,255,255,.1);
	color: #fff;
}
.sc-carousel__btn--prev { left: -12px; }
.sc-carousel__btn--prev .sc-icon { transform: rotate(180deg); }
.sc-carousel__btn--next { right: -12px; }
.sc-carousel__btn:hover { box-shadow: var(--shadow); }
.sc-carousel__btn:disabled { opacity: .35; cursor: default; }
.sc-carousel__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 20px;
}
.sc-carousel__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 0;
	padding: 0;
	background: var(--border-strong);
	cursor: pointer;
}
.sc-home-carousel-band .sc-carousel__dot { background: rgba(255,255,255,.35); }
.sc-carousel__dot.is-active { background: var(--gold-deep); width: 22px; border-radius: 999px; }
.sc-home-carousel-band .sc-carousel__dot.is-active { background: var(--gold-bright); }

/* About + bubble stats */
.sc-home-about__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}
.sc-home-about__bubbles {
	position: relative;
	min-height: 340px;
}
.sc-home-about__bubble {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: clamp(140px, 42%, 180px);
	height: clamp(140px, 42%, 180px);
	border-radius: 50%;
	padding: 20px;
	box-shadow: var(--shadow);
	border: 1px solid var(--border);
	background: #fff;
}
.sc-home-about__bubble strong {
	font-family: var(--ff-display);
	font-size: clamp(1.4rem, 2.5vw, 1.9rem);
	display: block;
	line-height: 1.1;
}
.sc-home-about__bubble span {
	font-size: .78rem;
	color: var(--text-dim);
	margin-top: 6px;
	line-height: 1.35;
}
.sc-home-about__bubble.is-gold { top: 4%; left: 22%; background: linear-gradient(145deg, #fff9e8, #fff); }
.sc-home-about__bubble.is-teal { top: 0; right: 8%; background: linear-gradient(145deg, #ecfdf5, #fff); }
.sc-home-about__bubble.is-amber { bottom: 8%; left: 4%; background: linear-gradient(145deg, #fff7ed, #fff); }
.sc-home-about__bubble.is-indigo { bottom: 0; right: 18%; background: linear-gradient(145deg, #faf3e0, #fff); }
.sc-home-about__title { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 12px 0 16px; }
.sc-home-about__copy p { color: var(--text-dim); line-height: 1.65; margin-bottom: 22px; max-width: 48ch; }

/* Mid-page CTA */
.sc-home-cta {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 24px 32px;
	align-items: center;
	padding: clamp(28px, 4vw, 44px);
	border-radius: var(--radius-lg);
	background: linear-gradient(135deg, rgba(201,162,39,.12), rgba(201,162,39,.04));
	border: 1px solid rgba(201,162,39,.28);
}
.sc-home-cta__icon {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: var(--accent-soft);
	display: grid;
	place-items: center;
	color: var(--gold-deep);
}
.sc-home-cta__icon .sc-icon { width: 32px; height: 32px; }
.sc-home-cta__text h2 { font-size: clamp(1.35rem, 2.5vw, 1.85rem); margin-bottom: 8px; }
.sc-home-cta__text p { color: var(--text-dim); max-width: 52ch; }
.sc-home-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Badges */
.badge { position: absolute; top: 14px; left: 14px; font-family: var(--ff-display); font-weight: 700; font-size: .7rem; letter-spacing: .03em; text-transform: uppercase; padding: 6px 11px; border-radius: 999px; color: #fff; box-shadow: var(--shadow-xs); }
.badge--sale { background: linear-gradient(135deg, #f43f5e, #ec4899); }
.badge--hot { background: var(--grad); }
.badge--free { background: linear-gradient(135deg, #22c55e, #16a34a); color: #fff; }
.badge--cat { background: #fff; color: var(--indigo); border: 1px solid var(--border); }

/* ---------- Feature cards ---------- */
.feature-card { padding: 28px; transition: transform .22s ease, border-color .25s, box-shadow .25s; }
.feature-card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.feature-card__icon { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 13px; background: var(--accent-soft); border: 1px solid rgba(201,162,39,.12); margin-bottom: 18px; color: var(--indigo); }
.feature-card__icon .sc-icon { width: 25px; height: 25px; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-dim); font-size: .96rem; }

/* ---------- Steps ---------- */
.sc-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.sc-step { padding: 26px; }
.sc-step__num { font-family: var(--ff-display); font-weight: 800; font-size: 2.1rem; display: block; margin-bottom: 12px; }
.sc-step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.sc-step p { color: var(--text-dim); font-size: .94rem; }

/* ---------- Testimonials ---------- */
.testimonial { padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.testimonial__stars { display: flex; gap: 3px; color: var(--amber); }
.testimonial__stars .sc-icon { width: 18px; height: 18px; fill: var(--amber); stroke: var(--amber); }
.testimonial blockquote { font-size: 1.04rem; color: var(--ink); line-height: 1.7; }
.testimonial__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial__author strong { display: block; font-family: var(--ff-display); color: var(--ink); }
.testimonial__author span { color: var(--text-mute); font-size: .85rem; }

/* ---------- FAQ ---------- */
.sc-faq { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 14px; }
.sc-faq__item { padding: 4px 24px; border-radius: var(--radius); }
.sc-faq__item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; cursor: pointer; font-family: var(--ff-display); font-weight: 600; font-size: 1.06rem; color: var(--ink); list-style: none; }
.sc-faq__item summary::-webkit-details-marker { display: none; }
.sc-faq__item summary::after { content: "+"; font-size: 1.5rem; color: var(--indigo); transition: transform .2s ease; line-height: 1; }
.sc-faq__item[open] summary::after { transform: rotate(45deg); }
.sc-faq__item p { color: var(--text-dim); padding: 0 0 22px; max-width: 70ch; }

/* ---------- Pricing cards ---------- */
.sc-pricing { display: grid; gap: var(--gap); }
.sc-pricing--3 { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.sc-price-card { position: relative; padding: 32px 28px; display: flex; flex-direction: column; }
.sc-price-card.is-featured { border: 1.5px solid var(--gold); box-shadow: var(--shadow-lg); }
.sc-price-card__badge { position: absolute; top: 18px; right: 18px; background: var(--grad); color: var(--gold-ink); font-family: var(--ff-display); font-weight: 700; font-size: .66rem; letter-spacing: .05em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
.sc-price-card__icon { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--accent-soft); border: 1px solid rgba(201,162,39,.18); color: var(--gold-deep); margin-bottom: 14px; }
.sc-price-card__icon .sc-icon { width: 26px; height: 26px; }
.sc-price-card.has-visual { padding-top: 24px; }
.sc-price-card__visual { margin: 0 0 18px; border-radius: 14px; overflow: hidden; background: #0c0c0f; border: 1px solid var(--border); line-height: 0; }
.sc-price-card__visual img { width: 100%; height: auto; max-width: 100%; display: block; vertical-align: middle; }
.sc-price-card__name { font-size: 1.3rem; }
.sc-price-card__sub { color: var(--text-dim); font-size: .9rem; margin-top: 4px; }
.sc-price-card__price { display: flex; align-items: baseline; gap: 6px; margin: 14px 0 20px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.sc-price-card__price .amount { font-family: var(--ff-display); font-weight: 800; font-size: 2.5rem; color: var(--ink); }
.sc-price-card__price .period { color: var(--text-mute); font-size: .95rem; }
.sc-price-card__features { display: flex; flex-direction: column; gap: 12px; margin: 0 0 26px; }
.sc-price-card__features li { display: flex; align-items: flex-start; gap: 10px; color: var(--text); font-size: .93rem; line-height: 1.5; }
.sc-price-card__features .sc-icon { width: 18px; height: 18px; color: var(--gold-deep); flex: 0 0 auto; margin-top: 2px; }
.sc-price-card .sc-btn { margin-top: auto; }
.sc-pricing__note { text-align: center; margin-top: 30px; color: var(--text-dim); }
.sc-pricing__note a { color: var(--gold-deep); font-weight: 600; }

/* ---------- API page ---------- */
.sc-api { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.sc-api__intro h2 { font-size: clamp(1.6rem,3vw,2.2rem); margin-bottom: 14px; }
.sc-api__intro > p { color: var(--text-dim); font-size: 1.05rem; max-width: 520px; }
.sc-api__highlights { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
.sc-api__highlights .sc-card { display: flex; align-items: center; gap: 14px; padding: 16px 18px; }
.sc-api__highlights .sc-icon { width: 26px; height: 26px; color: var(--gold-deep); flex: 0 0 auto; }
.sc-api__highlights strong { display: block; font-family: var(--ff-display); color: var(--ink); }
.sc-api__highlights span { color: var(--text-dim); font-size: .88rem; }
.sc-api__price .sc-price-card { max-width: 430px; margin-left: auto; width: 100%; }

/* ---------- Licensing page ---------- */
.sc-licence-banner { display: flex; align-items: center; gap: 18px; padding: 22px 26px; border-radius: var(--radius-lg); border: 1px solid rgba(201,162,39,.32); background: linear-gradient(135deg, rgba(201,162,39,.10), rgba(201,162,39,.03)); flex-wrap: wrap; }
.sc-licence-banner__icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 12px; background: var(--accent-soft); color: var(--gold-deep); flex: 0 0 auto; }
.sc-licence-banner__icon .sc-icon { width: 26px; height: 26px; }
.sc-licence-banner strong { font-family: var(--ff-display); display: block; color: var(--ink); }
.sc-licence-banner p { color: var(--text-dim); font-size: .92rem; margin-top: 2px; }
.sc-licence-banner .sc-btn { margin-left: auto; }
.sc-jur { padding: 26px; }
.sc-jur__top { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.sc-jur__icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: var(--accent-soft); border: 1px solid rgba(201,162,39,.16); color: var(--gold-deep); flex: 0 0 auto; }
.sc-jur__icon .sc-icon { width: 24px; height: 24px; }
.sc-jur__flag { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: var(--accent-soft); border: 1px solid rgba(201,162,39,.18); overflow: hidden; flex: 0 0 auto; }
.sc-flag-img { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; box-shadow: 0 0 0 1px rgba(0,0,0,.06); }
.sc-flag-img--lg { width: 32px; height: 32px; border-radius: 8px; }
.sc-countries .sc-flag-img { width: 20px; height: 20px; }
.sc-jur h3 { font-size: 1.15rem; }
.sc-jur__auth { color: var(--text-mute); font-size: .82rem; }
.sc-jur p { color: var(--text-dim); font-size: .93rem; margin: 10px 0 14px; }
.sc-jur__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sc-jur__tags span { font-size: .72rem; font-weight: 600; padding: 5px 10px; border-radius: 999px; background: var(--accent-soft); color: var(--gold-deep); border: 1px solid rgba(201,162,39,.18); }
.sc-jur__tags--spaced { margin-top: 14px; }
.sc-countries { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 840px; margin: 0 auto 20px; }
.sc-countries span { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 600; color: var(--text); background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 8px 15px; box-shadow: var(--shadow-xs); }
.sc-flag { font-size: 1.05rem; line-height: 1; } /* legacy — licensing uses .sc-flag-img */

/* ---------- Payments page ---------- */
.sc-grid--payments { grid-template-columns: 1fr 1fr; gap: var(--gap); }
.sc-payments-cta { padding: clamp(24px, 3vw, 36px); text-align: center; }
.sc-payments-cta p { color: var(--text-dim); max-width: 52ch; margin-inline: auto; }
.sc-payments-cta__actions { margin-top: 18px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 720px) { .sc-grid--payments { grid-template-columns: 1fr; } }

/* ---------- Checkout page ---------- */
.sc-checkout-page { background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 220px); }
.sc-checkout-hero { padding: clamp(28px, 4vw, 48px) 0 clamp(20px, 3vw, 32px); border-bottom: 1px solid var(--border); }
.sc-checkout-hero__inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.sc-checkout-hero__title { font-size: clamp(1.85rem, 3.5vw, 2.6rem); margin-top: 8px; }
.sc-checkout-hero__sub { color: var(--text-dim); font-size: .95rem; margin-top: 6px; }
.sc-checkout-hero__total { padding: 16px 22px; border-radius: var(--radius); text-align: right; min-width: 160px; }
.sc-checkout-hero__total-label { display: block; font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-mute); margin-bottom: 4px; }
.sc-checkout-hero__total-amount { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 800; color: var(--ink); }
.sc-checkout-hero__total-amount .woocommerce-Price-amount { color: inherit; }

.sc-checkout-body { padding: clamp(28px, 4vw, 48px) 0 clamp(48px, 6vw, 80px); }
.sc-checkout { max-width: 1080px; margin-inline: auto; }
.sc-checkout .woocommerce-notices-wrapper { margin-bottom: 20px; }

/* Two-column shell */
.sc-checkout-form { margin: 0; }
.sc-checkout__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
	gap: clamp(24px, 3.5vw, 40px);
	align-items: start;
}
.sc-checkout__main { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.sc-checkout__aside { position: sticky; top: 88px; min-width: 0; }

/* Panels */
.sc-checkout__panel {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}
.sc-checkout__panel-head {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 20px 22px 16px;
	border-bottom: 1px solid var(--border);
	background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
}
.sc-checkout__step {
	flex: 0 0 auto;
	display: grid; place-items: center;
	width: 36px; height: 36px;
	border-radius: 10px;
	background: var(--ink);
	color: #fff;
	font-family: var(--ff-display);
	font-weight: 800;
	font-size: .9rem;
}
.sc-checkout__step--gold { background: var(--grad); color: var(--gold-ink); box-shadow: 0 6px 16px -8px rgba(201,162,39,.65); }
.sc-checkout__panel-title { font-size: 1.15rem; margin: 0; line-height: 1.2; }
.sc-checkout__panel-sub { color: var(--text-dim); font-size: .86rem; margin-top: 4px; line-height: 1.45; }
.sc-checkout__panel-body { padding: 22px; }

/* Coupon */
.sc-checkout__main .woocommerce-form-coupon-toggle { margin: 0; }
.sc-checkout__main .woocommerce-form-coupon-toggle .woocommerce-info {
	margin: 0; padding: 12px 16px; border-radius: var(--radius-sm);
	border: 1px solid var(--border); border-left: 3px solid var(--gold-deep);
	background: #fff; font-size: .88rem; color: var(--text-dim); box-shadow: var(--shadow-xs);
}
.sc-checkout__main .woocommerce-form-coupon-toggle .woocommerce-info::before { display: none !important; }
.sc-checkout__main .showcoupon { color: var(--gold-deep); font-weight: 600; }
.sc-checkout__main form.checkout_coupon {
	display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-end;
	padding: 16px; background: #fff; border: 1px solid var(--border);
	border-radius: var(--radius-sm); box-shadow: var(--shadow-xs);
}
.sc-checkout__main form.checkout_coupon .form-row { flex: 1; min-width: 160px; margin: 0; padding: 0; }

/* Billing fields */
.sc-checkout__panel--billing .woocommerce-billing-fields > h3 { display: none; }
.sc-checkout__panel--billing .woocommerce-billing-fields { margin: 0; padding: 0; border: none; box-shadow: none; background: transparent; }
.sc-checkout__panel--billing .form-row { margin-bottom: 18px; padding: 0; }
.sc-checkout__panel--billing .form-row-first,
.sc-checkout__panel--billing .form-row-last { width: calc(50% - 8px); }
.sc-checkout__panel--billing .form-row-first { margin-right: 16px; }
.sc-checkout__panel--billing label { font-weight: 600; font-size: .86rem; color: var(--ink); margin-bottom: 7px; display: block; }
.sc-checkout__panel--billing .required { color: #e11d48; text-decoration: none; }
.sc-checkout__panel--billing .optional { display: none; }
.sc-checkout__panel--billing input.input-text {
	padding: 13px 15px; border-radius: 11px; border: 1px solid var(--border-strong);
	font-size: .95rem; transition: border-color .18s, box-shadow .18s;
}
.sc-checkout__panel--billing input.input-text:focus {
	border-color: var(--gold-deep);
	box-shadow: 0 0 0 3px rgba(201,162,39,.14);
	outline: none;
}
.sc-checkout__panel--billing #billing_telegram_field input { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .02em; }

/* Order table */
.sc-checkout__panel--order .shop_table {
	border: none; box-shadow: none; margin: 0 0 20px; background: transparent;
	border-radius: 0; overflow: visible;
}
.sc-checkout__panel--order .shop_table thead { display: none; }
.sc-checkout__panel--order .shop_table td,
.sc-checkout__panel--order .shop_table th { padding: 10px 0; border-color: var(--border); font-size: .92rem; }
.sc-checkout__panel--order .shop_table .product-name { font-weight: 600; color: var(--ink); }
.sc-checkout__panel--order .shop_table .product-total { text-align: right; font-family: var(--ff-display); font-weight: 700; }
.sc-checkout__panel--order .cart-subtotal th,
.sc-checkout__panel--order .cart-subtotal td { color: var(--text-dim); padding-top: 14px; }
.sc-checkout__panel--order .order-total th,
.sc-checkout__panel--order .order-total td {
	font-size: 1.12rem; font-weight: 800; color: var(--ink);
	border-top: 2px solid var(--border); padding-top: 16px;
}
.sc-checkout__panel--order .order-total td { text-align: right; font-family: var(--ff-display); }

/* Payment */
.sc-checkout__panel--order #payment { background: transparent; border: none; padding: 0; margin: 0; }
.sc-checkout__panel--order #payment ul.payment_methods { padding: 0; margin: 0 0 16px; border: none; }
.sc-checkout__panel--order #payment ul.payment_methods::before { display: none; }
.sc-checkout__panel--order #payment ul.payment_methods li {
	list-style: none; margin: 0; padding: 0; border: none; background: transparent;
}
.sc-checkout__panel--order #payment ul.payment_methods li input[type="radio"] { display: none; }
.sc-checkout__panel--order #payment ul.payment_methods li label {
	display: flex; align-items: center; gap: 10px;
	margin: 0; padding: 14px 16px;
	background: linear-gradient(135deg, rgba(15,23,42,.04), rgba(201,162,39,.08));
	border: 1px solid rgba(201,162,39,.25);
	border-radius: 12px;
	font-family: var(--ff-display); font-weight: 700; font-size: .98rem; cursor: default;
}
.sc-checkout__panel--order #payment ul.payment_methods li label::before {
	content: ""; display: inline-block; width: 22px; height: 22px; flex: 0 0 auto;
	background: var(--grad); border-radius: 6px;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M14.8 9a3 3 0 0 0-2.8-1.7c-1.7 0-3 1-3 2.4 0 3.2 6 1.6 6 4.8 0 1.4-1.3 2.4-3 2.4A3 3 0 0 1 9.2 15'/%3E%3Cline x1='12' y1='5.5' x2='12' y2='18.5'/%3E%3C/svg%3E") center/14px no-repeat;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M14.8 9a3 3 0 0 0-2.8-1.7c-1.7 0-3 1-3 2.4 0 3.2 6 1.6 6 4.8 0 1.4-1.3 2.4-3 2.4A3 3 0 0 1 9.2 15'/%3E%3Cline x1='12' y1='5.5' x2='12' y2='18.5'/%3E%3C/svg%3E") center/14px no-repeat;
}
.sc-checkout__panel--order #payment div.payment_box {
	margin: 10px 0 0; padding: 12px 14px;
	background: var(--bg-soft); border-radius: 10px;
	border: 1px solid var(--border);
	color: var(--text-dim); font-size: .86rem; line-height: 1.55;
}
.sc-checkout__panel--order #payment div.payment_box::before { display: none; }
.sc-checkout__panel--order #place_order {
	width: 100%; padding: 16px 20px; font-size: 1.02rem; margin-top: 6px;
}
.sc-checkout__panel--order .woocommerce-terms-and-conditions-wrapper { margin: 12px 0 0; font-size: .8rem; color: var(--text-mute); }
.sc-checkout__panel--order .woocommerce-privacy-policy-text { margin-top: 8px; font-size: .78rem; color: var(--text-mute); line-height: 1.5; }

/* Hide legacy WC layout cruft */
.sc-checkout .col2-set,
.sc-checkout h3#order_review_heading,
.sc-checkout .woocommerce-shipping-fields,
.sc-checkout .woocommerce-additional-fields { display: none !important; }

@media (max-width: 900px) {
	.sc-checkout__grid { grid-template-columns: 1fr; }
	.sc-checkout__aside { position: static; order: -1; }
	.sc-checkout__main { order: 1; }
}
@media (max-width: 560px) {
	.sc-checkout-hero__inner { flex-direction: column; align-items: flex-start; }
	.sc-checkout-hero__total { width: 100%; text-align: left; }
	.sc-checkout__panel--billing .form-row-first,
	.sc-checkout__panel--billing .form-row-last { width: 100%; margin-right: 0; }
}

/* ---------- Order received / thank you ---------- */
.sc-checkout-page--received { background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 280px); }
.sc-thankyou-wrap { max-width: 720px; }
.sc-thankyou { display: flex; flex-direction: column; gap: 20px; }
.sc-thankyou .woocommerce-customer-details { display: none !important; }

.sc-thankyou__banner {
	display: flex; align-items: flex-start; gap: 16px;
	padding: 22px 24px; border-radius: var(--radius-lg);
	border: 1px solid var(--border); background: #fff; box-shadow: var(--shadow-sm);
}
.sc-thankyou__banner--success {
	border-color: rgba(16,185,129,.35);
	background: linear-gradient(135deg, rgba(16,185,129,.08), #fff 55%);
}
.sc-thankyou__banner--error { border-color: rgba(244,63,94,.35); background: #fff5f5; }
.sc-thankyou__icon {
	flex: 0 0 auto; width: 44px; height: 44px; display: grid; place-items: center;
	border-radius: 12px; background: var(--emerald); color: #fff;
}
.sc-thankyou__icon .sc-icon { width: 24px; height: 24px; }
.sc-thankyou__title { font-size: 1.35rem; margin: 0 0 6px; }
.sc-thankyou__lead { color: var(--text-dim); font-size: .95rem; margin: 0; line-height: 1.5; }
.sc-thankyou__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }

.sc-thankyou__meta {
	display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px;
}
.sc-thankyou__meta-item {
	padding: 14px 16px; background: #fff; border: 1px solid var(--border);
	border-radius: var(--radius-sm); box-shadow: var(--shadow-xs);
}
.sc-thankyou__meta-item span {
	display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase;
	letter-spacing: .08em; color: var(--text-mute); margin-bottom: 4px;
}
.sc-thankyou__meta-item strong { font-family: var(--ff-display); font-size: .98rem; color: var(--ink); }

.sc-thankyou__payment .sc-crypto-pay { margin: 0; }
.sc-thankyou__payment .sc-tx-hash { margin: 16px 0 0; }

.sc-thankyou-order-details {
	background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
	padding: 22px; box-shadow: var(--shadow-sm);
}
.sc-thankyou-order-details .woocommerce-order-details__title {
	font-size: 1.1rem; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.sc-thankyou-order-details .shop_table { border: none; box-shadow: none; margin: 0; background: transparent; }
.sc-thankyou-order-details .shop_table th,
.sc-thankyou-order-details .shop_table td { padding: 10px 0; font-size: .9rem; }
.sc-thankyou-order-details .order-total th,
.sc-thankyou-order-details .order-total td { font-weight: 800; border-top: 2px solid var(--border); padding-top: 14px; }

/* Hide default WC thank-you list + duplicate success notice */
.sc-thankyou .woocommerce-order-overview,
.sc-thankyou > .woocommerce-notice--success.woocommerce-thankyou-order-received { display: none !important; }

/* ---------- Transaction hash (thank-you / my account) ---------- */
.sc-tx-hash { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin: 20px 0; box-shadow: var(--shadow-xs); }
.sc-tx-hash h3 { font-family: var(--ff-display); margin-bottom: 8px; }
.sc-tx-hash--done { border-color: rgba(16,185,129,.35); background: linear-gradient(180deg, rgba(16,185,129,.06), #fff 50%); }
.sc-tx-hash--locked { background: var(--surface-soft); }
.sc-tx-hash__label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 8px; }
.sc-tx-hash__row { display: flex; flex-wrap: wrap; gap: 10px; align-items: stretch; }
.sc-tx-hash__input { flex: 1; min-width: 200px; padding: 12px 15px; border-radius: 11px; border: 1px solid var(--border-strong); font-family: inherit; font-size: .95rem; }
.sc-tx-hash__input:focus { border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(201,162,39,.12); outline: none; }
.sc-tx-hash__value code { word-break: break-all; font-size: .9rem; color: var(--gold-deep); background: var(--accent-soft); padding: 6px 10px; border-radius: 8px; display: inline-block; }
.sc-tx-hash__note { color: var(--text-mute); font-size: .88rem; margin-top: 10px; }
.sc-cert-note { display: flex; align-items: center; justify-content: center; gap: 8px; text-align: center; color: var(--text-dim); font-size: .92rem; }
.sc-cert-note .sc-icon { width: 18px; height: 18px; color: var(--emerald); }

/* Provider logo wall */
.sc-logos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.sc-logo { display: flex; align-items: center; gap: 11px; padding: 14px 16px; background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-xs); filter: grayscale(1); opacity: .78; transition: filter .2s, opacity .2s, transform .2s, box-shadow .2s; }
.sc-logo:hover { filter: none; opacity: 1; transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.sc-logo__mark { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 9px; background: var(--c); color: #fff; font-family: var(--ff-display); font-weight: 800; font-size: .78rem; flex: 0 0 auto; }
.sc-logo__name { font-family: var(--ff-display); font-weight: 600; font-size: .9rem; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 1024px) { .sc-logos { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .sc-logos { grid-template-columns: repeat(2, 1fr); } .sc-logo__name { font-size: .82rem; } }

@media (max-width: 880px) {
	.sc-pricing--3 { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
	.sc-api { grid-template-columns: 1fr; gap: 32px; }
	.sc-api__price .sc-price-card { margin: 0 auto; }
}

/* ---------- Post card ---------- */
.post-card { display: flex; flex-direction: column; overflow: hidden; transition: transform .22s ease, border-color .25s, box-shadow .25s; }
.post-card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.post-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: linear-gradient(135deg, #faf3e0, #f6ecd2); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .post-card__media img { transform: scale(1.04); }
.post-card__placeholder { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(201,162,39,.4); }
.post-card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card__meta { display: flex; gap: 8px; color: var(--text-mute); font-size: .82rem; }
.post-card__title { font-size: 1.18rem; } .post-card__title a { color: var(--ink); } .post-card__title a:hover { color: var(--indigo); }
.post-card__excerpt { color: var(--text-dim); font-size: .94rem; }
.post-card__more { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; color: var(--indigo); font-weight: 600; font-size: .9rem; }
.post-card__more .sc-icon { width: 16px; height: 16px; transition: transform .2s; }
.post-card__more:hover .sc-icon { transform: translateX(4px); }

/* Chips */
.chip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; border-radius: 999px; background: #fff; border: 1px solid var(--border); font-size: .82rem; color: var(--text-dim); box-shadow: var(--shadow-xs); }
.chip .sc-icon { width: 15px; height: 15px; color: var(--indigo); }

/* ---------- Breadcrumbs ---------- */
.sc-breadcrumbs { padding: 18px 0 0; font-size: .85rem; color: var(--text-mute); }
.sc-breadcrumbs a { color: var(--text-dim); } .sc-breadcrumbs a:hover { color: var(--indigo); }
.sc-breadcrumbs .separator { margin: 0 8px; opacity: .6; }

/* ---------- Page hero ---------- */
.sc-page-hero { padding-block: clamp(48px, 7vw, 88px) clamp(18px, 3vw, 32px); text-align: center; position: relative; z-index: 1; }
.sc-page-hero__title { font-size: clamp(2rem, 4vw, 3.2rem); }
.sc-page-hero__sub { color: var(--text-dim); max-width: 620px; margin: 16px auto 0; font-size: 1.05rem; }
.sc-page-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 26px; }

/* ---------- Tech stack (custom-scripts) ---------- */
.sc-stack { max-width: 1080px; margin: 0 auto; display: flex; flex-direction: column; gap: 32px; }
.sc-stack__group { display: flex; flex-direction: column; gap: 14px; }
.sc-stack__label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mute); text-align: center; }
.sc-stack__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(156px, 1fr)); gap: 12px; }
.sc-stack__chip { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-xs); transition: transform .2s, border-color .2s, box-shadow .2s; }
.sc-stack__chip:hover { transform: translateY(-3px); border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.sc-stack__chip:hover .sc-stack__icon { background: color-mix(in srgb, var(--brand) 18%, #fff); }
.sc-stack__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 11px; background: color-mix(in srgb, var(--brand) 10%, #fff); border: 1px solid color-mix(in srgb, var(--brand) 22%, var(--border)); flex: 0 0 auto; transition: background .2s; }
.sc-stack__icon img { width: 26px; height: 26px; object-fit: contain; display: block; }
.sc-stack__name { font-family: var(--ff-display); font-weight: 600; font-size: .86rem; color: var(--ink); line-height: 1.25; }
.sc-steps--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px) { .sc-steps--5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .sc-steps--5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sc-steps--5 { grid-template-columns: 1fr; } }

/* ---------- Prose ---------- */
.sc-prose { padding: clamp(26px, 4vw, 48px); border-radius: var(--radius-lg); }
.sc-prose > * + * { margin-top: 1.1em; }
.sc-prose h2 { font-size: 1.6rem; margin-top: 1.6em; }
.sc-prose h3 { font-size: 1.3rem; margin-top: 1.4em; }
.sc-prose p, .sc-prose li { color: var(--text); line-height: 1.8; }
.sc-prose a { color: var(--indigo); text-decoration: underline; text-underline-offset: 3px; }
.sc-prose ul, .sc-prose ol { padding-left: 1.3em; }
.sc-prose ul li { list-style: disc; } .sc-prose ol li { list-style: decimal; }
.sc-prose img { border-radius: var(--radius); margin-block: 1.4em; }
.sc-prose blockquote { border-left: 3px solid var(--indigo); padding-left: 20px; font-size: 1.1rem; color: var(--ink); }
.sc-prose code { background: var(--bg-soft); padding: 2px 7px; border-radius: 6px; font-size: .9em; border: 1px solid var(--border); }
.sc-prose pre { background: var(--ink); color: #e2e8f0; padding: 18px; border-radius: var(--radius); overflow-x: auto; }

.sc-featured-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 28px; box-shadow: var(--shadow); }
.sc-featured-img img { width: 100%; }
.sc-post-meta { display: flex; gap: 10px; justify-content: center; color: var(--text-mute); margin-top: 14px; }
.sc-tags { margin-top: 28px; display: flex; gap: 8px; flex-wrap: wrap; }
.sc-tags a { padding: 6px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--border); font-size: .82rem; }

.post-navigation { margin-top: 36px; display: flex; justify-content: space-between; gap: 16px; }
.post-navigation a { display: block; padding: 16px 20px; border-radius: var(--radius); background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-xs); }
.post-navigation a:hover { border-color: var(--border-strong); }
.post-navigation a span { display: block; color: var(--text-mute); font-size: .8rem; margin-bottom: 4px; }

/* ---------- Pagination (.sc-pager) ---------- */
.sc-pagination {
	margin-top: clamp(40px, 6vw, 64px);
	display: flex;
	justify-content: center;
	width: 100%;
	clear: both;
}

.sc-pager-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	width: 100%;
	max-width: 100%;
}

.sc-pager__meta {
	margin: 0;
	font-family: var(--ff-display);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-mute);
}

.sc-pager__meta strong {
	color: var(--gold-deep);
	font-size: 0.95rem;
	letter-spacing: 0.02em;
	text-transform: none;
}

.sc-pager {
	display: flex;
	justify-content: center;
	width: 100%;
}

.sc-pager__list {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 12px 14px;
	background: linear-gradient(165deg, #ffffff 0%, var(--bg-soft) 100%);
	border: 1px solid var(--border);
	border-radius: 20px;
	box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.sc-pager__item {
	margin: 0;
	padding: 0;
	display: flex;
}

.sc-pager__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 48px;
	height: 48px;
	padding: 0 16px;
	border-radius: 14px;
	background: #fff;
	border: 1px solid var(--border);
	color: var(--ink);
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: 0.92rem;
	line-height: 1;
	text-decoration: none;
	box-shadow: var(--shadow-xs);
	transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.22s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

/* Page numbers */
.sc-pager__btn--num {
	width: 48px;
	min-width: 48px;
	padding: 0;
}

a.sc-pager__btn--num:hover {
	transform: translateY(-2px);
	background: #fff;
	color: var(--gold-deep);
	border-color: rgba(201, 162, 39, 0.45);
	box-shadow: 0 10px 20px -12px rgba(201, 162, 39, 0.45);
}

/* Active page */
.sc-pager__btn--current {
	width: 48px;
	min-width: 48px;
	padding: 0;
	background: var(--grad);
	color: var(--gold-ink);
	border-color: transparent;
	box-shadow: 0 10px 24px -8px rgba(201, 162, 39, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.35);
	cursor: default;
	position: relative;
	z-index: 1;
}

.sc-pager__btn--current::after {
	content: "";
	position: absolute;
	inset: -4px;
	border-radius: 18px;
	background: var(--grad);
	opacity: 0.28;
	filter: blur(8px);
	z-index: -1;
}

/* Prev / Next — primary gradient actions */
.sc-pager__btn--action {
	min-width: auto;
	height: 48px;
	padding: 0 22px;
	border-radius: 14px;
	background: var(--grad);
	border: none;
	color: var(--gold-ink);
	font-size: 0.88rem;
	font-weight: 700;
	box-shadow: 0 10px 26px -10px rgba(201, 162, 39, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

a.sc-pager__btn--action:hover {
	transform: translateY(-3px);
	background: var(--grad-bright);
	color: var(--gold-ink);
	border-color: transparent;
	box-shadow: 0 18px 36px -14px rgba(201, 162, 39, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

a.sc-pager__btn--action:active {
	transform: translateY(-1px);
}

.sc-pager__btn--dots {
	min-width: 36px;
	width: auto;
	height: 48px;
	padding: 0 4px;
	background: transparent;
	border-color: transparent;
	box-shadow: none;
	color: var(--text-mute);
	font-weight: 600;
	font-size: 1.1rem;
	letter-spacing: 0.1em;
}

a.sc-pager__btn:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 3px;
}

.sc-pager__btn .sc-icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.sc-pagination--comments {
	margin-top: 28px;
}

@media (max-width: 640px) {
	.sc-pager__list {
		padding: 10px;
		gap: 6px;
		border-radius: 16px;
	}

	.sc-pager__btn,
	.sc-pager__btn--num,
	.sc-pager__btn--current {
		width: 44px;
		min-width: 44px;
		height: 44px;
	}

	.sc-pager__btn--action {
		height: 44px;
		padding: 0 16px;
	}

	.sc-pager__text {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}

	.sc-pager__btn--action .sc-icon {
		margin: 0;
	}
}

/* ---------- Empty / 404 ---------- */
.sc-empty { padding: 56px 32px; text-align: center; border-radius: var(--radius-lg); }
.sc-empty h2, .sc-empty h1 { margin-bottom: 12px; }
.sc-empty p { color: var(--text-dim); margin-bottom: 22px; }
.sc-empty--404 { padding: 80px 32px; }
.sc-404 { font-family: var(--ff-display); font-weight: 800; font-size: clamp(4rem, 12vw, 8rem); display: block; line-height: 1; }

/* ---------- Comments ---------- */
.sc-comments { margin-top: 40px; padding: clamp(24px, 4vw, 40px); border-radius: var(--radius-lg); }
.sc-comments__title { margin-bottom: 22px; }
.sc-comments__list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.sc-comments__list ol { list-style: none; padding-left: 28px; margin-top: 18px; }
.sc-comments .comment-body { padding: 18px; border-radius: var(--radius); background: var(--bg-soft); border: 1px solid var(--border); }

/* ---------- Forms ---------- */
input[type=text], input[type=email], input[type=url], input[type=password], input[type=search],
input[type=number], input[type=tel], textarea, select {
	width: 100%; padding: 12px 15px; border-radius: 11px; background: #fff; border: 1px solid var(--border-strong); color: var(--ink); font-family: inherit; font-size: .95rem; transition: border-color .18s, box-shadow .18s; }
input::placeholder, textarea::placeholder { color: var(--text-mute); }
input:focus, textarea:focus, select:focus { border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(201,162,39,.12); outline: none; }
label { font-weight: 500; font-size: .92rem; color: var(--ink); }

/* ---------- Contact ---------- */
.sc-contact-grid { display: grid; grid-template-columns: 1.5fr .9fr; gap: 28px; align-items: start; }
.sc-contact-main { padding: clamp(24px, 3vw, 36px); }
.sc-contact-main h2 { font-size: 1.4rem; margin-bottom: 18px; }
.sc-form { display: flex; flex-direction: column; gap: 14px; }
.sc-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sc-form label { display: flex; flex-direction: column; gap: 7px; font-weight: 600; font-size: .9rem; }
.sc-form .required { color: #f43f5e; }
.sc-form input, .sc-form textarea { font-weight: 400; }
.sc-form .sc-btn { align-self: flex-start; margin-top: 4px; }
.sc-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.sc-formnote { padding: 14px 16px; border-radius: 12px; margin-bottom: 18px; font-size: .92rem; }
.sc-formnote--ok { background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.3); color: #0b7a52; }
.sc-formnote--err { background: rgba(244,63,94,.08); border: 1px solid rgba(244,63,94,.3); color: #b91c1c; }
.sc-contact-side { display: flex; flex-direction: column; gap: 14px; }
.sc-contact-card { display: flex; align-items: center; gap: 14px; padding: 18px 20px; }
.sc-contact-card .sc-icon { width: 26px; height: 26px; color: var(--gold-deep); flex: 0 0 auto; }
.sc-contact-card strong { display: block; font-family: var(--ff-display); color: var(--ink); }
.sc-contact-card span { color: var(--text-dim); font-size: .88rem; }
.sc-contact-card--tg .sc-icon { color: #38aaf0; }
@media (max-width: 880px) { .sc-contact-grid { grid-template-columns: 1fr; } .sc-form__row { grid-template-columns: 1fr; } }

/* ---------- Footer (dark premium) ---------- */
.sc-footer { position: relative; z-index: 1; padding-top: clamp(40px, 6vw, 80px); margin-top: clamp(40px, 6vw, 90px); background: #0d0f15; color: #aab2c2; }
.sc-footer__cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: clamp(30px, 4vw, 52px); border-radius: var(--radius-lg); flex-wrap: wrap; background: var(--grad); box-shadow: 0 30px 70px -30px rgba(201,162,39,.5); }
.sc-footer__cta h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--gold-ink); }
.sc-footer__cta p { color: rgba(42,34,8,.82); margin-top: 10px; max-width: 520px; }
.sc-btn--dark { background: #14140e; color: #fff; box-shadow: 0 12px 26px -12px rgba(0,0,0,.6); }
.sc-btn--dark:hover { background: #000; color: #fff; transform: translateY(-2px); }

.sc-footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.1fr; gap: 40px; padding-block: clamp(40px, 6vw, 64px); }
.sc-brand--footer { margin-bottom: 4px; }
.sc-footer .sc-brand__name { color: #fff; }
.sc-footer .sc-brand__tld { color: var(--gold-bright); }
.sc-footer__tag { color: #8b93a6; margin: 16px 0 20px; max-width: 340px; font-size: .95rem; }
.sc-footer__col h4, .footer-widget__title { font-family: var(--ff-display); font-size: .9rem; letter-spacing: .02em; text-transform: uppercase; margin-bottom: 16px; color: #fff; }
.sc-footer__col ul li { margin-bottom: 11px; }
.sc-footer__col a { color: #9aa2b4; font-size: .94rem; }
.sc-footer__col a:hover { color: var(--gold-bright); }
.sc-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 24px 36px; border-top: 1px solid rgba(255,255,255,.08); color: #6f7686; font-size: .86rem; flex-wrap: wrap; }
.sc-footer__licence-by { display: inline-flex; align-items: center; gap: 8px; }
.sc-footer__licence-by .sc-icon { width: 16px; height: 16px; color: var(--gold-bright); }

/* Licence card */
.sc-license { display: flex; gap: 14px; padding: 18px; border: 1px solid rgba(212,175,55,.32); border-radius: 14px; background: linear-gradient(180deg, rgba(212,175,55,.10), rgba(212,175,55,.03)); max-width: 380px; }
.sc-license__icon { flex: 0 0 auto; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: rgba(212,175,55,.14); color: var(--gold-bright); }
.sc-license__icon .sc-icon { width: 22px; height: 22px; }
.sc-license__body strong { display: block; color: #fff; font-family: var(--ff-display); font-size: .98rem; margin-bottom: 4px; }
.sc-license__body p { color: #9aa2b4; font-size: .82rem; line-height: 1.6; margin-bottom: 8px; }
.sc-license__body b { color: #cfd5e1; font-weight: 600; }
.sc-license__verify { display: inline-flex; align-items: center; gap: 6px; color: var(--gold-bright); font-weight: 600; font-size: .85rem; }
.sc-license__verify .sc-icon { width: 15px; height: 15px; }
.sc-license__verify:hover { color: #f0d27a; }

/* Footer Telegram support */
.sc-footer__telegram { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 22px; padding: 11px 16px; border-radius: 12px; background: rgba(42,160,235,.12); border: 1px solid rgba(56,170,240,.35); color: #eaf4fc; transition: background .2s, border-color .2s; }
.sc-footer__telegram:hover { background: rgba(42,160,235,.2); border-color: rgba(56,170,240,.6); color: #fff; }
.sc-footer__telegram .sc-icon { width: 22px; height: 22px; color: #38aaf0; flex: 0 0 auto; }
.sc-footer__telegram span { display: flex; flex-direction: column; line-height: 1.25; font-family: var(--ff-display); font-weight: 600; font-size: .95rem; }
.sc-footer__telegram small { font-family: var(--ff-body); font-weight: 400; color: #8b93a6; font-size: .78rem; }

/* =========================================================================
   WooCommerce
   ========================================================================= */
.woocommerce-message, .woocommerce-info, .woocommerce-error, .woocommerce-noreviews, p.no-comments {
	background: #fff; border: 1px solid var(--border); border-left: 3px solid var(--indigo); border-radius: 12px; padding: 14px 18px; color: var(--ink); list-style: none; margin-bottom: 20px; box-shadow: var(--shadow-xs); }
/* WooCommerce icon font often missing — hide broken ::before glyphs on notices. */
.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before,
.woocommerce-noreviews::before {
	display: none !important;
	content: none !important;
}
.woocommerce-error { border-left-color: #f43f5e; }
.woocommerce-message { border-left-color: var(--emerald); }
.woocommerce-info { border-left-color: var(--gold-deep); }

.sc-shop { position: relative; z-index: 1; }
.sc-shop__inner { padding-bottom: clamp(40px, 6vw, 90px); }

.woocommerce ul.products { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: var(--gap); list-style: none; margin: 0 0 40px; padding: 0; align-items: stretch; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none !important; }
.woocommerce ul.products li.product { float: none !important; width: auto !important; clear: none !important; margin: 0 !important; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow-sm); transition: transform .22s, border-color .25s, box-shadow .25s; text-align: left; }
.woocommerce ul.products li.product .woocommerce-loop-product__link { display: flex; flex-direction: column; flex: 1; }
.woocommerce ul.products li.product .button { align-self: flex-start; margin-top: auto; }
.woocommerce .woocommerce-result-count { color: var(--text-dim); font-size: .9rem; }
.woocommerce .woocommerce-ordering select { width: auto; }
.woocommerce-breadcrumb { color: var(--text-mute); font-size: .85rem; margin-bottom: 20px; }
.woocommerce-breadcrumb a { color: var(--text-dim); }
.woocommerce ul.products li.product:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: var(--shadow-lg); }
.woocommerce ul.products li.product a img {
	border-radius: 12px;
	margin-bottom: 14px;
	width: 100%;
	aspect-ratio: 4 / 3;
	height: auto;
	max-height: 240px;
	object-fit: contain;
	background: #0c0c0f;
	display: block;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: var(--ff-display); font-size: 1.08rem; padding: 0; font-weight: 600; color: var(--ink); }
.woocommerce ul.products li.product .price { color: var(--ink); font-family: var(--ff-display); font-weight: 700; font-size: 1.12rem; display: block; margin: 8px 0 14px; }
.woocommerce ul.products li.product .price del { color: var(--text-mute); font-weight: 400; }
.woocommerce ul.products li.product .price ins { background: none; color: var(--ink); text-decoration: none; }
.woocommerce span.onsale { background: linear-gradient(135deg,#f43f5e,#ec4899); color: #fff; border-radius: 999px; min-height: auto; min-width: auto; padding: 5px 12px; font-family: var(--ff-display); font-weight: 700; font-size: .7rem; }

.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit,
.woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
	background: var(--grad); color: var(--gold-ink); border-radius: 11px; padding: 11px 22px; font-family: var(--ff-display); font-weight: 700; font-size: .92rem; border: none; box-shadow: 0 8px 18px -8px rgba(201,162,39,.6); transition: transform .16s, box-shadow .22s; }
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover,
.woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover { background: var(--grad); transform: translateY(-2px); box-shadow: 0 14px 26px -10px rgba(201,162,39,.75); color: var(--gold-ink); }
.woocommerce .button.added::after { display: none; }

/* ---------- Single product ---------- */
.sc-product { padding-bottom: clamp(48px, 7vw, 80px); }
.sc-product .sc-breadcrumbs { margin-bottom: 22px; padding-top: 12px; }
.sc-product .woocommerce-breadcrumb { display: none; }

.sc-product__hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
	gap: clamp(28px, 4vw, 48px);
	align-items: start;
}

/* Media / cover */
.sc-product__media {
	position: sticky;
	top: 92px;
	background: linear-gradient(160deg, #14100a 0%, #1f180c 45%, #0c0a06 100%);
	border: 1px solid rgba(201,162,39,.22);
	border-radius: var(--radius-lg);
	padding: 18px;
	box-shadow: 0 24px 48px -28px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.06);
	overflow: hidden;
}
.sc-product__media::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(80% 60% at 50% 0%, rgba(212,175,55,.12), transparent 70%);
	pointer-events: none;
}
.sc-product__media > .woocommerce-product-gallery { display: none !important; }
.sc-product__media .sc-pgallery,
.sc-product__media .sc-cover--single {
	margin: 0 !important;
	width: 100% !important;
	float: none !important;
	position: relative;
	z-index: 1;
	border-radius: calc(var(--radius-lg) - 8px);
	overflow: hidden;
}
.sc-product__media .sc-cover--single {
	min-height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(120% 80% at 50% 0%, rgba(212,175,55,.14), transparent 60%), linear-gradient(135deg, #1c1608, #2a200a 55%, #0f0c05);
}
.sc-product__media .sc-cover__mark {
	font-family: var(--ff-display);
	font-weight: 800;
	font-size: 2rem;
	color: var(--gold-bright);
	box-shadow: 0 0 40px rgba(212,175,55,.25);
}
.sc-product__media .sc-cover__name { font-size: clamp(1.35rem, 2.5vw, 1.85rem); }

.sc-pgallery__main {
	background: #0f0c05;
	line-height: 0;
	aspect-ratio: 4 / 3;
	max-height: 480px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.sc-pgallery__hero,
.sc-pgallery__main img {
	width: 100%;
	height: 100%;
	max-height: 480px;
	object-fit: contain;
	display: block;
}
.sc-pgallery__thumbs {
	display: flex;
	gap: 10px;
	padding: 12px;
	background: #fff;
	border-top: 1px solid var(--border);
	overflow-x: auto;
	scrollbar-width: thin;
}
.sc-pgallery__thumb {
	flex: 0 0 72px;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	background: var(--bg-soft);
	transition: border-color .18s, box-shadow .18s;
}
.sc-pgallery__thumb.is-active {
	border-color: var(--gold-deep);
	box-shadow: 0 0 0 2px rgba(201, 162, 39, .2);
}
.sc-pgallery__thumb img {
	width: 100%;
	height: auto;
	max-height: 64px;
	object-fit: contain;
	display: block;
}

.sc-home-video .sc-pvideo--home .sc-pvideo__title { display: none; }
.sc-home-video .sc-pvideo--home .sc-pvideo__player {
	max-width: 960px;
	margin-inline: auto;
	aspect-ratio: 16 / 9;
	border-radius: var(--radius-lg, 16px);
	box-shadow: 0 24px 60px rgba(15, 12, 5, .18);
}

.sc-pvideo {
	margin-top: 20px;
}
.sc-pvideo__title {
	font-size: 1.15rem;
	margin-bottom: 12px;
}
.sc-pvideo__player {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: var(--radius);
	overflow: hidden;
	background: #0f0c05 var(--sc-pvideo-poster, none) center / cover no-repeat;
	border: 1px solid var(--border);
}
.sc-pvideo__play {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	border: 0;
	background: rgba(15, 12, 5, .45);
	color: #fff;
	font-weight: 600;
	cursor: pointer;
	transition: background .2s;
}
.sc-pvideo__play:hover { background: rgba(15, 12, 5, .6); }
.sc-pvideo__play-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--grad);
	box-shadow: var(--shadow);
	display: block;
	position: relative;
}
.sc-pvideo__play-icon::after {
	content: "";
	position: absolute;
	left: 22px;
	top: 17px;
	border: 10px solid transparent;
	border-left: 16px solid var(--gold-ink);
}
.sc-pvideo__player video,
.sc-pvideo__video {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	object-fit: cover;
	background: #000;
}
.sc-pvideo__player.is-playing .sc-pvideo__play { display: none; }

/* Buy box */
.sc-product__buybox {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: clamp(24px, 3vw, 32px);
	box-shadow: var(--shadow-lg);
	position: sticky;
	top: 96px;
}
.sc-product-cats { margin: 0 0 14px; }
.sc-product-cat {
	display: inline-block;
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--accent-soft);
	color: var(--gold-deep);
	border: 1px solid rgba(201,162,39,.28);
}
.sc-product__buybox .sc-ptitle {
	font-size: clamp(1.65rem, 2.6vw, 2.1rem);
	line-height: 1.12;
	margin: 0 0 10px;
	text-wrap: balance;
}
.sc-product__buybox .sc-ptitle__sub {
	display: block;
	font-size: .54em;
	font-weight: 600;
	color: var(--text-dim);
	margin-top: 8px;
}
.sc-product-rating {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 10px;
	margin: 0 0 14px;
}
.sc-product-rating__stars { display: inline-flex; gap: 2px; }
.sc-product-rating__stars .sc-icon {
	width: 15px;
	height: 15px;
	color: var(--gold);
	fill: var(--gold);
	stroke: var(--gold);
}
.sc-product-rating__text { font-size: .82rem; color: var(--text-mute); font-weight: 500; }
.sc-product__buybox .price {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin: 0 0 14px;
	font-family: var(--ff-display);
	font-size: clamp(1.85rem, 2.8vw, 2.35rem);
	font-weight: 800;
	color: var(--ink);
}
.sc-product__buybox .price del { font-size: .95rem; color: var(--text-mute); font-weight: 500; }
.sc-product__buybox .price ins { text-decoration: none; background: none; }
.sc-product__buybox .woocommerce-product-details__short-description {
	color: var(--text-dim);
	font-size: .95rem;
	line-height: 1.6;
	margin: 0 0 4px;
}

.sc-product-cta {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 20px;
}
.sc-product-cta form.cart { margin: 0; display: contents; }
.sc-product-cta form.cart .quantity,
.sc-product-cta form.cart label { display: none !important; }
.sc-product-cta form.cart .button {
	width: 100%;
	padding: 16px 22px;
	font-size: 1rem;
	justify-content: center;
	border-radius: 12px;
}
.sc-product-cta__free { width: 100%; text-align: center; margin-bottom: 0; justify-content: center; }
.sc-product-cta__demo-wrap { margin: 0; text-align: center; }
.sc-product-cta__demo {
	display: inline;
	font-size: .9rem;
	font-weight: 600;
	color: var(--text-dim);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.sc-product-cta__demo:hover { color: var(--gold-deep); }

.sc-product-trust {
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.sc-product-trust__item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: .8rem;
	color: var(--text-dim);
	line-height: 1.35;
}
.sc-product-trust__item .sc-icon { width: 18px; height: 18px; color: var(--gold-deep); flex: 0 0 auto; }

/* Details (tabs + related) */
.sc-product__details { margin-top: clamp(44px, 5vw, 60px); }
.sc-product .woocommerce-tabs { margin: 0; }
.sc-product .woocommerce-tabs ul.tabs {
	border: none;
	padding: 0;
	margin: 0 0 0;
	display: flex;
	gap: 0;
	flex-wrap: wrap;
	border-bottom: 1px solid var(--border);
}
.sc-product .woocommerce-tabs ul.tabs::before,
.sc-product .woocommerce-tabs ul.tabs li::before,
.sc-product .woocommerce-tabs ul.tabs li::after { display: none !important; }
.sc-product .woocommerce-tabs ul.tabs li {
	background: transparent;
	border: none;
	border-radius: 0;
	margin: 0;
	padding: 0;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
}
.sc-product .woocommerce-tabs ul.tabs li a {
	padding: 14px 22px;
	font-weight: 600;
	font-size: .9rem;
	color: var(--text-dim);
}
.sc-product .woocommerce-tabs ul.tabs li.active {
	background: transparent;
	border-bottom-color: var(--gold-deep);
	box-shadow: none;
}
.sc-product .woocommerce-tabs ul.tabs li.active a { color: var(--ink); }
.sc-product .woocommerce-tabs {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 8px clamp(20px, 3vw, 32px) clamp(24px, 3vw, 36px);
	box-shadow: var(--shadow-sm);
}
.sc-product .woocommerce-tabs .panel {
	background: transparent;
	border: none;
	border-radius: 0;
	padding: clamp(24px, 3vw, 32px) 0 0;
	margin: 0;
	box-shadow: none;
	color: var(--text);
	line-height: 1.65;
	max-width: none;
}
.sc-product-sections {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}
.sc-product-section {
	background: var(--bg-soft);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 22px 24px;
}
.sc-product-section__title {
	font-size: 1.05rem;
	margin: 0 0 14px;
	color: var(--ink);
}
.sc-product-section__body > *:first-child { margin-top: 0; }
.sc-product-section__body ul { list-style: none; padding: 0; margin: 0; }
.sc-product-section__body li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0 0 10px;
	font-size: .9rem;
	color: var(--text-dim);
}
.sc-product-section__body li::before {
	content: "✓";
	flex: 0 0 auto;
	font-weight: 700;
	color: var(--gold-deep);
	font-size: .85rem;
	margin-top: 2px;
}
.sc-product-section__body p {
	margin: 0;
	font-size: .9rem;
	color: var(--text-dim);
	line-height: 1.6;
}
.sc-product-section__body a { color: var(--gold-deep); font-weight: 600; }
/* Full-width delivery block when it's the 3rd card */
.sc-product-sections .sc-product-section:last-child:nth-child(odd) {
	grid-column: 1 / -1;
}

.sc-specs--tab { display: flex; flex-direction: column; gap: 0; max-width: 520px; }
.sc-specs__row {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 12px;
	font-size: .9rem;
	padding: 12px 0;
	border-bottom: 1px solid var(--border);
}
.sc-specs__row:last-child { border-bottom: none; }
.sc-specs__row span { color: var(--text-mute); }
.sc-specs__row b { color: var(--ink); font-weight: 600; text-align: left; }
.sc-specs__row b a { color: var(--gold-deep); }
.sc-ptags--tab { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 8px; max-width: none; }
.sc-ptags--tab a {
	font-size: .76rem;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--accent-soft);
	color: var(--gold-deep);
	border: 1px solid rgba(201,162,39,.2);
}

/* Related (theme cards) */
.sc-product-related { margin-top: clamp(40px, 5vw, 56px); padding-top: 8px; }
.sc-product-related__title {
	font-family: var(--ff-display);
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	margin: 0 0 22px;
}
.sc-product-related .sc-grid--products-4 { gap: 20px; }

@media (max-width: 1100px) {
	.sc-product__hero { grid-template-columns: 1fr; }
	.sc-product__buybox { position: static; max-width: 520px; }
	.sc-grid--products-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
	.sc-product__media { position: static; }
	.sc-product-sections { grid-template-columns: 1fr; }
	.sc-product-sections .sc-product-section:last-child:nth-child(odd) { grid-column: auto; }
}
@media (max-width: 560px) {
	.sc-grid--products-4 { grid-template-columns: 1fr; }
}

.woocommerce table.shop_table { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); border-collapse: separate; overflow: hidden; box-shadow: var(--shadow-xs); }
.woocommerce table.shop_table th { font-family: var(--ff-display); color: var(--ink); }
.woocommerce table.shop_table td, .woocommerce table.shop_table th { border-top: 1px solid var(--border); padding: 16px; }
.woocommerce-cart table.cart img { border-radius: 10px; width: 64px; }
.woocommerce .cart-collaterals .cart_totals, .woocommerce-checkout .woocommerce-checkout-review-order { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-xs); }
.woocommerce .cart_totals h2, .woocommerce-checkout h3 { font-family: var(--ff-display); }

.woocommerce form .form-row { padding: 0; margin-bottom: 16px; }

/* Force our input styling over WooCommerce's defaults */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce-account .input-text,
.sc-auth input.input-text,
.woocommerce .input-text {
	width: 100%; padding: 12px 15px; border-radius: 11px; border: 1px solid var(--border-strong);
	background: #fff; color: var(--ink); font-family: inherit; font-size: .95rem; box-shadow: none;
	transition: border-color .18s, box-shadow .18s;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce .input-text:focus,
.sc-auth input.input-text:focus {
	border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(201,162,39,.12); outline: none;
}

/* ---- Auth (login / register) ---- */
/* Kill WooCommerce's default border/padding around the login & register forms. */
.woocommerce form.login, .woocommerce form.register { border: 0; padding: 0; margin: 0; border-radius: 0; }
.woocommerce-privacy-policy-text { font-size: .82rem; color: var(--text-mute); margin-top: 4px; }
.sc-auth { display: grid; gap: 24px; max-width: 480px; margin: 0 auto clamp(40px,6vw,80px); }
.sc-auth--2 { grid-template-columns: 1fr 1fr; max-width: 940px; }
.sc-auth__card { padding: 34px; }
.sc-auth__card--register { background: linear-gradient(180deg, var(--accent-soft), #fff 60%); }
.sc-auth__title { font-size: 1.5rem; margin-bottom: 6px; }
.sc-auth__sub { color: var(--text-dim); font-size: .92rem; margin-bottom: 24px; }
.sc-auth .form-row { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.sc-auth .form-row label { font-weight: 600; font-size: .88rem; }
.sc-auth__actions { flex-direction: row !important; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-top: 4px; }
.sc-auth__lost { margin-top: 8px; font-size: .88rem; }
.sc-auth__lost a { color: var(--indigo); }
.woocommerce-form-login__rememberme { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--text-dim); margin: 0; }
.woocommerce-form-login__rememberme input { width: auto; }
.sc-auth .required { color: #f43f5e; }
@media (max-width: 720px) { .sc-auth--2 { grid-template-columns: 1fr; max-width: 480px; } }
/* ---- My Account ---- */
.sc-account-page--guest .sc-account-body .woocommerce { max-width: 940px; margin: 0 auto; }
.sc-account-page--guest .sc-auth { margin-bottom: 0; }
.sc-page-hero--account { padding-bottom: clamp(28px, 4vw, 40px); }

.sc-account-page--member .woocommerce {
	display: grid;
	grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
	gap: clamp(20px, 3vw, 32px);
	align-items: start;
}
/* WooCommerce floats nav/content — breaks our grid */
.sc-account-page--member .woocommerce::before,
.sc-account-page--member .woocommerce::after {
	display: none;
}
.sc-account-page--member .woocommerce-MyAccount-navigation,
.sc-account-page--member .woocommerce-MyAccount-content {
	float: none;
	width: auto;
	max-width: none;
	clear: none;
}
.sc-account-page--member .woocommerce-MyAccount-navigation {
	grid-column: 1;
	grid-row: 1;
}
.sc-account-page--member .woocommerce-MyAccount-content {
	grid-column: 2;
	grid-row: 1;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul { display: flex; flex-direction: column; gap: 6px; }
.woocommerce-account .woocommerce-MyAccount-navigation li { background: #fff; border: 1px solid var(--border); border-radius: 11px; box-shadow: var(--shadow-xs); }
.woocommerce-account .woocommerce-MyAccount-navigation li a { display: block; padding: 12px 16px; color: var(--text); font-weight: 500; font-size: .92rem; }
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active { background: var(--grad); border-color: transparent; box-shadow: 0 8px 20px -12px rgba(201,162,39,.55); }
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a { color: var(--gold-ink); font-weight: 700; }
.woocommerce-MyAccount-content {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: clamp(24px, 3vw, 32px);
	box-shadow: var(--shadow-sm);
	min-width: 0;
}
/* Hero already shows section title — hide duplicate WC heading */
.sc-account-page--member .woocommerce-MyAccount-content > h2:first-child {
	display: none;
}
.woocommerce-MyAccount-content .woocommerce-Address-title h2 { font-size: 1.15rem; margin-bottom: 12px; }

/* Dashboard */
.sc-account-dashboard__greeting { font-size: 1.05rem; color: var(--ink); margin-bottom: 10px; }
.sc-account-dashboard__intro { color: var(--text-dim); line-height: 1.65; margin-bottom: 20px; max-width: 56ch; }
.sc-account-dashboard__links {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.sc-account-dashboard__links a {
	display: block;
	padding: 14px 16px;
	background: var(--bg-soft);
	border: 1px solid var(--border);
	border-radius: 11px;
	font-weight: 600;
	font-size: .9rem;
	color: var(--gold-deep);
	transition: border-color .18s, box-shadow .18s;
}
.sc-account-dashboard__links a:hover {
	border-color: rgba(201, 162, 39, .45);
	box-shadow: var(--shadow-xs);
}
.woocommerce-MyAccount-content .woocommerce-MyAccount-dashboard .woocommerce-Address { margin-top: 18px; }

/* Orders table */
.woocommerce-orders-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	background: #fff;
	box-shadow: var(--shadow-xs);
}
.woocommerce-orders-table th,
.woocommerce-orders-table td {
	padding: 14px 16px;
	border-bottom: 1px solid var(--border);
	text-align: left;
	font-size: .9rem;
}
.woocommerce-orders-table th {
	font-family: var(--ff-display);
	font-weight: 600;
	color: var(--ink);
	background: var(--bg-soft);
}
.woocommerce-orders-table tr:last-child td { border-bottom: none; }
.woocommerce-orders-table a { font-weight: 600; color: var(--gold-deep); }
.woocommerce-orders-table .woocommerce-button {
	padding: 8px 14px;
	font-size: .82rem;
	border-radius: 8px;
}

/* Downloads table */
.woocommerce-table--order-downloads {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
}
.woocommerce-table--order-downloads th,
.woocommerce-table--order-downloads td {
	padding: 14px 16px;
	border-bottom: 1px solid var(--border);
	font-size: .9rem;
}
.woocommerce-table--order-downloads th {
	background: var(--bg-soft);
	font-family: var(--ff-display);
}

/* Account details form */
.woocommerce-EditAccountForm .form-row { margin-bottom: 18px; }
.woocommerce-EditAccountForm fieldset { border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; margin-bottom: 20px; }
.woocommerce-EditAccountForm legend {
	font-family: var(--ff-display);
	font-weight: 600;
	padding: 0 8px;
}
.woocommerce-EditAccountForm button[type="submit"] {
	padding: 14px 24px;
}

/* Delivery / billing address (My Account) */
.woocommerce-MyAccount-content form > h2,
.woocommerce-MyAccount-content .woocommerce-Address-title h2 {
	font-size: 1.15rem;
	margin: 0 0 8px;
}
.woocommerce-MyAccount-content > p:first-of-type {
	color: var(--text-dim);
	font-size: .95rem;
	line-height: 1.6;
	margin: 0 0 22px;
	max-width: 56ch;
}
.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .form-row { margin-bottom: 18px; }
.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .form-row-first,
.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .form-row-last {
	width: calc(50% - 8px);
	display: inline-block;
	vertical-align: top;
}
.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .form-row-first { margin-right: 16px; }
.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper label {
	font-weight: 600;
	font-size: .86rem;
	color: var(--ink);
	margin-bottom: 7px;
	display: block;
}
.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .optional { display: none; }
.woocommerce-MyAccount-content #billing_telegram_field input {
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	letter-spacing: .02em;
}
.woocommerce-MyAccount-content .woocommerce-address-fields > p {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px 20px;
	margin-top: 8px;
}
.woocommerce-MyAccount-content .woocommerce-address-fields button[name="save_address"] {
	padding: 14px 24px;
	font-size: .95rem;
}
.woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address {
	background: var(--bg-soft);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 20px 22px;
}
.woocommerce-MyAccount-content .woocommerce-Address-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}
.woocommerce-MyAccount-content .woocommerce-Address-title .edit {
	font-size: .88rem;
	font-weight: 600;
	color: var(--gold-deep);
}
.woocommerce-MyAccount-content .woocommerce-Address address {
	font-style: normal;
	color: var(--text-dim);
	line-height: 1.65;
	font-size: .92rem;
}

@media (max-width: 800px) {
	.sc-account-page--member .woocommerce { grid-template-columns: 1fr; }
	.sc-account-page--member .woocommerce-MyAccount-navigation ul {
		flex-direction: row;
		flex-wrap: wrap;
	}
	.sc-account-page--member .woocommerce-MyAccount-navigation li { flex: 1 1 auto; }
	.woocommerce-orders-table { display: block; overflow-x: auto; }
	.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .form-row-first,
	.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .form-row-last {
		width: 100%;
		margin-right: 0;
		display: block;
	}
}

.woocommerce .related h2, .woocommerce .upsells h2 { font-family: var(--ff-display); font-size: 1.6rem; margin-bottom: 24px; }
.woocommerce .star-rating span::before, .woocommerce p.stars a { color: var(--amber); }

/* Crypto payment instructions (thank-you + emails) */
.sc-crypto-pay { background: var(--accent-soft); border: 1px solid rgba(201,162,39,.3); border-radius: var(--radius); padding: 24px; margin: 20px 0; }
.sc-crypto-pay h3 { margin-bottom: 8px; }
.sc-crypto-pay__list { display: flex; flex-direction: column; gap: 10px; margin: 14px 0; list-style: none; padding: 0; }
.sc-crypto-pay__list li { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 14px; }
.sc-crypto-pay__info { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.sc-crypto-pay__info span { font-family: var(--ff-display); font-weight: 700; color: var(--ink); }
.sc-crypto-pay__info code { font-size: .88rem; word-break: break-all; color: var(--gold-deep); background: var(--accent-soft); padding: 4px 8px; border-radius: 6px; }
.sc-crypto-pay__qr { width: 96px; height: 96px; flex: 0 0 auto; border-radius: 8px; border: 1px solid var(--border); background: #fff; padding: 5px; }
.sc-crypto-pay__note { color: var(--text-dim); font-size: .9rem; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1024px) {
	.sc-hero__inner { grid-template-columns: 1fr; gap: 40px; }
	.sc-hero__visual { min-height: 360px; max-width: 460px; }
	.sc-home-split,
	.sc-home-split--media-left { grid-template-columns: 1fr; }
	.sc-home-split--media-left .sc-home-split__grid,
	.sc-home-split--media-left .sc-home-split__copy { order: unset; }
	.sc-home-about__inner { grid-template-columns: 1fr; }
	.sc-home-about__bubbles { min-height: 300px; max-width: 400px; margin-inline: auto; }
	.sc-home-cta { grid-template-columns: 1fr; text-align: center; }
	.sc-home-cta__icon { margin-inline: auto; }
	.sc-home-cta__actions { justify-content: center; }
	.sc-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 880px) {
	.sc-nav { display: none; }
	.sc-burger { display: flex; }
	.sc-grid--3, .sc-grid--products, .sc-grid--products-4, .sc-grid--products-2, .sc-steps, .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
	.sc-carousel__btn--prev { left: 4px; }
	.sc-carousel__btn--next { right: 4px; }
	.sc-stats { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
	.sc-stat:nth-child(3)::before { display: none; }
	.sc-header__cta { display: none; }
}
@media (max-width: 560px) {
	.container { padding-inline: 18px; }
	.sc-grid--3, .sc-grid--products, .sc-grid--products-4, .sc-grid--products-2, .sc-steps, .sc-stats, .woocommerce ul.products { grid-template-columns: 1fr; }
	.sc-hero__collage { min-height: 320px; }
	.product-card__actions { grid-template-columns: 1fr; }
	.sc-home-carousel-band__head { flex-direction: column; align-items: flex-start; }
	.sc-stat + .sc-stat::before { display: none; }
	.sc-footer__grid { grid-template-columns: 1fr; }
	.sc-section__head { align-items: flex-start; }
	.sc-hero__badge { display: none; }
	.sc-footer__cta { flex-direction: column; align-items: flex-start; }
	.sc-hero__actions { flex-direction: column; }
	.sc-hero__actions .sc-btn { width: 100%; }
}
/* ---------- Flagship pinned product (HyperPlay) ---------- */
.sc-hero__pinned { width: 100%; max-width: 520px; margin-inline: auto; }
.sc-pinned-spotlight__card {
	display: grid;
	gap: 0;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1.5px solid rgba(201, 162, 39, 0.35);
	box-shadow: var(--shadow-lg);
}
.sc-pinned-spotlight--hero .sc-pinned-spotlight__card { grid-template-columns: 1fr; }
.sc-pinned-spotlight--shop { margin-bottom: 32px; }
.sc-pinned-spotlight--shop .sc-pinned-spotlight__card {
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	align-items: stretch;
}
.sc-pinned-spotlight__media { position: relative; display: block; overflow: hidden; }
.sc-pinned-spotlight__media { background: #0c0c0f; line-height: 0; }
.sc-pinned-spotlight__media img { width: 100%; height: auto; object-fit: contain; display: block; }
.sc-pinned-spotlight__media .badge { position: absolute; top: 14px; left: 14px; z-index: 2; }
.sc-pinned-spotlight__body { padding: 24px 28px; display: flex; flex-direction: column; gap: 10px; }
.sc-pinned-spotlight__title { font-size: clamp(1.35rem, 2.5vw, 1.75rem); margin: 0; }
.sc-pinned-spotlight__title a:hover { color: var(--gold-deep); }
.sc-pinned-spotlight__sub { color: var(--text-dim); font-size: 0.95rem; margin: 0; }
.sc-pinned-spotlight__desc { color: var(--text); font-size: 0.92rem; line-height: 1.55; margin: 0; }
.sc-pinned-spotlight__meta { font-size: 0.82rem; color: var(--text-mute); margin: 0; }
.sc-pinned-spotlight__price { font-size: 1.5rem; font-weight: 700; color: var(--ink); }
.sc-pinned-spotlight__price ins { text-decoration: none; color: var(--gold-deep); }
.sc-pinned-spotlight__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.sc-pinned-spotlight--bar {
	position: fixed;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 90;
	width: min(960px, calc(100% - 24px));
}
.sc-pinned-spotlight--bar .sc-pinned-spotlight__card {
	grid-template-columns: 1fr auto;
	align-items: center;
	padding: 12px 16px;
	border-radius: 999px;
	box-shadow: var(--shadow-lg);
}
.sc-pinned-spotlight--bar .sc-pinned-spotlight__body {
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 16px;
	padding: 0;
}
.sc-pinned-spotlight--bar .sc-pinned-spotlight__title { font-size: 1rem; }
.sc-pinned-spotlight--bar .sc-pinned-spotlight__sub,
.sc-pinned-spotlight--bar .sc-pinned-spotlight__desc,
.sc-pinned-spotlight--bar .sc-pinned-spotlight__meta,
.sc-pinned-spotlight--bar .eyebrow { display: none; }
.sc-pinned-spotlight--bar .sc-pinned-spotlight__price { font-size: 1.1rem; margin: 0; }
.sc-pinned-spotlight--bar .sc-pinned-spotlight__actions { margin: 0; }
.sc-pinned-spotlight--bar .sc-btn { padding: 8px 14px; font-size: 0.85rem; }
.product-card.is-flagship { border: 1.5px solid rgba(201, 162, 39, 0.4); box-shadow: var(--shadow); }

@media (max-width: 900px) {
	.sc-pinned-spotlight--shop .sc-pinned-spotlight__card { grid-template-columns: 1fr; }
	.sc-pinned-spotlight--bar .sc-pinned-spotlight__card { grid-template-columns: 1fr; border-radius: var(--radius-lg); }
	.sc-pinned-spotlight--bar .sc-pinned-spotlight__body { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto; }
}
