.ftbw-product-gallery {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.ftbw-product-gallery__empty {
	padding: 16px;
	border: 1px dashed #ccc;
	color: #666;
	font-size: 13px;
}

.ftbw-product-gallery__main {
	position: relative;
	overflow: hidden;
	background: #fff;
	aspect-ratio: 1 / 1;
}

.ftbw-product-gallery__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: opacity 0.18s ease;
}

.ftbw-product-gallery__main.has-zoom {
	cursor: zoom-in;
}

.ftbw-product-gallery__main.has-zoom .ftbw-product-gallery__image {
	transform-origin: center center;
	transition: transform 0.12s ease-out, opacity 0.18s ease;
}

.ftbw-product-gallery__main.has-zoom.is-zooming .ftbw-product-gallery__image {
	transform: scale(2);
}

.ftbw-product-gallery__thumbs-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
}

.ftbw-product-gallery__thumbs {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	flex: 1 1 auto;
	padding: 2px 0;
	scrollbar-width: none;
}

.ftbw-product-gallery__thumbs::-webkit-scrollbar {
	display: none;
}

.ftbw-product-gallery__thumb {
	flex: 0 0 auto;
	width: 76px;
	height: 76px;
	padding: 0;
	margin: 0;
	border: 2px solid transparent;
	border-radius: 10px;
	background: #fff;
	overflow: hidden;
	cursor: pointer;
	scroll-snap-align: start;
	box-sizing: border-box;
	line-height: 0;
}

.ftbw-product-gallery__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.ftbw-product-gallery__thumb:hover {
	border-color: #ddd;
}

.ftbw-product-gallery__thumb.is-active {
	border-color: #FEBA00;
}

.ftbw-product-gallery__nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	padding: 0 !important;
	margin: 0;
	border: 1px solid #e5e5e5 !important;
	border-radius: 50%;
	background: #fff !important;
	color: #111 !important;
	cursor: pointer;
	position: relative;
	box-sizing: border-box;
	line-height: 0;
}

.ftbw-product-gallery__nav::before {
	content: "";
	display: block;
	width: 7px;
	height: 7px;
	margin: 0;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
}

.ftbw-product-gallery__nav.is-prev::before {
	transform: rotate(135deg);
}

.ftbw-product-gallery__nav.is-next::before {
	transform: rotate(-45deg);
}

.ftbw-product-gallery__nav:hover {
	border-color: #FEBA00 !important;
	background: #fff !important;
	color: #111 !important;
}

.ftbw-product-gallery__nav:disabled {
	opacity: 0.35;
	cursor: default;
}
