.xh-slider-wrap {
	position: relative;
	margin: 0 auto;
	padding: 20px 50px;
	font-family: inherit;
	box-sizing: border-box;
}

.xh-slider-wrap * {
	box-sizing: border-box;
}

.xh-viewport {
	overflow: hidden;
}

.xh-track {
	display: flex;
	gap: 24px;
	transition: transform 0.5s cubic-bezier(.22, 1, .36, 1);
}

.xh-slide {
	flex: 0 0 455px;
}

.xh-card {
	position: relative;
	background: #ffffff;
	border: 1px solid #f0e6ea;
	border-radius: 16px;
	padding: 22px 24px;
	width: 455px;
	height: 345px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}




.xh-top-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 10px;
}

.xh-icon-wrap {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #fbe6ec;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	flex-shrink: 0;
	transition: transform 0.35s ease;
	overflow: hidden;
}

.xh-icon-wrap img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.xh-card:hover .xh-icon-wrap {
	/*transform: scale(1.08) rotate(-4deg);*/
}

.xh-safe-badge {
	display: flex;
	align-items: center;
	gap: 6px;
	background: #e7f0f6;
	color: #2b6fa3;
	font-size: 12px;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: 20px;
	white-space: nowrap;
}

.xh-safe-badge svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
}

.xh-title {
	font-size: 15.5px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 8px;
	line-height: 1.3;
}

.xh-collection-badge {
	display: inline-block;
	background: #f9e4ec;
	color: #a41e50;
	font-size: 15px;
	font-weight: 600;
	padding: 5px 12px;
	border-radius: 20px;
	margin-bottom: 8px;
	width: fit-content;
}

.xh-delivery {
	font-size: 17px;
	color: #333;
	margin-bottom: 8px;
	line-height: 1.45;
}

.xh-delivery span {
	color: #8a8f98;
	font-weight: 400;
}

.xh-price-row {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 12px;
	flex-wrap: wrap;
}

.xh-price {
	font-size: 19px;
	font-weight: 700;
	color: #1a1a1a;
}

.xh-price-strike {
	font-size: 13px;
	color: #9aa0a6;
	text-decoration: line-through;
}

.xh-discount {
	font-size: 12px;
	font-weight: 700;
	color: #1a9e5a;
}

.xh-btn-row {
	display: flex;
	gap: 12px;
}

.xh-btn {
	flex: 1;
	text-align: center;
	padding: 10px 10px;
	border-radius: 10px;
	font-size: 13.5px;
	font-weight: 600;
	cursor: pointer;
	border: 2px solid #a41e50;
	transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
	text-decoration: none;
	display: inline-block;
}

.xh-btn-outline {
	background: #ffffff;
	color: #a41e50;
}

.xh-btn-outline:hover {
	background: #fdf1f5;
}

.xh-btn-filled {
	background: #a41e50;
	color: #ffffff;
	border-color: #a41e50;
}

.xh-btn-filled:hover {
	background: #861840;
}

/* Arrows */
.xh-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #ffffff;
	border: 1px solid #eccbd8;
	color: #a41e50;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	z-index: 5;
	transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
	user-select: none;
}

.xh-arrow:hover {
	transform: translateY(-50%) scale(1.05);
}

.xh-arrow-left {
	left: 0;
}

.xh-arrow-right {
	right: 0;
}

.xh-arrow svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

/* Dots */
.xh-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 22px;
}

.xh-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #e6c9d6;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.3s ease;
}

.xh-dot.active {
	background: #a41e50;
	transform: scale(1.25);
}

@media (max-width: 767px) {
	.xh-slider-wrap {
		padding: 20px 40px;
	}
	.xh-arrow {
		width: 36px;
		height: 36px;
	}
}