/* ======================================
   MR PRINT PACK – GALLERY SHOWCASE
====================================== */
.dr1052carouselhome {
	padding: 100px 20px;
	background: radial-gradient(circle at top, rgba(15, 118, 110, .15),
		transparent 60%), linear-gradient(180deg, #020617, #01030a);
	font-family: 'Montserrat', sans-serif;
	overflow: hidden;
}

/* ======================================
   TITLE
====================================== */
.carousel-title {
	text-align: center;
	font-size: 36px;
	font-weight: 900;
	color: #e5e7eb;
	margin-bottom: 60px;
	line-height: 1.25;
	text-shadow: 0 12px 35px rgba(0, 0, 0, .85);
}

.carousel-title .english-sub {
	display: block;
	font-size: 16px;
	font-weight: 700;
	color: #9ca3af;
	margin-top: 6px;
	letter-spacing: .08em;
}

.carousel-title .tagline {
	display: block;
	font-size: 15px;
	color: #6b7280;
	margin-top: 4px;
}

/* ======================================
   CAROUSEL CONTAINER
====================================== */
.carousel {
	position: relative;
	max-width: 1100px;
	margin: auto;
	border-radius: 26px;
	background: linear-gradient(145deg, #0b1220, #050b15);
	box-shadow: 0 50px 140px rgba(0, 0, 0, .95), inset 0 1px 0
		rgba(255, 255, 255, .05);
	perspective: 1400px;
	overflow: hidden;
}

/* ======================================
   TRACK
====================================== */
.carousel-track {
	display: flex;
	transition: transform .7s cubic-bezier(.22, 1, .36, 1);
	will-change: transform;
}

/* ======================================
   SLIDE
====================================== */
.carousel-slide {
	flex: 0 0 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px;
	opacity: 0;
	transform: scale(.96);
	transition: opacity .6s ease, transform .6s ease;
}

.carousel-slide.active {
	opacity: 1;
	transform: scale(1);
}

/* ======================================
   IMAGE – 3D PRINT PLATE
====================================== */
.carousel-slide img {
	max-width: 92%;
	max-height: 480px;
	object-fit: contain;
	border-radius: 20px;
	box-shadow: 0 25px 65px rgba(0, 0, 0, .9), inset 0 0 0 1px
		rgba(255, 255, 255, .05);
	transform-style: preserve-3d;
	transition: transform .5s ease, box-shadow .5s ease;
}

/* Desktop hover depth */
@media ( min-width : 900px) {
	.carousel-slide img:hover {
		transform: translateY(-6px) rotateX(3deg);
		box-shadow: 0 40px 90px rgba(0, 0, 0, .95);
	}
}

/* ======================================
   NAV BUTTONS
====================================== */
.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: linear-gradient(135deg, #0f766e, #064e3b);
	color: #ecfeff;
	border: none;
	font-size: 2rem;
	padding: 16px 20px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 5;
	box-shadow: 0 20px 45px rgba(0, 0, 0, .7);
	transition: transform .25s ease;
}

.carousel-btn.left {
	left: 18px;
}

.carousel-btn.right {
	right: 18px;
}

.carousel-btn:hover {
	transform: translateY(-50%) scale(1.15);
}

/* ======================================
   RESPONSIVE
====================================== */
@media ( max-width : 768px) {
	.dr1052carouselhome {
		padding: 80px 16px;
	}
	.carousel-title {
		font-size: 28px;
	}
	.carousel-slide img {
		max-height: 320px;
	}
	.carousel-btn {
		font-size: 1.6rem;
		padding: 12px 14px;
	}
}

@media ( max-width : 480px) {
	.carousel-title {
		font-size: 24px;
		margin-bottom: 40px;
	}
	.carousel-slide img {
		max-height: 240px;
		border-radius: 16px;
	}
}