/* Conmeo Product Gallery */
.conmeo-gallery {
	--conmeo-thumbs-gap: 10px;
	position: relative;
	width: 100%;
}

.conmeo-gallery .swiper {
	width: 100%;
	overflow: hidden;
}

.conmeo-gallery__slide {
	overflow: hidden;
	background-color: transparent;
}

.conmeo-gallery__img {
	display: block;
	width: 100%;
	height: 550px;
	object-fit: cover;
	border-radius: 20px;
}

.conmeo-gallery__link {
	display: block;
}

/* Arrows */
.conmeo-gallery .conmeo-gallery__arrow {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background-color: var(--e-global-color-accent, #e09f1f);
	color: var(--e-global-color-primary, #1e2023);
	box-sizing: border-box;
	min-width: 0;
	font-size: 0;
	line-height: 0;
	cursor: pointer;
	transform: translateY(-50%);
	transition: background-color 200ms, color 200ms, opacity 200ms;
}

.conmeo-gallery .conmeo-gallery__arrow--prev {
	left: 15px;
}

.conmeo-gallery .conmeo-gallery__arrow--next {
	right: 15px;
}

.conmeo-gallery .conmeo-gallery__arrow svg {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

.conmeo-gallery .conmeo-gallery__arrow.swiper-button-disabled {
	opacity: 0.35;
	cursor: default;
}

.conmeo-gallery .conmeo-gallery__arrow.swiper-button-lock {
	display: none;
}

/* Thumbnails */
.conmeo-gallery__thumbs {
	margin-top: 10px;
}

.conmeo-gallery__thumbs .conmeo-gallery__slide {
	cursor: pointer;
	opacity: 0.6;
	transition: opacity 200ms, border-color 200ms;
	box-sizing: border-box;
}

.conmeo-gallery__thumbs .conmeo-gallery__slide:hover,
.conmeo-gallery__thumbs .swiper-slide-thumb-active {
	opacity: 1;
}

.conmeo-gallery__thumbs .conmeo-gallery__img {
	height: 100px;
	border-radius: 15px;
}

/* Variation slide fade-in */
.conmeo-gallery__slide--variation .conmeo-gallery__img {
	animation: conmeo-gallery-fade 250ms ease-out;
}

@keyframes conmeo-gallery-fade {
	from { opacity: 0; }
	to { opacity: 1; }
}

/* Editor notice */
.conmeo-widget-notice {
	padding: 12px 16px;
	border: 1px dashed currentColor;
	border-radius: 8px;
	font-size: 14px;
	opacity: 0.7;
}
