@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

body {
  font-family: var(--font-body);
}

h1, h2, h3,
.section-title,
.product-title {
  font-family: var(--font-heading);
  font-weight: 800;
}

:root {
	--bg2: #0b0f16;
	--glass: rgba(10, 14, 22, .55);
	--glass2: rgba(14, 18, 28, .62);
	--border: rgba(255, 255, 255, .08);
	--text: #e7eaf0;
	--muted: rgba(231, 234, 240, .70);
	--muted2: rgba(231, 234, 240, .55);
	--shadow: 0 20px 60px rgba(0, 0, 0, .55);
	--shadow2: 0 12px 40px rgba(0, 0, 0, .45);
	--radius: 14px;
	--radius2: 18px;
	--grad: linear-gradient(90deg, #8b5cf6, #22d3ee, #a78bfa);
	--grad2: linear-gradient(135deg, rgba(139, 92, 246, .25), rgba(34, 211, 238, .18));
	--btn: rgba(255, 255, 255, .08);
	--btnHover: rgba(255, 255, 255, .12);
	--focus: rgba(34, 211, 238, .35);
	--max: 1180px;
}

* {
	box-sizing: border-box
}

html,
body {
	height: 100%
}

body {
	margin: 0;
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: black;
	color: var(--text);
	overflow-x: hidden;
}

.nx-nav-wrap {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-image: linear-gradient(90deg, #00000000, orange, #00000000) 1;
	border-bottom-style: solid;
	border-width: 2px;
	box-shadow: 0 1px 12px rgba(0, 0, 0, 0.55), 0 1px 0 rgba(255, 255, 255, 0.03);
}

.nx-nav {
	max-width: var(--max);
	margin: 0 auto;
	padding: 14px 18px;
	display: flex;
	align-items: center;
	gap: 14px;
	justify-content: space-between;
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--text);
}

.logo {
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background:
		radial-gradient(circle at 30% 30%, rgba(34, 211, 238, .85), transparent 55%),
		radial-gradient(circle at 70% 60%, rgba(139, 92, 246, .85), transparent 55%),
		linear-gradient(135deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .02));
	border: 1px solid rgba(255, 255, 255, .12);
	box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
	position: relative;
	overflow: hidden;
}

.logo:after {
	content: "";
	position: absolute;
	inset: -40%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
	transform: rotate(25deg) translateX(-30%);
	animation: shimmer 4.5s infinite;
	opacity: .8;
}

@keyframes shimmer {
	0%   { transform: rotate(25deg) translateX(-55%) }
	55%  { transform: rotate(25deg) translateX(55%) }
	100% { transform: rotate(25deg) translateX(55%) }
}

.vc-user-icon {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vc-user-icon i {
	font-size: 20px;
	line-height: 1;
}

.brand span { font-weight: 700; letter-spacing: .2px; }

.badge {
	font-size: 12px;
	padding: 4px 8px;
	border-radius: 999px;
	border: 1px solid rgba(34, 211, 238, .25);
	color: rgba(34, 211, 238, .95);
	background: rgba(34, 211, 238, .08);
	margin-left: 6px;
}

.nx-nav-left {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
}

.nx-nav-links {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-left: 8px;
}

.nx-nav-item { position: relative; }

.nx-nav-btn {
	border: 1px solid transparent;
	background: transparent;
	color: var(--muted);
	font-weight: 600;
	font-size: 14px;
	padding: 10px 10px;
	border-radius: 10px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: .15s ease;
	user-select: none;
}

.nx-nav-btn:hover {
	color: var(--text);
	background: rgba(255, 255, 255, .06);
	border-color: rgba(255, 255, 255, .08);
}

.nx-nav-btn[aria-expanded="true"] {
	color: var(--text);
	background: rgba(255, 255, 255, .08);
	border-color: rgba(34, 211, 238, .18);
	box-shadow: 0 0 0 3px rgba(34, 211, 238, .10);
}

.chev {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	margin-top: 0;
	margin-left: auto;
	border-radius: 999px;
	background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .12), rgba(255, 255, 255, .02) 62%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10), 0 8px 18px rgba(0, 0, 0, .20);
	opacity: .96;
	transition: transform .22s cubic-bezier(.16, 1, .3, 1), background .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.chev::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 6px;
	height: 6px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translate(-50%, -60%) rotate(45deg);
	transform-origin: center;
	transition: transform .22s cubic-bezier(.16, 1, .3, 1);
}

.nx-nav-btn:hover .chev,
.nx-nav-btn:focus-visible .chev,
.nx-nav-btn[aria-expanded="true"] .chev {
	background: radial-gradient(circle at 30% 30%, rgba(163, 230, 53, .22), rgba(99, 102, 241, .10) 68%, rgba(255, 255, 255, .03));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 10px 22px rgba(0, 0, 0, .24), 0 0 0 1px rgba(163, 230, 53, .10);
}

.nx-nav-btn[aria-expanded="true"] .chev::before {
	transform: translate(-50%, -40%) rotate(225deg);
}

.nx-nav-right {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 240px;
	justify-content: flex-end;
}

.pill {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, .05);
	color: var(--muted);
	font-size: 13px;
	cursor: pointer;
	transition: .15s ease;
}

.pill:hover { background: rgba(255, 255, 255, .08); color: var(--text); }

.dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: rgba(34, 211, 238, .9);
	box-shadow: 0 0 0 4px rgba(34, 211, 238, .12);
}

.link {
	color: var(--muted);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	padding: 10px 10px;
	border-radius: 10px;
	transition: .15s ease;
	border: 1px solid transparent;
}

.link:hover {
	color: var(--text);
	background: rgba(255, 255, 255, .06);
	border-color: rgba(255, 255, 255, .08);
}

.cta {
	text-decoration: none;
	color: #061018;
	font-weight: 800;
	font-size: 14px;
	padding: 10px 14px;
	border-radius: 999px;
	background: var(--grad);
	box-shadow: 0 16px 40px rgba(34, 211, 238, .08), 0 16px 40px rgba(139, 92, 246, .10);
	transition: transform .15s ease, filter .15s ease;
	white-space: nowrap;
}

.cta:hover { transform: translateY(-1px); filter: brightness(1.05); }
.cta:active { transform: translateY(0px); }

.menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	width: 820px;
	max-width: calc(100vw - 28px);
	background: linear-gradient(181deg, rgb(0 0 0), rgb(0 0 0));
	border-radius: var(--radius2);
	box-shadow: var(--shadow);
	padding: 16px;
	display: none;
	transform-origin: top left;
	transform: translateY(6px) scale(.98);
	opacity: 0;
	transition: .16s ease;
	overflow: hidden;
	border-image: linear-gradient(90deg, #00000000, orange, #00000000) 1;
	border-bottom-style: solid;
	border-width: 2px;
}

.menu.open { display: block; opacity: 1; transform: translateY(0) scale(1); }

.menu:before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(800px 300px at 10% 0%, rgba(34, 211, 238, .13), transparent 60%),
		radial-gradient(800px 300px at 90% 0%, rgba(139, 92, 246, .14), transparent 60%);
	pointer-events: none;
}

.menu-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 14px;
}

.menu-col {
	border: 1px solid rgba(255, 255, 255, .08);
	background: rgba(255, 255, 255, .04);
	border-radius: 14px;
	padding: 14px;
	overflow: hidden;
}

.menu-title {
	font-weight: 800;
	font-size: 13px;
	letter-spacing: .2px;
	color: rgba(231, 234, 240, .90);
	margin: 0 0 10px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.menu-title small {
	font-weight: 700;
	font-size: 12px;
	color: rgba(34, 211, 238, .85);
	border: 1px solid rgba(34, 211, 238, .22);
	background: rgba(34, 211, 238, .08);
	padding: 4px 8px;
	border-radius: 999px;
}

.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.menu-card {
	display: flex;
	gap: 10px;
	padding: 10px;
	border-radius: 12px;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, .08);
	background: rgba(0, 0, 0, .12);
	transition: .15s ease;
	min-height: 66px;
}

.menu-card:hover {
	border-color: rgba(34, 211, 238, .22);
	background: rgba(255, 255, 255, .06);
	transform: translateY(-1px);
}

.ic {
	width: 34px;
	height: 34px;
	border-radius: 12px;
	background: var(--grad2);
	flex: 0 0 auto;
}

.menu-card b { display: block; color: var(--text); font-size: 13px; margin-bottom: 2px; letter-spacing: .1px; }
.menu-card p { margin: 0; color: var(--muted2); font-size: 12px; line-height: 1.25; }

.menu-side { display: flex; flex-direction: column; gap: 10px; }

.side-hero {
	border-radius: 14px;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, .10);
	background:
		radial-gradient(420px 200px at 20% 0%, rgba(34, 211, 238, .18), transparent 60%),
		radial-gradient(420px 200px at 90% 0%, rgba(139, 92, 246, .22), transparent 60%),
		rgba(255, 255, 255, .04);
	box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
	overflow: hidden;
	position: relative;
}

.side-hero h4 { margin: 0 0 6px 0; font-size: 13px; letter-spacing: .2px; }
.side-hero p  { margin: 0 0 10px 0; color: var(--muted); font-size: 12px; line-height: 1.35; }

.side-hero a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: var(--text);
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .12);
	padding: 9px 12px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 13px;
	transition: .15s ease;
}

.side-hero a:hover { background: rgba(255, 255, 255, .12); }

.tiny { display: flex; gap: 10px; }

.tiny a {
	flex: 1;
	text-decoration: none;
	color: var(--muted);
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .08);
	padding: 10px 12px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 700;
	transition: .15s ease;
	text-align: center;
}

.tiny a:hover {
	background: rgba(255, 255, 255, .08);
	color: var(--text);
	border-color: rgba(34, 211, 238, .18);
}

.hamburger {
	display: none;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	border: 0px solid rgba(255, 255, 255, .10);
	background: rgba(255, 255, 255, .05);
	cursor: pointer;
	transition: .15s ease;
	align-items: center;
	justify-content: center;
	gap: 5px;
	flex-direction: column;
}

.hamburger:hover { background: rgba(255, 255, 255, .08); }
.hamburger span { width: 18px; height: 2px; background: rgba(231, 234, 240, .85); border-radius: 99px; transition: .15s ease; }

.overlay {
	position: fixed;
	inset: 0;
	background: rgb(0 0 0 / 85%);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(6px);
	opacity: 0;
	pointer-events: none;
	transition: .18s ease;
	z-index: 60;
}

.overlay.open { opacity: 1; pointer-events: auto; }

.drawer {
	position: fixed;
	top: 0;
	right: 0;
	height: 100%;
	width: min(420px, 92vw);
	border-left: 1px solid rgba(255, 255, 255, .10);
	box-shadow: var(--shadow);
	transform: translateX(110%);
	transition: .2s ease;
	z-index: 70;
	display: flex;
	flex-direction: column;
}

.drawer.open { transform: translateX(0); }

.drawer-top {
	padding: 14px 14px 10px 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.drawer-top .brand { min-width: 0; }

.close {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, .10);
	background: rgba(255, 255, 255, .06);
	cursor: pointer;
	transition: .15s ease;
	color: var(--text);
	font-weight: 900;
	font-size: 16px;
}

.close:hover { background: rgb(255 255 255); }

.drawer-body {
	padding: 0px 14px 18px 14px;
	overflow: auto;
}

.m-section {
	margin: 10px 0 12px;
	border: 1px solid rgba(255, 255, 255, .08);
	background: rgba(255, 255, 255, .04);
	border-radius: 14px;
	overflow: hidden;
}

.m-head {
	width: 100%;
	padding: 12px 12px;
	border: 0;
	background: transparent;
	color: var(--text);
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	font-weight: 800;
	font-size: 13px;
}

.m-head span { color: var(--muted); font-weight: 700; font-size: 12px; }

.m-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height .2s ease;
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.m-panel.open { max-height: 560px; }

.m-links { display: flex; flex-direction: column; padding: 10px; gap: 8px; }

.m-links a {
	display: flex;
	gap: 10px;
	text-decoration: none;
	color: var(--text);
	border: 1px solid rgba(255, 255, 255, .08);
	background: rgba(0, 0, 0, .10);
	padding: 10px;
	border-radius: 12px;
	transition: .15s ease;
}

.m-links a:hover { background: rgba(255, 255, 255, .06); border-color: rgba(34, 211, 238, .18); }
.m-links a b    { font-size: 13px; }
.m-links a small { color: var(--muted2); display: block; margin-top: 2px; }

.drawer-cta { margin-top: 12px; display: flex; gap: 10px; }

.drawer-cta a {
	flex: 1;
	text-align: center;
	text-decoration: none;
	font-weight: 900;
	padding: 12px 12px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .10);
	background: rgba(255, 255, 255, .06);
	color: var(--text);
	transition: .15s ease;
}

.drawer-cta a:hover  { background: rgba(255, 255, 255, .10); }
.drawer-cta a.primary { border: 0; background: var(--grad); color: #061018; }

@media (max-width: 1024px) {
	.nx-nav-links { display: none; }
	.nx-nav-right .pill, .nx-nav-right .link { display: none; }
	.hamburger { display: flex; }
	.nx-nav-right { min-width: auto; }
	.brand { min-width: auto; }
}

.vch-catalog-hero,
.vch-catalog-shell {
	max-width: var(--max, 1180px);
}

.vch-catalog-page {
	padding-left: 36px;
	padding-right: 36px;
}

@media (max-width: 1024px) { .vch-catalog-page { padding-left: 28px; padding-right: 28px; } }
@media (max-width: 768px)  { .vch-catalog-page { padding-left: 20px; padding-right: 20px; } }
@media (max-width: 480px)  { .vch-catalog-page { padding-left: 10px; padding-right: 10px; } }

/* ── Game Key tambahan: price & buy button di dalam card ── */
.vch-product-info { display: flex; flex-direction: column; }
.vch-product-info .vch-product-meta { flex-shrink: 0; min-height: 24px; align-items: center; margin-top: auto; }
.vch-product-info .vch-badge { flex-shrink: 0; }
.gkcat-price-wrap { margin-top: 8px; }
.gkcat-price-from { font-size: 11px; color: var(--muted2); margin-bottom: 2px; }
.gkcat-price      { font-size: 1rem; font-weight: 800; color: #ffb703; line-height: 1.1; }
.gkcat-btn-card {
	display: block;
	width: 100%;
	margin-top: 10px;
	padding: 9px 14px;
	border-radius: 999px;
	border: 0;
	background: linear-gradient(135deg, #ffb703, #ff8c00);
	color: #0c0a00;
	font-size: .8rem;
	font-weight: 800;
	text-align: center;
	letter-spacing: .2px;
	pointer-events: none;
	box-shadow: 0 6px 16px rgba(255,183,3,.28);
}

.vch-empty-state {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.vch-empty-state h3 {
	text-align: center;
}

body {
	background: #eaf1f8;
	color: #111827;
}

#wrapper {
	background: #eaf1f8;
	min-height: 100%;
}

.vch-catalog-page {
	background: linear-gradient(180deg, #e8f2fb 0%, #eef4f9 48%, #eaf1f8 100%);
	color: #111827;
	padding: 0 36px 64px;
}

.vch-catalog-hero,
.gk-popular-section,
.gk-discover-section {
	max-width: var(--max, 1180px);
	margin: 0 auto;
}

.vch-catalog-hero {
	position: relative;
	display: block;
	min-height: 0;
	overflow: hidden;
	padding: 26px 0 42px;
}

.vch-catalog-hero:after {
	content: "";
	position: absolute;
	left: 42%;
	right: -80px;
	bottom: -34px;
	height: 122px;
	background:
		radial-gradient(closest-side, rgba(100, 116, 139, .18), transparent 70%),
		linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(188, 202, 214, .42));
	filter: blur(6px);
	pointer-events: none;
}

.gk-breadcrumb {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 30px;
	color: #475569;
	font-size: 12px;
	font-weight: 600;
}

.gk-breadcrumb a {
	color: #2563eb;
	text-decoration: none;
}

.gk-breadcrumb span {
	color: #7c8797;
}

.vch-hero-title-wrap {
	position: relative;
	z-index: 2;
	max-width: 560px;
	padding-top: 2px;
}

.vch-hero-title-wrap h1 {
	color: #050b16;
	font-size: 30px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.32;
	margin: 0 0 18px;
}

.vch-hero-title-wrap p {
	max-width: 560px;
	margin: 0;
	color: #334155;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.65;
}

.gk-hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
}

@media (max-width: 768px) {
	.gk-hero-badges {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		flex-wrap: nowrap;
		gap: 6px;
	}
	.gk-hero-badge {
		display: flex;
		align-items: center;
		justify-content: center;
		min-width: 0;
		padding-left: 5px;
		padding-right: 5px;
		gap: 4px;
		text-align: center;
		white-space: nowrap;
		line-height: 1;
		font-size: clamp(7px, 2.2vw, 12px);
	}
	.gk-hero-badge i {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		font-size: clamp(7px, 2.2vw, 12px);
		line-height: 1;
		flex-shrink: 0;
	}
}

.gk-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 28px;
	padding: 6px 12px;
	border: 1px solid #f59e0b;
	border-radius: 999px;
	background: rgba(255, 255, 255, .82);
	color: #0f172a;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.gk-hero-badge i {
	color: #f59e0b;
	font-size: 12px;
}

.gk-section-title {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 18px;
	color: #050b16;
	font-size: 18px;
	font-weight: 900;
	letter-spacing: 0;
}

.gk-section-title:after {
	content: "";
	height: 1px;
	flex: 1;
	background: #c8d6e6;
}

.gk-popular-section {
	margin-top: -12px;
	margin-bottom: 34px;
}

.gk-popular-strip {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	padding: 4px 0 10px;
	scrollbar-color: #94a3b8 transparent;
}

.gk-popular-card {
	position: relative;
	flex: 0 0 122px;
	height: 174px;
	overflow: hidden;
	border-radius: 4px;
	background: #0f172a;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(15, 23, 42, .12);
}

.gk-popular-card:hover {
	color: #fff;
	text-decoration: none;
	transform: translateY(-2px);
}

.gk-popular-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .2s ease;
}

.gk-popular-card:hover img {
	transform: scale(1.05);
}

.gk-popular-card:after {
	content: "";
	position: absolute;
	inset: 46% 0 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(5, 8, 13, .92));
}

.gk-popular-copy {
	position: absolute;
	z-index: 1;
	left: 10px;
	right: 10px;
	bottom: 10px;
	line-height: 1.15;
}

.gk-popular-copy span {
	display: block;
	color: rgba(255, 255, 255, .86);
	font-size: 10px;
	font-weight: 700;
}

.gk-popular-copy strong {
	display: block;
	margin-top: 2px;
	color: #ff5a00;
	font-size: 14px;
	font-weight: 900;
}

.gk-discover-section {
	margin-top: 0;
}

.gk-discover-section .vch-catalog-shell {
	display: grid;
	grid-template-columns: 275px minmax(0, 1fr);
	gap: 20px;
	max-width: none;
	margin: 0;
	align-items: start;
}

.vch-filter-panel {
	position: sticky;
	top: 92px;
	align-self: start;
	overflow: hidden;
	padding: 0;
	background: #fff;
	border: 1px solid #cbd7e4;
	border-radius: 4px;
	box-shadow: none;
	color: #0f172a;
}

.vch-filter-heading,
.vch-result-count {
	display: none;
}

.vch-filter-group {
	margin: 0;
	border-bottom: 1px solid #d7e0eb;
	background: #fff;
}

.vch-filter-group:last-of-type {
	border-bottom: 0;
}

.vch-filter-toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 15px 16px;
	border: 0;
	background: #fff;
	color: #050b16;
	font-size: 14px;
	font-weight: 900;
	text-align: left;
	cursor: pointer;
}

.vch-filter-toggle i {
	color: #475569;
	font-size: 12px;
}

.vch-filter-content {
	display: none;
	padding: 0 16px 16px;
}

.vch-filter-group.is-open .vch-filter-content {
	display: block;
}

.gk-price-fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 13px;
}

.gk-price-field label {
	display: block;
	margin-bottom: 7px;
	color: #0f172a;
	font-size: 11px;
	font-weight: 700;
}

.gk-price-field input,
.vch-filter-search,
.gk-toolbar-search {
	width: 100%;
	height: 38px;
	border: 1px solid #cbd5e1;
	border-radius: 4px;
	background: #fff;
	color: #0f172a;
	font-size: 13px;
	font-family: var(--font-body);
}

.gk-price-field input {
	padding: 0 10px;
}

.vch-filter-search {
	padding: 0 12px 0 34px;
}

.vch-filter-search-wrap {
	position: relative;
	margin-bottom: 12px;
}

.vch-filter-search-wrap i {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: #64748b;
	font-size: 13px;
}

.vch-check-row {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 9px;
	min-height: 30px;
	margin: 0;
	color: #263241;
	font-size: 12px;
	font-weight: 600;
}

.vch-check-row input {
	width: 13px;
	height: 13px;
	margin: 0;
	accent-color: #2563eb;
}

.vch-check-row span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.vch-check-row em {
	color: #94a3b8;
	font-style: normal;
	font-weight: 700;
}

.vch-filter-submit {
	width: 100%;
	height: 38px;
	border: 1px solid #2563eb;
	border-radius: 4px;
	background: #fff;
	color: #2563eb;
	font-size: 13px;
	font-weight: 900;
	cursor: pointer;
}

.vch-filter-submit:hover {
	background: #eff6ff;
}

.vch-catalog-content {
	min-width: 0;
}

.vch-toolbar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 170px;
	gap: 14px;
	align-items: center;
	margin: 0 0 10px;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.vch-filter-open {
	display: none;
}

.gk-search-form {
	position: relative;
	min-width: 0;
}

.gk-search-form i {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: #64748b;
	font-size: 13px;
	pointer-events: none;
}

.gk-toolbar-search {
	height: 46px;
	padding: 0 14px 0 42px;
	box-shadow: none;
}

.gk-toolbar-search::placeholder,
.vch-filter-search::placeholder {
	color: #94a3b8;
}

.vch-sort-form {
	position: relative;
	margin: 0;
}

.vch-sort-form label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

.vch-sort-form:before {
	content: "\f0b0";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: #475569;
	font-size: 12px;
	pointer-events: none;
}

.vch-sort-form select {
	width: 100%;
	height: 46px;
	padding: 0 34px 0 38px;
	border: 1px solid #cbd5e1;
	border-radius: 4px;
	background: #fff;
	color: #0f172a;
	font-size: 12px;
	font-weight: 700;
	font-family: var(--font-body);
}

.gk-result-line {
	margin: 0 0 16px;
	color: #64748b;
	font-size: 14px;
	font-weight: 600;
}

.vch-product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(154px, 1fr));
	gap: 16px;
}

.vch-product-card {
	display: none;
	min-width: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.vch-product-card.is-visible {
	display: block;
}

.vch-product-card.is-revealing {
	animation: catReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes catReveal {
	from {
		opacity: 0;
		transform: translateY(16px) scale(0.97);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.vch-view-more.is-pulsing {
	animation: catViewMorePulse 0.4s ease;
}

@keyframes catViewMorePulse {
	0% {
		transform: scale(1);
	}
	40% {
		transform: scale(0.94);
	}
	100% {
		transform: scale(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.vch-product-card.is-revealing,
	.vch-view-more.is-pulsing {
		animation: none;
	}
}

.vch-product-link {
	position: relative;
	display: block;
	min-height: 240px;
	overflow: hidden;
	border-radius: 12px;
	background: #0f172a;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 12px 24px rgba(15, 23, 42, .14);
}

.vch-product-link:hover {
	color: #fff;
	text-decoration: none;
	transform: translateY(-2px);
}

.vch-product-art {
	position: absolute;
	inset: 0;
	height: 100%;
	background: #111827;
}

.vch-product-art img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .2s ease;
}

.vch-product-link:hover .vch-product-art img {
	transform: scale(1.04);
}

.vch-product-info {
	position: absolute;
	inset: auto 0 0;
	display: flex;
	flex-direction: column;
	min-height: 104px;
	padding: 48px 13px 13px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(5, 8, 13, .92) 43%, rgba(5, 8, 13, .98));
}

.vch-product-info h2 {
	margin: 0 0 7px;
	color: #fff;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.2;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.vch-product-info .vch-product-meta {
	display: flex;
	align-items: center;
	gap: 6px;
	min-height: 18px;
	margin: 0;
	color: rgba(255, 255, 255, .78);
	font-size: 10px;
}

.vch-product-type {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.vch-product-info .vch-badge {
	flex: 0 0 auto;
	padding: 3px 6px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0);
	color: #fff;
	font-size: 9px;
	font-weight: 900;
}

.gkcat-price-wrap {
	margin-top: 6px;
}

.gkcat-price-from {
	font-size: 11px;
	color: rgba(255, 255, 255, .76);
	margin-bottom: 2px;
}

.gkcat-price {
	color: #ff5a00;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.1;
}

.gkcat-btn-card {
	display: none;
}

.vch-view-state {
	margin-top: 24px;
	color: #475569;
}

.vch-view-more {
	border-color: #2563eb;
	background: #fff;
	color: #2563eb;
}

.vch-empty-state {
	display: block;
	text-align: center;
	padding: 56px 24px;
	border: 1px dashed rgba(255, 255, 255, 0.14);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.02);
	color: rgba(231, 234, 240, .66);
}

.vch-empty-state i {
	display: block;
	font-size: 34px;
	color: rgba(163, 230, 53, .6);
	margin-bottom: 12px;
}

.vch-empty-state h3,
.vch-empty-state h4 {
	margin: 0 0 6px;
	color: #f8fafc;
	font-weight: 700;
	text-align: center;
}

.vch-empty-state p {
	margin: 0;
	color: rgba(231, 234, 240, .66);
	font-weight: 600;
}

@media (max-width: 1024px) {
	.vch-catalog-page { padding-left: 28px; padding-right: 28px; }
	.vch-catalog-hero { grid-template-columns: 1fr; min-height: auto; }
	.gk-discover-section .vch-catalog-shell { grid-template-columns: 1fr; }
	.vch-filter-panel {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		z-index: 1200;
		width: min(330px, 88vw);
		transform: translateX(-105%);
		transition: transform .2s ease;
		border-radius: 0;
		overflow-y: auto;
	}
	.vch-filter-panel.is-open { transform: translateX(0); }
	.vch-filter-heading {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 14px 16px;
		border-bottom: 1px solid #d7e0eb;
		color: #0f172a;
	}
	.vch-filter-mobile-close {
	border: 0;
	background: transparent;
	color: #f8fafc;
	font-size: 22px;
	line-height: 1;
	width: 34px;
	height: 34px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .15s ease, color .15s ease, transform .15s ease;
}

.vch-filter-mobile-close:hover {
	background: rgba(255, 255, 255, .10);
	color: #ffb703;
	transform: scale(1.1);
}
	.vch-toolbar { grid-template-columns: auto minmax(0, 1fr) 170px; }
	.vch-filter-open {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		height: 46px;
		padding: 0 14px;
		border: 1px solid #cbd5e1;
		border-radius: 4px;
		background: #fff;
		color: #0f172a;
		font-size: 13px;
		font-weight: 800;
	}
}

@media (max-width: 768px) {
	.vch-catalog-page { padding-left: 20px; padding-right: 20px; }
	.vch-hero-title-wrap h1 { font-size: 24px; }
	.vch-toolbar { grid-template-columns: 1fr; }
	.vch-filter-open { width: 100%; }
	.vch-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
	.vch-product-link { min-height: 230px; }
}

@media (min-width: 601px) and (max-width: 960px) {
	.vch-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
}

@media (max-width: 480px) {
	.vch-catalog-page { padding-left: 12px; padding-right: 12px; }
	.vch-catalog-hero { padding-top: 18px; }
	.gk-breadcrumb { margin-bottom: 22px; }
	.gk-hero-badges { gap: 6px; }
	.gk-hero-badge { font-size: clamp(7px, 2.2vw, 12px); padding: 6px 5px; }
	.gk-popular-card { flex-basis: 108px; height: 158px; }
	.vch-product-link { min-height: 210px; }
}

.vch-hero-title-wrap {
	padding: 2px 0 0;
	isolation: auto;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	overflow: visible;
	transition: none;
}

.vch-hero-title-wrap:before,
.vch-hero-title-wrap:after {
	display: none;
	content: none;
}

.vch-hero-title-wrap:hover {
	transform: none;
	box-shadow: none;
}

.vch-filter-panel {
	min-height: auto;
}

.vch-sort-form {
	display: block;
}

/* ── Custom Sort Dropdown ── */
.gk-sort-dropdown {
	position: relative;
	min-width: 170px;
}

.gk-sort-trigger {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	height: 46px;
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, .10);
	border-radius: 8px;
	background: #0b1118;
	color: #f8fafc;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	transition: border-color .15s ease, box-shadow .15s ease;
	user-select: none;
}

.gk-sort-trigger:hover {
	border-color: rgba(255, 183, 3, .45);
}

.gk-sort-trigger[aria-expanded="true"] {
	border-color: rgba(255, 183, 3, .72);
	box-shadow: 0 0 0 3px rgba(255, 183, 3, .10);
}

.gk-sort-trigger i {
	color: #64748b;
	font-size: 12px;
	flex-shrink: 0;
}

.gk-sort-trigger span {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gk-sort-chev {
	flex-shrink: 0;
	color: #64748b;
	transition: transform .15s ease;
}

.gk-sort-trigger[aria-expanded="true"] .gk-sort-chev {
	transform: rotate(180deg);
}

.gk-sort-menu {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	margin: 0;
	padding: 6px;
	list-style: none;
	background: #0d1219;
	border: 1px solid rgba(255, 255, 255, .10);
	border-radius: 10px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, .55);
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transform: translateY(4px) scale(.97);
	transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}

.gk-sort-menu.is-open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}

.gk-sort-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 10px 12px;
	border-radius: 6px;
	color: rgba(248, 250, 252, .78);
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	transition: background .12s ease, color .12s ease;
}

.gk-sort-option:hover {
	background: rgba(255, 255, 255, .06);
	color: #f8fafc;
}

.gk-sort-option.is-active {
	color: #ffb703;
}

.gk-sort-option i {
	font-size: 10px;
	color: #ffb703;
}

.vch-product-card:hover {
	transform: none;
	border-color: transparent;
	box-shadow: none;
}

.vch-product-meta.no-badge {
	justify-content: flex-start;
}

.vch-product-art:after {
	display: none;
	content: none;
}

body,
#wrapper {
	background: #000;
	color: var(--text);
}

.vch-catalog-page {
	background:
		radial-gradient(760px 260px at 76% 0%, rgba(255, 183, 3, .10), transparent 62%),
		linear-gradient(180deg, #050608 0%, #000 56%, #000 100%);
	color: var(--text);
}

.vch-catalog-hero:after {
	background:
		radial-gradient(closest-side, rgba(255, 183, 3, .16), transparent 70%),
		linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 183, 3, .08));
	opacity: .75;
}

.gk-breadcrumb,
.gk-breadcrumb span {
	color: rgba(231, 234, 240, .58);
}

.gk-breadcrumb a {
	color: #ffb703;
}

.vch-hero-title-wrap h1,
.gk-section-title {
	color: #f8fafc;
}

.vch-hero-title-wrap p,
.gk-result-line,
.vch-view-state {
	color: rgba(231, 234, 240, .68);
}

.gk-section-title:after {
	background: linear-gradient(90deg, rgba(255, 183, 3, .55), rgba(255, 255, 255, .08));
}

.gk-hero-badge {
	background: rgba(10, 14, 22, .82);
	border-color: rgba(255, 183, 3, .58);
	color: #f8fafc;
}

.vch-filter-panel,
.vch-filter-group,
.vch-filter-toggle,
.vch-filter-heading {
	background: #0e1218;
	color: var(--text);
	border-color: rgba(255, 255, 255, .08);
}

.vch-filter-panel {
	box-shadow: 0 18px 45px rgba(0, 0, 0, .34);
}

.vch-filter-group {
	border-bottom-color: rgba(255, 255, 255, .08);
}

.vch-filter-toggle,
.gk-price-field label,
.vch-empty-state h3,
.vch-empty-state h4 {
	color: #f8fafc;
}

.vch-check-row {
	color: rgba(231, 234, 240, .76);
}

.vch-check-row em {
	color: rgba(231, 234, 240, .42);
}

.gk-price-field input,
.vch-filter-search,
.gk-toolbar-search,
.vch-sort-form select {
	background: #0b1118;
	border-color: rgba(255, 255, 255, .10);
	color: #f8fafc;
}

.gk-price-field input:focus,
.vch-filter-search:focus,
.gk-toolbar-search:focus,
.vch-sort-form select:focus {
	outline: none;
	border-color: rgba(255, 183, 3, .72);
	box-shadow: 0 0 0 3px rgba(255, 183, 3, .14);
}

.gk-toolbar-search::placeholder,
.vch-filter-search::placeholder {
	color: rgba(231, 234, 240, .38);
}

.vch-filter-submit,
.vch-view-more,
.vch-filter-open {
	background: transparent;
	border-color: rgba(255, 183, 3, .72);
	color: #ffb703;
}

.vch-filter-submit:hover,
.vch-view-more:hover,
.vch-filter-open:hover {
	background: rgba(255, 183, 3, .10);
	color: #ffb703;
}

.vch-product-link,
.gk-popular-card {
	background: #0e1218;
	box-shadow: 0 14px 34px rgba(0, 0, 0, .36);
}

.vch-empty-state {
	color: rgba(231, 234, 240, .66);
}

@media (max-width: 1024px) {
	.vch-filter-mobile-close {
		color: #f8fafc;
	}
}

.vch-catalog-page {
	background: #000;
}

.vch-catalog-hero:after {
	display: none;
	content: none;
}

.vch-filter-panel {
	background: #0b1017;
	border: 1px solid rgba(148, 163, 184, .18);
	border-radius: 8px;
	overflow: hidden;
	box-shadow:
		0 18px 48px rgba(0, 0, 0, .34),
		inset 0 1px 0 rgba(255, 255, 255, .035);
}

.vch-filter-group {
	background: #11161d;
	border-bottom: 1px solid rgba(148, 163, 184, .16);
}

.vch-filter-group:last-of-type {
	border-bottom: 0;
}

.vch-filter-toggle {
	min-height: 50px;
	padding: 18px 17px 10px;
	background: transparent;
	color: #f8fafc;
	font-family: var(--font-heading);
	font-size: 13.5px;
	font-weight: 900;
	letter-spacing: .2px;
	text-transform: uppercase;
}

.vch-filter-toggle:hover {
	background: rgba(255, 255, 255, .025);
}

.vch-filter-toggle i {
	color: #64748b;
	font-size: 12px;
}

.vch-filter-content {
	padding: 0 17px 18px;
}

.gk-price-fields {
	gap: 14px;
	margin-bottom: 18px;
}

.gk-price-field label {
	margin-bottom: 8px;
	color: #f8fafc;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .35px;
	text-transform: uppercase;
}

.gk-price-field input,
.vch-filter-search {
	height: 38px;
	background: #0b1118;
	border: 1px solid rgba(148, 163, 184, .20);
	border-radius: 4px;
	color: #f8fafc;
	font-weight: 700;
}

.gk-price-field input:hover,
.vch-filter-search:hover {
	border-color: rgba(148, 163, 184, .34);
}

.vch-filter-submit {
	height: 38px;
	border: 0;
	border-radius: 4px;
	background: linear-gradient(135deg, #ffc928 0%, #ffb31a 42%, #ff5a3d 100%);
	color: rgba(255, 255, 255, .48);
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .25px;
	text-transform: uppercase;
	box-shadow:
		0 10px 24px rgba(255, 90, 0, .18),
		inset 0 1px 0 rgba(255, 255, 255, .24);
}

.vch-filter-submit:hover {
	background: linear-gradient(135deg, #ffd447 0%, #ffba22 42%, #ff633f 100%);
	color: #000000;
}

.vch-filter-search-wrap {
	margin-bottom: 15px;
}

.vch-filter-search-wrap i {
	left: 13px;
	color: #64748b;
	font-size: 14px;
}

.vch-filter-search {
	padding-left: 36px;
	font-size: 13px;
	font-weight: 600;
}

.vch-check-row {
	grid-template-columns: 14px minmax(0, 1fr) auto;
	gap: 9px;
	min-height: 39px;
	padding: 0 0 1px;
	border-bottom: 1px solid rgba(148, 163, 184, .09);
	color: rgba(248, 250, 252, .86);
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .28px;
	text-transform: uppercase;
}

.vch-check-row:last-child {
	border-bottom: 0;
}

.vch-check-row input {
	width: 13px;
	height: 13px;
	accent-color: #3b82f6;
}

.vch-check-row em {
	color: #64748b;
	font-size: 12px;
	font-style: normal;
	font-weight: 900;
}

.vch-filter-heading {
	background: #11161d;
	border-bottom-color: rgba(148, 163, 184, .16);
}

@media (max-width: 1024px) {
	.vch-filter-panel {
		border-radius: 0 8px 8px 0;
	}
}

/* ── Filter panel final ── */
.vch-filter-panel {
	padding: 0;
	background: #0d1219;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
}

.vch-filter-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	background: rgba(255, 255, 255, .03);
	color: #f8fafc;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .4px;
	text-transform: uppercase;
}

.vch-filter-heading i {
	color: #ffb703;
	margin-right: 8px;
}

.vch-filter-body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.vch-filter-section {
	padding-bottom: 14px;
	margin-bottom: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.vch-filter-section:last-of-type {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

.vch-filter-label {
	margin: 0 0 10px;
	color: rgba(255, 255, 255, .45);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .6px;
	text-transform: uppercase;
}

.gk-price-field input {
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .10);
	border-radius: 6px;
	color: #f8fafc;
	padding: 0 10px;
}

.gk-price-field input:focus {
	border-color: rgba(255, 183, 3, .6);
	box-shadow: 0 0 0 3px rgba(255, 183, 3, .10);
	outline: none;
}

.gk-price-field input::-webkit-outer-spin-button,
.gk-price-field input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.gk-price-field input[type="number"] {
	-moz-appearance: textfield;
}

.vch-check-row {
	min-height: 34px;
	border-bottom: 1px solid rgba(255, 255, 255, .04);
	font-size: 12px;
	letter-spacing: .2px;
	color: rgba(248, 250, 252, .82);
}

.vch-check-row:last-child {
	border-bottom: 0;
}

.vch-check-row input[type="checkbox"],
.vch-check-row input[type="radio"] {
	accent-color: #ffb703;
	width: 14px;
	height: 14px;
}

.vch-check-row em {
	color: rgba(255, 255, 255, .30);
	font-size: 11px;
}

.vch-filter-submit {
	width: 100%;
	height: 40px;
	margin-top: 16px;
	border: 0;
	border-radius: 8px;
	background: linear-gradient(135deg, #ffb703, #ff8c00);
	color: #0c0a00;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .5px;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(255, 140, 0, .28);
}

.vch-filter-submit:hover {
	background: linear-gradient(135deg, #ffc72b, #ff9d1a);
}

@media (max-width: 1024px) {
	.vch-filter-panel { border-radius: 0 12px 12px 0; }
	.vch-filter-heading { display: flex; }
}

/* ── Filter overlay (mobile/tablet) ── */
.vch-filter-overlay {
	display: none;
}

@media (max-width: 1024px) {
	.vch-filter-overlay {
		display: none;
		position: fixed;
		inset: 0;
		z-index: 1199;
		background: rgba(0, 0, 0, .70);
		backdrop-filter: blur(4px);
		-webkit-backdrop-filter: blur(4px);
		opacity: 0;
		transition: opacity .2s ease;
	}
	.vch-filter-overlay.is-open {
		display: block;
		opacity: 1;
	}
}

/* Final width guard: keep catalog aligned with the site's standard content width. */
.vch-catalog-page {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.vch-catalog-hero,
.gk-popular-section,
.gk-discover-section {
	width: 100%;
	max-width: var(--max, 1180px) !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: 18px;
	padding-right: 18px;
}

.gk-discover-section .vch-catalog-shell {
	display: block !important;
	grid-template-columns: minmax(0, 1fr) !important;
	width: 100%;
	max-width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.vch-catalog-content {
	width: 100%;
	min-width: 0;
}

.vch-toolbar {
	grid-template-columns: minmax(0, 1fr) 170px !important;
}

.vch-filter-open {
	display: none !important;
}

@media (max-width: 768px) {
	.vch-toolbar {
		grid-template-columns: 1fr !important;
	}
}

.mkt-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}

.mkt-chip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	background: rgba(99, 102, 241, 0.12);
	border: 1px solid rgba(99, 102, 241, 0.3);
	color: #c7c9ff;
	transition: 0.15s ease;
}

.mkt-chip:hover {
	background: rgba(99, 102, 241, 0.2);
	color: #fff;
}

.mkt-chip i {
	font-size: 10px;
}

.mkt-chip-clear {
	background: transparent;
	border-color: var(--vch-border);
	color: var(--vch-muted);
}
