.dr1015carouselhome {
	padding: 40px 20px;
	background: linear-gradient(135deg, #7f1d1d, #c43e3e);
	color: #fff0f0;
	font-family: 'Merriweather', serif;
	overflow: hidden;
	user-select: none;
}

.dr1015carouselhome .carousel-title {
	margin: 0 auto 30px auto;
	text-align: center;
	font-size: 38px;
	color: #ffd6d6;
	font-weight: 700;
	font-family: 'Playfair Display', serif;
	text-transform: uppercase;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
	letter-spacing: 2px;
}

.dr1015carouselhome .carousel {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	border-radius: 22px;
	box-shadow: 0 8px 30px rgba(196, 62, 62, 0.7);
	background: #330909;
	border: 3px solid #a82626;
}

.dr1015carouselhome .carousel-track {
	display: flex;
	transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	width: 100%;
	scroll-behavior: smooth;
	flex-wrap: nowrap;
	will-change: transform;
}

.dr1015carouselhome .carousel-slide {
	flex: 0 0 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: radial-gradient(circle at center, #5a0b0b 0%, #330909 100%);
	padding: 25px;
	position: relative;
	overflow: hidden;
	border-radius: 22px;
	box-sizing: border-box;
	opacity: 0;
	pointer-events: none;
	transform: none !important;
	transition: opacity 0.5s ease;
	z-index: 0;
}

.dr1015carouselhome .carousel-slide.active {
	opacity: 1;
	pointer-events: auto;
	z-index: 10;
}

.dr1015carouselhome .carousel-slide img {
	max-width: 90%;
	max-height: 400px;
	object-fit: contain;
	border-radius: 18px;
	box-shadow: 0 6px 25px rgba(255, 69, 69, 0.6);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: block;
	margin: 0 auto;
}

.dr1015carouselhome .carousel-slide img:hover {
	transform: scale(1.08);
	box-shadow: 0 0 40px rgba(255, 69, 69, 0.9);
}

.dr1015carouselhome .carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #a82626;
	border: none;
	color: #fff;
	font-size: 2.2rem;
	padding: 14px 18px;
	cursor: pointer;
	z-index: 20;
	border-radius: 50%;
	box-shadow: 0 5px 20px rgba(168, 38, 38, 0.8);
	transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
	user-select: none;
}

.dr1015carouselhome .carousel-btn.left {
	left: 18px;
}

.dr1015carouselhome .carousel-btn.right {
	right: 18px;
}

.dr1015carouselhome .carousel-btn:hover {
	background: #7f1d1d;
	box-shadow: 0 0 35px #7f1d1d;
	color: #ffe5e5;
}

/* Responsive Design */
@media ( max-width : 768px) {
	.dr1015carouselhome .carousel-title {
		font-size: 30px;
	}
	.dr1015carouselhome .carousel-slide img {
		max-height: 280px;
	}
	.dr1015carouselhome .carousel-btn {
		font-size: 1.8rem;
		padding: 12px 16px;
	}
}

@media ( max-width : 480px) {
	.dr1015carouselhome {
		padding: 30px 15px;
	}
	.dr1015carouselhome .carousel-title {
		font-size: 24px;
	}
	.dr1015carouselhome .carousel-btn {
		font-size: 1.5rem;
		padding: 10px 14px;
	}
}