.hello-product-gallery-carousel {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.pgc-main {
	position: relative;
	overflow: hidden;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
}

.pgc-slide {
	display: none;
}

.pgc-slide.is-active {
	display: block;
}

.pgc-slide img {
	display: block;
	width: 100%;
	height: auto;
}

.pgc-prev,
.pgc-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border: none;
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	backdrop-filter: blur(2px);
	transition: background 0.2s ease;
}

.pgc-prev:hover,
.pgc-next:hover {
	background: rgba(0, 0, 0, 0.65);
}

.pgc-prev {
	left: 10px;
}

.pgc-next {
	right: 10px;
}
