/* Elementor Category Circle Slider — Frontend Styles */

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

.ecc-track-outer {
	overflow: hidden;
}

.ecc-track {
	--ecc-slides: 6;
	display: flex;
	gap: 40px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-ms-overflow-style: none;
	scrollbar-width: none;
	padding: 4px 2px 10px;
}

.ecc-track::-webkit-scrollbar {
	display: none;
}

.ecc-item {
	flex: 0 0 calc( ( 100% - ( var( --ecc-slides ) - 1 ) * 40px ) / var( --ecc-slides ) );
	scroll-snap-align: start;
	text-align: center;
	text-decoration: none;
	display: block;
	cursor: pointer;
}

.ecc-circle {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	background: #ffffff;
	border: 1px solid #e4e0da;
	transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.ecc-circle img {
	width: 78%;
	height: 78%;
	object-fit: contain;
	display: block;
	transition: transform .35s ease;
}

.ecc-label {
	margin-top: 18px;
	font-size: 17px;
	line-height: 1.3;
	color: #2b2b2b;
	transition: color .3s ease;
}

/* Arrows */
.ecc-nav {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-top: 30px;
}

.ecc-btn {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: none;
	background: #b08d6a;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	transition: background-color .25s ease, transform .15s ease;
}

.ecc-btn:hover {
	background-color: #967352;
}

.ecc-btn:active {
	transform: scale( 0.92 );
}

.ecc-btn svg {
	width: 14px;
	height: 14px;
	display: block;
}

.ecc-btn:disabled {
	opacity: .4;
	cursor: default;
	pointer-events: none;
}

/* Responsive fallback (only used if user does not set responsive Visible Items) */
@media ( max-width: 767px ) {
	.ecc-track {
		--ecc-slides: 3;
	}
}

@media ( max-width: 480px ) {
	.ecc-track {
		--ecc-slides: 2;
	}
}
