/* ==========================================================
   Product Carousel Widget
   ========================================================== */

.pcw-wrapper {
	position: relative;
	width: 100%;
}

.pcw-swiper {
	overflow: hidden;
}

.pcw-slide {
	display: flex;
	align-items: stretch;
	justify-content: center;
	background: #fff;
	box-sizing: border-box;
	overflow: hidden;
}

.pcw-slide-link {
	display: block;
	width: 100%;
	height: 100%;
	line-height: 0;
}

.pcw-slide-img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
}

/* Arrows */
.pcw-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	background: none;
	border: none;
	padding: 6px;
	cursor: pointer;
	color: #999;
	transition: color 0.2s ease;
}

.pcw-arrow:hover {
	color: #333;
}

.pcw-arrow svg {
	display: block;
	width: 28px;
	height: 28px;
}

.pcw-prev {
	left: -40px;
}

.pcw-next {
	right: -40px;
}

@media (max-width: 1024px) {
	.pcw-prev { left: 4px; }
	.pcw-next { right: 4px; }
	.pcw-arrow {
		background: rgba(255, 255, 255, 0.85);
		border-radius: 50%;
		padding: 8px;
	}
}
