.wet-pct {
	--wet-pct-gap: 20px;
	--wet-pct-slides: 4;
	--wet-pct-slides-tablet: 3;
	--wet-pct-slides-mobile: 2;
	--wet-pct-transition: 450ms;
	--wet-advanced-accent: #e73568;
	position: relative;
	width: 100%;
	min-width: 0;
}

.wet-pct__header {
	margin-bottom: 24px;
	text-align: center;
}

.wet-pct__heading,
.wet-pct__subtitle {
	margin: 0;
}

.wet-pct__subtitle {
	margin-top: 8px;
	color: #667085;
}

.wet-pct__tablist {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	max-width: 100%;
	margin: 0 auto;
	/* Extra bottom padding leaves room for the always-visible scrollbar. */
	padding: 5px 5px 10px;
	overflow-x: scroll;
	overflow-y: hidden;
	border-radius: 16px;
	background: #f5f5f6;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x proximity;
	/* Firefox / modern Chrome thin scrollbar. */
	scrollbar-width: thin;
	scrollbar-color: #b6bbc4 transparent;
}

/* WebKit (Safari, older Chrome, most mobile browsers): force a visible bar. */
.wet-pct__tablist::-webkit-scrollbar {
	-webkit-appearance: none;
	height: 6px;
}

.wet-pct__tablist::-webkit-scrollbar-track {
	margin: 0 12px;
	background: transparent;
}

.wet-pct__tablist::-webkit-scrollbar-thumb {
	border-radius: 999px;
	background: #b6bbc4;
}

/* When every tab fits, center them and hide the now-pointless scrollbar. */
.wet-pct__tablist.is-fit {
	justify-content: center;
	overflow-x: hidden;
	padding-bottom: 5px;
	scrollbar-width: none;
}

.wet-pct__tablist.is-fit::-webkit-scrollbar {
	display: none;
}

.wet-pct__tab {
	flex: 0 0 auto;
	min-width: 0;
	padding: 11px 19px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: transparent;
	color: #4b5563;
	font: inherit;
	line-height: 1.2;
	white-space: nowrap;
	cursor: pointer;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.wet-pct__tab:hover {
	color: #111;
}

.wet-pct__tab[aria-selected="true"] {
	background: #111;
	color: #fff;
	box-shadow: 0 7px 18px rgba(17, 24, 39, .18);
}

.wet-pct__tab:focus-visible,
.wet-pct__arrow:focus-visible,
.wet-pct__dot:focus-visible,
.wet-pct__retry:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.wet-pct__panels {
	margin-top: 28px;
}

.wet-pct__panel[hidden] {
	display: none !important;
}

.wet-pct__carousel,
.wet-pct__viewport {
	position: relative;
	width: 100%;
	min-width: 0;
}

.wet-pct__viewport {
	overflow: hidden;
}

.wet-pct__track {
	display: flex;
	align-items: stretch;
	width: max-content;
	min-width: 100%;
	gap: var(--wet-pct-gap);
	touch-action: pan-y;
	transition: transform var(--wet-pct-transition) cubic-bezier(.22, .61, .36, 1);
	will-change: transform;
}

.wet-pct__slide {
	display: flex;
	flex: 0 0 auto;
	min-width: 0;
}

.wet-pct__slide > .wet-product-card {
	width: 100%;
}

.wet-pct .wet-product-card,
.wet-pct .wet-product-card a,
.wet-pct .wet-product-card a:hover,
.wet-pct .wet-product-card a:focus,
.wet-pct .wet-product-card__button,
.wet-pct .wet-product-card__button:hover,
.wet-pct .wet-product-card__button:focus {
	text-decoration: none;
}

.wet-pct__arrow {
	position: absolute;
	z-index: 4;
	top: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid #d8dbe1;
	border-radius: 50%;
	background: #fff;
	color: #111827;
	font: inherit;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease;
}

.wet-pct__arrow--previous {
	inset-inline-start: 10px;
}

.wet-pct__arrow--next {
	inset-inline-end: 10px;
}

.wet-pct__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 18px;
}

.wet-pct__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #cbd5e1;
	cursor: pointer;
	transition: background-color .2s ease, transform .2s ease;
}

.wet-pct__dot.is-active {
	background: #111827;
	transform: scale(1.3);
}

.wet-pct__carousel.is-static .wet-pct__arrow,
.wet-pct__carousel.is-static .wet-pct__dots {
	display: none;
}

.wet-pct__status {
	width: 100%;
	margin: 0;
	padding: 22px;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	background: #fafafa;
	text-align: center;
}

.wet-pct__status--error {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}

.wet-pct__retry {
	padding: 8px 15px;
	border: 1px solid currentColor;
	border-radius: 6px;
	background: transparent;
	color: inherit;
	cursor: pointer;
}

@media (max-width: 767px) {
	.wet-pct__tabs {
		position: relative;
	}

	.wet-pct__tablist {
		border-radius: 12px;
		padding: 5px 6px;
	}

	.wet-pct__tab {
		padding: 9px 15px;
		scroll-snap-align: start;
	}

	.wet-pct__arrow {
		width: 36px;
		height: 36px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wet-pct__track,
	.wet-pct__tab,
	.wet-pct__arrow,
	.wet-pct__dot,
	.wet-pct .wet-product-card {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}
