/* Testimonial Slider for Elementor - Frontend Styles */

.tse-slider-wrapper {
	position: relative;
	width: 100%;
	box-sizing: border-box;
}

.tse-slider {
	overflow: hidden;
	width: 100%;
}

.tse-track {
	display: flex;
	will-change: transform;
	transition: transform 0.6s ease;
}

.tse-slide {
	flex-shrink: 0;
	box-sizing: border-box;
	display: flex;
}

.tse-card {
	background-color: #ffffff;
	border: 1px solid #e4e4e4;
	border-radius: 6px;
	padding: 30px;
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

.tse-quote-icon {
	line-height: 1;
	margin-bottom: 15px;
}

.tse-quote-icon i,
.tse-quote-icon svg {
	font-size: 32px;
	color: #f0602a;
}

.tse-image {
	margin-bottom: 15px;
}

.tse-image img {
	max-width: 60px;
	border-radius: 50%;
	display: block;
}

.tse-text {
	color: #6d6d6d;
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 20px;
}

.tse-divider {
	width: 100%;
	height: 1px;
	background-color: #2bb673;
	margin-bottom: 20px;
}

.tse-name {
	color: #2bb673;
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 4px;
}

.tse-position {
	color: #8b8b8b;
	font-size: 14px;
	line-height: 1.5;
}

/* Arrows */
.tse-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	background-color: #ffffff;
	border: 1px solid #e4e4e4;
	color: #2bb673;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	padding: 0;
	transition: all 0.3s ease;
}

.tse-arrow:hover {
	background-color: #2bb673;
	color: #ffffff;
}

.tse-arrow-prev {
	left: -20px;
}

.tse-arrow-next {
	right: -20px;
}

.tse-arrow svg {
	width: 16px;
	height: 16px;
	pointer-events: none;
	display: block;
}

.tse-arrow.tse-disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

/* Drag / swipe */
.tse-slider-wrapper.tse-drag-enabled .tse-track {
	cursor: grab;
}

.tse-slider-wrapper.tse-drag-enabled.tse-dragging .tse-track {
	cursor: grabbing;
	user-select: none;
}

.tse-slide.tse-clone {
	pointer-events: none;
}

.tse-slide img {
	-webkit-user-drag: none;
	user-drag: none;
}

/* Dots */
.tse-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 25px;
}

.tse-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #d8d8d8;
	margin: 0 6px;
	cursor: pointer;
	padding: 0;
	border: none;
	transition: background-color 0.3s ease;
}

.tse-dot.tse-active {
	background-color: #2bb673;
}

/* Responsive fallback breakpoints (used if inline data attrs unavailable) */
@media (max-width: 1024px) {
	.tse-arrow-prev { left: 5px; }
	.tse-arrow-next { right: 5px; }
}

@media (max-width: 767px) {
	.tse-card {
		padding: 20px;
	}
}
