/* Why Choose Us Widget - Swiper Carousel */

.why-choose-us-wrapper {
	width: 100%;
}

.why-choose-us-header {
	display: flex;
	justify-content: flex-end;
	gap: 16px;
	position: absolute;
	right: 0;
	top: -4vw;
}

.why-choose-us-container {
	position: relative;
	width: 100%;
}

.why-choose-us-swiper {
	width: 100%;
	overflow: hidden;
	padding: 10px 0 0 0;
}

.why-choose-us-swiper .swiper-wrapper {
	display: flex;
}

.why-choose-us-swiper .swiper-slide {
	width: auto;
	height: auto;
	flex-shrink: 0;
}

.why-choose-us-card {
	padding: 30px;
	border-radius: 8px;
	text-align: start;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 120px;
}

.why-choose-us-card:hover {
	transform: translateY(-8px);
}

.why-choose-us-card-icon {
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.why-choose-us-card-icon img {
	width: 50px;
	height: 50px;
	object-fit: contain;
}

.why-choose-us-card-title {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 15px 0;
	color: #000000;
	line-height: 1.4;
	min-height: 56px;
}

.why-choose-us-card-description {
	font-size: 14px;
	line-height: 1.6;
	color: #666666;
	margin: 0;
	min-height: 98px;
}

/* Navigation Buttons */
.why-choose-us-header button.why-choose-us-nav-button {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: transparent;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #333333;
	transition: all 0.3s ease;
	z-index: 10;
	padding: 0;
	box-shadow: none;
}

.why-choose-us-nav-button:hover {
	background-color: transparent;
	border-color: transparent;
	box-shadow: none;
	opacity: 0.8;
}

.why-choose-us-nav-button:active {
	transform: scale(0.95);
}

.why-choose-us-nav-button svg {
	width: 24px;
	height: 24px;
	stroke: currentColor;
}

.why-choose-us-nav-icon {
	width: 36px;
	height: 36px;
	object-fit: contain;
}


@media (max-width: 768px) {
	.why-choose-us-header {
		gap: 16px;
		top: -12vw;
	}

	.why-choose-us-nav-button {
		width: 28px;
		height: 28px;
	}

	.why-choose-us-nav-button svg {
		width: 28px;
		height: 28px;
	}

	.why-choose-us-card {
		padding: 16px;
		gap: 32px;
	}

	.why-choose-us-card-icon img {
		width: 36px;
		height: 36px;
	}

	.why-choose-us-card-title {
		font-size: 14px;
		margin-bottom: 10px;
		min-height: 68px;
	}

	.why-choose-us-card-description {
		font-size: 11px;
		line-height: 1.5;
		min-height: 158px;
	}
	.why-choose-us-header button.why-choose-us-nav-button {
		width: 32px;
		height: 32px;
	}
}
