/* ================================
   Fotoğraf Slider - blog-single.html
   ================================ */

.foto-slider-section {
	position: relative;
	margin-bottom: 40px;
}

.foto-slider-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: 30px;
	max-height: 420px;
}

.foto-slider {
	display: flex;
	transition: transform 0.6s ease-in-out;
	will-change: transform;
	width: 50%;
}

.foto-slide {
	min-width: 100%;
	width: 100%;
	flex-shrink: 0;
}

.foto-slide img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	display: block;
}

/* Navigation Arrows */
.foto-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.9);
	color: #0B3D2C;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 5;
	transition: all 0.3s ease-in-out;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.foto-nav:hover {
	background: #4B72FE;
	color: #fff;
}

.foto-nav-prev {
	left: 20px;
}

.foto-nav-next {
	right: 20px;
}

.foto-nav i {
	font-size: 18px;
	pointer-events: none;
}

/* Dots / Indicators */
.foto-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 20px;
}

.foto-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #E7ECEA;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	padding: 0;
}

.foto-dot.active {
	background: #4B72FE;
	width: 28px;
	border-radius: 10px;
}

/* Thumbnail Strip */
.foto-thumbs {
	display: flex;
	gap: 12px;
	margin-top: 20px;
	justify-content: center;
	flex-wrap: nowrap;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding: 4px 0;
}

.foto-thumbs::-webkit-scrollbar {
	display: none;
}

.foto-thumb {
	flex-shrink: 0;
	width: 80px;
	height: 55px;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	border: 3px solid transparent;
	transition: all 0.3s ease-in-out;
	opacity: 0.5;
}

.foto-thumb.active {
	border-color: #4B72FE;
	opacity: 1;
}

.foto-thumb:hover {
	opacity: 0.85;
}

.foto-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ================================
   Responsive
   ================================ */

@media (max-width: 991px) {
	.foto-slide img {
		height: 320px;
		object-fit: cover;
	}

	.foto-slider-wrapper {
		border-radius: 20px;
		max-height: 320px;
	}

	.foto-nav {
		width: 42px;
		height: 42px;
	}

	.foto-nav-prev {
		left: 12px;
	}

	.foto-nav-next {
		right: 12px;
	}

	.foto-thumb {
		width: 65px;
		height: 45px;
		border-radius: 6px;
	}
}

@media (max-width: 575px) {
	.foto-slide img {
		height: 250px;
		object-fit: cover;
	}

	.foto-slider-wrapper {
		border-radius: 16px;
		max-height: 250px;
	}

	.foto-nav {
		width: 36px;
		height: 36px;
	}

	.foto-nav i {
		font-size: 14px;
	}

	.foto-nav-prev {
		left: 8px;
	}

	.foto-nav-next {
		right: 8px;
	}

	.foto-dot {
		width: 8px;
		height: 8px;
	}

	.foto-dot.active {
		width: 22px;
	}

	.foto-thumb {
		width: 50px;
		height: 35px;
		border-radius: 6px;
		border-width: 2px;
	}

	.foto-thumbs {
		gap: 8px;
		margin-top: 14px;
	}
}