.wshc {
	--wshc-bg: #f6f6f3;
	--wshc-card-bg: #ffffff;
	--wshc-text: #121212;
	--wshc-muted: rgba(18, 18, 18, 0.68);
	--wshc-border: rgba(18, 18, 18, 0.1);
	--wshc-shadow: 0 18px 50px rgba(18, 18, 18, 0.08);
	--wshc-cta-bg: #121212;
	--wshc-cta-text: #ffffff;
	--wshc-radius: 26px;

	box-sizing: border-box;
	width: 100%;
	margin: 0 0 clamp(24px, 4vw, 44px);
	padding: clamp(18px, 3vw, 36px);
	border-radius: var(--wshc-radius);
	background: radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.82), transparent 34%), var(--wshc-bg);
	color: var(--wshc-text);
	overflow: hidden;
}

.wshc *,
.wshc *::before,
.wshc *::after {
	box-sizing: border-box;
}

.wshc__inner {
	width: 100%;
}

.wshc__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: clamp(18px, 2.4vw, 28px);
}

.wshc__intro {
	max-width: 760px;
}

.wshc__badge {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	margin: 0 0 12px;
	padding: 0 12px;
	border: 1px solid var(--wshc-border);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.62);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.wshc__title {
	margin: 0;
	font-size: clamp(28px, 4vw, 54px);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.04em;
	color: var(--wshc-text);
}

.wshc__subtitle {
	max-width: 620px;
	margin: 12px 0 0;
	font-size: clamp(15px, 1.45vw, 18px);
	line-height: 1.55;
	color: var(--wshc-muted);
}

.wshc__controls {
	display: flex;
	gap: 10px;
	flex: 0 0 auto;
}

.wshc__arrow {
	display: inline-grid;
	place-items: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid var(--wshc-border);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	color: var(--wshc-text);
	box-shadow: none;
	font: inherit;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	transition: transform 160ms ease, opacity 160ms ease, background-color 160ms ease;
}

.wshc__arrow:hover,
.wshc__arrow:focus-visible {
	background: #ffffff;
	transform: translateY(-1px);
}

.wshc__arrow:disabled {
	opacity: 0.38;
	cursor: default;
	transform: none;
}

.wshc__viewport {
	position: relative;
	width: 100%;
}

.wshc__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 100%;
	gap: 18px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.wshc__track::-webkit-scrollbar {
	display: none;
}

.wshc__slide {
	min-width: 0;
	scroll-snap-align: start;
}

.wshc__card {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.08fr);
	align-items: center;
	gap: clamp(22px, 4vw, 58px);
	min-height: clamp(360px, 44vw, 520px);
	padding: clamp(24px, 4vw, 54px);
	border: 1px solid rgba(18, 18, 18, 0.06);
	border-radius: calc(var(--wshc-radius) - 6px);
	background: var(--wshc-card-bg);
	box-shadow: var(--wshc-shadow);
	color: inherit;
	text-decoration: none;
}

.wshc__card:hover,
.wshc__card:focus-visible {
	color: inherit;
	text-decoration: none;
}

.wshc__content {
	position: relative;
	z-index: 1;
	max-width: 560px;
}

.wshc__name {
	margin: 0 0 14px;
	font-size: clamp(28px, 4vw, 56px);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.045em;
	color: var(--wshc-text);
}

.wshc__excerpt {
	margin: 0 0 20px;
	font-size: clamp(15px, 1.4vw, 18px);
	line-height: 1.58;
	color: var(--wshc-muted);
}

.wshc__price {
	margin: 0 0 24px;
	font-size: clamp(18px, 1.8vw, 24px);
	font-weight: 800;
	line-height: 1.2;
	color: var(--wshc-text);
}

.wshc__price del {
	font-weight: 500;
	opacity: 0.58;
}

.wshc__price ins {
	text-decoration: none;
}

.wshc__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 20px;
	border-radius: 999px;
	background: var(--wshc-cta-bg);
	color: var(--wshc-cta-text);
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
}

.wshc__media {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
}

.wshc__img {
	display: block;
	width: 100%;
	max-width: 680px;
	max-height: clamp(260px, 38vw, 440px);
	height: auto;
	object-fit: contain;
}

.wshc__dots {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
}

.wshc__dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(18, 18, 18, 0.25);
	box-shadow: none;
	cursor: pointer;
	transition: width 160ms ease, background-color 160ms ease, opacity 160ms ease;
}

.wshc__dot[aria-current="true"] {
	width: 28px;
	background: var(--wshc-text);
}

.wshc__dot:hover,
.wshc__dot:focus-visible {
	opacity: 0.78;
}

@media (max-width: 782px) {
	.wshc {
		padding: 16px;
		border-radius: 20px;
	}

	.wshc__head {
		align-items: flex-start;
		margin-bottom: 16px;
	}

	.wshc__controls {
		display: none;
	}

	.wshc__track {
		grid-auto-columns: 88%;
		gap: 14px;
	}

	.wshc__card {
		grid-template-columns: 1fr;
		gap: 18px;
		min-height: auto;
		padding: 22px;
	}

	.wshc__media {
		order: -1;
	}

	.wshc__img {
		max-height: 250px;
	}

	.wshc__name {
		letter-spacing: -0.035em;
	}
}

@media (max-width: 480px) {
	.wshc__track {
		grid-auto-columns: 92%;
	}

	.wshc__subtitle {
		display: none;
	}

	.wshc__excerpt {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wshc__track {
		scroll-behavior: auto;
	}

	.wshc__arrow,
	.wshc__dot {
		transition: none;
	}
}
