/**
 * Mix Media Clockwise Carousel Styles
 * 
 * @package Pretpot_Massive_Addons_Kit_For_Elementor
 * @since 2.7.5
 */

.pretpot-mmcc-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ========== CAROUSEL CIRCLE ========== */
.pretpot-mmcc-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 800px;
	aspect-ratio: 1;
	will-change: transform;
}

.pretpot-mmcc-item {
	position: absolute;
	top: 50%;
	left: 50%;
	transform-origin: center center;
	overflow: hidden;
	transition: transform 0.3s ease;
	will-change: transform;
}

.pretpot-mmcc-item img,
.pretpot-mmcc-item video,
.pretpot-mmcc-item iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Video Thumbnail with Play Icon */
.pretpot-mmcc-video-thumb {
	position: relative;
	width: 100%;
	height: 100%;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.pretpot-mmcc-video-thumb:hover {
	opacity: 0.9;
}

.pretpot-mmcc-video-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pretpot-mmcc-play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 48px;
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	pointer-events: none;
	transition: transform 0.3s ease;
}

.pretpot-mmcc-video-thumb:hover .pretpot-mmcc-play-icon {
	transform: translate(-50%, -50%) scale(1.1);
}

/* ========== CONTENT AREA ========== */
.pretpot-mmcc-content {
	position: relative;
	z-index: 10;
	text-align: center;
	max-width: 700px;
	padding: 20px;
}

.pretpot-mmcc-tagline {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.pretpot-mmcc-heading {
	font-size: 42px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 auto 20px;
}

.pretpot-mmcc-button {
	display: inline-block;
	padding: 14px 32px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.pretpot-mmcc-button:hover {
	transform: translateY(-2px);
}

/* ========== ANIMATIONS ========== */
@keyframes pretpot-mmcc-rotate-clockwise {
	from {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

@keyframes pretpot-mmcc-rotate-counterclockwise {
	from {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	to {
		transform: translate(-50%, -50%) rotate(-360deg);
	}
}

.pretpot-mmcc-circle.autoplay-clockwise {
	animation: pretpot-mmcc-rotate-clockwise linear infinite;
}

.pretpot-mmcc-circle.autoplay-counterclockwise {
	animation: pretpot-mmcc-rotate-counterclockwise linear infinite;
}

.pretpot-mmcc-circle.paused {
	animation-play-state: paused;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
	.pretpot-mmcc-circle {
		max-width: 600px;
	}
	
	.pretpot-mmcc-heading {
		font-size: 32px;
	}
	
	.pretpot-mmcc-play-icon {
		font-size: 36px;
	}
}

@media (max-width: 768px) {
	.pretpot-mmcc-circle {
		max-width: 500px;
	}
	
	.pretpot-mmcc-heading {
		font-size: 24px;
	}
	
	.pretpot-mmcc-tagline {
		font-size: 12px;
	}
	
	.pretpot-mmcc-button {
		padding: 12px 24px;
		font-size: 14px;
	}
	
	.pretpot-mmcc-play-icon {
		font-size: 28px;
	}
}

@media (max-width: 480px) {
	.pretpot-mmcc-circle {
		max-width: 350px;
	}
	
	.pretpot-mmcc-heading {
		font-size: 20px;
	}
	
	.pretpot-mmcc-content {
		padding: 15px;
	}
}