/* Structural carousel styles (replaces swiper-bundle.min.css base CSS). Visual styling (colors,
   nav button icons, pagination bullets) lives in style.css / _acf-blocks.scss / _products.scss. */
.swiper {
	position: relative;
	overflow: hidden;
}
.swiper-wrapper {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.swiper-wrapper::-webkit-scrollbar {
	display: none;
}
.swiper-slide {
	flex: 0 0 100%;
	flex-shrink: 0;
	scroll-snap-align: start;
	position: relative;
}
.swiper-button-next,
.swiper-button-prev {
	cursor: pointer;
	user-select: none;
}
/* Mainslider is the only block using the bare (non ".navigation-bottom") nav variant -
   overlay it centered over the slider, like Swiper's own default button positioning did. */
.mainslider .container-swiper-navigation {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 1rem;
	pointer-events: none;
	z-index: 2;
}
.mainslider .swiper-button-prev,
.mainslider .swiper-button-next {
	pointer-events: auto;
}
.swiper-button-disabled {
	opacity: 0.35;
	pointer-events: none;
}
.swiper-button-lock {
	display: none !important;
}
.swiper-pagination-bullet {
	display: inline-block;
}
