.swps-showcase,
.swps-showcase * {
	box-sizing: border-box;
}

.swps-showcase {
	position: relative;
	width: 100%;
	max-width: 100%;
	color: #181818;
	background: #f5f3ef;
	overflow: hidden;
}

.swps-showcase:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.swps-tabs {
	display: flex;
	justify-content: center;
	gap: clamp(22px, 5vw, 72px);
	padding: 22px 28px 18px;
	overflow-x: auto;
	scrollbar-width: thin;
	background: #fff;
}

.swps-tab {
	position: relative;
	flex: 0 0 auto;
	min-height: 40px;
	padding: 6px 0;
	border: 0;
	border-radius: 0;
	color: #68645f;
	background: transparent;
	font: inherit;
	font-size: 14px;
	letter-spacing: .04em;
	cursor: pointer;
}

.swps-tab::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	background: currentColor;
	content: '';
	transform: scaleX(0);
	transition: transform 180ms ease;
}

.swps-tab:hover,
.swps-tab:focus-visible,
.swps-tab.is-active {
	color: #151515;
}

.swps-tab.is-active::after {
	transform: scaleX(1);
}

.swps-tab:focus-visible,
.swps-arrow:focus-visible,
.swps-product a:focus-visible {
	outline: 2px solid #1a1a1a;
	outline-offset: 3px;
}

.swps-stage {
	position: relative;
	height: var(--swps-height, 700px);
	min-height: 480px;
}

.swps-slide {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	height: 100%;
	min-height: 0;
}

.swps-slide[hidden] {
	display: none;
}

.swps-scene,
.swps-product {
	position: relative;
	min-width: 0;
	min-height: 0;
}

.swps-scene {
	order: 1;
	background: #e8e4dd;
	overflow: hidden;
}

.swps-product {
	display: flex;
	order: 2;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: clamp(34px, 5vw, 76px);
	background: #fff;
	text-align: center;
}

.swps-layout-product-left .swps-scene {
	order: 2;
}

.swps-layout-product-left .swps-product {
	order: 1;
}

.swps-scene-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swps-scene-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 24px;
	color: #77726c;
	font-size: 13px;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.swps-product-image-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(55%, 420px);
	max-height: 56%;
	margin: 0 auto clamp(28px, 5vh, 54px);
	text-decoration: none;
}

.swps-product-image {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 360px;
	object-fit: contain;
}

.swps-product-info {
	width: 100%;
	max-width: 520px;
}

.swps-product-brand {
	margin-bottom: 10px;
	color: #817a71;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.swps-product-name {
	margin: 0 0 9px;
	padding: 0;
	color: #181818;
	font-family: inherit;
	font-size: clamp(20px, 2vw, 30px);
	font-weight: 400;
	line-height: 1.2;
}

.swps-product-name a {
	color: inherit;
	text-decoration: none;
}

.swps-product-name a:hover {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.swps-product-category {
	margin-bottom: 15px;
	color: #817a71;
	font-size: 12px;
	letter-spacing: .08em;
}

.swps-product-price {
	color: #252525;
	font-size: 16px;
}

.swps-product-price del {
	margin-right: 8px;
	color: #918b84;
	opacity: .75;
}

.swps-product-price ins {
	background: transparent;
	text-decoration: none;
}

.swps-product-stock {
	margin-top: 10px;
	color: #706b65;
	font-size: 12px;
}

.swps-product-stock:empty,
.swps-product-stock .stock:empty {
	display: none;
}

.swps-product-unavailable {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 180px;
	color: #77726c;
	font-size: 14px;
}

.swps-arrows {
	position: absolute;
	right: 22px;
	bottom: 20px;
	left: 22px;
	z-index: 3;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
}

.swps-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid rgba(20, 20, 20, .3);
	border-radius: 50%;
	color: #171717;
	background: rgba(255, 255, 255, .88);
	box-shadow: none;
	cursor: pointer;
	pointer-events: auto;
	transition: background 160ms ease, opacity 160ms ease;
}

.swps-arrow:hover {
	background: #fff;
}

.swps-arrow:disabled {
	opacity: .35;
	cursor: not-allowed;
}

.swps-arrow svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
}

@media (max-width: 1023px) {
	.swps-product {
		padding: 36px;
	}

	.swps-product-image-link {
		width: min(62%, 300px);
	}

	.swps-product-name {
		font-size: clamp(18px, 2.5vw, 25px);
	}
}

@media (max-width: 767px) {
	.swps-tabs {
		justify-content: flex-start;
		gap: 26px;
		padding: 14px 18px 10px;
	}

	.swps-stage {
		height: auto;
		min-height: 0;
	}

	.swps-slide {
		display: flex;
		flex-direction: column;
		height: auto;
	}

	.swps-scene,
	.swps-layout-product-left .swps-scene {
		order: 1;
		height: clamp(280px, 78vw, 520px);
	}

	.swps-product,
	.swps-layout-product-left .swps-product {
		order: 2;
		min-height: 430px;
		padding: 46px 24px 76px;
	}

	.swps-product-image-link {
		width: min(58%, 260px);
		margin-bottom: 30px;
	}

	.swps-product-image {
		max-height: 240px;
	}

	.swps-arrows {
		right: 14px;
		bottom: 14px;
		left: 14px;
	}

	.swps-arrow {
		width: 44px;
		height: 44px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.swps-tab::after,
	.swps-arrow {
		transition: none;
	}
}

