/* =========================
   SECTION (LUXURY BACKGROUND)
========================= */
.dr1058imagescroll {
	padding: 110px 20px;
	background: radial-gradient(circle at 20% 10%, rgba(230, 194, 122, 0.08),
		transparent 40%),
		radial-gradient(circle at 80% 90%, rgba(59, 130, 246, 0.06),
		transparent 45%),
		linear-gradient(180deg, #020617 0%, #040a18 50%, #01030a 100%);
	position: relative;
	overflow: hidden;
}

.dr1058imagescroll::before {
	content: "";
	position: absolute;
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(230, 194, 122, 0.12),
		transparent 70%);
	top: -250px;
	right: -250px;
	filter: blur(120px);
	pointer-events: none; /* ⭐ FIX */
}

/* =========================
   HEADER
========================= */
.dr1058gallery-header {
	max-width: 1200px;
	margin: 0 auto 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 10px;
}

/* TITLE (LUXURY TYPOGRAPHY) */
.dr1058gallery-header h2 {
	font-size: 32px;
	font-family: 'Playfair Display', serif;
	font-weight: 600;
	background: linear-gradient(90deg, #ffffff, #e6c27a);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* BUTTON (GOLD CTA) */
.dr1058gallery-btn {
	padding: 10px 22px;
	border-radius: 999px;
	background: linear-gradient(135deg, #e6c27a, #d4a94f);
	color: #000;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 12px 30px rgba(230, 194, 122, 0.35);
}

.dr1058gallery-btn:hover {
	transform: translateY(-2px) scale(1.04);
	box-shadow: 0 20px 50px rgba(230, 194, 122, 0.6);
}

/* =========================
   CONTAINER (GLASS + DEPTH)
========================= */
.carousel-container-dr1058057imagescroll {
	max-width: 1200px;
	margin: auto;
	overflow: hidden;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(25px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 40px 140px rgba(0, 0, 0, 0.85), inset 0 0 40px
		rgba(255, 255, 255, 0.03), 0 0 60px rgba(230, 194, 122, 0.08);
	position: relative;
}

/* GLOSS LAYER */
.carousel-container-dr1058057imagescroll::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 45%;
	width: 100%;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.12),
		transparent);
	border-radius: 28px;
}

/* =========================
   TRACK
========================= */
.carousel-track-dr1058057imagescroll {
	display: flex;
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================
   SLIDE
========================= */
.carousel-slide-dr1058057imagescroll {
	min-width: 100%;
	padding: 45px;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* =========================
   IMAGE (CINEMATIC STYLE)
========================= */
.carousel-slide-dr1058057imagescroll img {
	width: 100%;
	max-height: 520px;
	object-fit: contain;
	border-radius: 20px;
	background: #020617;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 30px 100px rgba(0, 0, 0, 0.9), 0 0 40px
		rgba(230, 194, 122, 0.05);
	transition: all 0.5s ease;
}

/* 3D HOVER */
.carousel-slide-dr1058057imagescroll img:hover {
	transform: scale(1.05) rotateY(2deg);
	box-shadow: 0 50px 160px rgba(0, 0, 0, 1), 0 0 60px
		rgba(230, 194, 122, 0.2);
}

/* =========================
   NAV BUTTONS (GLASS + GOLD)
========================= */
.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 52px;
	height: 52px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(2, 6, 23, 0.7);
	color: #e6c27a;
	font-size: 18px;
	cursor: pointer;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

/* HOVER */
.carousel-btn:hover {
	background: linear-gradient(135deg, #e6c27a, #d4a94f);
	color: #000;
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 0 30px rgba(230, 194, 122, 0.6);
}

/* POSITIONS */
.prev-btn {
	left: 15px;
}

.next-btn {
	right: 15px;
}

/* =========================
   MOBILE
========================= */
@media ( max-width : 768px) {
	.dr1058imagescroll {
		padding: 70px 15px;
	}
	.dr1058gallery-header {
		flex-direction: column;
		gap: 14px;
		text-align: center;
	}
	.dr1058gallery-header h2 {
		font-size: 24px;
	}
	.carousel-slide-dr1058057imagescroll {
		padding: 25px;
	}
	.carousel-slide-dr1058057imagescroll img {
		max-height: 320px;
	}
	.carousel-btn {
		width: 42px;
		height: 42px;
		font-size: 16px;
	}
}