.family-slider-wrapper { position: relative; width: 100%; overflow: hidden; background: transparent; }
.fs-swiper { width: 100%; height: 100%; padding-bottom: 50px; }
.fs-slide-inner { position: relative; width: 100%; display: flex; justify-content: center; align-items: center; }
.fs-main-image { width: 100%; height: auto; display: block; object-fit: cover; }

/*
 * İki bağımsız katman (slayta göre konumlanır):
 *  .fs-hotspot-visual  → hover zoom görseli
 *  .fs-hotspot-hit     → tıklama / hover tetikleyici
 */
.fs-hotspot {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 10;
}

.fs-hotspot.is-active {
	z-index: 50;
}

.fs-hotspot-visual {
	position: absolute;
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 20;
	box-sizing: border-box;
}

.fs-hotspot-hit {
	position: absolute;
	transform: translate(-50%, -50%);
	pointer-events: auto;
	cursor: pointer;
	z-index: 30;
	background: transparent;
	border: 0;
	border-radius: 4px;
	box-sizing: border-box;
}

.fs-hover-zoom-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0;
	transform: scale(0.9);
	transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	pointer-events: none;
	filter: drop-shadow(0px 20px 25px rgba(0,0,0,0.5));
}

.fs-hotspot.is-active .fs-hover-zoom-img,
.fs-hotspot.is-demo .fs-hover-zoom-img,
.fs-hotspot:has(.fs-hotspot-hit:hover) .fs-hover-zoom-img,
.fs-hotspot:has(.fs-hotspot-hit:focus-visible) .fs-hover-zoom-img {
	opacity: 1;
	transform: scale(1.25);
}

/* Açılış ipucu baloncuğu — masaüstü, sağ alt, marka renkleri */
.fs-intro-tip {
	--fs-brand-yellow: #fde803;
	--fs-brand-red: #e31c23;
	position: absolute;
	top: auto;
	left: auto;
	right: 18px;
	bottom: 52px;
	z-index: 80;
	max-width: 280px;
	padding: 16px 38px 16px 16px;
	background: var(--fs-brand-yellow);
	color: #1a1a1a;
	border: 2px solid var(--fs-brand-red);
	border-radius: 18px 18px 6px 18px;
	box-shadow: 0 12px 28px rgba(227, 28, 35, 0.22);
	font-family: "Trebuchet MS", "Segoe UI", sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	text-align: left;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate(10px, 12px) scale(0.96);
	transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1), visibility 0.35s;
}

.fs-intro-tip-badge {
	display: block;
	width: 36px;
	height: 4px;
	margin-bottom: 10px;
	border-radius: 4px;
	background: var(--fs-brand-red);
}

.fs-intro-tip::before {
	content: '';
	position: absolute;
	right: 22px;
	bottom: -12px;
	width: 0;
	height: 0;
	border: 12px solid transparent;
	border-top-color: var(--fs-brand-red);
	z-index: 0;
}

.fs-intro-tip::after {
	content: '';
	position: absolute;
	right: 24px;
	bottom: -8px;
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-top-color: var(--fs-brand-yellow);
	z-index: 1;
	margin: 0;
	filter: none;
	left: auto;
}

.fs-intro-tip.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(0, 0) scale(1);
}

.fs-intro-tip-text {
	margin: 0;
}

.fs-intro-tip-close {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 28px;
	height: 28px;
	border: 0;
	background: transparent;
	color: var(--fs-brand-red);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	border-radius: 50%;
}

.fs-intro-tip-close:hover {
	color: #fff;
	background: var(--fs-brand-red);
}

/* Sadece web / masaüstü */
@media (max-width: 1023px) {
	.fs-intro-tip {
		display: none !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fs-intro-tip {
		transition: none;
	}
}

/* Pagination */
.swiper-pagination {
	position: absolute;
	bottom: 10px !important;
}
.swiper-pagination-bullet {
	width: 14px;
	height: 14px;
	background: #000;
	opacity: 0.3;
	border-radius: 50%;
	margin: 0 6px !important;
	transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
	opacity: 1;
	background: #004b93;
	transform: scale(1.3);
}

/* Baloncuklar — sürekli serbest dolaşım + hover */
.fs-bubbles-container {
	--fs-bubble-size: 80px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 5;
	overflow: hidden;
}

.fs-bubble {
	position: absolute;
	width: var(--fs-bubble-size);
	height: auto;
	opacity: 0.75;
	pointer-events: auto;
	cursor: pointer;
	will-change: transform, filter;
	transform: translate(-50%, -50%);
	filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.12));
	user-select: none;
	-webkit-user-drag: none;
}

.fs-bubble.is-near-mouse,
.fs-bubble:hover {
	filter: drop-shadow(0 10px 18px rgba(227, 28, 35, 0.28)) brightness(1.08);
	z-index: 6;
}

@media (prefers-reduced-motion: reduce) {
	.fs-bubble {
		pointer-events: none;
	}
}

/* =========================================================
   ELEMENTOR EDİTÖR — iki katman ayrı tut-bırak
   ========================================================= */
body.elementor-editor-active .fs-hotspot {
	z-index: 99 !important;
	pointer-events: none;
}

body.elementor-editor-active .fs-hotspot.is-selected {
	z-index: 120 !important;
}

body.elementor-editor-active .fs-hotspot-visual {
	border: 2px dashed var(--editor-color, #ff0000) !important;
	background-color: rgba(255, 255, 255, 0.12) !important;
	pointer-events: auto !important;
	cursor: move;
}

body.elementor-editor-active .fs-hotspot-hit {
	border: 2px solid var(--editor-color, #ff0000) !important;
	background-color: rgba(255, 0, 0, 0.28) !important;
	pointer-events: auto !important;
	cursor: move;
}

body.elementor-editor-active .fs-hotspot.is-dragging .fs-hotspot-visual,
body.elementor-editor-active .fs-hotspot.is-dragging .fs-hotspot-hit {
	opacity: 0.9;
	user-select: none;
}

body.elementor-editor-active .fs-hover-zoom-img {
	opacity: 0.55 !important;
	transform: scale(1) !important;
	visibility: visible !important;
	pointer-events: none !important;
}

body.elementor-editor-active .fs-hotspot.is-active .fs-hover-zoom-img,
body.elementor-editor-active .fs-hotspot:has(.fs-hotspot-hit:hover) .fs-hover-zoom-img {
	transform: scale(1) !important;
	opacity: 0.75 !important;
}

body.elementor-editor-active .fs-edit-handles {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 40;
}

body.elementor-editor-active .fs-resize-handle {
	position: absolute;
	width: 11px;
	height: 11px;
	background: #fff;
	border: 2px solid var(--editor-color, #ff0000);
	border-radius: 2px;
	pointer-events: auto;
	z-index: 41;
	box-sizing: border-box;
}

body.elementor-editor-active .fs-resize-nw { top: -6px; left: -6px; cursor: nwse-resize; }
body.elementor-editor-active .fs-resize-ne { top: -6px; right: -6px; cursor: nesw-resize; }
body.elementor-editor-active .fs-resize-sw { bottom: -6px; left: -6px; cursor: nesw-resize; }
body.elementor-editor-active .fs-resize-se { bottom: -6px; right: -6px; cursor: nwse-resize; }

/* Hit tutamaçları — dolu kırmızı */
body.elementor-editor-active .fs-hit-resize-handle {
	position: absolute;
	width: 10px;
	height: 10px;
	background: var(--editor-color, #ff0000);
	border: 2px solid #fff;
	border-radius: 2px;
	pointer-events: auto;
	z-index: 42;
	box-sizing: border-box;
}

body.elementor-editor-active .fs-hit-resize-nw { top: -5px; left: -5px; cursor: nwse-resize; }
body.elementor-editor-active .fs-hit-resize-ne { top: -5px; right: -5px; cursor: nesw-resize; }
body.elementor-editor-active .fs-hit-resize-sw { bottom: -5px; left: -5px; cursor: nesw-resize; }
body.elementor-editor-active .fs-hit-resize-se { bottom: -5px; right: -5px; cursor: nwse-resize; }
body.elementor-editor-active .fs-hit-resize-e {
	top: 50%;
	right: -5px;
	margin-top: -5px;
	cursor: ew-resize;
}
body.elementor-editor-active .fs-hit-resize-s {
	left: 50%;
	bottom: -5px;
	margin-left: -5px;
	cursor: ns-resize;
}
