.wpc-section {
	--wpc-red: #d71e28;
	--wpc-text: #111111;
	--wpc-muted: #9a9a9a;
	--wpc-line: #ececec;
	--wpc-gap: 32px;
	--wpc-font: "Montserrat", "Poppins", "Segoe UI", sans-serif;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	padding: 8px 0 12px;
	background: #fff;
	font-family: var(--wpc-font);
	color: var(--wpc-text);
	-webkit-font-smoothing: antialiased;
}

.wpc-section *,
.wpc-section *::before,
.wpc-section *::after {
	box-sizing: border-box;
}

.wpc-section a {
	box-shadow: none !important;
	outline: none;
	text-decoration: none !important;
}

.wpc-section .wpc-title::before,
.wpc-section .wpc-title::after,
.wpc-section .wpc-card-title::before,
.wpc-section .wpc-card-title::after {
	content: none !important;
	display: none !important;
}

.wpc-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 0 0 28px;
}

.wpc-section .wpc-title {
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	background: none !important;
	font-family: var(--wpc-font) !important;
	font-size: 30px !important;
	font-weight: 800 !important;
	line-height: 1.15 !important;
	letter-spacing: -0.025em;
	color: var(--wpc-text) !important;
	text-transform: none !important;
}

.wpc-view-all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	color: var(--wpc-muted) !important;
	font-family: var(--wpc-font);
	font-size: 14px !important;
	font-weight: 400 !important;
	line-height: 1;
	letter-spacing: 0;
	transition: color 0.2s ease;
}

.wpc-view-all:hover,
.wpc-view-all:focus {
	color: #666 !important;
}

.wpc-view-all-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border: 1px solid #d6d6d6;
	border-radius: 50%;
	color: #7a7a7a;
	background: #fff;
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.wpc-view-all:hover .wpc-view-all-icon {
	transform: translateX(2px);
	border-color: #bdbdbd;
}

.wpc-view-all-icon svg {
	display: block;
}

.wpc-viewport {
	overflow-x: auto;
	overflow-y: hidden;
	width: 100%;
	cursor: grab;
	-ms-overflow-style: none;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	scroll-behavior: smooth;
}

.wpc-viewport::-webkit-scrollbar {
	display: none;
}

.wpc-viewport.is-dragging {
	cursor: grabbing;
	scroll-behavior: auto;
	user-select: none;
}

.wpc-viewport.is-dragging .wpc-card {
	pointer-events: none;
}

.wpc-track {
	display: flex;
	align-items: stretch;
	gap: var(--wpc-gap);
}

.wpc-slide {
	flex: 0 0 auto;
	min-width: 0;
}

.wpc-card {
	display: block;
	height: 100%;
	color: inherit !important;
	text-align: left;
}

.wpc-card:hover,
.wpc-card:focus {
	color: inherit !important;
}

.wpc-card-image {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	padding: 6px;
	background: #fff;
	overflow: hidden;
}

.wpc-card-image img,
.wpc-card-img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: 100%;
	margin: 0 auto;
	object-fit: contain;
	object-position: center;
	border: 0;
	background: transparent;
	box-shadow: none !important;
	-webkit-user-drag: none;
	user-select: none;
	transition: transform 0.35s ease;
}

.wpc-card:hover .wpc-card-img {
	transform: scale(1.04);
}

.wpc-badge {
	position: absolute;
	top: 8px;
	left: 0;
	z-index: 2;
	display: inline-block;
	padding: 4px 11px;
	border-radius: 999px;
	background: var(--wpc-red);
	color: #fff !important;
	font-family: var(--wpc-font);
	font-size: 11px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.01em;
	white-space: nowrap;
}

.wpc-section .wpc-card-title {
	margin: 14px 0 10px !important;
	padding: 0 !important;
	border: none !important;
	background: none !important;
	font-family: var(--wpc-font) !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 1.4 !important;
	letter-spacing: 0.03em;
	text-transform: uppercase !important;
	color: var(--wpc-text) !important;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.8em;
}

.wpc-card-prices {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 10px;
}

.wpc-price-sale {
	color: var(--wpc-red) !important;
	font-family: var(--wpc-font);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.wpc-section del.wpc-price-regular,
.wpc-price-regular {
	color: #b0b0b0 !important;
	font-family: var(--wpc-font);
	font-size: 13px;
	font-weight: 400;
	line-height: 1.2;
	text-decoration: line-through !important;
	background: none !important;
	opacity: 1;
}

.wpc-price-current {
	color: var(--wpc-text) !important;
	font-family: var(--wpc-font);
	font-size: 16px;
	font-weight: 700;
}

.wpc-footer {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 32px;
}

.wpc-progress {
	flex: 1;
	min-width: 0;
}

.wpc-progress-track {
	position: relative;
	height: 1px;
	background: var(--wpc-line);
}

.wpc-progress-fill {
	position: absolute;
	left: 0;
	top: 50%;
	height: 3px;
	width: 22%;
	background: #111;
	transform: translateY(-50%);
}

.wpc-nav {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.wpc-section .wpc-nav-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	min-width: 40px;
	min-height: 40px;
	margin: 0;
	padding: 0;
	border: 1px solid #dcdcdc;
	border-radius: 50%;
	background: #fff;
	color: #5f5f5f;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	box-shadow: none !important;
	line-height: 1;
	opacity: 1 !important;
	transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.wpc-section .wpc-nav-btn svg {
	display: block;
}

.wpc-section .wpc-nav-btn:hover,
.wpc-section .wpc-nav-btn:focus {
	border-color: #b5b5b5;
	color: #111;
	outline: none;
	background: #fff;
	transform: translateY(-1px);
}

.wpc-section .wpc-nav-btn:disabled,
.wpc-section .wpc-nav-btn[aria-disabled="true"] {
	cursor: default;
	opacity: 1 !important;
	transform: none;
}

.wpc-empty {
	margin: 16px 0;
	color: #666;
}

@media (max-width: 1024px) {
	.wpc-section .wpc-title {
		font-size: 24px !important;
	}

	.wpc-section {
		--wpc-gap: 22px;
	}
}

@media (max-width: 767px) {
	.wpc-section {
		--wpc-gap: 12px;
		padding: 4px 0 8px;
	}

	.wpc-header {
		margin-bottom: 16px;
		align-items: center;
		gap: 10px;
	}

	.wpc-section .wpc-title {
		font-size: 18px !important;
		line-height: 1.25 !important;
		min-width: 0;
		flex: 1;
	}

	.wpc-view-all {
		font-size: 12px !important;
		gap: 6px;
	}

	.wpc-view-all-icon {
		width: 18px;
		height: 18px;
	}

	.wpc-card-image {
		padding: 4px;
	}

	.wpc-badge {
		top: 4px;
		padding: 3px 7px;
		font-size: 9px;
	}

	.wpc-section .wpc-card-title {
		margin: 10px 0 6px !important;
		font-size: 11px !important;
		letter-spacing: 0.02em;
		min-height: 2.8em;
	}

	.wpc-card-prices {
		gap: 6px;
	}

	.wpc-price-sale,
	.wpc-price-current {
		font-size: 13px;
	}

	.wpc-section del.wpc-price-regular,
	.wpc-price-regular {
		font-size: 11px;
	}

	.wpc-footer {
		margin-top: 18px;
		gap: 10px;
	}

	.wpc-section .wpc-nav-btn {
		width: 34px;
		height: 34px;
		min-width: 34px;
		min-height: 34px;
	}
}
