/*
 * Bee1 Gallery Nav
 * A client-neutral layout layer for WooCommerce's existing FlexSlider thumbs.
 */

.woocommerce-product-gallery .bee1-gallery-nav__thumbs {
	position: relative;
	margin-block-start: 12px;
	padding-inline: 34px;
}

.woocommerce-product-gallery .bee1-gallery-nav__thumbs ol.flex-control-thumbs {
	display: flex !important;
	flex-wrap: nowrap !important;
	gap: 8px;
	margin: 0 !important;
	padding: 0 !important;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	scroll-behavior: smooth;
	scroll-snap-type: inline mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.woocommerce-product-gallery .bee1-gallery-nav__thumbs ol.flex-control-thumbs::-webkit-scrollbar {
	display: none;
}

.woocommerce-product-gallery .bee1-gallery-nav__thumbs ol.flex-control-thumbs li {
	float: none !important;
	flex: 0 0 calc((100% - 24px) / 4) !important;
	inline-size: calc((100% - 24px) / 4) !important;
	margin: 0 !important;
	scroll-snap-align: center;
}

.woocommerce-product-gallery .bee1-gallery-nav__thumbs ol.flex-control-thumbs li img {
	display: block;
	inline-size: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

.woocommerce-product-gallery .bee1-gallery-nav__button {
	position: absolute;
	inset-block-start: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	inline-size: 28px;
	block-size: 40px;
	margin: 0;
	padding: 0;
	transform: translateY(-50%);
	border: 1px solid rgba(23, 31, 59, 0.18);
	border-radius: 4px;
	background: #fff;
	box-shadow: 0 2px 10px rgba(23, 31, 59, 0.12);
	color: #171f3b;
	font-size: 28px;
	font-weight: 400;
	line-height: 1;
	cursor: pointer;
}

.woocommerce-product-gallery .bee1-gallery-nav__button:hover,
.woocommerce-product-gallery .bee1-gallery-nav__button:focus-visible {
	border-color: #171f3b;
	background: #171f3b;
	color: #fff;
	outline: none;
}

.woocommerce-product-gallery .bee1-gallery-nav__button--previous {
	inset-inline-end: 0;
}

.woocommerce-product-gallery .bee1-gallery-nav__button--next {
	inset-inline-start: 0;
}

@media (max-width: 767px) {
	.woocommerce-product-gallery .bee1-gallery-nav__thumbs {
		margin-block-start: 10px;
		padding-inline: 30px;
	}

	.woocommerce-product-gallery .bee1-gallery-nav__thumbs ol.flex-control-thumbs {
		gap: 6px;
	}

	.woocommerce-product-gallery .bee1-gallery-nav__thumbs ol.flex-control-thumbs li {
		flex-basis: calc((100% - 12px) / 3) !important;
		inline-size: calc((100% - 12px) / 3) !important;
	}

	.woocommerce-product-gallery .bee1-gallery-nav__button {
		inline-size: 25px;
		block-size: 36px;
		font-size: 25px;
	}
}
