.yacht-gallery-container {
	max-width: 100%;
	margin: 0 auto;
}

.yacht-gallery-main {
	position: relative;
	overflow: hidden;
	margin-bottom: 15px;
	border-radius: 8px;
}

.yacht-gallery-main .swiper-wrapper {
	display: flex;
}

.yacht-gallery-main .swiper-slide img {
	width: 100%;
	height: 500px;
	object-fit: contain !important;
	display: block;
}

.yacht-gallery-main .swiper-button-next,
.yacht-gallery-main .swiper-button-prev {
	color: #fff;
	background: rgba(0, 0, 0, 0.5);
	width: 44px;
	height: 44px;
	border-radius: 50%;
}

.yacht-gallery-main .swiper-button-next:after,
.yacht-gallery-main .swiper-button-prev:after {
	font-size: 20px;
}

.yacht-gallery-thumbs {
	overflow: hidden;
}

.yacht-gallery-thumbs .swiper-wrapper {
	display: flex;
}

.yacht-gallery-thumbs .swiper-slide {
	width: 25%;
	height: 100px;
	opacity: 0.5;
	cursor: pointer;
	transition: opacity 0.3s ease;
	border-radius: 4px;
	overflow: hidden;
}

.yacht-gallery-thumbs .swiper-slide:hover {
	opacity: 0.8;
}

.yacht-gallery-thumbs .swiper-slide-thumb-active {
	opacity: 1;
	border: 3px solid #0073aa;
}

.yacht-gallery-thumbs .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 768px) {
	.yacht-gallery-main .swiper-slide img {
		height: 300px;
	}
	
	.yacht-gallery-thumbs .swiper-slide {
		height: 80px;
	}
}
