/* Datamancer product gallery: fixed-height main image + 4-up thumbnail carousel. Added 2026-09-12. */

/* Main image: constant frame so switching images never changes the height. */
.woocommerce.single-product div.product .slide div.images.woocommerce-product-gallery { float: none; width: 100%; max-width: 700px; margin: 0 auto 12px; }
.woocommerce-product-gallery .flex-viewport { height: 520px !important; }
.woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image { height: 520px; }
.woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image img { width: 100%; height: 520px; object-fit: contain; display: block; }
.woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image a { display: block; height: 520px; }

/* Thumbnail carousel. */
.dm-thumb-carousel { position: relative; max-width: 700px; margin: 0 auto 20px; padding: 0 34px; box-sizing: border-box; overflow: hidden; }
.dm-thumb-carousel .slides { list-style: none; margin: 0; padding: 0; }
.dm-thumb-carousel .slides li { list-style: none; margin: 0; cursor: pointer; }
.dm-thumb-carousel .slides li img { display: block; width: 100%; height: 110px; object-fit: contain; background: #fff; border: 1px solid #ddd; box-sizing: border-box; opacity: .55; transition: opacity .2s; }
.dm-thumb-carousel .slides li:hover img { opacity: .85; }
.dm-thumb-carousel .slides li.flex-active-slide img { opacity: 1; border-color: #721c12; }
.dm-thumb-carousel .flex-direction-nav { list-style: none; margin: 0; padding: 0; }
.dm-thumb-carousel .flex-direction-nav li { list-style: none; margin: 0; }
.dm-thumb-carousel .flex-direction-nav a { position: absolute; top: 50%; width: 28px; height: 44px; margin-top: -22px; line-height: 40px; text-align: center; font-size: 34px; color: #721c12; text-decoration: none; background: #fff; border: 1px solid #ddd; z-index: 5; }
.dm-thumb-carousel .flex-direction-nav .flex-prev { left: 0; }
.dm-thumb-carousel .flex-direction-nav .flex-next { right: 0; }
.dm-thumb-carousel .flex-direction-nav .flex-disabled { opacity: .25; cursor: default; }

@media (max-width: 767px) {
	.woocommerce-product-gallery .flex-viewport,
	.woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image,
	.woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image img,
	.woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image a { height: 320px !important; }
	.dm-thumb-carousel .slides li img { height: 70px; }
}

/* Single-image products have no slider viewport, so clip the frame ourselves (keeps the hover-zoom image inside). */
.woocommerce-product-gallery .woocommerce-product-gallery__wrapper, .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image, .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image a { position: relative; overflow: hidden; }
.woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:nth-child(n+2) { display: none; }
