.featured-slider {
	padding: 45px 0 60px;
	/* background: #eef4fb; */
}

.featured-slider__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 25px;
}

.featured-slider__title {
	margin: 0;
	font-size: 32px;
	font-weight: 600;
	color: #2d3748;
}

.featured-slider__controls {
	display: flex;
	gap: 10px;
}


.featured-slider__nav {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid #cbd5e0;
	background: #fff;
	color: #2d3748;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	transition: all 0.2s ease;
}

.featured-slider__nav:hover {
	color: #1a365d;
	border-color: #63b3ed;
	box-shadow: 0 6px 15px rgba(75, 123, 236, 0.2);
}

.featured-slider__viewport {
	padding-bottom: 25px;
}

.featured-slider__pagination {
	text-align: center;
	margin-top: 10px;
}

.featured-slider__pagination .swiper-pagination-bullet {
	background: #cbd5e0;
	opacity: 1;
}

.featured-slider__pagination .swiper-pagination-bullet-active {
	background: #2da7f4;
}

.featured-card {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 12px 25px rgba(15, 15, 15, 0.08);
	padding: 18px;
	height: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}

.featured-card__badge {
	position: absolute;
	top: 18px;
	right: 18px;
	background: #2da7f4;
	color: #fff;
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	box-shadow: 0 6px 15px rgba(46, 140, 250, 0.35);
}

.featured-card__image {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 200px;
	margin-bottom: 18px;
}

.featured-card__image img {
	max-height: 210px;
	width: auto;
	max-width: 100%;
}

.featured-card__title {
	font-size: 18px;
	font-weight: 600;
	color: #2d3748;
	display: block;
	margin-bottom: 10px;
	min-height: 52px;
}

.featured-card__title:hover {
	color: #1b75bc;
	text-decoration: none;
}

.featured-card__body {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.featured-card__rating {
	color: #f6ad55;
	font-size: 16px;
	margin-bottom: 12px;
}

.featured-card__price {
	font-size: 20px;
	font-weight: 700;
	color: #1a202c;
	display: flex;
	gap: 8px;
	align-items: baseline;
}

.featured-card__price-old {
	font-size: 16px;
	color: #a0aec0;
	text-decoration: line-through;
}

.featured-card__price-new,
.featured-card__price-current {
	color: #0b5aa8;
}

.featured-card__tax {
	font-size: 12px;
	color: #718096;
	margin-top: 4px;
}

.featured-card__footer {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
}

.featured-card__cart {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #2da7f4;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 10px 15px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.featured-card__cart:hover {
	background: #1b75bc;
	transform: translateY(-1px);
}

.featured-card__icon {
	width: 44px;
	height: 44px;
	border-radius: 8px;
	border: none;
	background: #4a5568;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	cursor: pointer;
	transition: background 0.2s ease;
}

.featured-card__icon:hover {
	background: #2d3748;
}

@media (max-width: 991px) {
	.featured-slider {
		padding: 35px 0 45px;
	}

	.featured-slider__title {
		font-size: 24px;
	}

	.featured-slider__controls {
		gap: 6px;
	}

	.featured-card__image {
		min-height: 160px;
	}

	.featured-card__title {
		min-height: auto;
		font-size: 16px;
	}
}
