.slider-container {
	/*background: linear-gradient(135deg, #35294f 0%, #706a82 100%);*/
	background: #fcfdff;
	padding: 0;
}

.slider-content {
	background: white;
	/*border-radius: 20px;*/
	overflow: hidden;
	/*box-shadow: 0 20px 60px rgba(0,0,0,0.3);*/
	cursor: grab; /* Slider alanına el ikonu ekledik */
}

.slider-content:active {
	cursor: grabbing;
}

.text-section {
	padding: 0px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 380px;
}

.banner-section {
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	min-height: 380px;
	pointer-events: none; /* Resimlerin sürüklemeyi engellememesi için */
}

.banner-section img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	/*box-shadow: 0 10px 30px rgba(0,0,0,0.2);*/
	will-change: transform;
}

.slide-group {
    display: inline-flex;     /* inline-block yerine */
    align-self: flex-start;   /* flex stretch'i kırar */
    padding: 6px 12px;
    border-radius: 999px;
    background: #b7b3c1;
    color: #3e2a56;           /* yazı rengini değiştir, şu an aynı renk */
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 10px;
}

.slide-title {
	font-size: 2rem;
	font-weight: 700;
	color: #35294f;
	margin-bottom: 20px;
}

.slide-description {
	font-size: 1.1rem;
	color: #706a82;
	margin-bottom: 0;
	line-height: 1.6;
}

.slide-description + .slide-btn {
    margin-top: 30px;
}

.slide-btn {
    padding: 12px 22px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #35294f 0%, #764ba2 100%);
    color: white;
    display: inline-block;
    text-decoration: none;
    position: relative;
    z-index: 1;
    overflow: hidden; /* İçerdeki katmanın dışarı taşmaması için */
	max-width: max-content;
}

/* Hover'da görünecek olan ikinci gradyan katmanı */
.slide-btn::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #764ba2 0%, #35294f 100%);
    z-index: -1; /* Yazının altında kalması için */
    opacity: 0; /* Başlangıçta görünmez */
    transition: opacity 0.3s ease; /* Yumuşak geçiş */
}

.slide-btn:hover::before {
    opacity: 1; /* Üzerine gelince görünür olur */
}

.slide-btn:focus {
	outline: 3px solid #667eea;
	outline-offset: 3px;
}

.thumbnails-container {
	text-align: center!important;
	padding: 15px 20px;
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
	cursor: grab;
	user-select: none;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	touch-action: pan-x;
}

.thumbnails-container::-webkit-scrollbar {
	display: none;
}

.thumbnails-container.grabbing {
	cursor: grabbing;
}

.thumbnail {
	display: inline-block;
	width: 75px;
	height: 50px;
	margin: 0 10px;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.2s;
	border: 2px solid transparent;
	position: relative;
	background: none;
	padding: 0;
}

.thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.thumbnail.active {
	border-color: #706a82;
	transform: scale(1.1);
	box-shadow: rgba(53, 41, 79, 0.25) 0px 4px 8px -2px, rgba(53, 41, 79, 0.08) 0px 0px 0px 1px;
}

.thumbnail:hover:not(.active) {
	transform: scale(1.05);
	border-color: #cbd5e0;
}

.thumbnail:focus {
	outline: 3px solid #35294f;
	outline-offset: 2px;
}

.slide {
	display: none;
}

.slide.active {
	display: block;
	animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Reduced motion için */
@media (prefers-reduced-motion: reduce) {
	.slide.active {
		animation: fadeInSimple 0.3s ease-in-out;
	}
	
	@keyframes fadeInSimple {
		from { opacity: 0; }
		to { opacity: 1; }
	}
	
	.slide-btn:hover,
	.thumbnail:hover,
	.arrow-btn:hover {
		transform: none;
	}
}

.nav-arrows {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	pointer-events: none;
	z-index: 10;
}

.arrow-btn {
	position: absolute;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	pointer-events: auto;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.arrow-btn:hover {
	background: white;
	transform: scale(1.1);
	box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.arrow-btn:focus {
	outline: 3px solid #667eea;
	outline-offset: 3px;
}

.arrow-btn svg {
	width: 24px;
	height: 24px;
	fill: #667eea;
}

.arrow-left {
	left: 20px;
}

.arrow-right {
	right: 20px;
}

.nav-arrows.hidden {
	display: none;
}

/* Auto-play gösterge */
.autoplay-indicator {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0,0,0,0.5);
	color: white;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 0.85rem;
	z-index: 5;
	display: none;
}

.autoplay-indicator.active {
	display: block;
}

@media (max-width: 768px) {
	.nav-arrows {
		display: none;
	}
	
	.slide-title {
		font-size: 2rem;
	}
	
	.slide-description {
		font-size: 1rem;
	}
	
	.text-section {
		padding: 10px 30px;
		min-height: auto;
	}
	
	.banner-section {
		padding: 16px;
		min-height: 180px;
	}
	
	.thumbnail {
		width: 60px;
		height: 40px;
	}
}

#autoplayIndicator { display: none !important; }

@media (max-width: 768px) {
    .slide-btn {
        display: block;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
}