/**
 * Product gallery: main image on top, thumbnails in a row below.
 * Overrides inline Elementor widget styles on single product pages.
 */
#tl-product-gallery {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) !important;
	grid-template-rows: auto auto;
	gap: 14px !important;
	align-items: start;
	width: 100%;
}

#tl-product-gallery .tl-gallery__main-wrap {
	order: 1;
	min-width: 0;
}

#tl-product-gallery .tl-gallery__thumbs {
	order: 2;
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: var(--thumb-gap, 14px);
	max-height: none !important;
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: 4px;
	scrollbar-width: thin;
}

#tl-product-gallery .tl-gallery__thumb {
	flex: 0 0 var(--thumb-size, 88px);
	width: var(--thumb-size, 88px);
	height: var(--thumb-size, 88px);
}

@media (max-width: 1024px) {
	#tl-product-gallery {
		gap: 12px !important;
	}

	#tl-product-gallery .tl-gallery__thumb {
		flex-basis: 72px;
		width: 72px;
		height: 72px;
	}
}

@media (max-width: 767px) {
	#tl-product-gallery .tl-gallery__thumb {
		flex-basis: 72px;
		width: 72px;
		height: 72px;
	}
}

@media (max-width: 480px) {
	#tl-product-gallery .tl-gallery__thumb {
		flex-basis: 64px;
		width: 64px;
		height: 64px;
	}
}
