/* ===== FHK Galeri (carousel + lightbox) ===== */
.fhk-gal {
	position: relative;
}

.fhk-gal__track {
	--fhk-cols: 4;
	--fhk-gap: 15px;
	display: flex;
	gap: var(--fhk-gap);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	cursor: grab;
	padding-bottom: 5px;
	user-select: none;
}
.fhk-gal__track::-webkit-scrollbar { display: none; }
.fhk-gal__track.is-dragging {
	cursor: grabbing;
	scroll-behavior: auto;
	scroll-snap-type: none;
}

.fhk-gal__slide {
	flex: 0 0 calc((100% - (var(--fhk-cols) - 1) * var(--fhk-gap)) / var(--fhk-cols));
	scroll-snap-align: start;
	cursor: pointer;
	-webkit-user-drag: none;
}

.fhk-gal__imgwrap {
	overflow: hidden;
	border-radius: 4px;
}

.fhk-gal__img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	display: block;
	transition: transform .5s ease;
	pointer-events: none;
	-webkit-user-drag: none;
	user-select: none;
}
.fhk-gal__slide:hover .fhk-gal__img {
	transform: scale(1.06);
}

/* ----- Oklar ----- */
.fhk-gal__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 44px;
	height: 44px;
	border: 0 none !important;
	outline: 0 none !important;
	box-shadow: none !important;
	-webkit-tap-highlight-color: transparent;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 50%;
	cursor: pointer;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: .9;
	transition: opacity .2s ease;
}
.fhk-gal__nav:hover { opacity: 1; }
.fhk-gal__prev { left: -12px; }
.fhk-gal__next { right: -12px; }
@media (max-width: 767px) {
	.fhk-gal__prev { left: 0; }
	.fhk-gal__next { right: 0; }
}

/* ----- Noktalar ----- */
.fhk-gal__dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	flex-wrap: wrap;
}
.fhk-gal__dot {
	width: 8px !important;
	height: 8px !important;
	min-width: 0 !important;
	min-height: 0 !important;
	padding: 0 !important;
	border: 0 none !important;
	outline: 0 none !important;
	box-shadow: none !important;
	-webkit-appearance: none;
	appearance: none;
	-webkit-tap-highlight-color: transparent;
	border-radius: 50% !important;
	background-color: #C9C9C9;
	cursor: pointer;
	opacity: .7;
	flex: 0 0 auto;
	transition: opacity .25s ease, background-color .25s ease, transform .25s ease;
}
.fhk-gal__dot:hover { opacity: 1; }
.fhk-gal__dot.is-active {
	opacity: 1;
	background-color: #E3231F;
	transform: scale(1.4);   /* daire kalır, sadece büyür */
}

/* ===== Lightbox (tam ekran) ===== */
.fhk-gal__lb {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: rgba(0, 0, 0, .92);
	display: none;
	align-items: center;
	justify-content: center;
}
.fhk-gal__lb.is-open {
	display: flex;
}
.fhk-gal__lb-img {
	max-width: 90vw;
	max-height: 85vh;
	object-fit: contain;
	box-shadow: 0 0 40px rgba(0, 0, 0, .5);
	user-select: none;
	opacity: 1;
	transition: opacity .35s ease;   /* görseller arası yumuşak geçiş */
	touch-action: pan-y;             /* dikey kaydırmayı bozmadan yatay swipe */
}
.fhk-gal__lb-close,
.fhk-gal__lb-prev,
.fhk-gal__lb-next {
	position: absolute;
	background: rgba(255, 255, 255, .12);
	color: #fff;
	border: 0 none !important;
	outline: 0 none !important;
	box-shadow: none !important;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s ease;
}
.fhk-gal__lb-close:hover,
.fhk-gal__lb-prev:hover,
.fhk-gal__lb-next:hover {
	background: rgba(255, 255, 255, .28);
}
.fhk-gal__lb-close {
	top: 20px;
	right: 20px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	font-size: 22px;
}
.fhk-gal__lb-prev,
.fhk-gal__lb-next {
	top: 50%;
	transform: translateY(-50%);
	width: 54px;
	height: 54px;
	border-radius: 50%;
	font-size: 26px;
}
.fhk-gal__lb-prev { left: 24px; }
.fhk-gal__lb-next { right: 24px; }
.fhk-gal__lb-counter {
	position: absolute;
	bottom: 22px;
	left: 0;
	right: 0;
	text-align: center;
	color: #fff;
	font-size: 14px;
	letter-spacing: 1px;
}
@media (max-width: 767px) {
	.fhk-gal__lb-prev,
	.fhk-gal__lb-next { width: 42px; height: 42px; font-size: 22px; }
	.fhk-gal__lb-prev { left: 10px; }
	.fhk-gal__lb-next { right: 10px; }
	.fhk-gal__lb-close { width: 40px; height: 40px; top: 12px; right: 12px; }
}
