.whoop-product-slider {
	position: relative;
	padding: 0 16px;
	background-color: transparent;
}

.whoop-product-card {
	display: flex;
	flex-direction: column;
	height: auto;
	padding: 24px 16px 32px;
	overflow: hidden;
	background: #ffffff;
	border-radius: 14px;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.whoop-product-card__image-wrap {
	position: relative;
	overflow: hidden;
}

.whoop-product-card__image {
	display: block;
	margin-bottom: 20px;
	overflow: hidden;
	background: #f5f5f5;
	border-radius: 12px;
}

.whoop-product-card__image-wrap:hover img {
	transform: scale(1.05);
}

.whoop-product-card__image img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	border-radius: 12px;
	transition: transform 0.3s ease;
	object-fit: cover;
}

.whoop-product-card__hover {
	position: absolute;
	inset: 0;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	gap: 8px;
	padding: 8px;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.whoop-product-card__hover .et-wishlist-holder,
.whoop-product-card__hover .add-to-wishlist {
	display: inline-flex;
}

.whoop-product-card:hover .whoop-product-card__hover {
	opacity: 1;
	pointer-events: auto;
}

.whoop-card-icon,
.whoop-product-card .xstore-wishlist-icon {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 38px;
	height: 38px;
	background: rgba(0, 0, 0, 0.65);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	transition: transform 0.3s ease, background-color 0.3s ease;
}

.whoop-product-card .xstore-wishlist-icon:hover,
.whoop-card-icon:hover {
	background: #A9D000;
	transform: translateY(-2px);
}

.whoop-product-card .xstore-wishlist-icon:hover .et-icon {
	color: #ffffff;
}

.whoop-card-icon:before {
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	mask-position: center;
	mask-size: contain;
	mask-repeat: no-repeat;
	background: #ffffff;
}

.whoop-card-icon--quick:before {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23fff' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2.458 12C3.732 7.943 7.523 5 12 5c4.477 0 8.268 2.943 9.542 7-1.274 4.057-5.065 7-9.542 7-4.477 0-8.268-2.943-9.542-7z'/%3E%3Ccircle cx='12' cy='12' r='3' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
}

.whoop-card-icon--wishlist:before {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23fff' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4.318 6.318a4.5 4.5 0 010-6.364 4.5 4.5 0 016.364 0L12 1.272l1.318-1.318a4.5 4.5 0 016.364 6.364L12 15.682l-7.682-9.364z'/%3E%3C/svg%3E");
}

.whoop-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	color: #181818;
}

.whoop-product-card__model {
	display: flex;
	margin-bottom: 6px;
	font-size: 42px;
	line-height: 1.2;
	font-weight: 500;
	text-transform: uppercase;
}

.whoop-product-card__title {
	margin: 0 0 15px;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 500;
	letter-spacing: -0.01em;
}

.whoop-product-card__title a {
	color: #181818;
	text-decoration: none;
}

.whoop-product-card__title a:hover {
	color: #78a301;
}

.whoop-product-card__excerpt {
	margin: 0 0 16px;
	font-size: 15px;
	line-height: 1.55;
	color: #2d2d2d;
}

.whoop-product-card__excerpt ul {
	margin: 0;
	padding: 0;
	padding-left: 16px;
	list-style: disc;
}

.whoop-product-card__excerpt li {
	margin-bottom: 0px;
}

.whoop-product-card__footer {
	margin-top: auto;
}

.whoop-product-card__cta {
	display: block;
	width: 100%;
	padding: 10px 16px;
	font-family: inherit;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	text-align: center;
	color: #181818;
	text-decoration: none;
	background: #A9D000;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.whoop-product-card__cta:hover {
	background: #b7db17;
	box-shadow: 0 8px 16px rgba(182, 228, 0, 0.45);
	transform: translateY(-2px);
}

.whoop-product-card__price {
	display: inline-block;
}

.whoop-product-slider .swiper-button-prev,
.whoop-product-slider .swiper-button-next {
	color: #fff;
	background: #A9D000;
	border-radius: 50%;
}

.whoop-product-slider .swiper-button-prev.is-hidden,
.whoop-product-slider .swiper-button-next.is-hidden,
.whoop-product-slider .whoop-product-slider__pagination.is-hidden {
	display: none;
}

.whoop-product-slider .swiper-pagination-bullet {
	background: #ffffff;
	opacity: 0.35;
}

.whoop-product-slider .swiper-pagination-bullet-active {
	background: #A9D000;
	opacity: 1;
}

@media (max-width: 1199px) {
	.whoop-product-slider {
		max-width: 940px;
		margin: 0 auto;
	}
}

@media (max-width: 991px) {
	.whoop-product-slider {
		max-width: 750px;
	}

	.whoop-product-card__title {
		font-size: 18px;
	}
}

@media (max-width: 767px) {
	.whoop-product-slider {
		max-width: 450px;
	}
}
