.product-gallery {
	display: flex;
	gap: 20px;
}

.thumbnails-container {
	width: 80px;
	position: relative;
}

.thumbnails {
	height: 400px;
	overflow: hidden;
}

.thumbnails .swiper-slide {
	width: 80px;
	height: 80px;
	border: 2px solid transparent;
	cursor: pointer;
	opacity: 0.6;
	transition: all 0.3s;
}

.thumbnails .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.thumbnails .swiper-slide-thumb-active {
	border-color: #ff5000;
	opacity: 1;
}

.main-image {
	flex: 1;
	height: 500px;
}

.main-image .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #f9f9f9;
}

.main-image .swiper-slide img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.swiper-button-next,
.swiper-button-prev {
	background-color: rgba(255, 255, 255, 0.8);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 14px;
	color: #333;
}

.thumbnail-nav {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 10;
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 10px;
}

.thumbnail-nav button {
	width: 24px;
	height: 24px;
	border: none;
	background: #f5f5f5;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: #666;
}

.thumbnail-nav button:hover {
	background: #ff5000;
	color: #fff;
}

.product-info {
	margin-top: 20px;
	padding: 15px;
	border-top: 1px solid #eee;
}

.product-title {
	font-size: 18px;
	color: #333;
	margin-bottom: 10px;
}

.product-price {
	color: #ff5000;
	font-size: 24px;
	font-weight: bold;
}