.co-carousel-wrap {
	position: relative;
	z-index: 1;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 0;
	min-height: 520px;
	--co-card-color-style-0: #fbe5cc;
	--co-card-color-style-1: #c3e3dd;
	--co-card-color-style-2: #f6c8cb;
	--co-card-color-style-3: #eac7f5;
}

.co-carousel {
	width: min(100%, 1100px);
	height: 440px;
	overflow: visible;
	padding: 0 20px;
}

.co-carousel__slide {
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.co-carousel__slide.swiper-slide-active {
	opacity: 1;
}

.co-card {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 400px;
	width: 260px;
	border-radius: 22px;
	box-shadow: 0 24px 50px rgba(15, 15, 20, 0.15);
	--co-item-card-color: var(--co-card-color-style-0);
	background: linear-gradient(163deg, #fdf3ea 0%, var(--co-item-card-color) 100%);
	transform-origin: center center;
}

.co-card--style-1 {
	--co-item-card-color: var(--co-card-color-style-1);
}

.co-card--style-2 {
	--co-item-card-color: var(--co-card-color-style-2);
}

.co-card--style-3 {
	--co-item-card-color: var(--co-card-color-style-3);
}

.co-card__shoe {
	position: relative;
	width: 130%;
	flex-shrink: 0;
	top: -110px;
}

.co-card__shoe-img {
	user-select: none;
	position: relative;
	width: 100%;
	height: auto;
	display: block;
	z-index: 2;
	filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.22));
}

.co-carousel-wrap--woocommerce .co-card__shoe {
	width: 106%;
	top: -95px;
}

.co-carousel-wrap--woocommerce .co-card__shoe-img {
	max-height: 220px;
	object-fit: contain;
	filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.16));
}

.co-carousel-wrap--woocommerce .co-card {
	box-shadow: 0 16px 34px rgba(15, 15, 20, 0.12);
}

.co-carousel-wrap--woocommerce .co-card__shoe-shadow {
	top: 92px;
	opacity: 0.18;
	box-shadow: 0 0 20px 26px rgba(0, 0, 0, 0.45);
}

.co-card__shoe-shadow {
	position: absolute;
	top: 84px;
	left: 0;
	right: 0;
	margin: 0 auto;
	display: block;
	border-radius: 50%;
	width: 26px;
	height: 22px;
	opacity: 0.25;
	background-color: #000;
	box-shadow: 0 0 34px 44px rgba(0, 0, 0, 0.6);
}

.co-card__info {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 22px;
	display: block;
}

.co-card__collection {
	font-weight: 600;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	opacity: 0.6;
}

.co-card__title {
	font-weight: 700;
	font-size: 1.45rem;
	text-transform: uppercase;
	line-height: 1.22;
	margin-top: 6px;
}

.co-card__title a {
	color: inherit;
	text-decoration: none;
}

.co-card__price {
	margin-top: 11px;
	font-weight: 600;
	font-size: 1.12rem;
}

.co-card__price .amount {
	color: inherit;
	font-size: inherit;
}

.co-card__rating {
	margin-top: 8px;
	line-height: 1;
}

.co-card__button {
	margin-top: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 14px;
	border-radius: 999px;
	border: 1px solid #111;
	background: #111;
	color: #fff;
	font-weight: 600;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	text-decoration: none;
	transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.co-card__button:hover {
	transform: translateY(-2px);
	color: #fff;
}

.text-mask {
	overflow: hidden;
}

.text-mask .co-text-mask-line {
	display: inline-flex;
	will-change: transform;
}

.co-carousel__nav-buttons {
	margin-top: 34px;
	width: min(100%, 920px);
	display: flex;
	justify-content: space-between;
	padding: 0 10px;
}

.co-carousel__nav-button {
	padding: 10px 0;
	width: 160px;
	position: relative;
	display: flex;
	flex-direction: column;
	cursor: pointer;
}

.co-carousel__nav-button.prev {
	align-items: flex-end;
}

.co-carousel__nav-button.next {
	align-items: flex-start;
}

.co-carousel__nav-button.swiper-button-disabled {
	opacity: 0.35;
	pointer-events: none;
}

.co-carousel__nav-button:before {
	display: block;
	content: "";
	width: 100%;
	height: 1px;
	background-color: #101010;
}

.co-carousel__nav-button span {
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	padding: 10px 0;
	transition: transform 0.3s cubic-bezier(0.22, 0.74, 0.46, 0.97), color 0.3s ease;
}

.co-carousel__nav-button:hover:not(.swiper-button-disabled).prev span {
	transform: translate3d(-10px, 0, 0);
}

.co-carousel__nav-button:hover:not(.swiper-button-disabled).next span {
	transform: translate3d(10px, 0, 0);
}

.co-carousel__pagination {
	position: absolute;
	bottom: -8px;
	left: 0;
	right: 0;
	text-align: center;
}

.co-carousel__pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: #333;
	opacity: 0.3;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.co-carousel__pagination .swiper-pagination-bullet-active {
	opacity: 1;
	transform: scale(1.2);
}

.co-background {
	top: 0;
	left: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.6s ease;
	z-index: -1;
}

.co-background--style-0 {
	background: #fcead6;
	background: color-mix(in srgb, var(--co-card-custom-bg, var(--co-card-color-style-0)) 80%, #ffffff 20%);
}

.co-background--style-1 {
	background: #d0e9e4;
	background: color-mix(in srgb, var(--co-card-custom-bg, var(--co-card-color-style-1)) 80%, #ffffff 20%);
}

.co-background--style-2 {
	background: #f8d3d6;
	background: color-mix(in srgb, var(--co-card-custom-bg, var(--co-card-color-style-2)) 80%, #ffffff 20%);
}

.co-background--style-3 {
	background: #eed3f7;
	background: color-mix(in srgb, var(--co-card-custom-bg, var(--co-card-color-style-3)) 80%, #ffffff 20%);
}

.co-carousel-notice {
	padding: 12px 16px;
	background: #fff3cd;
	border: 1px solid #f3d27a;
	color: #664d03;
	border-radius: 6px;
}

@media (max-width: 1024px) {
	.co-carousel {
		height: 410px;
	}

	.co-card {
		height: 370px;
		width: 240px;
	}

	.co-card__shoe {
		top: -95px;
	}

	.co-carousel-wrap--woocommerce .co-card__shoe {
		top: -62px;
	}

	.co-carousel-wrap--woocommerce .co-card__shoe-img {
		max-height: 200px;
	}
}

@media (max-width: 767px) {
	.co-carousel-wrap {
		min-height: 460px;
		padding: 28px 0;
	}

	.co-carousel {
		height: 355px;
		padding: 0 8px;
	}

	.co-card {
		height: 325px;
		width: 215px;
		border-radius: 18px;
	}

	.co-card__title {
		font-size: 1.2rem;
	}

	.co-card__shoe {
		top: -80px;
	}

	.co-carousel-wrap--woocommerce .co-card__shoe {
		top: -52px;
	}

	.co-carousel-wrap--woocommerce .co-card__shoe-img {
		max-height: 172px;
	}

	.co-card__shoe-shadow {
		top: 70px;
		box-shadow: 0 0 24px 30px rgba(0, 0, 0, 0.55);
	}

	.co-carousel__nav-buttons {
		margin-top: 24px;
	}

	.co-carousel__nav-button {
		width: 112px;
	}
}
