/* Ürün kartı galerisi — hover 2. görsel; oklar; renk önizleme; mobil swipe */

.ttmim-card-gallery {
	position: relative;
}
.ttmim-card-gallery__viewport {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	color: inherit;
	text-decoration: none;
}
.ttmim-card-gallery__track {
	display: block;
	width: 100%;
	height: 100%;
}
.ttmim-card-gallery__slide {
	display: none;
	width: 100%;
	height: 100%;
}
.ttmim-card-gallery__slide.is-active {
	display: block;
}
.ttmim-card-gallery__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.ttmim-card-gallery__color-preview {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: #f3f4f6;
}
.ttmim-card-gallery__color-preview[hidden] {
	display: none !important;
}
.ttmim-card-gallery__color-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.ttmim-card-gallery.is-color-preview .ttmim-card-gallery__viewport {
	opacity: 0;
	pointer-events: none;
}
.ttmim-card-gallery__dots {
	display: none;
}
.ttmim-card-gallery__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.55);
	border: 1px solid rgba(0, 0, 0, 0.12);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.ttmim-card-gallery__dot.is-active {
	background: #fff;
	border-color: rgba(0, 0, 0, 0.18);
}

.ttmim-card-gallery__nav {
	display: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 28px;
	height: 36px;
	padding: 0;
	margin: 0;
	border: 0;
	background: rgba(255, 255, 255, 0.92);
	color: #111827;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.18s ease;
}
.ttmim-card-gallery__nav--prev { left: 6px; border-radius: 4px; }
.ttmim-card-gallery__nav--next { right: 6px; border-radius: 4px; }
.ttmim-card-gallery:hover .ttmim-card-gallery__nav,
.ttmim-card-gallery:focus-within .ttmim-card-gallery__nav {
	opacity: 1;
}

@media (min-width: 721px) {
	.ttmim-card-gallery[data-gallery-count]:not([data-gallery-count="0"]):not([data-gallery-count="1"]) .ttmim-card-gallery__nav {
		display: flex;
	}
}

@media (max-width: 720px) {
	.ttmim-card-gallery__track {
		display: flex;
		height: 100%;
		transform: translate3d(0, 0, 0);
		transition: transform 0.28s ease;
		will-change: transform;
	}
	.ttmim-card-gallery__slide {
		display: block !important;
		flex: 0 0 100%;
		width: 100%;
		height: 100%;
		min-width: 100%;
	}
	.ttmim-card-gallery__dots {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 5px;
		position: absolute;
		left: 50%;
		bottom: 8px;
		transform: translateX(-50%);
		z-index: 3;
		pointer-events: none;
		padding: 4px 8px;
		border-radius: 999px;
		background: rgba(0, 0, 0, 0.42);
		backdrop-filter: blur(4px);
		-webkit-backdrop-filter: blur(4px);
	}
	.ttmim-card-gallery__nav {
		display: none !important;
	}
}
