/* SECTION */
.dr1052videoscroll {
	padding: 3.5rem 0;
	background: linear-gradient(180deg, #f8f8f8, #ededed);
	perspective: 1200px;
	overflow: hidden;
}

/* CONTAINER */
.carousel-container-dr1052videoscroll {
	position: relative;
	width: 100%;
	max-width: 100%;
	margin: auto;
}

/* WRAPPER */
.carousel-wrapper-dr1052videoscroll {
	display: flex;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

/* SLIDE */
.carousel-slide-dr1052videoscroll {
	flex: 0 0 100%;
	display: flex;
	justify-content: center;
	padding: 0 1.2rem;
	box-sizing: border-box;
	transform-style: preserve-3d;
	transition: transform 0.6s ease, opacity 0.6s ease;
	opacity: 0.35;
	transform: scale(0.85) rotateY(8deg);
}

/* ACTIVE SLIDE */
.carousel-slide-dr1052videoscroll.active {
	opacity: 1;
	transform: scale(1) rotateY(0deg);
}

/* VIDEO CONTAINER */
.video-container {
	position: relative;
	width: 100%;
	max-width: 900px;
	aspect-ratio: 16/9;
	background: #111;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35), inset 0 0 0 2px
		rgba(255, 102, 0, 0.35);
}

/* SUBTLE GLOSS */
.video-container::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0.18),
		transparent 60%);
	pointer-events: none;
}

/* VIDEO */
.video-container video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 18px;
	pointer-events: auto;
}

/* BRAND OVERLAY */
.video-overlay {
	position: absolute;
	left: 18px;
	bottom: 18px;
	z-index: 3;
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(6px);
	padding: 10px 14px;
	border-radius: 10px;
	color: #ffffff;
	border-left: 4px solid #ff6600;
	pointer-events: none;
}

.video-overlay span {
	display: block;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.4px;
}

.video-overlay small {
	display: block;
	font-size: 0.75rem;
	opacity: 0.85;
}

/* CUSTOM PLAY BUTTON */
.custom-play-btn {
	position: absolute;
	inset: 0;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	pointer-events: auto;
}

.custom-play-btn::before {
	content: "";
	width: 78px;
	height: 78px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.65);
	border: 3px solid #ff6600;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45), inset 0 0 0 6px
		rgba(255, 102, 0, 0.15);
	transition: transform 0.25s ease, background 0.25s ease;
}

.custom-play-btn::after {
	content: "";
	position: absolute;
	margin-left: 6px;
	width: 0;
	height: 0;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 18px solid #ff6600;
}

.custom-play-btn:hover::before {
	transform: scale(1.08);
	background: rgba(0, 0, 0, 0.75);
}

/* HIDE PLAY BUTTON WHEN VIDEO PLAYS */
.video-container.playing .custom-play-btn {
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

/* NAVIGATION BUTTONS */
.carousel-button-dr1052videoscroll {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(6px);
	color: #ffffff;
	border: 2px solid rgba(255, 102, 0, 0.6);
	border-radius: 50%;
	padding: 12px 16px;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.25s ease;
}

.carousel-button-dr1052videoscroll:hover {
	background: #ff6600;
	transform: translateY(-50%) scale(1.1);
}

/* LEFT & RIGHT */
.carousel-button-left-dr1052videoscroll {
	left: 18px;
}

.carousel-button-right-dr1052videoscroll {
	right: 18px;
}

/* MOBILE OPTIMIZATION */
@media ( max-width : 768px) {
	.carousel-slide-dr1052videoscroll {
		opacity: 1;
		transform: scale(0.95);
	}
	.carousel-button-dr1052videoscroll {
		padding: 10px 14px;
	}
	.video-overlay {
		left: 12px;
		bottom: 12px;
		padding: 8px 12px;
	}
	.custom-play-btn::before {
		width: 64px;
		height: 64px;
	}
}