/* ==========================================================================
   SKETLIX PREMIUM HEADER
   File: assets/css/header.css
   ========================================================================== */

/* ==========================================================================
   1. ROOT VARIABLES
   ========================================================================== */

:root {
	--sk-v2-primary: #2563eb;
	--sk-v2-primary-dark: #1d4ed8;
	--sk-v2-primary-deep: #172554;
	--sk-v2-secondary: #7c3aed;
	--sk-v2-accent: #06b6d4;
	--sk-v2-success: #16a34a;
	--sk-v2-whatsapp: #25d366;

	--sk-v2-text: #111827;
	--sk-v2-text-soft: #4b5563;
	--sk-v2-muted: #6b7280;

	--sk-v2-white: #ffffff;
	--sk-v2-background: #f7f9ff;
	--sk-v2-background-soft: #eef4ff;
	--sk-v2-border: rgba(37, 99, 235, 0.12);
	--sk-v2-border-strong: rgba(37, 99, 235, 0.22);

	--sk-v2-shadow-sm: 0 5px 18px rgba(15, 23, 42, 0.07);
	--sk-v2-shadow-md: 0 12px 35px rgba(15, 23, 42, 0.12);
	--sk-v2-shadow-lg: 0 22px 60px rgba(15, 23, 42, 0.18);

	--sk-v2-radius-sm: 10px;
	--sk-v2-radius-md: 15px;
	--sk-v2-radius-lg: 22px;
	--sk-v2-radius-pill: 999px;

	--sk-v2-container: 1520px;
	--sk-v2-transition: 0.28s ease;
}


/* ==========================================================================
   2. GLOBAL HEADER RESET
   ========================================================================== */

body.sketlix-v2-active {
	overflow-x: hidden;
}

body.sketlix-v2-active .site {
	overflow: visible;
}

.sk-v2-header,
.sk-v2-header *,
.sk-v2-header *::before,
.sk-v2-header *::after {
	box-sizing: border-box;
}

.sk-v2-header {
	position: relative;
	z-index: 999;
	width: 100%;
	font-family: "Poppins", Arial, Helvetica, sans-serif;
	color: var(--sk-v2-text);
	background: var(--sk-v2-white);
}

.sk-v2-header a {
	color: inherit;
	text-decoration: none;
}

.sk-v2-header ul,
.sk-v2-header ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sk-v2-header button,
.sk-v2-header input,
.sk-v2-header select {
	font: inherit;
}

.sk-v2-header button {
	border: 0;
	outline: 0;
	cursor: pointer;
}

.sk-v2-header img,
.sk-v2-header svg {
	display: block;
}

.sk-v2-header svg {
	flex: 0 0 auto;
}

.sk-v2-container {
	width: min(calc(100% - 32px), var(--sk-v2-container));
	margin-inline: auto;
}

.sk-v2-site-content {
	position: relative;
	z-index: 1;
}

.sk-v2-skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 999999;
	padding: 12px 18px;
	border-radius: 10px;
	color: #ffffff;
	background: #111827;
	transform: translateY(-150%);
	transition: transform var(--sk-v2-transition);
}

.sk-v2-skip-link:focus {
	transform: translateY(0);
}

.sk-v2-header :focus-visible {
	outline: 3px solid rgba(37, 99, 235, 0.35);
	outline-offset: 3px;
}


/* ==========================================================================
   3. TOP ANNOUNCEMENT BAR
   ========================================================================== */

.sk-v2-topbar {
	position: relative;
	overflow: hidden;
	color: rgba(255, 255, 255, 0.96);
	background:
		linear-gradient(
			110deg,
			#111d55 0%,
			#1d4ed8 40%,
			#4f46e5 72%,
			#7c3aed 100%
		);
}

.sk-v2-topbar::before,
.sk-v2-topbar::after {
	position: absolute;
	content: "";
	pointer-events: none;
	border-radius: 50%;
	filter: blur(8px);
}

.sk-v2-topbar::before {
	top: -45px;
	left: 8%;
	width: 130px;
	height: 130px;
	background: rgba(34, 211, 238, 0.18);
}

.sk-v2-topbar::after {
	right: 7%;
	bottom: -55px;
	width: 150px;
	height: 150px;
	background: rgba(255, 255, 255, 0.11);
}

.sk-v2-topbar-inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 38px;
}

.sk-v2-topbar-message {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: 0.01em;
}

.sk-v2-topbar-message > span:last-child {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.sk-v2-topbar-badge {
	display: grid;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.11);
	backdrop-filter: blur(10px);
}

.sk-v2-topbar-links {
	display: flex;
	align-items: center;
	gap: 20px;
	flex: 0 0 auto;
}

.sk-v2-topbar-links a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 12px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.92);
	transition:
		color var(--sk-v2-transition),
		transform var(--sk-v2-transition);
}

.sk-v2-topbar-links a:hover {
	color: #ffffff;
	transform: translateY(-1px);
}


/* ==========================================================================
   4. MAIN HEADER
   ========================================================================== */

.sk-v2-main-header {
	position: relative;
	z-index: 20;
	border-bottom: 1px solid var(--sk-v2-border);
	background:
		radial-gradient(
			circle at 4% 50%,
			rgba(59, 130, 246, 0.09),
			transparent 22%
		),
		radial-gradient(
			circle at 92% 10%,
			rgba(124, 58, 237, 0.07),
			transparent 24%
		),
		#ffffff;
}

.sk-v2-main-header-inner {
	display: grid;
	grid-template-columns: auto minmax(360px, 1fr) auto;
	align-items: center;
	gap: 28px;
	min-height: 102px;
	padding-block: 14px;
}


/* ==========================================================================
   5. LOGO
   ========================================================================== */

.sk-v2-logo-wrap {
	min-width: 0;
}

.sk-v2-logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.sk-v2-logo img {
	width: 70px;
	height: 70px;
	flex: 0 0 70px;
	object-fit: cover;
	border: 3px solid rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	background: #ffffff;
	box-shadow:
		0 8px 22px rgba(37, 99, 235, 0.18),
		0 0 0 1px rgba(37, 99, 235, 0.1);
	transition:
		transform var(--sk-v2-transition),
		box-shadow var(--sk-v2-transition);
}

.sk-v2-logo:hover img {
	transform: translateY(-2px) rotate(-2deg);
	box-shadow:
		0 14px 30px rgba(37, 99, 235, 0.24),
		0 0 0 1px rgba(37, 99, 235, 0.15);
}

.sk-v2-logo-content {
	display: flex;
	flex-direction: column;
	min-width: 0;
	line-height: 1.1;
}

.sk-v2-logo-content strong {
	font-size: 25px;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #13214f;
}

.sk-v2-logo-content small {
	margin-top: 5px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sk-v2-primary);
}


/* ==========================================================================
   6. DESKTOP SEARCH
   ========================================================================== */

.sk-v2-search-wrap {
	min-width: 0;
	max-width: 760px;
	width: 100%;
	margin-inline: auto;
}

.sk-v2-search-form {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: stretch;
	height: 52px;
	border: 1px solid rgba(37, 99, 235, 0.18);
	border-radius: 15px;
	background: #ffffff;
	box-shadow:
		0 8px 22px rgba(15, 23, 42, 0.07),
		inset 0 0 0 1px rgba(255, 255, 255, 0.75);
	transition:
		border-color var(--sk-v2-transition),
		box-shadow var(--sk-v2-transition),
		transform var(--sk-v2-transition);
}

.sk-v2-search-form:focus-within {
	border-color: rgba(37, 99, 235, 0.48);
	box-shadow:
		0 12px 30px rgba(37, 99, 235, 0.14),
		0 0 0 4px rgba(37, 99, 235, 0.08);
	transform: translateY(-1px);
}

.sk-v2-search-select-wrap {
	position: relative;
	display: flex;
	align-items: center;
	min-width: 136px;
	border-right: 1px solid rgba(37, 99, 235, 0.12);
	background: linear-gradient(180deg, #f8fbff 0%, #f0f5ff 100%);
	border-radius: 14px 0 0 14px;
}

.sk-v2-search-category {
	width: 100%;
	height: 100%;
	padding: 0 37px 0 16px;
	border: 0;
	outline: 0;
	appearance: none;
	font-size: 12px;
	font-weight: 600;
	color: #23305f;
	background: transparent;
	cursor: pointer;
}

.sk-v2-select-arrow {
	position: absolute;
	right: 15px;
	top: 50%;
	color: var(--sk-v2-primary);
	pointer-events: none;
	transform: translateY(-50%);
}

.sk-v2-search-input-wrap {
	position: relative;
	display: flex;
	align-items: center;
	min-width: 0;
}

.sk-v2-search-input-wrap input[type="search"] {
	width: 100%;
	height: 100%;
	padding: 0 62px 0 18px;
	border: 0;
	outline: 0;
	font-size: 13px;
	font-weight: 500;
	color: #111827;
	background: transparent;
}

.sk-v2-search-input-wrap input[type="search"]::placeholder {
	color: #8b95a7;
	opacity: 1;
}

.sk-v2-search-input-wrap input[type="search"]::-webkit-search-cancel-button {
	display: none;
}

.sk-v2-search-submit {
	position: absolute;
	top: 50%;
	right: 6px;
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	border-radius: 11px;
	color: #ffffff;
	background:
		linear-gradient(
			135deg,
			var(--sk-v2-primary) 0%,
			var(--sk-v2-secondary) 100%
		);
	box-shadow: 0 8px 18px rgba(37, 99, 235, 0.24);
	transform: translateY(-50%);
	transition:
		transform var(--sk-v2-transition),
		box-shadow var(--sk-v2-transition),
		filter var(--sk-v2-transition);
}

.sk-v2-search-submit:hover {
	filter: saturate(1.12);
	box-shadow: 0 10px 24px rgba(37, 99, 235, 0.32);
	transform: translateY(-50%) scale(1.04);
}

.sk-v2-search-suggestions {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 21px;
	padding: 5px 4px 0;
	font-size: 10.5px;
	line-height: 1;
	color: var(--sk-v2-muted);
}

.sk-v2-search-suggestions span {
	font-weight: 600;
	color: #6b7280;
}

.sk-v2-search-suggestions a {
	position: relative;
	font-weight: 600;
	color: #4f5d7a;
	transition: color var(--sk-v2-transition);
}

.sk-v2-search-suggestions a:not(:last-child)::after {
	position: absolute;
	top: 50%;
	right: -6px;
	width: 2px;
	height: 2px;
	content: "";
	border-radius: 50%;
	background: #aeb8c9;
	transform: translateY(-50%);
}

.sk-v2-search-suggestions a:hover {
	color: var(--sk-v2-primary);
}


/* ==========================================================================
   7. HEADER ACTIONS
   ========================================================================== */

.sk-v2-header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 9px;
}

.sk-v2-action {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 48px;
	padding: 7px 10px;
	border: 1px solid transparent;
	border-radius: 13px;
	transition:
		background var(--sk-v2-transition),
		border-color var(--sk-v2-transition),
		box-shadow var(--sk-v2-transition),
		transform var(--sk-v2-transition);
}

.sk-v2-action:hover {
	border-color: var(--sk-v2-border);
	background: rgba(240, 245, 255, 0.75);
	box-shadow: var(--sk-v2-shadow-sm);
	transform: translateY(-2px);
}

.sk-v2-action-icon {
	position: relative;
	display: grid;
	flex: 0 0 39px;
	width: 39px;
	height: 39px;
	place-items: center;
	border: 1px solid rgba(37, 99, 235, 0.12);
	border-radius: 12px;
	color: var(--sk-v2-primary);
	background:
		linear-gradient(
			145deg,
			#ffffff 0%,
			#eef4ff 100%
		);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

.sk-v2-action-text {
	display: flex;
	flex-direction: column;
	min-width: 0;
	line-height: 1.08;
	white-space: nowrap;
}

.sk-v2-action-text small {
	font-size: 9.5px;
	font-weight: 500;
	color: #7b8494;
}

.sk-v2-action-text strong {
	margin-top: 4px;
	font-size: 11.5px;
	font-weight: 700;
	color: #1f2c52;
}

.sk-v2-whatsapp-action .sk-v2-action-icon {
	color: #ffffff;
	border-color: rgba(37, 211, 102, 0.35);
	background:
		linear-gradient(
			135deg,
			#20bd5a 0%,
			#25d366 100%
		);
	box-shadow: 0 8px 18px rgba(37, 211, 102, 0.22);
}

.sk-v2-cart-icon em {
	position: absolute;
	top: -6px;
	right: -6px;
	display: grid;
	min-width: 19px;
	height: 19px;
	padding-inline: 5px;
	place-items: center;
	border: 2px solid #ffffff;
	border-radius: 50px;
	font-size: 9px;
	font-style: normal;
	font-weight: 800;
	line-height: 1;
	color: #ffffff;
	background:
		linear-gradient(
			135deg,
			#ef4444 0%,
			#f97316 100%
		);
	box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

.sk-v2-mobile-search-toggle,
.sk-v2-mobile-toggle {
	display: none;
}


/* ==========================================================================
   8. NAVIGATION BAR
   ========================================================================== */

.sk-v2-navigation-bar {
	position: relative;
	z-index: 18;
	border-bottom: 1px solid rgba(37, 99, 235, 0.12);
	background:
		linear-gradient(
			90deg,
			#f8fbff 0%,
			#ffffff 48%,
			#f8f7ff 100%
		);
	box-shadow: 0 7px 18px rgba(15, 23, 42, 0.04);
}

.sk-v2-navigation-inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 22px;
	min-height: 58px;
}


/* ==========================================================================
   9. BROWSE ASSETS DROPDOWN
   ========================================================================== */

.sk-v2-category-navigation {
	position: relative;
	align-self: stretch;
}

.sk-v2-category-toggle {
	display: flex;
	align-items: center;
	gap: 10px;
	height: 100%;
	min-width: 195px;
	padding: 0 17px;
	border-radius: 0;
	color: #ffffff;
	background:
		linear-gradient(
			135deg,
			#172554 0%,
			#1d4ed8 55%,
			#4f46e5 100%
		);
	box-shadow: 0 8px 24px rgba(29, 78, 216, 0.21);
	transition:
		filter var(--sk-v2-transition),
		box-shadow var(--sk-v2-transition);
}

.sk-v2-category-toggle:hover,
.sk-v2-category-toggle[aria-expanded="true"] {
	filter: brightness(1.08);
	box-shadow: 0 10px 28px rgba(29, 78, 216, 0.28);
}

.sk-v2-category-toggle > span {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.sk-v2-category-arrow {
	margin-left: auto;
	transition: transform var(--sk-v2-transition);
}

.sk-v2-category-toggle[aria-expanded="true"] .sk-v2-category-arrow {
	transform: rotate(180deg);
}

.sk-v2-category-dropdown {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	width: 385px;
	padding: 14px;
	border: 1px solid rgba(37, 99, 235, 0.13);
	border-radius: 18px;
	visibility: hidden;
	opacity: 0;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: var(--sk-v2-shadow-lg);
	backdrop-filter: blur(18px);
	transform: translateY(10px);
	transition:
		opacity var(--sk-v2-transition),
		visibility var(--sk-v2-transition),
		transform var(--sk-v2-transition);
}

.sk-v2-category-navigation:hover .sk-v2-category-dropdown,
.sk-v2-category-navigation:focus-within .sk-v2-category-dropdown,
.sk-v2-category-toggle[aria-expanded="true"] + .sk-v2-category-dropdown {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.sk-v2-category-dropdown-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 4px 6px 12px;
	border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.sk-v2-category-dropdown-head span {
	font-size: 12px;
	font-weight: 800;
	color: #1b2852;
}

.sk-v2-category-dropdown-head a {
	font-size: 10.5px;
	font-weight: 700;
	color: var(--sk-v2-primary);
}

.sk-v2-category-dropdown ul {
	display: grid;
	gap: 7px;
	padding-top: 10px;
}

.sk-v2-category-dropdown li a {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	padding: 10px;
	border: 1px solid transparent;
	border-radius: 13px;
	transition:
		background var(--sk-v2-transition),
		border-color var(--sk-v2-transition),
		transform var(--sk-v2-transition);
}

.sk-v2-category-dropdown li a:hover {
	border-color: rgba(37, 99, 235, 0.12);
	background:
		linear-gradient(
			135deg,
			rgba(239, 246, 255, 0.95) 0%,
			rgba(245, 243, 255, 0.95) 100%
		);
	transform: translateX(3px);
}

.sk-v2-category-icon {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 12px;
	color: var(--sk-v2-primary);
	background:
		linear-gradient(
			135deg,
			#eff6ff 0%,
			#eef2ff 100%
		);
	box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.1);
}

.sk-v2-category-dropdown li a > span:nth-child(2) {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.sk-v2-category-dropdown strong {
	font-size: 12px;
	font-weight: 700;
	color: #1f2b50;
}

.sk-v2-category-dropdown small {
	margin-top: 3px;
	overflow: hidden;
	font-size: 9.5px;
	font-weight: 500;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #778096;
}

.sk-v2-link-arrow {
	color: #8d99ae;
	transition:
		color var(--sk-v2-transition),
		transform var(--sk-v2-transition);
}

.sk-v2-category-dropdown li a:hover .sk-v2-link-arrow {
	color: var(--sk-v2-primary);
	transform: translateX(2px);
}


/* ==========================================================================
   10. DESKTOP MENU
   ========================================================================== */

.sk-v2-desktop-nav {
	min-width: 0;
}

.sk-v2-menu {
	display: flex;
	align-items: center;
	gap: 2px;
}

.sk-v2-menu > li {
	position: relative;
}

.sk-v2-menu > li > a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 58px;
	padding: 0 13px;
	font-size: 11.5px;
	font-weight: 600;
	color: #273252;
	transition: color var(--sk-v2-transition);
}

.sk-v2-menu > li > a::after {
	position: absolute;
	right: 13px;
	bottom: 0;
	left: 13px;
	height: 3px;
	content: "";
	border-radius: 999px 999px 0 0;
	background:
		linear-gradient(
			90deg,
			var(--sk-v2-primary),
			var(--sk-v2-secondary)
		);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform var(--sk-v2-transition);
}

.sk-v2-menu > li:hover > a,
.sk-v2-menu > li.current-menu-item > a,
.sk-v2-menu > li.current-menu-ancestor > a {
	color: var(--sk-v2-primary);
}

.sk-v2-menu > li:hover > a::after,
.sk-v2-menu > li.current-menu-item > a::after,
.sk-v2-menu > li.current-menu-ancestor > a::after {
	transform: scaleX(1);
}

.sk-v2-menu .menu-item-has-children > a {
	gap: 7px;
}

.sk-v2-menu .menu-item-has-children > a::before {
	order: 2;
	width: 6px;
	height: 6px;
	margin-top: -4px;
	content: "";
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
}

.sk-v2-menu .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	min-width: 220px;
	padding: 9px;
	border: 1px solid rgba(37, 99, 235, 0.12);
	border-radius: 14px;
	visibility: hidden;
	opacity: 0;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: var(--sk-v2-shadow-md);
	backdrop-filter: blur(14px);
	transform: translateY(10px);
	transition:
		opacity var(--sk-v2-transition),
		visibility var(--sk-v2-transition),
		transform var(--sk-v2-transition);
}

.sk-v2-menu li:hover > .sub-menu,
.sk-v2-menu li:focus-within > .sub-menu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.sk-v2-menu .sub-menu li {
	position: relative;
}

.sk-v2-menu .sub-menu a {
	display: flex;
	align-items: center;
	min-height: 39px;
	padding: 9px 11px;
	border-radius: 9px;
	font-size: 11px;
	font-weight: 600;
	color: #34405e;
	transition:
		color var(--sk-v2-transition),
		background var(--sk-v2-transition),
		transform var(--sk-v2-transition);
}

.sk-v2-menu .sub-menu a:hover {
	color: var(--sk-v2-primary);
	background: #f1f5ff;
	transform: translateX(3px);
}

.sk-v2-menu .sub-menu .sub-menu {
	top: -9px;
	left: calc(100% + 9px);
}


/* ==========================================================================
   11. NAVIGATION EXTRA ACTIONS
   ========================================================================== */

.sk-v2-nav-extra {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}

.sk-v2-instagram-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 10.5px;
	font-weight: 700;
	color: #3f4964;
	transition:
		color var(--sk-v2-transition),
		transform var(--sk-v2-transition);
}

.sk-v2-instagram-link:hover {
	color: #c026d3;
	transform: translateY(-1px);
}

.sk-v2-contact-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 38px;
	padding: 0 14px;
	border: 1px solid rgba(37, 99, 235, 0.14);
	border-radius: 10px;
	font-size: 10px;
	font-weight: 700;
	color: #ffffff;
	background:
		linear-gradient(
			135deg,
			var(--sk-v2-primary) 0%,
			var(--sk-v2-secondary) 100%
		);
	box-shadow: 0 8px 18px rgba(37, 99, 235, 0.2);
	transition:
		transform var(--sk-v2-transition),
		box-shadow var(--sk-v2-transition),
		filter var(--sk-v2-transition);
}

.sk-v2-contact-button:hover {
	color: #ffffff;
	filter: saturate(1.1);
	box-shadow: 0 11px 24px rgba(37, 99, 235, 0.28);
	transform: translateY(-2px);
}

.sk-v2-contact-button svg {
	transition: transform var(--sk-v2-transition);
}

.sk-v2-contact-button:hover svg {
	transform: translateX(3px);
}


/* ==========================================================================
   12. MOBILE SEARCH PANEL
   ========================================================================== */

.sk-v2-mobile-search {
	display: none;
}


/* ==========================================================================
   13. MOBILE DRAWER
   ========================================================================== */

.sk-v2-mobile-panel {
	display: none;
}


/* ==========================================================================
   14. STICKY HEADER SUPPORT
   ========================================================================== */

body.sk-v2-header-sticky .sk-v2-navigation-bar {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 998;
	animation: skV2StickyDrop 0.3s ease both;
}

body.admin-bar.sk-v2-header-sticky .sk-v2-navigation-bar {
	top: 32px;
}

@keyframes skV2StickyDrop {
	from {
		opacity: 0;
		transform: translateY(-100%);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}


/* ==========================================================================
   15. LARGE DESKTOP
   ========================================================================== */

@media (max-width: 1380px) {
	.sk-v2-main-header-inner {
		grid-template-columns: auto minmax(320px, 1fr) auto;
		gap: 20px;
	}

	.sk-v2-logo-content {
		display: none;
	}

	.sk-v2-action-text {
		display: none;
	}

	.sk-v2-action {
		padding: 5px;
	}

	.sk-v2-search-wrap {
		max-width: 700px;
	}

	.sk-v2-menu > li > a {
		padding-inline: 10px;
		font-size: 11px;
	}

	.sk-v2-nav-extra {
		gap: 8px;
	}

	.sk-v2-instagram-link span {
		display: none;
	}
}


/* ==========================================================================
   16. TABLET AND SMALL LAPTOP
   ========================================================================== */

@media (max-width: 1100px) {
	.sk-v2-topbar-links a span {
		display: none;
	}

	.sk-v2-main-header-inner {
		grid-template-columns: auto minmax(0, 1fr) auto;
		min-height: 84px;
		padding-block: 11px;
	}

	.sk-v2-logo img {
		width: 60px;
		height: 60px;
		flex-basis: 60px;
	}

	.sk-v2-search-form {
		height: 48px;
	}

	.sk-v2-search-suggestions {
		display: none;
	}

	.sk-v2-navigation-inner {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.sk-v2-nav-extra {
		display: none;
	}

	.sk-v2-category-toggle {
		min-width: 178px;
	}

	.sk-v2-menu {
		justify-content: flex-end;
	}

	.sk-v2-menu > li > a {
		padding-inline: 9px;
		font-size: 10.5px;
	}
}


/* ==========================================================================
   17. MOBILE HEADER
   ========================================================================== */

@media (max-width: 900px) {
	body.sk-v2-mobile-open {
		overflow: hidden;
	}

	.sk-v2-container {
		width: min(calc(100% - 24px), var(--sk-v2-container));
	}

	.sk-v2-topbar-inner {
		min-height: 34px;
		justify-content: center;
	}

	.sk-v2-topbar-message {
		justify-content: center;
		width: 100%;
		font-size: 10px;
		text-align: center;
	}

	.sk-v2-topbar-badge {
		width: 21px;
		height: 21px;
		flex-basis: 21px;
	}

	.sk-v2-topbar-links {
		display: none;
	}

	.sk-v2-main-header {
		box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
	}

	.sk-v2-main-header-inner {
		display: grid;
		grid-template-columns: 42px minmax(0, 1fr) auto;
		gap: 10px;
		min-height: 72px;
		padding-block: 8px;
	}

	.sk-v2-mobile-toggle {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 5px;
		width: 42px;
		height: 42px;
		padding: 0;
		border: 1px solid rgba(37, 99, 235, 0.13);
		border-radius: 12px;
		background:
			linear-gradient(
				145deg,
				#ffffff,
				#eef4ff
			);
		box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
	}

	.sk-v2-mobile-toggle span {
		width: 19px;
		height: 2px;
		border-radius: 999px;
		background: #21315d;
		transition:
			transform var(--sk-v2-transition),
			opacity var(--sk-v2-transition);
	}

	.sk-v2-logo-wrap {
		display: flex;
		justify-content: center;
	}

	.sk-v2-logo {
		gap: 9px;
	}

	.sk-v2-logo img {
		width: 54px;
		height: 54px;
		flex-basis: 54px;
		border-width: 2px;
	}

	.sk-v2-logo-content {
		display: flex;
	}

	.sk-v2-logo-content strong {
		font-size: 18px;
	}

	.sk-v2-logo-content small {
		margin-top: 3px;
		font-size: 7.5px;
		letter-spacing: 0.1em;
	}

	.sk-v2-search-wrap {
		display: none;
	}

	.sk-v2-header-actions {
		gap: 4px;
	}

	.sk-v2-mobile-search-toggle {
		display: grid;
		width: 40px;
		height: 40px;
		place-items: center;
		padding: 0;
		border: 1px solid rgba(37, 99, 235, 0.13);
		border-radius: 12px;
		color: #23315a;
		background:
			linear-gradient(
				145deg,
				#ffffff,
				#eef4ff
			);
		box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
	}

	.sk-v2-account-action,
	.sk-v2-whatsapp-action {
		display: none;
	}

	.sk-v2-cart-action {
		min-height: 40px;
		padding: 0;
		border: 0;
	}

	.sk-v2-cart-action:hover {
		border: 0;
		background: transparent;
		box-shadow: none;
		transform: none;
	}

	.sk-v2-cart-action .sk-v2-action-icon {
		width: 40px;
		height: 40px;
		flex-basis: 40px;
	}

	.sk-v2-navigation-bar {
		display: none;
	}

	/* Mobile search */

	.sk-v2-mobile-search {
		position: relative;
		z-index: 19;
		display: block;
		max-height: 0;
		overflow: hidden;
		border-bottom: 0 solid rgba(37, 99, 235, 0.1);
		opacity: 0;
		background: #ffffff;
		transition:
			max-height 0.35s ease,
			opacity 0.25s ease,
			padding 0.35s ease,
			border-width 0.35s ease;
	}

	.sk-v2-mobile-search.is-open {
		max-height: 95px;
		padding-block: 10px;
		border-bottom-width: 1px;
		opacity: 1;
	}

	.sk-v2-mobile-search-form {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr) auto;
		align-items: center;
		gap: 10px;
		height: 46px;
		padding: 0 6px 0 14px;
		border: 1px solid rgba(37, 99, 235, 0.16);
		border-radius: 13px;
		background: #f8fbff;
		box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
	}

	.sk-v2-mobile-search-form > svg {
		color: #72809b;
	}

	.sk-v2-mobile-search-form input[type="search"] {
		width: 100%;
		min-width: 0;
		height: 100%;
		padding: 0;
		border: 0;
		outline: 0;
		font-size: 12px;
		font-weight: 500;
		color: #172033;
		background: transparent;
	}

	.sk-v2-mobile-search-form input[type="search"]::placeholder {
		color: #9199a8;
	}

	.sk-v2-mobile-search-form button {
		height: 34px;
		padding: 0 13px;
		border-radius: 9px;
		font-size: 10px;
		font-weight: 700;
		color: #ffffff;
		background:
			linear-gradient(
				135deg,
				var(--sk-v2-primary),
				var(--sk-v2-secondary)
			);
	}

	/* Mobile drawer */

	.sk-v2-mobile-panel {
		position: fixed;
		inset: 0;
		z-index: 99999;
		display: block;
		visibility: hidden;
		opacity: 0;
		pointer-events: none;
		transition:
			visibility var(--sk-v2-transition),
			opacity var(--sk-v2-transition);
	}

	.sk-v2-mobile-panel.is-open {
		visibility: visible;
		opacity: 1;
		pointer-events: auto;
	}

	.sk-v2-mobile-overlay {
		position: absolute;
		inset: 0;
		background: rgba(10, 18, 40, 0.68);
		backdrop-filter: blur(6px);
	}

	.sk-v2-mobile-drawer {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		width: min(88vw, 370px);
		overflow-x: hidden;
		overflow-y: auto;
		background:
			radial-gradient(
				circle at 0 0,
				rgba(37, 99, 235, 0.08),
				transparent 26%
			),
			#ffffff;
		box-shadow: 20px 0 60px rgba(8, 15, 35, 0.28);
		transform: translateX(-105%);
		transition: transform 0.36s cubic-bezier(0.22, 0.75, 0.18, 1);
	}

	.sk-v2-mobile-panel.is-open .sk-v2-mobile-drawer {
		transform: translateX(0);
	}

	.sk-v2-mobile-drawer-head {
		position: sticky;
		top: 0;
		z-index: 4;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 14px;
		min-height: 78px;
		padding: 11px 14px;
		border-bottom: 1px solid rgba(37, 99, 235, 0.1);
		background: rgba(255, 255, 255, 0.96);
		backdrop-filter: blur(14px);
	}

	.sk-v2-mobile-logo {
		display: flex;
		align-items: center;
		gap: 10px;
		min-width: 0;
	}

	.sk-v2-mobile-logo img {
		width: 52px;
		height: 52px;
		flex: 0 0 52px;
		object-fit: cover;
		border: 2px solid #ffffff;
		border-radius: 50%;
		box-shadow:
			0 7px 17px rgba(37, 99, 235, 0.17),
			0 0 0 1px rgba(37, 99, 235, 0.1);
	}

	.sk-v2-mobile-logo > span {
		display: flex;
		flex-direction: column;
		min-width: 0;
	}

	.sk-v2-mobile-logo strong {
		font-size: 18px;
		font-weight: 800;
		letter-spacing: -0.03em;
		color: #172554;
	}

	.sk-v2-mobile-logo small {
		margin-top: 3px;
		font-size: 7.5px;
		font-weight: 600;
		letter-spacing: 0.11em;
		text-transform: uppercase;
		color: var(--sk-v2-primary);
	}

	.sk-v2-mobile-close {
		display: grid;
		flex: 0 0 40px;
		width: 40px;
		height: 40px;
		place-items: center;
		border: 1px solid rgba(37, 99, 235, 0.12);
		border-radius: 12px;
		color: #293758;
		background: #f5f8ff;
	}

	.sk-v2-mobile-drawer-search {
		padding: 14px;
	}

	.sk-v2-mobile-drawer-search form {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 39px;
		height: 45px;
		border: 1px solid rgba(37, 99, 235, 0.14);
		border-radius: 12px;
		overflow: hidden;
		background: #f8fbff;
	}

	.sk-v2-mobile-drawer-search input[type="search"] {
		width: 100%;
		height: 100%;
		padding: 0 13px;
		border: 0;
		outline: 0;
		font-size: 12px;
		color: #172033;
		background: transparent;
	}

	.sk-v2-mobile-drawer-search button {
		display: grid;
		place-items: center;
		color: #ffffff;
		background:
			linear-gradient(
				135deg,
				var(--sk-v2-primary),
				var(--sk-v2-secondary)
			);
	}

	.sk-v2-mobile-section {
		padding: 2px 14px 15px;
	}

	.sk-v2-mobile-section-title {
		display: block;
		margin-bottom: 9px;
		font-size: 9.5px;
		font-weight: 800;
		letter-spacing: 0.13em;
		text-transform: uppercase;
		color: #78839a;
	}

	.sk-v2-mobile-category-grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.sk-v2-mobile-category-grid > a {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 7px;
		min-height: 94px;
		padding: 10px;
		border: 1px solid rgba(37, 99, 235, 0.12);
		border-radius: 14px;
		text-align: center;
		background:
			linear-gradient(
				145deg,
				#ffffff 0%,
				#f1f5ff 100%
			);
		box-shadow: 0 7px 18px rgba(15, 23, 42, 0.05);
	}

	.sk-v2-mobile-category-grid > a > span {
		display: grid;
		width: 42px;
		height: 42px;
		place-items: center;
		border-radius: 12px;
		color: var(--sk-v2-primary);
		background: #eaf1ff;
	}

	.sk-v2-mobile-category-grid strong {
		font-size: 10.5px;
		font-weight: 700;
		color: #273354;
	}

	.sk-v2-mobile-nav {
		border-top: 1px solid rgba(37, 99, 235, 0.09);
		border-bottom: 1px solid rgba(37, 99, 235, 0.09);
	}

	.sk-v2-mobile-menu > li {
		position: relative;
		border-bottom: 1px solid rgba(37, 99, 235, 0.075);
	}

	.sk-v2-mobile-menu > li:last-child {
		border-bottom: 0;
	}

	.sk-v2-mobile-menu li > a {
		display: flex;
		align-items: center;
		min-height: 48px;
		padding: 0 16px;
		font-size: 12px;
		font-weight: 600;
		color: #2e3956;
	}

	.sk-v2-mobile-menu .current-menu-item > a,
	.sk-v2-mobile-menu .current-menu-ancestor > a {
		color: var(--sk-v2-primary);
		background: #f1f5ff;
	}

	.sk-v2-mobile-menu .menu-item-has-children > a {
		padding-right: 50px;
	}

	.sk-v2-mobile-menu .sub-menu {
		display: none;
		padding: 4px 10px 8px;
		background: #f8faff;
	}

	.sk-v2-mobile-menu .sub-menu.is-open {
		display: block;
	}

	.sk-v2-mobile-menu .sub-menu a {
		min-height: 40px;
		padding: 0 12px;
		border-radius: 8px;
		font-size: 11px;
		color: #526078;
	}

	.sk-v2-mobile-account-actions {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
		padding: 14px;
	}

	.sk-v2-mobile-account-actions > a {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		min-height: 46px;
		padding: 8px;
		border: 1px solid rgba(37, 99, 235, 0.12);
		border-radius: 12px;
		font-size: 10.5px;
		font-weight: 700;
		color: #253353;
		background: #f7f9ff;
	}

	.sk-v2-mobile-cart-icon {
		position: relative;
	}

	.sk-mobile-cart-count {
		position: absolute;
		top: -9px;
		right: -10px;
		display: grid;
		min-width: 17px;
		height: 17px;
		padding-inline: 4px;
		place-items: center;
		border: 2px solid #ffffff;
		border-radius: 50px;
		font-size: 8px;
		font-weight: 800;
		color: #ffffff;
		background: #ef4444;
	}

	.sk-v2-mobile-support {
		margin: 0 14px 20px;
		padding: 14px;
		border: 1px solid rgba(37, 211, 102, 0.18);
		border-radius: 15px;
		background:
			linear-gradient(
				135deg,
				rgba(236, 253, 245, 0.96),
				rgba(240, 253, 250, 0.96)
			);
	}

	.sk-v2-mobile-support p {
		margin: 0 0 9px;
		font-size: 10.5px;
		font-weight: 600;
		color: #3e5c4a;
	}

	.sk-v2-mobile-support a {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		min-height: 40px;
		padding: 0 13px;
		border-radius: 10px;
		font-size: 10.5px;
		font-weight: 700;
		color: #ffffff;
		background:
			linear-gradient(
				135deg,
				#1faa55,
				#25d366
			);
		box-shadow: 0 8px 18px rgba(37, 211, 102, 0.2);
	}
}


/* ==========================================================================
   18. SMALL MOBILE
   ========================================================================== */

@media (max-width: 560px) {
	.sk-v2-container {
		width: min(calc(100% - 18px), var(--sk-v2-container));
	}

	.sk-v2-topbar-message {
		font-size: 9px;
	}

	.sk-v2-topbar-message > span:last-child {
		max-width: calc(100vw - 62px);
	}

	.sk-v2-main-header-inner {
		grid-template-columns: 40px minmax(0, 1fr) auto;
		gap: 7px;
		min-height: 66px;
	}

	.sk-v2-mobile-toggle {
		width: 38px;
		height: 38px;
		border-radius: 11px;
	}

	.sk-v2-logo {
		gap: 7px;
	}

	.sk-v2-logo img {
		width: 48px;
		height: 48px;
		flex-basis: 48px;
	}

	.sk-v2-logo-content strong {
		font-size: 16px;
	}

	.sk-v2-logo-content small {
		display: none;
	}

	.sk-v2-mobile-search-toggle {
		width: 38px;
		height: 38px;
	}

	.sk-v2-cart-action .sk-v2-action-icon {
		width: 38px;
		height: 38px;
		flex-basis: 38px;
	}

	.sk-v2-cart-icon em {
		top: -5px;
		right: -5px;
	}

	.sk-v2-mobile-drawer {
		width: min(91vw, 355px);
	}
}


/* ==========================================================================
   19. VERY SMALL MOBILE
   ========================================================================== */

@media (max-width: 390px) {
	.sk-v2-logo-content strong {
		font-size: 14px;
	}

	.sk-v2-logo img {
		width: 44px;
		height: 44px;
		flex-basis: 44px;
	}

	.sk-v2-header-actions {
		gap: 1px;
	}

	.sk-v2-mobile-search-toggle,
	.sk-v2-cart-action .sk-v2-action-icon {
		width: 36px;
		height: 36px;
		flex-basis: 36px;
	}

	.sk-v2-mobile-search-toggle svg,
	.sk-v2-cart-action svg {
		width: 20px;
		height: 20px;
	}
}


/* ==========================================================================
   20. WORDPRESS ADMIN BAR
   ========================================================================== */

@media (max-width: 782px) {
	body.admin-bar.sk-v2-header-sticky .sk-v2-navigation-bar {
		top: 46px;
	}
}


/* ==========================================================================
   21. REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
	.sk-v2-header *,
	.sk-v2-header *::before,
	.sk-v2-header *::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}


/* ==========================================================================
   22. ASTRA COMPATIBILITY
   ========================================================================== */

body.sketlix-v2-active #page {
	max-width: none;
	width: 100%;
}

body.sketlix-v2-active .site-content {
	margin: 0;
}

body.sketlix-v2-active .ast-container {
	max-width: none;
}

body.sketlix-v2-active .main-header-bar,
body.sketlix-v2-active .ast-primary-header-bar,
body.sketlix-v2-active .ast-above-header-wrap,
body.sketlix-v2-active .ast-below-header-wrap,
body.sketlix-v2-active header.site-header:not(.sk-v2-header) {
	display: none !important;
}


/* ==========================================================================
   23. WOOCOMMERCE CART FRAGMENT SAFETY
   ========================================================================== */

.sk-cart-subtotal {
	display: inline-block;
}

.sk-v2-cart-icon em:empty,
.sk-mobile-cart-count:empty {
	display: none;
}


/* ==========================================================================
   24. PRINT
   ========================================================================== */

@media print {
	.sk-v2-header {
		display: none !important;
	}
}

@media (max-width: 900px) {
	.sk-v2-submenu-toggle {
		position: absolute;
		top: 5px;
		right: 8px;
		display: grid;
		width: 38px;
		height: 38px;
		place-items: center;
		padding: 0;
		border-radius: 9px;
		color: #526078;
		background: transparent;
	}

	.sk-v2-submenu-toggle:hover {
		color: #2563eb;
		background: #eef4ff;
	}

	.sk-v2-submenu-toggle svg {
		transition: transform 0.28s ease;
	}

	.sk-v2-submenu-toggle[aria-expanded="true"] svg {
		transform: rotate(180deg);
	}
}

/* ==========================================================================
   SKETLIX HEADER — PREMIUM DARK REDESIGN OVERRIDES
   Works with the updated header.php
   ========================================================================== */

:root {
	--sk-v2-primary: #5b7cff;
	--sk-v2-primary-dark: #3857e8;
	--sk-v2-primary-deep: #070d2f;
	--sk-v2-secondary: #a855f7;
	--sk-v2-accent: #13d8ff;
	--sk-v2-success: #22c55e;
	--sk-v2-whatsapp: #25d366;

	--sk-v2-text: #f8fbff;
	--sk-v2-text-soft: #c9d5f5;
	--sk-v2-muted: #8fa0c9;

	--sk-v2-white: #ffffff;
	--sk-v2-background: #070b25;
	--sk-v2-background-soft: #0b1237;
	--sk-v2-border: rgba(132, 158, 255, 0.18);
	--sk-v2-border-strong: rgba(77, 220, 255, 0.34);

	--sk-v2-shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.24);
	--sk-v2-shadow-md: 0 18px 50px rgba(0, 0, 0, 0.34);
	--sk-v2-shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.48);
}

/* Header foundation */

.sk-v2-header {
	isolation: isolate;
	color: var(--sk-v2-text);
	background:
		radial-gradient(circle at 12% 0%, rgba(39, 210, 255, 0.11), transparent 28%),
		radial-gradient(circle at 87% 12%, rgba(168, 85, 247, 0.15), transparent 30%),
		linear-gradient(135deg, #050a23 0%, #09133e 47%, #07102f 100%);
	box-shadow: 0 14px 50px rgba(0, 0, 0, 0.2);
}

.sk-v2-header-effects {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.sk-v2-header-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(64px);
	opacity: 0.55;
	animation: skV2HeaderOrbFloat 10s ease-in-out infinite;
}

.sk-v2-header-orb-one {
	top: -130px;
	left: 5%;
	width: 280px;
	height: 280px;
	background: rgba(19, 216, 255, 0.22);
}

.sk-v2-header-orb-two {
	top: -160px;
	right: 10%;
	width: 330px;
	height: 330px;
	background: rgba(100, 84, 255, 0.24);
	animation-delay: -3s;
}

.sk-v2-header-orb-three {
	bottom: -170px;
	left: 48%;
	width: 300px;
	height: 300px;
	background: rgba(255, 55, 190, 0.13);
	animation-delay: -6s;
}

.sk-v2-header-grid-effect {
	position: absolute;
	inset: 0;
	opacity: 0.16;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 34px 34px;
	mask-image: linear-gradient(to bottom, black, transparent 95%);
}

.sk-v2-header-noise-effect {
	position: absolute;
	inset: 0;
	opacity: 0.04;
	background-image:
		radial-gradient(circle at 20% 30%, #fff 0 1px, transparent 1px),
		radial-gradient(circle at 75% 60%, #fff 0 1px, transparent 1px);
	background-size: 19px 19px, 27px 27px;
}

@keyframes skV2HeaderOrbFloat {
	0%,
	100% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		transform: translate3d(22px, 14px, 0) scale(1.08);
	}
}

.sk-v2-topbar,
.sk-v2-main-header,
.sk-v2-navigation-bar,
.sk-v2-mobile-search,
.sk-v2-mobile-panel {
	position: relative;
	z-index: 2;
}

/* Top announcement bar */

.sk-v2-topbar {
	overflow: hidden;
	border-bottom: 1px solid rgba(104, 135, 255, 0.16);
	color: rgba(239, 245, 255, 0.94);
	background:
		linear-gradient(
			90deg,
			rgba(8, 15, 52, 0.96) 0%,
			rgba(18, 32, 92, 0.96) 48%,
			rgba(36, 18, 82, 0.96) 100%
		);
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.025);
}

.sk-v2-topbar::before {
	top: -90px;
	left: 14%;
	width: 220px;
	height: 170px;
	background: rgba(19, 216, 255, 0.15);
	filter: blur(40px);
	animation: skV2TopGlow 7s ease-in-out infinite;
}

.sk-v2-topbar::after {
	right: 10%;
	bottom: -105px;
	width: 230px;
	height: 180px;
	background: rgba(168, 85, 247, 0.16);
	filter: blur(44px);
	animation: skV2TopGlow 8s ease-in-out infinite reverse;
}

@keyframes skV2TopGlow {
	50% {
		transform: translateX(45px) scale(1.12);
	}
}

.sk-v2-topbar-inner {
	min-height: 40px;
}

.sk-v2-topbar-message {
	color: rgba(232, 240, 255, 0.92);
}

.sk-v2-topbar-badge {
	border-color: rgba(93, 224, 255, 0.3);
	color: #6fe7ff;
	background: rgba(19, 216, 255, 0.1);
	box-shadow: 0 0 22px rgba(19, 216, 255, 0.14);
}

.sk-v2-topbar-links a {
	color: rgba(222, 232, 255, 0.88);
}

.sk-v2-topbar-links a:hover {
	color: #ffffff;
	text-shadow: 0 0 14px rgba(90, 221, 255, 0.4);
}

/* Main header */

.sk-v2-main-header {
	border-bottom: 1px solid rgba(105, 131, 255, 0.18);
	background:
		radial-gradient(circle at 7% 40%, rgba(0, 211, 255, 0.12), transparent 24%),
		radial-gradient(circle at 90% 25%, rgba(173, 71, 255, 0.13), transparent 27%),
		linear-gradient(
			118deg,
			rgba(5, 10, 35, 0.96) 0%,
			rgba(8, 20, 63, 0.96) 48%,
			rgba(12, 12, 52, 0.96) 100%
		);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.sk-v2-main-header::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 1px;
	content: "";
	background: linear-gradient(
		90deg,
		transparent,
		rgba(46, 214, 255, 0.58),
		rgba(123, 96, 255, 0.55),
		transparent
	);
	opacity: 0.55;
}

.sk-v2-main-header-inner {
	min-height: 104px;
}

/* Logo */

.sk-v2-logo img {
	border: 2px solid rgba(115, 223, 255, 0.48);
	background: rgba(255, 255, 255, 0.96);
	box-shadow:
		0 12px 35px rgba(0, 0, 0, 0.35),
		0 0 0 6px rgba(49, 183, 255, 0.06),
		0 0 28px rgba(43, 203, 255, 0.14);
}

.sk-v2-logo:hover img {
	transform: translateY(-3px) rotate(-3deg) scale(1.03);
	box-shadow:
		0 18px 42px rgba(0, 0, 0, 0.42),
		0 0 0 7px rgba(49, 183, 255, 0.09),
		0 0 36px rgba(43, 203, 255, 0.24);
}

.sk-v2-logo-content strong {
	color: #ffffff;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.32);
}

.sk-v2-logo-content small {
	color: #5fe1ff;
	text-shadow: 0 0 18px rgba(42, 214, 255, 0.28);
}

/* New premium search */

.sk-v2-search-wrap {
	max-width: 790px;
}

.sk-v2-search-shell {
	position: relative;
	padding: 1px;
	border-radius: 18px;
	background:
		linear-gradient(
			110deg,
			rgba(61, 219, 255, 0.7),
			rgba(97, 100, 255, 0.62),
			rgba(232, 63, 207, 0.5)
		);
	box-shadow:
		0 17px 45px rgba(0, 0, 0, 0.34),
		0 0 32px rgba(77, 105, 255, 0.12);
	transition:
		transform var(--sk-v2-transition),
		box-shadow var(--sk-v2-transition);
}

.sk-v2-search-shell::before {
	position: absolute;
	inset: 1px;
	z-index: 0;
	content: "";
	border-radius: 17px;
	background:
		linear-gradient(
			105deg,
			rgba(9, 19, 61, 0.98),
			rgba(12, 24, 77, 0.98),
			rgba(15, 16, 61, 0.98)
		);
}

.sk-v2-search-shell:focus-within {
	transform: translateY(-2px);
	box-shadow:
		0 22px 55px rgba(0, 0, 0, 0.42),
		0 0 0 4px rgba(68, 216, 255, 0.08),
		0 0 42px rgba(91, 124, 255, 0.2);
}

.sk-v2-search-glow {
	position: absolute;
	inset: -22px;
	z-index: -1;
	border-radius: 30px;
	background:
		radial-gradient(circle, rgba(60, 218, 255, 0.18), transparent 64%);
	filter: blur(25px);
	opacity: 0.72;
	animation: skV2SearchGlow 4s ease-in-out infinite;
}

@keyframes skV2SearchGlow {
	50% {
		opacity: 1;
		transform: scale(1.03);
	}
}

.sk-v2-search-form {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 170px minmax(0, 1fr);
	height: 58px;
	border: 0;
	border-radius: 17px;
	background: transparent;
	box-shadow: none;
	overflow: hidden;
}

.sk-v2-search-form:focus-within {
	border: 0;
	box-shadow: none;
	transform: none;
}

.sk-v2-search-category-panel {
	position: relative;
	display: flex;
	align-items: center;
	min-width: 0;
	border-right: 1px solid rgba(126, 160, 255, 0.18);
	background:
		linear-gradient(
			135deg,
			rgba(38, 76, 168, 0.26),
			rgba(91, 54, 167, 0.16)
		);
}

.sk-v2-search-category-icon {
	position: absolute;
	left: 15px;
	z-index: 2;
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	border: 1px solid rgba(97, 221, 255, 0.2);
	border-radius: 9px;
	color: #5ee4ff;
	background: rgba(24, 196, 255, 0.08);
	pointer-events: none;
}

.sk-v2-search-category {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	padding: 0 38px 0 53px;
	border: 0 !important;
	outline: 0;
	appearance: none;
	-webkit-appearance: none;
	color: #f5f8ff !important;
	background: transparent !important;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
}

.sk-v2-search-category option {
	color: #101735;
	background: #ffffff;
}

.sk-v2-select-arrow {
	right: 14px;
	color: #72e5ff;
}

.sk-v2-search-input-wrap {
	position: relative;
	display: flex;
	align-items: center;
	min-width: 0;
	background:
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.015),
			rgba(255, 255, 255, 0.04)
		);
}

.sk-v2-search-leading-icon {
	position: absolute;
	left: 16px;
	z-index: 2;
	display: grid;
	place-items: center;
	color: #718cff;
	pointer-events: none;
	transition:
		color var(--sk-v2-transition),
		transform var(--sk-v2-transition);
}

.sk-v2-search-shell:focus-within .sk-v2-search-leading-icon {
	color: #61e4ff;
	transform: scale(1.06);
}

.sk-v2-search-input-wrap input[type="search"] {
	width: 100%;
	height: 100%;
	padding: 0 126px 0 49px !important;
	border: 0 !important;
	border-radius: 0 !important;
	outline: 0 !important;
	color: #ffffff !important;
	background: transparent !important;
	box-shadow: none !important;
	font-size: 13px;
	font-weight: 500;
}

.sk-v2-search-input-wrap input[type="search"]::placeholder {
	color: rgba(192, 205, 239, 0.62) !important;
}

.sk-v2-search-submit {
	position: absolute;
	top: 7px;
	right: 7px;
	display: inline-flex;
	width: auto;
	height: 44px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 17px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 12px;
	color: #ffffff;
	background:
		linear-gradient(
			110deg,
			#586cff 0%,
			#7358ef 48%,
			#b13cd9 100%
		);
	box-shadow:
		0 10px 24px rgba(62, 71, 235, 0.34),
		inset 0 1px 0 rgba(255, 255, 255, 0.17);
	transform: none;
	overflow: hidden;
	transition:
		transform var(--sk-v2-transition),
		box-shadow var(--sk-v2-transition),
		filter var(--sk-v2-transition);
}

.sk-v2-search-submit::before {
	position: absolute;
	top: -35%;
	left: -75%;
	width: 45%;
	height: 170%;
	content: "";
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.48),
		transparent
	);
	transform: rotate(18deg);
	transition: left 0.65s ease;
}

.sk-v2-search-submit:hover::before {
	left: 135%;
}

.sk-v2-search-submit:hover {
	filter: brightness(1.08) saturate(1.08);
	box-shadow:
		0 13px 30px rgba(71, 84, 255, 0.44),
		0 0 24px rgba(77, 220, 255, 0.12);
	transform: translateY(-1px);
}

.sk-v2-search-submit:active {
	transform: translateY(0) scale(0.98);
}

.sk-v2-search-submit-text,
.sk-v2-search-submit-icon {
	position: relative;
	z-index: 2;
}

.sk-v2-search-submit-text {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.sk-v2-search-suggestions {
	padding-top: 8px;
	color: rgba(160, 176, 218, 0.72);
}

.sk-v2-search-suggestions span {
	color: rgba(184, 198, 232, 0.74);
}

.sk-v2-search-suggestions a {
	color: rgba(219, 228, 250, 0.76);
}

.sk-v2-search-suggestions a:not(:last-child)::after {
	background: rgba(112, 226, 255, 0.5);
}

.sk-v2-search-suggestions a:hover {
	color: #62e1ff;
	text-shadow: 0 0 14px rgba(55, 218, 255, 0.28);
}

/* Header actions */

.sk-v2-header-actions {
	gap: 8px;
}

.sk-v2-action {
	border-color: rgba(126, 151, 255, 0.09);
	background: rgba(255, 255, 255, 0.018);
}

.sk-v2-action:hover {
	border-color: rgba(92, 220, 255, 0.22);
	background:
		linear-gradient(
			135deg,
			rgba(55, 198, 255, 0.08),
			rgba(122, 87, 255, 0.08)
		);
	box-shadow:
		0 14px 30px rgba(0, 0, 0, 0.26),
		inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.sk-v2-action-icon {
	border-color: rgba(97, 143, 255, 0.24);
	color: #6f8bff;
	background:
		linear-gradient(
			145deg,
			rgba(26, 45, 112, 0.9),
			rgba(15, 25, 75, 0.9)
		);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.07),
		0 8px 20px rgba(0, 0, 0, 0.22);
}

.sk-v2-action:hover .sk-v2-action-icon {
	color: #74e9ff;
	border-color: rgba(94, 227, 255, 0.34);
}

.sk-v2-action-text small {
	color: rgba(166, 181, 218, 0.76);
}

.sk-v2-action-text strong {
	color: #f5f8ff;
}

.sk-v2-whatsapp-action .sk-v2-action-icon {
	border-color: rgba(49, 225, 116, 0.42);
	background: linear-gradient(135deg, #1caf55 0%, #25d366 100%);
	box-shadow:
		0 9px 24px rgba(37, 211, 102, 0.22),
		0 0 18px rgba(37, 211, 102, 0.08);
}

.sk-v2-cart-icon em {
	border-color: #0b1237;
	box-shadow:
		0 5px 12px rgba(239, 68, 68, 0.38),
		0 0 0 3px rgba(255, 78, 114, 0.08);
}

/* Navigation bar */

.sk-v2-navigation-bar {
	border-bottom: 1px solid rgba(97, 124, 255, 0.18);
	background:
		linear-gradient(
			90deg,
			rgba(5, 10, 34, 0.98) 0%,
			rgba(9, 20, 60, 0.98) 50%,
			rgba(12, 11, 44, 0.98) 100%
		);
	box-shadow:
		0 12px 30px rgba(0, 0, 0, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.02);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.sk-v2-navigation-bar::before {
	position: absolute;
	inset: 0;
	content: "";
	pointer-events: none;
	background:
		linear-gradient(
			90deg,
			transparent,
			rgba(70, 211, 255, 0.035),
			transparent
		);
	transform: translateX(-100%);
	animation: skV2NavSweep 10s linear infinite;
}

@keyframes skV2NavSweep {
	to {
		transform: translateX(100%);
	}
}

.sk-v2-category-toggle {
	position: relative;
	isolation: isolate;
	color: #ffffff;
	background:
		linear-gradient(
			120deg,
			#274dde 0%,
			#4f46e5 52%,
			#7733d1 100%
		);
	box-shadow:
		0 12px 28px rgba(40, 61, 205, 0.34),
		inset 0 1px 0 rgba(255, 255, 255, 0.16);
	overflow: hidden;
}

.sk-v2-category-toggle::before {
	position: absolute;
	top: -45%;
	left: -80%;
	z-index: -1;
	width: 48%;
	height: 190%;
	content: "";
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.36),
		transparent
	);
	transform: rotate(18deg);
	transition: left 0.7s ease;
}

.sk-v2-category-toggle:hover::before,
.sk-v2-category-toggle[aria-expanded="true"]::before {
	left: 135%;
}

.sk-v2-category-toggle:hover,
.sk-v2-category-toggle[aria-expanded="true"] {
	filter: brightness(1.08);
	box-shadow:
		0 15px 34px rgba(54, 69, 229, 0.43),
		0 0 24px rgba(74, 207, 255, 0.1);
}

.sk-v2-menu > li > a {
	color: rgba(226, 234, 255, 0.86);
}

.sk-v2-menu > li > a:hover,
.sk-v2-menu > li.current-menu-item > a,
.sk-v2-menu > li.current-menu-ancestor > a {
	color: #ffffff;
}

.sk-v2-menu > li > a::after {
	background: linear-gradient(90deg, #21d5ff, #7567ff, #ff4fc3);
	box-shadow: 0 0 16px rgba(46, 211, 255, 0.35);
}

.sk-v2-social-label {
	color: rgba(219, 228, 250, 0.78);
}

.sk-v2-instagram-link {
	border-color: rgba(245, 91, 185, 0.2);
	color: #f5f7ff;
	background: rgba(255, 255, 255, 0.025);
}

.sk-v2-instagram-link:hover {
	border-color: rgba(245, 91, 185, 0.38);
	color: #ffffff;
	background:
		linear-gradient(
			135deg,
			rgba(255, 74, 177, 0.13),
			rgba(119, 76, 255, 0.12)
		);
}

.sk-v2-custom-request {
	color: #ffffff;
	background:
		linear-gradient(
			110deg,
			#465ff2,
			#6e4fe5,
			#9e3bd1
		);
	box-shadow:
		0 11px 26px rgba(78, 62, 221, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.sk-v2-custom-request:hover {
	transform: translateY(-2px);
	filter: brightness(1.09);
	box-shadow:
		0 15px 32px rgba(83, 65, 230, 0.38),
		0 0 22px rgba(48, 213, 255, 0.08);
}

/* Browse Assets dropdown */

.sk-v2-category-dropdown {
	z-index: 99999 !important;
	border: 1px solid rgba(100, 147, 255, 0.22);
	color: #eaf1ff;
	background:
		radial-gradient(circle at 10% 10%, rgba(31, 211, 255, 0.1), transparent 29%),
		radial-gradient(circle at 92% 92%, rgba(163, 70, 255, 0.12), transparent 31%),
		linear-gradient(145deg, rgba(8, 17, 54, 0.99), rgba(9, 12, 43, 0.99));
	box-shadow:
		0 30px 75px rgba(0, 0, 0, 0.5),
		inset 0 1px 0 rgba(255, 255, 255, 0.055);
	backdrop-filter: blur(22px);
	-webkit-backdrop-filter: blur(22px);
}

.sk-v2-category-dropdown.is-open {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

.sk-v2-category-dropdown-head {
	border-bottom-color: rgba(120, 149, 255, 0.16);
	background: rgba(255, 255, 255, 0.018);
}

.sk-v2-category-dropdown-head strong {
	color: #ffffff;
}

.sk-v2-category-dropdown-head span {
	color: rgba(164, 181, 221, 0.74);
}

.sk-v2-category-column {
	border-color: rgba(124, 149, 255, 0.11);
	background:
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.035),
			rgba(255, 255, 255, 0.012)
		);
}

.sk-v2-category-column-title {
	color: #ffffff;
}

.sk-v2-category-column ul li,
.sk-v2-category-column li {
	position: relative;
	z-index: 2;
}

.sk-v2-category-column a,
.sk-v2-category-dropdown a,
.sk-v2-category-link {
	position: relative;
	z-index: 5;
	display: flex;
	width: 100%;
	pointer-events: auto !important;
	cursor: pointer !important;
	touch-action: manipulation;
}

.sk-v2-category-column a {
	color: rgba(211, 221, 246, 0.82);
}

.sk-v2-category-column a:hover {
	color: #ffffff;
	background:
		linear-gradient(
			90deg,
			rgba(39, 203, 255, 0.11),
			rgba(119, 81, 255, 0.1)
		);
	box-shadow: inset 3px 0 0 #47ddff;
	transform: translateX(2px);
}

.sk-v2-category-column a svg,
.sk-v2-category-column a span,
.sk-v2-category-dropdown a * {
	pointer-events: none;
}

.sk-v2-category-column-icon {
	color: #6f8dff;
	background: rgba(85, 111, 255, 0.1);
	border-color: rgba(91, 217, 255, 0.15);
}

.sk-v2-category-column a:hover .sk-v2-category-column-icon {
	color: #57e2ff;
	background: rgba(36, 207, 255, 0.13);
}

.sk-v2-category-footer {
	border-top-color: rgba(120, 149, 255, 0.16);
	background: rgba(255, 255, 255, 0.018);
}

.sk-v2-category-footer a {
	color: #ffffff;
	background:
		linear-gradient(
			110deg,
			#4760eb,
			#6f4edc,
			#9b3acb
		);
	box-shadow:
		0 10px 23px rgba(67, 67, 217, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Desktop submenus */

.sk-v2-menu .sub-menu {
	border: 1px solid rgba(100, 147, 255, 0.22);
	background:
		linear-gradient(
			145deg,
			rgba(8, 17, 54, 0.99),
			rgba(9, 12, 43, 0.99)
		);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.sk-v2-menu .sub-menu a {
	color: rgba(220, 229, 251, 0.84);
}

.sk-v2-menu .sub-menu a:hover {
	color: #ffffff;
	background: rgba(55, 208, 255, 0.09);
}

/* Mobile controls and search */

.sk-v2-mobile-toggle,
.sk-v2-mobile-search-toggle {
	border: 1px solid rgba(104, 143, 255, 0.24);
	color: #ffffff;
	background:
		linear-gradient(
			145deg,
			rgba(28, 47, 118, 0.95),
			rgba(15, 26, 75, 0.95)
		);
	box-shadow:
		0 9px 22px rgba(0, 0, 0, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.sk-v2-mobile-search {
	border-bottom-color: rgba(104, 143, 255, 0.18);
	background:
		linear-gradient(
			135deg,
			rgba(5, 11, 38, 0.99),
			rgba(10, 22, 67, 0.99)
		);
}

.sk-v2-mobile-search-form {
	border-color: rgba(78, 216, 255, 0.25);
	background: rgba(255, 255, 255, 0.04);
	box-shadow:
		0 14px 32px rgba(0, 0, 0, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.sk-v2-mobile-search-form input[type="search"],
.sk-v2-mobile-drawer-search input[type="search"] {
	color: #ffffff !important;
	background: transparent !important;
	border: 0 !important;
}

.sk-v2-mobile-search-form input[type="search"]::placeholder,
.sk-v2-mobile-drawer-search input[type="search"]::placeholder {
	color: rgba(193, 205, 237, 0.62) !important;
}

/* Mobile drawer */

.sk-v2-mobile-overlay {
	background: rgba(1, 4, 18, 0.78);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.sk-v2-mobile-drawer {
	color: #f7f9ff;
	background:
		radial-gradient(circle at 10% 0%, rgba(26, 209, 255, 0.12), transparent 25%),
		linear-gradient(155deg, #070d2b 0%, #0b1544 55%, #090c2b 100%);
	box-shadow: 25px 0 70px rgba(0, 0, 0, 0.46);
}

.sk-v2-mobile-drawer-head,
.sk-v2-mobile-drawer-footer {
	border-color: rgba(110, 141, 255, 0.15);
	background: rgba(255, 255, 255, 0.018);
}

.sk-v2-mobile-close {
	border-color: rgba(107, 145, 255, 0.22);
	color: #ffffff;
	background: rgba(255, 255, 255, 0.04);
}

.sk-v2-mobile-menu a {
	color: rgba(225, 233, 253, 0.86);
	border-color: rgba(115, 144, 255, 0.09);
}

.sk-v2-mobile-menu a:hover,
.sk-v2-mobile-menu .current-menu-item > a {
	color: #ffffff;
	background:
		linear-gradient(
			90deg,
			rgba(42, 205, 255, 0.1),
			rgba(110, 80, 255, 0.09)
		);
}

.sk-v2-submenu-toggle {
	color: #9eb0dc;
	background: rgba(255, 255, 255, 0.035);
}

.sk-v2-mobile-menu .sub-menu {
	background: rgba(255, 255, 255, 0.02);
	border-color: rgba(110, 141, 255, 0.1);
}

/* Sticky state */

body.sk-v2-header-sticky .sk-v2-navigation-bar {
	background:
		linear-gradient(
			90deg,
			rgba(4, 9, 31, 0.96),
			rgba(8, 19, 58, 0.96),
			rgba(11, 10, 40, 0.96)
		);
	box-shadow:
		0 16px 36px rgba(0, 0, 0, 0.36),
		0 1px 0 rgba(86, 211, 255, 0.1);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}

/* Accessibility */

.sk-v2-header :focus-visible {
	outline: 3px solid rgba(85, 222, 255, 0.52);
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	.sk-v2-header *,
	.sk-v2-header *::before,
	.sk-v2-header *::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Responsive refinements */

@media (max-width: 1320px) {
	.sk-v2-main-header-inner {
		grid-template-columns: auto minmax(320px, 1fr) auto;
		gap: 18px;
	}

	.sk-v2-search-form {
		grid-template-columns: 150px minmax(0, 1fr);
	}

	.sk-v2-search-category {
		padding-left: 48px;
	}

	.sk-v2-action-text {
		display: none;
	}

	.sk-v2-action {
		padding-inline: 5px;
	}
}

@media (max-width: 1050px) {
	.sk-v2-search-submit {
		width: 44px;
		padding-inline: 0;
	}

	.sk-v2-search-submit-text {
		display: none;
	}

	.sk-v2-search-input-wrap input[type="search"] {
		padding-right: 60px !important;
	}
}

@media (max-width: 900px) {
	.sk-v2-main-header {
		background:
			radial-gradient(circle at 15% 20%, rgba(36, 207, 255, 0.11), transparent 31%),
			linear-gradient(135deg, #050b29, #0a174a 58%, #090c31);
	}

	.sk-v2-main-header-inner {
		min-height: 76px;
	}

	.sk-v2-logo-content strong {
		color: #ffffff;
	}

	.sk-v2-logo-content small {
		color: #5fe1ff;
	}

	.sk-v2-header-actions {
		gap: 6px;
	}

	.sk-v2-category-dropdown {
		display: none !important;
	}
}

@media (max-width: 600px) {
	.sk-v2-topbar {
		background:
			linear-gradient(
				90deg,
				#081236,
				#101c57,
				#171040
			);
	}

	.sk-v2-main-header-inner {
		padding-block: 9px;
	}

	.sk-v2-logo img {
		width: 48px;
		height: 48px;
		flex-basis: 48px;
	}

	.sk-v2-logo-content strong {
		font-size: 19px;
	}

	.sk-v2-logo-content small {
		font-size: 8px;
	}

	.sk-v2-mobile-search {
		padding: 10px 8px;
	}

	.sk-v2-mobile-search-form {
		min-height: 48px;
		border-radius: 14px;
	}

	.sk-v2-mobile-drawer {
		width: min(88vw, 360px);
	}
}


/* =========================================================
   FINAL MOBILE HEADER + CLICK FIX
   ========================================================= */

@media only screen and (max-width: 900px) {

	/* Hide desktop navigation completely on mobile */
	.sk-v2-navigation-bar {
		display: none !important;
	}

	/* Prevent header cropping */
	.sk-v2-header,
	.sk-v2-main-header,
	.sk-v2-main-header-inner,
	.sk-v2-container {
		width: 100% !important;
		max-width: 100% !important;
		overflow: visible !important;
	}

	.sk-v2-container {
		padding-left: 12px !important;
		padding-right: 12px !important;
	}

	/* Correct mobile header layout */
	.sk-v2-main-header-inner {
		display: grid !important;
		grid-template-columns: 44px minmax(0, 1fr) auto !important;
		align-items: center !important;
		gap: 10px !important;
		min-height: 72px !important;
		padding-top: 8px !important;
		padding-bottom: 8px !important;
	}

	/* Mobile menu toggle */
	.sk-v2-mobile-toggle {
		position: relative !important;
		z-index: 99999 !important;

		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 5px !important;

		width: 42px !important;
		height: 42px !important;
		min-width: 42px !important;
		min-height: 42px !important;

		margin: 0 !important;
		padding: 0 !important;

		border: 1px solid rgba(96, 225, 255, 0.28) !important;
		border-radius: 12px !important;

		background:
			linear-gradient(
				145deg,
				rgba(42, 71, 170, 0.95),
				rgba(16, 28, 82, 0.98)
			) !important;

		pointer-events: auto !important;
		cursor: pointer !important;
		touch-action: manipulation !important;
	}

	.sk-v2-mobile-toggle span {
		display: block !important;
		width: 19px !important;
		height: 2px !important;
		margin: 0 !important;

		border-radius: 20px !important;
		background: #ffffff !important;

		pointer-events: none !important;
	}

	/* Logo should never crop or stretch */
	.sk-v2-logo-wrap {
		min-width: 0 !important;
		overflow: visible !important;
	}

	.sk-v2-logo {
		display: flex !important;
		align-items: center !important;
		min-width: 0 !important;
		overflow: visible !important;
	}

	.sk-v2-logo img {
		width: 48px !important;
		height: 48px !important;
		min-width: 48px !important;
		max-width: 48px !important;

		object-fit: cover !important;
		object-position: center !important;

		border-radius: 50% !important;
		flex: 0 0 48px !important;
	}

	.sk-v2-logo-content {
		min-width: 0 !important;
		overflow: hidden !important;
	}

	.sk-v2-logo-content strong,
	.sk-v2-logo-content small {
		overflow: hidden !important;
		text-overflow: ellipsis !important;
		white-space: nowrap !important;
	}

	/* Mobile right-side actions */
	.sk-v2-header-actions {
		position: relative !important;
		z-index: 9999 !important;

		display: flex !important;
		align-items: center !important;
		justify-content: flex-end !important;
		gap: 6px !important;

		min-width: max-content !important;
		pointer-events: auto !important;
	}

	.sk-v2-mobile-search-toggle {
		position: relative !important;
		z-index: 99999 !important;

		display: grid !important;
		width: 42px !important;
		height: 42px !important;
		place-items: center !important;

		pointer-events: auto !important;
		cursor: pointer !important;
		touch-action: manipulation !important;
	}

	/* Hide desktop action text on mobile */
	.sk-v2-action-text {
		display: none !important;
	}

	.sk-v2-action {
		padding: 0 !important;
		pointer-events: auto !important;
	}

	.sk-v2-action-icon {
		width: 42px !important;
		height: 42px !important;
		min-width: 42px !important;
		flex: 0 0 42px !important;
	}

	/* Ensure drawer appears over everything */
	.sk-v2-mobile-panel {
		position: fixed !important;
		inset: 0 !important;
		z-index: 999999 !important;

		width: 100% !important;
		height: 100% !important;

		pointer-events: none !important;
	}

	.sk-v2-mobile-panel.is-open {
		visibility: visible !important;
		opacity: 1 !important;
		pointer-events: auto !important;
	}

	.sk-v2-mobile-overlay {
		position: absolute !important;
		inset: 0 !important;
		z-index: 1 !important;
		pointer-events: auto !important;
	}

	.sk-v2-mobile-drawer {
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		z-index: 2 !important;

		width: min(88vw, 370px) !important;
		max-width: 370px !important;
		height: 100% !important;

		overflow-x: hidden !important;
		overflow-y: auto !important;

		pointer-events: auto !important;
	}

	/* Mobile drawer links must work */
	.sk-v2-mobile-drawer a,
	.sk-v2-mobile-menu a,
	.sk-v2-mobile-menu .sub-menu a {
		position: relative !important;
		z-index: 5 !important;

		display: flex !important;
		width: 100% !important;

		pointer-events: auto !important;
		cursor: pointer !important;
		touch-action: manipulation !important;
	}

	.sk-v2-mobile-drawer a *,
	.sk-v2-mobile-menu a * {
		pointer-events: none !important;
	}
}

/* =========================================================
   DESKTOP ALL-ASSETS DROPDOWN CLICK FIX
   ========================================================= */

.sk-v2-category-toggle {
	position: relative !important;
	z-index: 10001 !important;
	pointer-events: auto !important;
	cursor: pointer !important;
	touch-action: manipulation !important;
}

.sk-v2-category-dropdown {
	position: absolute !important;
	z-index: 999999 !important;
	pointer-events: none !important;
}

.sk-v2-category-dropdown.is-open {
	visibility: visible !important;
	opacity: 1 !important;
	pointer-events: auto !important;
}

.sk-v2-category-dropdown a,
.sk-v2-category-dropdown li,
.sk-v2-category-dropdown .sk-v2-category-column,
.sk-v2-category-dropdown .sk-v2-category-footer {
	position: relative !important;
	z-index: 5 !important;
	pointer-events: auto !important;
}

.sk-v2-category-dropdown a {
	display: flex !important;
	width: 100% !important;
	cursor: pointer !important;
	touch-action: manipulation !important;
}

.sk-v2-category-dropdown a *,
.sk-v2-category-dropdown a::before,
.sk-v2-category-dropdown a::after {
	pointer-events: none !important;
}
@media (max-width: 900px) {
	.sk-v2-search-category-panel {
		width: 64px !important;
		min-width: 64px !important;
		max-width: 64px !important;
	}

	.sk-v2-search-category {
		width: 100% !important;
		padding: 0 28px 0 0 !important;
		color: transparent !important;
		text-indent: -9999px !important;
	}

	.sk-v2-search-category-icon {
		left: 10px !important;
	}

	.sk-v2-select-arrow {
		right: 8px !important;
	}
}

/* =========================================================
   PREMIUM MOBILE DRAWER FINAL UPGRADE
   ========================================================= */

@media only screen and (max-width: 900px) {

	/* Drawer text visibility */
	.sk-v2-mobile-drawer {
		color: #ffffff !important;
	}

	.sk-v2-mobile-logo strong {
		color: #ffffff !important;
		opacity: 1 !important;
	}

	.sk-v2-mobile-logo small {
		color: #5fe2ff !important;
		opacity: 1 !important;
	}

	.sk-v2-mobile-section-title {
		color: rgba(207, 220, 255, 0.72) !important;
		opacity: 1 !important;
	}

	.sk-v2-mobile-menu li > a {
		color: rgba(231, 238, 255, 0.88) !important;
		opacity: 1 !important;
	}

	.sk-v2-mobile-menu li > a:hover,
	.sk-v2-mobile-menu .current-menu-item > a {
		color: #ffffff !important;
		background:
			linear-gradient(
				90deg,
				rgba(41, 199, 255, 0.12),
				rgba(104, 80, 255, 0.12)
			) !important;
	}

	/* Premium mobile search */
	.sk-v2-mobile-drawer-search {
		padding: 14px 15px !important;
	}

	.sk-v2-drawer-premium-search {
		position: relative !important;

		display: grid !important;
		grid-template-columns: 38px minmax(0, 1fr) auto !important;
		align-items: center !important;

		width: 100% !important;
		height: 54px !important;

		padding: 4px 5px 4px 7px !important;

		border: 1px solid rgba(92, 219, 255, 0.28) !important;
		border-radius: 16px !important;

		background:
			linear-gradient(
				110deg,
				rgba(18, 35, 95, 0.98),
				rgba(18, 24, 77, 0.98)
			) !important;

		box-shadow:
			0 14px 30px rgba(0, 0, 0, 0.28),
			inset 0 1px 0 rgba(255, 255, 255, 0.06),
			0 0 25px rgba(48, 205, 255, 0.06) !important;

		overflow: hidden !important;
	}

	.sk-v2-drawer-premium-search:focus-within {
		border-color: rgba(86, 228, 255, 0.62) !important;

		box-shadow:
			0 16px 34px rgba(0, 0, 0, 0.34),
			0 0 0 3px rgba(64, 214, 255, 0.08),
			0 0 30px rgba(71, 114, 255, 0.12) !important;
	}

	.sk-v2-drawer-search-icon {
		display: grid !important;
		width: 34px !important;
		height: 34px !important;
		place-items: center !important;

		color: #5ee2ff !important;

		pointer-events: none !important;
	}

	.sk-v2-drawer-premium-search input[type="search"] {
		width: 100% !important;
		min-width: 0 !important;
		height: 100% !important;

		margin: 0 !important;
		padding: 0 8px !important;

		border: 0 !important;
		outline: 0 !important;
		border-radius: 0 !important;

		background: transparent !important;
		color: #ffffff !important;

		box-shadow: none !important;

		font-size: 11px !important;
		font-weight: 500 !important;
	}

	.sk-v2-drawer-premium-search input[type="search"]::placeholder {
		color: rgba(196, 209, 241, 0.58) !important;
		opacity: 1 !important;
	}

	.sk-v2-drawer-premium-search button {
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 6px !important;

		width: auto !important;
		height: 44px !important;

		margin: 0 !important;
		padding: 0 13px !important;

		border: 1px solid rgba(255, 255, 255, 0.14) !important;
		border-radius: 12px !important;

		background:
			linear-gradient(
				110deg,
				#536cff,
				#7853eb,
				#aa3bd4
			) !important;

		color: #ffffff !important;

		box-shadow:
			0 9px 20px rgba(73, 74, 226, 0.28),
			inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;

		font-size: 9px !important;
		font-weight: 800 !important;
		text-transform: uppercase !important;

		cursor: pointer !important;
	}

	/* Premium image category cards */
	.sk-v2-mobile-category-grid {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 10px !important;
	}

	.sk-v2-mobile-category-grid > a.sk-v2-mobile-category-card {
		position: relative !important;

		display: flex !important;
		flex-direction: column !important;
		align-items: stretch !important;
		justify-content: flex-start !important;

		min-width: 0 !important;
		min-height: 190px !important;

		padding: 0 !important;

		border: 1px solid rgba(112, 148, 255, 0.2) !important;
		border-radius: 17px !important;

		background:
			linear-gradient(
				145deg,
				rgba(23, 38, 100, 0.96),
				rgba(13, 22, 68, 0.98)
			) !important;

		box-shadow:
			0 15px 34px rgba(0, 0, 0, 0.3),
			inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;

		overflow: hidden !important;

		text-align: left !important;
		text-decoration: none !important;

		pointer-events: auto !important;
		cursor: pointer !important;

		transition:
			transform 0.28s ease,
			border-color 0.28s ease,
			box-shadow 0.28s ease !important;
	}

	.sk-v2-mobile-category-grid > a.sk-v2-mobile-category-card:active {
		transform: scale(0.98) !important;
	}

	.sk-v2-mobile-category-image {
		position: relative !important;

		display: block !important;
		width: 100% !important;
		height: 112px !important;

		overflow: hidden !important;

		border-radius: 0 !important;
		background: #101b52 !important;
	}

	.sk-v2-mobile-category-image img {
		display: block !important;
		width: 100% !important;
		height: 100% !important;

		object-fit: cover !important;
		object-position: center !important;

		transition: transform 0.4s ease !important;
	}

	.sk-v2-mobile-category-card:hover
	.sk-v2-mobile-category-image img {
		transform: scale(1.08) !important;
	}

	.sk-v2-mobile-category-overlay {
		position: absolute !important;
		inset: 0 !important;

		display: block !important;

		background:
			linear-gradient(
				to bottom,
				transparent 30%,
				rgba(5, 10, 37, 0.82) 100%
			) !important;

		pointer-events: none !important;
	}

	.sk-v2-mobile-category-arrow {
		position: absolute !important;
		right: 9px !important;
		bottom: 9px !important;

		display: grid !important;
		width: 30px !important;
		height: 30px !important;
		place-items: center !important;

		border: 1px solid rgba(255, 255, 255, 0.2) !important;
		border-radius: 10px !important;

		background:
			linear-gradient(
				135deg,
				rgba(79, 105, 255, 0.94),
				rgba(162, 59, 216, 0.94)
			) !important;

		color: #ffffff !important;

		box-shadow: 0 7px 17px rgba(0, 0, 0, 0.3) !important;

		pointer-events: none !important;
	}

	.sk-v2-mobile-category-content {
		display: flex !important;
		flex-direction: column !important;

		min-width: 0 !important;

		padding: 11px !important;
	}

	.sk-v2-mobile-category-content strong {
		color: #ffffff !important;

		font-size: 12px !important;
		font-weight: 800 !important;
		line-height: 1.3 !important;
	}

	.sk-v2-mobile-category-content small {
		display: -webkit-box !important;

		margin-top: 5px !important;

		overflow: hidden !important;

		color: rgba(196, 208, 239, 0.68) !important;

		font-size: 8px !important;
		font-weight: 500 !important;
		line-height: 1.45 !important;

		-webkit-box-orient: vertical !important;
		-webkit-line-clamp: 2 !important;
	}

	/* Account and cart text */
	.sk-v2-mobile-account-actions > a {
		color: #172554 !important;
		font-weight: 700 !important;
	}

	.sk-v2-mobile-support p {
		color: #315843 !important;
		opacity: 1 !important;
	}
}

@media only screen and (max-width: 380px) {

	.sk-v2-drawer-premium-search button span {
		display: none !important;
	}

	.sk-v2-drawer-premium-search button {
		width: 42px !important;
		padding: 0 !important;
	}

	.sk-v2-mobile-category-grid {
		gap: 8px !important;
	}

	.sk-v2-mobile-category-grid > a.sk-v2-mobile-category-card {
		min-height: 175px !important;
	}

	.sk-v2-mobile-category-image {
		height: 100px !important;
	}
}

/* Remove old white icon boxes from mobile category cards */
@media only screen and (max-width: 900px) {

	.sk-v2-mobile-category-card > span:first-child {
		width: 100% !important;
		height: 112px !important;
		border-radius: 0 !important;
		background: transparent !important;
		box-shadow: none !important;
	}

	.sk-v2-mobile-category-card > span:first-child::before,
	.sk-v2-mobile-category-card > span:first-child::after {
		display: none !important;
		content: none !important;
	}

	.sk-v2-mobile-category-card svg:not(.sk-v2-mobile-category-arrow svg) {
		display: none !important;
	}

	.sk-v2-mobile-category-content {
		position: relative !important;
		z-index: 3 !important;
		background: transparent !important;
	}

	.sk-v2-mobile-category-content strong,
	.sk-v2-mobile-category-content small {
		background: transparent !important;
		box-shadow: none !important;
		border: 0 !important;
	}
}

/* Fix cropped category names in mobile drawer */
@media only screen and (max-width: 900px) {

	.sk-v2-mobile-category-card {
		overflow: hidden !important;
	}

	.sk-v2-mobile-category-content {
		position: relative !important;
		z-index: 5 !important;

		display: flex !important;
		flex-direction: column !important;
		align-items: flex-start !important;
		justify-content: flex-start !important;

		width: 100% !important;
		min-height: 68px !important;

		padding: 12px 10px 14px !important;

		overflow: visible !important;
		background: transparent !important;
	}

	.sk-v2-mobile-category-content strong {
		display: block !important;

		width: 100% !important;
		max-width: 100% !important;

		margin: 0 !important;
		padding: 0 !important;

		overflow: visible !important;

		color: #ffffff !important;

		font-size: 11px !important;
		font-weight: 800 !important;
		line-height: 1.35 !important;

		text-align: left !important;
		white-space: normal !important;
		word-break: normal !important;
		text-overflow: clip !important;
	}

	.sk-v2-mobile-category-content small {
		display: block !important;

		width: 100% !important;
		max-width: 100% !important;

		margin-top: 4px !important;

		overflow: visible !important;

		color: rgba(196, 208, 239, 0.68) !important;

		font-size: 8px !important;
		line-height: 1.4 !important;

		white-space: normal !important;
		text-overflow: clip !important;

		-webkit-line-clamp: unset !important;
		-webkit-box-orient: unset !important;
	}

	.sk-v2-mobile-category-image {
		flex: 0 0 112px !important;
	}
}