.stickeo-complete-set {
	clear: both;
	width: 100%;
	margin: 36px 0 24px;
}

.stickeo-complete-set__inner {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

.stickeo-complete-set[hidden],
.stickeo-complete-set__carousel[hidden],
.stickeo-complete-set__prompt[hidden] {
	display: none !important;
}

.stickeo-complete-set__prompt {
	margin: 7px 0 0;
	color: #666;
	font-size: 14px;
}

.stickeo-complete-set__carousel {
	position: relative;
}

.stickeo-complete-set__viewport {
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
	-webkit-overflow-scrolling: touch;
}

.stickeo-complete-set__viewport::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.stickeo-complete-set__viewport:focus-visible {
	border-radius: 8px;
	outline: 2px solid #f2b300;
	outline-offset: 3px;
}

.stickeo-complete-set__list {
	display: flex;
	gap: 12px;
	width: max-content;
	min-width: 100%;
}

.stickeo-complete-set__item {
	flex: 0 0 clamp(170px, 15.7vw, 196px);
	min-width: 170px;
	max-width: 196px;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	background: transparent;
	scroll-snap-align: start;
}

.stickeo-complete-set__media {
	position: relative;
	width: 100%;
	margin-bottom: 12px;
}

.stickeo-complete-set__image {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 8px;
	background: #f7f7f7;
}

.stickeo-complete-set__image img {
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: contain;
}

.stickeo-complete-set__price {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 1;
	padding: 6px 9px;
	border-radius: 7px;
	background: #f2b300;
	box-shadow: 0 2px 7px rgba(0, 0, 0, 0.12);
	color: #191919;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.15;
	white-space: nowrap;
}

.stickeo-complete-set__price del {
	opacity: 0.65;
	font-size: 0.78em;
}

.stickeo-complete-set__price ins {
	text-decoration: none;
}

.stickeo-complete-set__separator {
	width: 42px;
	height: 4px;
	display: block;
	margin: 0 0 11px;
	border-radius: 99px;
	background: #f2b300;
}

.stickeo-complete-set__name {
	margin: 0 0 14px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
}

.stickeo-complete-set__name a {
	color: inherit;
	text-decoration: none;
}

.stickeo-complete-set__name a:hover,
.stickeo-complete-set__name a:focus-visible {
	text-decoration: underline;
}

.stickeo-complete-set__add {
	width: 100%;
	min-height: 42px;
	margin-top: auto;
	padding: 8px 10px;
	border: 1px solid #1f1f1f;
	border-radius: 6px;
	background: #1f1f1f;
	color: #fff;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.stickeo-complete-set__add:hover,
.stickeo-complete-set__add:focus-visible {
	border-color: #f2b300;
	background: #f2b300;
	color: #111;
	outline: none;
}

.stickeo-complete-set__add:focus-visible,
.stickeo-complete-set__arrow:focus-visible {
	box-shadow: 0 0 0 3px rgba(242, 179, 0, 0.35);
}

.stickeo-complete-set__add:disabled {
	cursor: wait;
	opacity: 0.75;
}

.stickeo-complete-set__add.is-added {
	border-color: #207c42;
	background: #207c42;
}

.stickeo-complete-set__add.is-error {
	border-color: #b42318;
}

.stickeo-complete-set__arrow {
	position: absolute;
	top: 50%;
	z-index: 2;
	width: 42px;
	height: 42px;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 0;
	transform: translateY(-50%);
	border: 1px solid #dedede;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.14);
	color: #1f1f1f;
	font: inherit;
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
	transition: opacity 140ms ease, background-color 140ms ease;
}

.stickeo-complete-set.has-overflow .stickeo-complete-set__arrow {
	display: flex;
}

.stickeo-complete-set__arrow:hover,
.stickeo-complete-set__arrow:focus-visible {
	background: #f2b300;
	outline: none;
}

.stickeo-complete-set__arrow--previous {
	left: -18px;
}

.stickeo-complete-set__arrow--next {
	right: -18px;
}

.stickeo-complete-set__arrow:disabled {
	opacity: 0;
	pointer-events: none;
}

.stickeo-complete-set__arrow[hidden] {
	display: none !important;
}

@media (max-width: 1024px) {
	.stickeo-complete-set__item {
		flex-basis: clamp(160px, 23.5vw, 200px);
		min-width: 160px;
		max-width: 200px;
	}

	.stickeo-complete-set__arrow--previous {
		left: -10px;
	}

	.stickeo-complete-set__arrow--next {
		right: -10px;
	}
}

@media (max-width: 767px) {
	.stickeo-complete-set {
		margin-top: 28px;
	}

	.stickeo-complete-set__item {
		flex-basis: clamp(128px, 42vw, 180px);
		min-width: 128px;
		max-width: 180px;
	}

	.stickeo-complete-set__image {
		border-radius: 7px;
	}

	.stickeo-complete-set__price {
		top: 7px;
		right: 7px;
		padding: 5px 7px;
		font-size: 12px;
	}

	.stickeo-complete-set__name {
		font-size: 14px;
	}

	.stickeo-complete-set__arrow {
		display: none !important;
	}
}
