.nx-shop-archive {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 0 0 10px;
}

.nx-shop-theme-content--before {
	margin-bottom: 16px;
}

.nx-shop-archive__breadcrumbs {
	margin: 0;
}

.nx-shop-archive__breadcrumbs .woocommerce-breadcrumb {
	color: #6e7f9d;
	font-size: 13px;
	margin: 0;
}

.nx-shop-archive__description {
	background: #ffffff;
	border: 1px solid #e5eefb;
	border-radius: 10px;
	box-shadow: 0 16px 34px rgba(29, 76, 168, 0.08);
	padding: 10px;
}

.nx-shop-archive__description-inner {
	color: #42597f;
	font-size: 13px;
	line-height: 1.7;
}

.nx-shop-archive__description-inner > :first-child {
	margin-top: 0;
}

.nx-shop-archive__description-inner > :last-child {
	margin-bottom: 0;
}

.nx-shop-hero {
	border-radius: 10px;
	box-shadow: 0 20px 42px rgba(12, 52, 136, 0.14);
	height: 300px;
	margin: 0 auto;
	max-width: 900px;
	min-height: 300px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.nx-shop-hero__image {
	display: block;
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	width: 100%;
}

.nx-shop-hero__overlay {
	background: linear-gradient(90deg, rgba(7, 28, 72, 0.74) 0%, rgba(7, 28, 72, 0.38) 42%, rgba(7, 28, 72, 0.08) 100%);
	inset: 0;
	position: absolute;
}

.nx-shop-hero__content {
	color: #ffffff;
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: flex-end;
	min-height: 300px;
	padding: 16px;
	position: relative;
	width: min(560px, 100%);
	z-index: 1;
}

.nx-shop-hero__eyebrow {
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	display: inline-flex;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1;
	padding: 8px 12px;
	text-transform: uppercase;
	width: fit-content;
}

.nx-shop-hero__title {
	color: #ffffff;
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 700;
	line-height: 1.08;
	margin: 0;
}

.nx-shop-hero__text {
	color: rgba(255, 255, 255, 0.88);
	font-size: 14px;
	line-height: 1.7;
	margin: 0;
	max-width: 48ch;
}

.nx-shop-cats {
	background: #e3ebfb;
	border-radius: 5px;
	padding: 5px;
}

.nx-shop-cats__head,
.nx-shop-section__title-row {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: space-between;
	margin-bottom: 10px;
}

.nx-shop-cats__title,
.nx-shop-section__title {
	color: #193b7f;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
}

.nx-shop-cats__all,
.nx-shop-section__count,
.nx-shop-cats__count {
	color: #6e7f9d;
	font-size: 13px;
	line-height: 1.4;
	text-decoration: none;
}

.nx-shop-section__title-row {
	align-items: flex-start;
	flex-direction: column;
	justify-content: flex-start;
}

.nx-shop-cats__slider-shell {
	align-items: center;
	display: grid;
	gap: 10px;
	grid-template-columns: 34px minmax(0, 1fr) 34px;
}

.nx-shop-cats__slider-shell.has-fixed-shop-card {
	grid-template-columns: 34px 140px minmax(0, 1fr) 34px;
}

.nx-shop-cats__slider {
	cursor: grab;
	display: flex;
	gap: 5px;
	overflow-x: auto;
	padding: 2px 0;
	scroll-behavior: smooth;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
	user-select: none;
}

.nx-shop-cats__slider::-webkit-scrollbar {
	display: none;
}

.nx-shop-cats__slider.is-dragging {
	cursor: grabbing;
	scroll-behavior: auto;
}

.nx-shop-cats__nav {
	align-items: center;
	background: #f8fbff;
	border: 1px solid #dbe7fb;
	border-radius: 5px;
	color: #205edf;
	cursor: pointer;
	display: inline-flex;
	height: 34px;
	justify-content: center;
	padding: 0;
	transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
	width: 16px;
}

.nx-shop-cats__nav:hover:not(:disabled) {
	background: #205edf;
	color: #ffffff;
	transform: translateY(-1px);
}

.nx-shop-cats__nav:disabled {
	cursor: default;
	opacity: 0.45;
}

.nx-shop-cats__item {
	align-items: center;
	background: #ffffff;
	border: 1px solid #e6eefb;
	border-radius: 5px;
	box-shadow: 0 14px 28px rgba(29, 76, 168, 0.06);
	color: #173b80;
	display: flex;
	flex: 0 0 calc((100% - 50px) / 6);
	flex-direction: column;
	gap: 5px;
	min-width: 140px;
	padding: 5px;
	scroll-snap-align: start;
	text-align: center;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nx-shop-cats__item--shop {
	flex: none;
	height: 100%;
	min-width: 140px;
}

.nx-shop-cats__item:hover {
	border-color: #cfe0ff;
	box-shadow: 0 18px 30px rgba(29, 76, 168, 0.12);
	transform: translateY(-3px);
}

.nx-shop-cats__thumb {
	align-items: center;
	background: #f7faff;
	border-radius: 5px;
	display: flex;
	height: 79px;
	justify-content: center;
	overflow: hidden;
	width: 100%;
}

.nx-shop-cats__thumb--shop {
	background: linear-gradient(135deg, #eef4ff 0%, #dbe9ff 100%);
	color: #205edf;
	padding: 18px;
}

.nx-shop-cats__thumb--shop svg {
	display: block;
	height: 58px;
	max-width: 58px;
	width: 58px;
}

.nx-shop-cats__thumb img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.nx-shop-cats__name {
	color: #193b7f;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
}

.nx-shop-filters {
	background: #ffffff;
	border: 1px solid #e5eefb;
	border-radius: 10px;
	box-shadow: 0 16px 34px rgba(29, 76, 168, 0.08);
	display: grid;
	gap: 10px;
	grid-template-columns: minmax(0, 1fr) auto;
	padding: 10px;
}

.nx-shop-filters__header {
	display: flex;
	flex-direction: column;
	gap: 5px;
	grid-column: 1 / -1;
	justify-content: flex-start;
	min-width: 0;
}

.nx-shop-filters__eyebrow {
	color: #205edf;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1;
	text-transform: uppercase;
}

.nx-shop-filters__text {
	color: #6e7f9d;
	font-size: 13px;
	line-height: 1.5;
	margin: 0;
}

.nx-shop-filters__row {
	align-items: center;
	display: flex;
	gap: 10px;
	width: 100%;
}

.nx-shop-filters__controls {
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	grid-column: 1 / 2;
	min-width: 0;
}

.nx-shop-filters__field {
	display: block;
	flex: 1 1 0;
	min-width: 0;
}

.nx-shop-filters__select {
	background: #f8fbff;
	border: 1px solid #dbe7fb;
	border-radius: 10px;
	box-shadow: none;
	color: #173b80;
	cursor: pointer;
	font-size: 13px;
	font-weight: 600;
	height: 40px;
	margin: 0;
	padding: 0 12px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
	width: 100%;
}

.nx-shop-filters__select:hover,
.nx-shop-filters__select:focus {
	background: #ffffff;
	border-color: #c7d9ff;
	box-shadow: 0 10px 24px rgba(29, 76, 168, 0.08);
	outline: 0;
	transform: translateY(-1px);
}

.nx-shop-filters__reset {
	align-items: center;
	background: #205edf;
	border: 1px solid #205edf;
	border-radius: 10px;
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	font-size: 13px;
	font-weight: 700;
	gap: 8px;
	grid-column: 2 / 3;
	justify-content: center;
	line-height: 1;
	min-height: 40px;
	padding: 10px 16px;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
	white-space: nowrap;
}

.nx-shop-filters__reset:hover,
.nx-shop-filters__reset:focus-visible {
	background: #184fca;
	border-color: #184fca;
	box-shadow: 0 14px 24px rgba(32, 94, 223, 0.18);
	outline: 0;
	transform: translateY(-1px);
}

.nx-shop-archive__description .cat-desc-wrap {
	margin: 0;
}

.nx-shop-archive__description .cat-desc-content {
	max-height: 140px;
}

.nx-shop-archive__description .cat-toggle {
	font-size: 13px;
	margin-top: 10px;
}

.nx-shop-archive__sections {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.nx-shop-section {
	background: #ffffff;
	border: 1px solid #e5eefb;
	border-radius: 10px;
	box-shadow: 0 16px 34px rgba(29, 76, 168, 0.08);
	overflow: hidden;
}

.nx-shop-section__banner {
	min-height: 148px;
	position: relative;
}

.nx-shop-section__banner img {
	display: block;
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	width: 100%;
}

.nx-shop-section__banner-overlay {
	background: linear-gradient(90deg, rgba(10, 35, 92, 0.74) 0%, rgba(10, 35, 92, 0.24) 100%);
	inset: 0;
	position: absolute;
}

.nx-shop-section__banner-content {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 12px;
	justify-content: flex-end;
	min-height: 148px;
	padding: 16px;
	position: relative;
	z-index: 1;
}

.nx-shop-section__banner-content .nx-shop-section__title,
.nx-shop-section__banner-content .nx-shop-section__count {
	color: #ffffff;
}

.nx-shop-section__body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 12px;
}

.nx-shop-section__filters {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.nx-shop-section__select {
	background: #ffffff;
	border: 1px solid #dbe7fb;
	border-radius: 10px;
	box-shadow: none;
	color: #193b7f;
	font-size: 13px;
	height: 40px;
	margin: 0;
	max-width: 220px;
	min-width: 140px;
	padding: 0 12px;
}

.nx-shop-section__select:focus {
	border-color: #205edf;
	box-shadow: 0 0 0 3px rgba(32, 94, 223, 0.1);
	outline: 0;
}

.nx-shop-section__reset,
.nx-shop-section__more {
	align-items: center;
	background: #f8fbff;
	border: 1px solid #dbe7fb;
	border-radius: 10px;
	color: #205edf;
	cursor: pointer;
	display: inline-flex;
	font-size: 13px;
	font-weight: 700;
	gap: 8px;
	justify-content: center;
	line-height: 1;
	min-height: 40px;
	padding: 10px 14px;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nx-shop-section__reset:hover,
.nx-shop-section__more:hover {
	background: #205edf;
	border-color: #205edf;
	box-shadow: 0 14px 26px rgba(32, 94, 223, 0.18);
	color: #ffffff;
	transform: translateY(-1px);
}

.nx-shop-section__more.is-loading {
	opacity: 0.7;
	pointer-events: none;
}

.nx-shop-section__more[hidden] {
	display: none !important;
}

.nx-shop-section__products-shell {
	position: relative;
}

.nx-shop-section__loading {
	align-items: center;
	background: rgba(255, 255, 255, 0.75);
	border-radius: 10px;
	display: none;
	inset: 0;
	justify-content: center;
	position: absolute;
	z-index: 2;
}

.nx-shop-section.is-loading .nx-shop-section__loading {
	display: flex;
}

.nx-shop-section__loading[hidden] {
	display: none !important;
}

.nx-shop-section__spinner {
	animation: nx-shop-spin 0.8s linear infinite;
	border: 2px solid rgba(32, 94, 223, 0.18);
	border-top-color: #205edf;
	border-radius: 999px;
	display: inline-flex;
	height: 26px;
	width: 26px;
}

.nx-shop-section__products-shell.is-placeholder {
	min-height: 280px;
}

.nx-shop-section__placeholder-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nx-shop-section__placeholder-grid span {
	animation: nx-shop-placeholder 1.2s ease-in-out infinite alternate;
	background: linear-gradient(135deg, #eef4ff 0%, #f8fbff 100%);
	border: 1px solid #e3ecfb;
	border-radius: 10px;
	display: block;
	min-height: 280px;
}

.nx-shop-section__products .products,
.nx-shop-section__products ul.products {
	margin-bottom: 0;
}

.nx-shop-archive .product-small form.variations_form,
.nx-shop-archive .product-small .ux-swatches-in-loop,
.nx-shop-archive .product-small .ux-swatches {
	display: none !important;
}

.nx-shop-archive ul.products li.product {
	position: relative;
	transition: z-index 0.2s ease;
	z-index: 1;
}

.nx-shop-archive ul.products li.product .col-inner {
	background: #ffffff;
	border: 1px solid #e5eefb;
	border-radius: 12px;
	box-shadow: 0 10px 24px rgba(29, 76, 168, 0.06);
	height: 100%;
	overflow: hidden;
	transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.nx-shop-archive ul.products li.product .product-small.box {
	border-color: transparent;
	box-shadow: none;
	transition: border-color 0.28s ease, box-shadow 0.28s ease;
}

.nx-shop-archive ul.products li.product .box-image img {
	transform-origin: center center;
	transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), filter 0.42s ease;
}

.nx-shop-archive ul.products li.product:hover,
.nx-shop-archive ul.products li.product:focus-within {
	z-index: 3;
}

.nx-shop-archive ul.products li.product.has-nx-loop-popup-open {
	z-index: 40;
}

.nx-shop-archive ul.products li.product.has-nx-loop-popup-open .col-inner {
	overflow: visible;
}

.nx-shop-archive ul.products li.product:hover .col-inner,
.nx-shop-archive ul.products li.product:focus-within .col-inner {
	border-color: #cfe0ff;
	box-shadow: 0 18px 38px rgba(29, 76, 168, 0.14);
	transform: translateY(-6px);
}

.nx-shop-archive ul.products li.product:hover .box-image img,
.nx-shop-archive ul.products li.product:focus-within .box-image img {
	filter: saturate(1.03);
	transform: scale(1.04);
}

.nx-shop-section__footer {
	display: flex;
	justify-content: center;
}

.nx-shop-section__empty {
	background: #f8fbff;
	border: 1px dashed #c8dbff;
	border-radius: 10px;
	color: #617596;
	font-size: 14px;
	line-height: 1.6;
	padding: 18px;
	text-align: center;
}

@keyframes nx-shop-spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes nx-shop-placeholder {
	from {
		opacity: 0.65;
	}

	to {
		opacity: 1;
	}
}

@media (max-width: 1100px) {
	.nx-shop-cats__item {
		flex-basis: calc((100% - 30px) / 4);
	}
}

@media (max-width: 849px) {
	.nx-shop-archive {
		gap: 12px;
	}

	.nx-shop-hero {
		height: 220px;
		max-width: none;
		min-height: 220px;
	}

	.nx-shop-hero__content {
		min-height: 220px;
	}

	.nx-shop-hero__content {
		padding: 18px;
	}

	.nx-shop-cats__slider-shell {
		grid-template-columns: 28px minmax(0, 1fr) 28px;
	}

	.nx-shop-cats__slider-shell.has-fixed-shop-card {
		grid-template-columns: 28px 122px minmax(0, 1fr) 28px;
	}

	.nx-shop-cats__nav {
		height: 28px;
		width: 28px;
	}

	.nx-shop-cats__item {
		flex-basis: calc((100% - 20px) / 3);
		min-width: 122px;
	}

	.nx-shop-filters__row,
	.nx-shop-filters__controls {
		flex-wrap: wrap;
	}

	.nx-shop-filters {
		grid-template-columns: 1fr;
	}

	.nx-shop-filters__field {
		flex: 1 1 calc(50% - 5px);
	}

	.nx-shop-filters__reset {
		grid-column: 1 / -1;
		width: 100%;
	}

	.nx-shop-section__banner,
	.nx-shop-section__banner-content {
		min-height: 118px;
	}

	.nx-shop-section__banner-content {
		align-items: flex-start;
		flex-direction: column;
		justify-content: flex-end;
	}

	.nx-shop-section__placeholder-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nx-shop-section__filters {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nx-shop-section__select,
	.nx-shop-section__reset {
		max-width: none;
		min-width: 0;
		width: 100%;
	}
}

@media (max-width: 549px) {
	.nx-shop-hero {
		height: 180px;
		min-height: 180px;
	}

	.nx-shop-hero__content {
		min-height: 180px;
	}

	.nx-shop-hero__title {
		font-size: 24px;
	}

	.nx-shop-cats__item {
		flex-basis: calc((100% - 10px) / 2);
	}

	.nx-shop-cats__slider-shell.has-fixed-shop-card {
		grid-template-columns: 28px 110px minmax(0, 1fr) 28px;
	}

	.nx-shop-cats__item--shop {
		min-width: 110px;
	}

	.nx-shop-cats__thumb--shop {
		padding: 14px;
	}

	.nx-shop-cats__thumb--shop svg {
		height: 46px;
		max-width: 46px;
		width: 46px;
	}

	.nx-shop-filters__controls {
		gap: 8px;
	}

	.nx-shop-filters__field {
		flex-basis: 100%;
	}

	.nx-shop-filters__reset {
		flex-basis: 100%;
	}

	.nx-shop-section__body {
		padding: 10px;
	}

	.nx-shop-section__filters {
		grid-template-columns: 1fr;
	}

	.nx-shop-section__placeholder-grid {
		grid-template-columns: 1fr;
	}
}
