.cps-slider {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.cps-slider-track {
	display: flex;
	transition: transform 0.4s ease;
	will-change: transform;
}

/* UPDATED: width handled by JS based on items_per_view */
.cps-slide {
	box-sizing: border-box;
	padding: 10px;
	flex: 0 0 100%;
	max-width: 100%;
	min-width: 100%;
}

.cps-slide-inner {
	background: #fff;
	border: 1px solid #eee;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	border-radius: 4px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.cps-slide-image img {
	width: 100%;
	height: auto;
	display: block;
}

.cps-slide-content {
	padding: 10px 12px 14px;
}

.cps-product-title {
	font-size: 15px;
	margin: 6px 0 4px;
}

.cps-product-title a {
	text-decoration: none;
	color: inherit;
}

.cps-product-price {
	font-weight: 600;
	margin-bottom: 8px;
}

/* Arrows */
.cps-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border: none;
	background: rgba(255, 255, 255, 0.9);
	padding: 6px 10px;
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
	z-index: 5;
}

.cps-prev {
	left: 8px;
}

.cps-next {
	right: 8px;
}

/* Dots */
.cps-dots {
	display: flex;
	justify-content: center;
	margin-top: 10px;
	gap: 6px;
}

.cps-dot-btn {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	background: #ccc;
	cursor: pointer;
	padding: 0;
}

.cps-dot-btn.is-active {
	background: #000;
}

/* External navigation shortcode: [sliderNavigation] */
.cps-slider-nav {
	display: flex;
	gap: 8px;
	justify-content: center;
	align-items: center;
	margin: 10px 0;
}

.cps-slider-nav .cps-nav-btn {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	border: 1px solid #ddd;
	background: #fff;
	padding: 6px 10px;
	cursor: pointer;
	border-radius: 3px;
	font-size: 14px;
	line-height: 1.2;
}

.cps-slider-nav .cps-nav-btn:hover {
	border-color: #bbb;
}

.cps-slider-nav .cps-nav-icon {
	font-size: 16px;
}



/* Basic responsive tweak */
@media (min-width: 768px) {
	.cps-slide {
		/* padding: 15px; */
	}
}
