.cept-widget {
	--cept-per-view: 4;
	position: relative;
	width: 100%;
	color: inherit;
}

.cept-heading {
	margin: 0;
}

.cept-tabs {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.cept-tab {
	appearance: none;
	-webkit-appearance: none;
	border-style: solid;
	border-width: 1px;
	cursor: pointer;
	font: inherit;
	line-height: 1;
	transition: background-color .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
}

.cept-tab:hover {
	opacity: .82;
}

.cept-stage {
	position: relative;
	min-height: 220px;
}

.cept-products {
	position: relative;
	transition: opacity .18s ease;
}

.cept-widget.is-loading .cept-products {
	opacity: .35;
	pointer-events: none;
}

.cept-widget.is-loading .cept-stage::after {
	content: "";
	position: absolute;
	z-index: 10;
	top: 45%;
	left: 50%;
	width: 34px;
	height: 34px;
	margin: -17px 0 0 -17px;
	border: 3px solid rgba(127,127,127,.28);
	border-top-color: currentColor;
	border-radius: 50%;
	animation: cept-spin .7s linear infinite;
}

@keyframes cept-spin {
	to { transform: rotate(360deg); }
}

.cept-products ul.products {
	display: grid !important;
	grid-template-columns: repeat(var(--cept-per-view), minmax(0, 1fr)) !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

.cept-products ul.products::before,
.cept-products ul.products::after {
	display: none !important;
}

.cept-products ul.products > li.product {
	float: none !important;
	clear: none !important;
	width: 100% !important;
	margin: 0 !important;
}

.cept-products ul.products > li.product[hidden] {
	display: none !important;
}

.cept-products img {
	width: 100%;
	height: auto;
}

/* Default price tone: intentionally very light grey. Elementor's Price Color
   control can override this per widget. */
.cept-products .price,
.cept-products .price ins,
.cept-products .price del,
.cept-products .amount {
	color: #D6D6D6;
}

.cept-controls-row {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	margin-top: 34px;
	padding-top: 24px;
	border-top: 1px solid rgba(255,255,255,.28);
	width: 100%;
}

.cept-arrows {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
}

.cept-arrow {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	cursor: pointer;
	font-size: 20px;
	line-height: 1;
	transition: opacity .2s ease, transform .2s ease, background-color .2s ease;
}

.cept-prev {
	background: transparent;
	color: #FFFFFF;
	border: 1px solid rgba(255,255,255,.45);
}

.cept-next {
	background: #FFFFFF;
	color: #111111;
	border: 1px solid #FFFFFF;
}

.cept-arrow:hover:not(:disabled) {
	transform: translateY(-1px);
}

.cept-arrow:disabled {
	opacity: 1;
	cursor: default;
	background: #000000 !important;
	color: #FFFFFF !important;
	border: 1px solid #FFFFFF !important;
}

.cept-no-overflow .cept-arrows {
	opacity: 1;
	pointer-events: none;
}

.cept-view-all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	text-decoration: none !important;
	transition: background-color .2s ease, color .2s ease, opacity .2s ease, transform .2s ease;
}

.cept-view-all:hover {
	transform: translateY(-1px);
}

.cept-empty {
	padding: 30px 0;
}


@media (max-width: 1024px) {
	.cept-tabs {
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-bottom: 6px;
	}

	.cept-tabs::-webkit-scrollbar {
		display: none;
	}

	.cept-tab {
		flex: 0 0 auto;
		white-space: nowrap;
	}
}

@media (max-width: 767px) {
	.cept-widget {
		--cept-per-view: 2 !important;
	}

	.cept-products ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
	.cept-controls-row {
		justify-content: flex-end;
		flex-wrap: nowrap;
	}


	.cept-has-arrows:not(.cept-mobile-arrows) .cept-arrows {
		display: none;
	}
}


.cept-shop-tab {
	text-decoration: none !important;
}
