.nomu-complete-set {
	--nomu-ink: #2C2C2C;
	--nomu-slides-visible: 3;
	--nomu-slider-gap: 14px;
	margin-block: 36px;
}

.nomu-complete-set__title {
	margin-bottom: 12px;
}

.nomu-complete-set__color {
	margin-bottom: 18px;
	font-weight: 500;
}

.nomu-complete-set__content.is-loading {
	opacity: .55;
	pointer-events: none;
}

.nomu-complete-set__slider {
	position: relative;
	min-width: 0;
}

.nomu-complete-set__slider:not(.is-ready) .nomu-complete-set__navigation {
	visibility: hidden;
}

.nomu-complete-set__navigation {
	display: grid;
	grid-template-columns: minmax(24px, 1fr) auto minmax(24px, 1fr);
	align-items: center;
	gap: 48px;
	margin: 0 0 30px;
}

.nomu-complete-set__nav-line {
	display: block;
	height: 1px;
	background: var(--nomu-ink);
	opacity: .18;
}

.nomu-complete-set__nav-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.nomu-complete-set__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid var(--nomu-ink);
	border-radius: 50%;
	background: transparent;
	color: var(--nomu-ink);
	box-shadow: none;
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease, opacity .2s ease;
}

.nomu-complete-set__arrow svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.35;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.nomu-complete-set__arrow:hover:not(:disabled),
.nomu-complete-set__arrow:focus-visible:not(:disabled) {
	background: var(--nomu-ink) !important;
	background-color: var(--nomu-ink) !important;
	color: #fff !important;
}

.nomu-complete-set__arrow:focus-visible {
	outline: 2px solid var(--nomu-ink);
	outline-offset: 3px;
}

.nomu-complete-set__arrow:disabled {
	opacity: .28;
	cursor: default;
}

.nomu-complete-set__slider.is-static .nomu-complete-set__navigation {
	display: none;
}

.nomu-complete-set__viewport {
	overflow: hidden;
	width: 100%;
	touch-action: pan-y;
}

.nomu-complete-set__track {
	display: flex;
	align-items: stretch;
	gap: var(--nomu-slider-gap);
	transform: translate3d(0, 0, 0);
	transition: transform .42s cubic-bezier(.22, .61, .36, 1);
	will-change: transform;
}

.nomu-set-card {
	position: relative;
	display: flex;
	flex: 0 0 calc((100% - (var(--nomu-slides-visible) - 1) * var(--nomu-slider-gap)) / var(--nomu-slides-visible));
	min-width: 0;
	flex-direction: column;
	align-self: stretch;
	background: transparent;
	border: 0;
	border-radius: 0;
	overflow: visible;
}

.nomu-set-card__image {
	display: block;
	width: 100%;
	overflow: hidden;
	background: #f4f2f0;
	text-decoration: none !important;
	box-shadow: none !important;
}

.nomu-set-card__image::before,
.nomu-set-card__image::after {
	display: none !important;
	content: none !important;
}

.nomu-set-card__image img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover !important;
	object-position: center center !important;
	opacity: 1 !important;
	filter: none !important;
	transform: none;
}

.nomu-set-card__image:hover img,
.nomu-set-card__image:focus img {
	opacity: 1 !important;
	filter: none !important;
}

.nomu-set-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding-top: 15px;
}

.nomu-set-card__title {
	margin: 0 0 18px;
	font-size: 18px !important;
	font-weight: 400;
	line-height: 1.25;
	text-transform: uppercase;
}

.nomu-set-card__title a,
.nomu-set-card__title a:link,
.nomu-set-card__title a:visited,
.nomu-set-card__title a:hover,
.nomu-set-card__title a:focus,
.nomu-set-card__title a:active {
	color: var(--nomu-ink) !important;
	font-size: 18px !important;
	text-decoration: none !important;
	text-underline-offset: 0 !important;
	border-bottom: 0 !important;
	box-shadow: none !important;
}

.nomu-set-card__add,
button.nomu-set-card__add {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 100%;
	min-height: 42px;
	margin-top: 0;
	padding: 8px 12px;
	border: 1px solid var(--nomu-ink) !important;
	border-radius: 3px !important;
	background: transparent !important;
	background-color: transparent !important;
	background-image: none !important;
	color: var(--nomu-ink) !important;
	box-shadow: none !important;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
	text-decoration: none !important;
	text-transform: uppercase;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease, opacity .2s ease;
}

.nomu-set-card__add .amount,
.nomu-set-card__add .woocommerce-Price-currencySymbol {
	color: inherit;
}

.nomu-set-card__add:hover:not(:disabled),
.nomu-set-card__add:focus-visible:not(:disabled) {
	background: var(--nomu-ink) !important;
	background-color: var(--nomu-ink) !important;
	color: #fff !important;
}

.nomu-set-card__add:focus-visible {
	outline: 2px solid var(--nomu-ink);
	outline-offset: 2px;
}

.nomu-set-card__add:disabled,
.nomu-set-card__add.is-disabled {
	opacity: .42;
	cursor: not-allowed;
}

.nomu-set-card__add.is-loading {
	cursor: wait;
}

.nomu-set-card.is-unavailable .nomu-set-card__image,
.nomu-set-card.is-unavailable .nomu-set-card__title {
	opacity: .58;
}

.nomu-complete-set__message {
	min-height: 1.4em;
	margin-top: 14px;
	font-size: 14px;
}

.nomu-complete-set__empty,
.nomu-complete-set__error,
.nomu-complete-set__prompt {
	margin-top: 14px;
}

.nomu-product-shell--loading {
	opacity: .45;
	pointer-events: none;
	transition: opacity .18s ease;
}

@media (max-width: 1024px) {
	.nomu-complete-set {
		--nomu-slides-visible: 2;
	}

	.nomu-complete-set__navigation {
		gap: 30px;
	}
}

@media (max-width: 575px) {
	.nomu-complete-set {
		--nomu-slides-visible: 1;
		--nomu-slider-gap: 12px;
	}

	.nomu-complete-set__navigation {
		gap: 18px;
		margin-bottom: 22px;
	}

	.nomu-complete-set__arrow {
		width: 44px;
		height: 44px;
	}

	.nomu-set-card__add {
		font-size: 11px;
	}
}
