body.stx-global-nav-enabled {
	--stx-nav-bg: #05070b;
	--stx-nav-text: #f8fafc;
	--stx-nav-red: #ff2038;
	--stx-nav-cyan: #19c9ff;
	--stx-nav-green: #25d366;
	--stx-nav-line: rgba(255, 255, 255, 0.11);
	overflow-x: clip;
}

body.stx-global-nav-enabled #masthead,
body.stx-global-nav-enabled .site-header-focus-item,
body.stx-global-nav-enabled .ast-mobile-header-wrap {
	display: none !important;
}

.stx-global-nav-enabled .stx-header,
.stx-global-nav-enabled .stx-header *,
.stx-global-nav-enabled .stx-drawer,
.stx-global-nav-enabled .stx-drawer *,
.stx-global-nav-enabled .stx-mobile-nav,
.stx-global-nav-enabled .stx-mobile-nav * {
	box-sizing: border-box;
}

.stx-shell {
	width: min(1240px, calc(100% - 40px));
	margin-inline: auto;
}

.stx-header {
	position: sticky;
	top: 0;
	z-index: 9900;
	border-bottom: 1px solid var(--stx-nav-line);
	background: rgba(5, 7, 11, 0.94);
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.26);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
}

.admin-bar .stx-header {
	top: 32px;
}

.stx-header-row {
	min-height: 82px;
	display: grid;
	grid-template-columns: auto auto minmax(220px, 1fr) auto;
	align-items: center;
	gap: 16px;
}

.stx-menu-toggle-input {
	position: fixed;
	width: 1px;
	height: 1px;
	op: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
}

.stx-menu-button,
.stx-drawer-close {
	width: 46px;
	height: 46px;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	border: 1px solid rgba(255, 32, 56, 0.44);
	border-radius: 14px;
	background: linear-gradient(145deg, rgba(255, 32, 56, 0.24), rgba(255, 32, 56, 0.06));
	cursor: pointer;
	box-shadow: inset 0 0 18px rgba(255, 32, 56, 0.08);
}

.stx-menu-button span {
	width: 22px;
	height: 2px;
	display: block;
	border-radius: 20px;
	background: #fff;
}

.stx-logo {
	height: 54px;
	min-width: 228px;
	padding: 7px 11px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	background: #fff;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 10px 28px rgba(0, 0, 0, 0.25);
	text-decoration: none !important;
}

.stx-logo img {
	width: 207px !important;
	height: auto !important;
	max-width: 100% !important;
	display: block !important;
}

.stx-search {
	min-width: 0;
	display: flex;
	align-items: stretch;
	margin: 0;
}

.stx-search input[type="search"] {
	width: 100%;
	min-width: 0;
	height: 48px;
	margin: 0;
	padding: 0 16px;
	border: 1px solid var(--stx-nav-line);
	border-right: 0;
	border-radius: 14px 0 0 14px;
	background: rgba(255, 255, 255, 0.06);
	color: var(--stx-nav-text);
	font: inherit;
	font-size: 16px;
	line-height: 1;
	outline: 0;
	box-shadow: none;
}

.stx-search input[type="search"]::placeholder {
	color: #8f9aad;
	opacity: 1;
}

.stx-search input[type="search"]:focus {
	border-color: rgba(25, 201, 255, 0.72);
	box-shadow: inset 0 0 0 1px rgba(25, 201, 255, 0.24);
}

.stx-search button {
	width: 54px;
	height: 48px;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(25, 201, 255, 0.4);
	border-radius: 0 14px 14px 0;
	background: linear-gradient(145deg, #132235, #09111e);
	color: #fff;
	font: inherit;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
}

.stx-wa-header {
	min-height: 48px;
	padding: 0 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: var(--stx-nav-green);
	color: #06180e !important;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none !important;
	white-space: nowrap;
	box-shadow: 0 10px 28px rgba(37, 211, 102, 0.2);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stx-wa-header:hover {
	color: #06180e !important;
	transform: translateY(-2px);
}

.stx-drawer {
	position: fixed;
	inset: 0 auto 0 0;
	z-index: 10001;
	width: min(370px, 92vw);
	margin: 0;
	padding: 0;
	overflow-y: auto;
	transform: translateX(-105%);
	border-right: 1px solid rgba(255, 255, 255, 0.12);
	background: #070b12;
	box-shadow: 22px 0 60px rgba(0, 0, 0, 0.55);
	transition: transform 0.28s ease;
}

.stx-drawer-overlay {
	position: fixed;
	inset: 0;
	z-index: 10000;
	visibility: hidden;
	opacity: 0;
	background: rgba(0, 0, 0, 0.72);
	cursor: pointer;
	transition: opacity 0.28s ease, visibility 0.28s ease;
}

.stx-menu-toggle-input:checked ~ .stx-drawer {
	transform: translateX(0);
}

.stx-menu-toggle-input:checked ~ .stx-drawer-overlay {
	visibility: visible;
	opacity: 1;
}

body:has(.stx-menu-toggle-input:checked) {
	overflow: hidden;
}

.stx-drawer-head {
	min-height: 88px;
	padding: 18px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--stx-nav-line);
	background: linear-gradient(125deg, rgba(255, 32, 56, 0.3), rgba(25, 201, 255, 0.07)), #0a0e16;
}

.stx-drawer-brand {
	color: #fff;
	font-size: 22px;
	font-weight: 900;
	letter-spacing: 0.04em;
}

.stx-drawer-brand span {
	color: var(--stx-nav-red);
}

.stx-drawer-close {
	color: #fff;
	font-size: 25px;
}

.stx-drawer-nav {
	padding: 10px 0 28px;
	display: grid;
}

.stx-drawer-nav a {
	min-height: 50px;
	padding: 0 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	background: transparent;
	color: #dce3ee !important;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none !important;
}

.stx-drawer-nav a::after {
	content: "›";
	color: var(--stx-nav-cyan);
	font-size: 20px;
}

.stx-drawer-nav a:hover,
.stx-drawer-nav a.is-active {
	background: rgba(255, 255, 255, 0.06);
	color: #fff !important;
}

.stx-drawer-nav a.is-active {
	box-shadow: inset 3px 0 0 var(--stx-nav-red);
}

.stx-mobile-nav {
	display: none;
}

/* Catálogo limpio: sin barra lateral, título, ruta ni descripción de archivo. */
body.stx-clean-catalog #secondary,
body.stx-clean-catalog .widget-area.secondary,
body.stx-clean-catalog .woocommerce-breadcrumb,
body.stx-clean-catalog .woocommerce-products-header,
body.stx-clean-catalog .page-title {
	display: none !important;
}

body.stx-clean-catalog #primary,
body.stx-clean-catalog.ast-left-sidebar #primary,
body.stx-clean-catalog.ast-right-sidebar #primary {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	border: 0 !important;
}

body.stx-clean-catalog .site-content > .ast-container {
	display: block !important;
	width: min(1240px, calc(100% - 40px));
	max-width: 1240px;
	margin-inline: auto;
	padding: 38px 0 64px !important;
}

body.stx-clean-catalog .site-main,
body.stx-clean-catalog .woocommerce-products-header + .woocommerce-notices-wrapper {
	margin: 0 !important;
	padding: 0 !important;
}

body.stx-clean-catalog .woocommerce-result-count,
body.stx-clean-catalog .woocommerce-ordering {
	margin-top: 0 !important;
}

.stx-catalog-filters {
	margin: 0 0 26px;
	overflow: hidden;
	border: 1px solid #dfe4ea;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.stx-catalog-filters summary {
	min-height: 68px;
	padding: 14px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	background: linear-gradient(105deg, #080b12, #151b26);
	color: #fff;
	cursor: pointer;
	list-style: none;
	user-select: none;
}

.stx-catalog-filters summary::-webkit-details-marker {
	display: none;
}

.stx-filter-summary-copy {
	display: grid;
	gap: 2px;
}

.stx-filter-summary-copy strong {
	color: #fff;
	font-size: 17px;
	line-height: 1.2;
}

.stx-filter-summary-copy small {
	color: #aeb8c8;
	font-size: 12px;
	line-height: 1.35;
}

.stx-filter-summary-action {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--stx-nav-cyan);
	font-size: 24px;
	font-weight: 900;
}

.stx-catalog-filters[open] .stx-filter-summary-action > span:last-child {
	transform: rotate(180deg);
}

.stx-filter-badge {
	padding: 5px 9px;
	border: 1px solid rgba(25, 201, 255, 0.35);
	border-radius: 999px;
	background: rgba(25, 201, 255, 0.12);
	color: #bdefff;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
}

.stx-filter-form {
	padding: 20px;
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 16px;
	background: #fff;
}

.stx-filter-form.is-shop {
	grid-template-columns: repeat(7, minmax(0, 1fr));
}

.stx-filter-field {
	min-width: 0;
	margin: 0;
	display: grid;
	align-content: start;
	gap: 7px;
}

.stx-filter-field > span {
	color: #344054;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
}

.stx-filter-keyword {
	grid-column: span 2;
}

.stx-filter-field input,
.stx-filter-field select {
	width: 100%;
	height: 46px;
	min-height: 46px;
	margin: 0;
	padding: 0 13px;
	border: 1px solid #cfd6df;
	border-radius: 11px;
	background: #fff;
	color: #172033;
	font: inherit;
	font-size: 14px;
	line-height: 1;
	outline: 0;
	box-shadow: none;
}

.stx-filter-field input:focus,
.stx-filter-field select:focus {
	border-color: #169ed0;
	box-shadow: 0 0 0 3px rgba(25, 201, 255, 0.14);
}

.stx-filter-field input::placeholder {
	color: #98a2b3;
}

.stx-filter-actions {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}

.stx-filter-actions button,
.stx-filter-actions a {
	min-height: 44px;
	padding: 0 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 11px;
	font-size: 13px;
	font-weight: 850;
	line-height: 1;
	text-decoration: none !important;
}

.stx-filter-actions button {
	border: 1px solid #e3142f;
	background: linear-gradient(135deg, #ff2038, #e4002b);
	color: #fff;
	cursor: pointer;
	box-shadow: 0 9px 22px rgba(228, 0, 43, 0.2);
}

.stx-filter-actions a {
	border: 1px solid #cfd6df;
	background: #fff;
	color: #344054 !important;
}

body.stx-clean-catalog .woocommerce-result-count {
	min-height: 46px;
	margin-bottom: 22px !important;
	display: inline-flex;
	align-items: center;
	color: #475467;
	font-size: 14px;
	font-weight: 700;
}

body.stx-clean-catalog .woocommerce-ordering {
	margin-bottom: 22px !important;
}

body.stx-clean-catalog .woocommerce-ordering select {
	height: 46px;
	min-height: 46px;
	padding: 0 42px 0 14px;
	border: 1px solid #cfd6df;
	border-radius: 11px;
	background-color: #fff;
	color: #344054;
	font-size: 14px;
	font-weight: 700;
	box-shadow: 0 7px 20px rgba(15, 23, 42, 0.06);
}

@media (max-width: 1100px) {
	.stx-filter-form,
	.stx-filter-form.is-shop {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.stx-filter-form,
	.stx-filter-form.is-shop {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.stx-filter-keyword {
		grid-column: 1 / -1;
	}
}

@media (max-width: 520px) {
	.stx-catalog-filters {
		border-radius: 14px;
	}

	.stx-catalog-filters summary {
		min-height: 60px;
		padding: 12px 14px;
	}

	.stx-filter-summary-copy small {
		display: none;
	}

	.stx-filter-form,
	.stx-filter-form.is-shop {
		padding: 14px;
		grid-template-columns: 1fr;
		gap: 13px;
	}

	.stx-filter-keyword,
	.stx-filter-actions {
		grid-column: 1;
	}

	.stx-filter-actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	body.stx-clean-catalog .woocommerce-result-count,
	body.stx-clean-catalog .woocommerce-ordering {
		width: 100%;
		float: none;
	}

	body.stx-clean-catalog .woocommerce-ordering select {
		width: 100%;
	}
}

.stx-global-nav-enabled .stx-header :focus-visible,
.stx-global-nav-enabled .stx-drawer :focus-visible,
.stx-global-nav-enabled .stx-mobile-nav :focus-visible {
	outline: 3px solid rgba(25, 201, 255, 0.75);
	outline-offset: 3px;
}

@media (max-width: 1100px) {
	.stx-header-row {
		grid-template-columns: auto auto minmax(180px, 1fr) auto;
	}

	.stx-logo {
		min-width: 188px;
	}

	.stx-logo img {
		width: 170px !important;
	}
}

@media (max-width: 860px) {
	.stx-shell {
		width: min(calc(100% - 28px), 1240px);
	}

	.stx-header-row {
		min-height: 0;
		padding: 11px 0 12px;
		grid-template-columns: auto minmax(0, 1fr) auto;
		grid-template-rows: auto auto;
		gap: 10px;
	}

	.stx-menu-button {
		grid-column: 1;
		grid-row: 1;
	}

	.stx-logo {
		grid-column: 2;
		grid-row: 1;
		justify-self: start;
		min-width: 0;
		max-width: 220px;
	}

	.stx-search {
		grid-column: 1 / -1;
		grid-row: 2;
	}

	.stx-wa-header {
		grid-column: 3;
		grid-row: 1;
		min-height: 46px;
		padding: 0 15px;
	}
}

@media (max-width: 782px) {
	.admin-bar .stx-header {
		top: 46px;
	}
}

@media (max-width: 640px) {
	body.stx-global-nav-enabled {
		padding-bottom: calc(68px + env(safe-area-inset-bottom));
	}

	.stx-shell {
		width: min(calc(100% - 22px), 1240px);
	}

	.stx-header-row {
		gap: 8px;
	}

	.stx-menu-button {
		width: 43px;
		height: 43px;
		border-radius: 13px;
	}

	.stx-logo {
		height: 46px;
		max-width: 184px;
		padding: 6px 9px;
		border-radius: 13px;
	}

	.stx-logo img {
		width: 165px !important;
	}

	.stx-wa-header {
		width: 43px;
		min-height: 43px;
		padding: 0;
		overflow: hidden;
		color: transparent !important;
		font-size: 0;
	}

	.stx-wa-header::before {
		content: "WA";
		color: #06180e;
		font-size: 12px;
		font-weight: 950;
	}

	.stx-search input[type="search"],
	.stx-search button {
		height: 45px;
	}

	.stx-mobile-nav {
		position: fixed;
		inset: auto 0 0;
		z-index: 9850;
		height: calc(68px + env(safe-area-inset-bottom));
		padding: 0 0 env(safe-area-inset-bottom);
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		border-top: 1px solid rgba(255, 255, 255, 0.12);
		background: rgba(6, 9, 14, 0.97);
		box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.4);
		-webkit-backdrop-filter: blur(14px);
		backdrop-filter: blur(14px);
	}

	.stx-mobile-nav a {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 2px;
		color: #aeb8c8 !important;
		font-size: 9px;
		font-weight: 750;
		line-height: 1.25;
		text-decoration: none !important;
	}

	.stx-mobile-nav a:first-child,
	.stx-mobile-nav a:last-child,
	.stx-mobile-nav a.is-active {
		color: #fff !important;
	}

	.stx-mobile-icon {
		color: var(--stx-nav-cyan);
		font-size: 19px;
		line-height: 1;
	}

	.stx-mobile-nav a:last-child .stx-mobile-icon {
		color: var(--stx-nav-green);
	}
}

@media (max-width: 390px) {
	.stx-logo {
		max-width: 154px;
	}

	.stx-logo img {
		width: 142px !important;
	}
}

@media (max-width: 860px) {
	body.stx-clean-catalog .site-content > .ast-container {
		width: min(calc(100% - 28px), 1240px);
		padding-top: 26px !important;
	}
}

@media (max-width: 640px) {
	body.stx-clean-catalog .site-content > .ast-container {
		width: min(calc(100% - 22px), 1240px);
		padding-top: 20px !important;
		padding-bottom: 36px !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.stx-header *,
	.stx-drawer *,
	.stx-mobile-nav * {
		transition: none !important;
	}
}
