.slider-container {
	display: flex;
	max-width: 800px;
	width: 100%;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	border-radius: 20px;
	/* padding: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	border: 1px solid #ccc; */
}

.thumbnail-sidebar {
	width: 100px;
	margin-right: 20px;
	position: relative;
}

.thumbnail-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-height: 500px;
	overflow-y: auto;
	padding-right: 5px;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.thumbnail-list::-webkit-scrollbar {
	width: 4px;
}

.thumbnail-list::-webkit-scrollbar-track {
	background: transparent;
}

.thumbnail-list::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.3);
	border-radius: 4px;
}

.thumbnail {
	width: 80px;
	height: 80px;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid #ccc;
	position: relative;
	padding:5px;
}

.thumbnail:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.thumbnail.active {
	border-color: #00d4ff;
	/* transform: scale(1.08); */
	box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.thumbnail:hover img {
	transform: scale(1.1);
}

.main-display {
	flex: 1;
	position: relative;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transform: translateX(30px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 16px;
	overflow: hidden;
	/* background: linear-gradient(145deg, #1a1a2e, #16213e); */
	/* display: flex; */
	align-items: center;
	justify-content: center;
	color: white;
}

.slide.active {
	opacity: 1;
	transform: translateX(0);
	padding:0px !important;
}

.slide-content {
	text-align: center;
	/* padding: 40px;
	max-width: 400px; */
}

.slide-content h2 {
	font-size: 2.2rem;
	margin-bottom: 20px;
	background: linear-gradient(135deg, #00d4ff, #ffffff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 700;
}

.slide-content p {
	font-size: 1.1rem;
	line-height: 1.6;
	opacity: 0.9;
	margin-bottom: 30px;
}

.slide-feature {
	display: inline-block;
	background: rgba(0, 212, 255, 0.2);
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 0.9rem;
	margin: 5px;
	border: 1px solid rgba(0, 212, 255, 0.3);
}

.nav-buttons {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.nav-btn {
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.nav-btn:hover {
	background: rgba(0, 212, 255, 0.3);
	transform: scale(1.1);
}

.nav-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}
.product-title{
	font-size:18px;
	font-weight:bold;
}
.rating i {
    font-size: 14px !important;
}
.ratecount{
	font-size:14px !important;
}
i.shareicon{
	font-size:26px !important;
	color:#000 !important;
}
.price{
    font-weight: 900 !important;
    font-size: 24px !important;
    letter-spacing: -.72px !important;
    line-height: 1 !important;
}
.discount{
	font-weight: 700 !important;
    font-size: 16px !important;
    letter-spacing: -.08px !important;
    line-height: 1.5 !important;
	background-color: #e5f7ee;
	padding: 2px 4px;
}
.strikerate{
	font-weight: 500 !important;
    font-size: 16px !important;
    letter-spacing: -.08px !important;
    line-height: 1.5 !important;
	margin-top:5px;
}
.fixed-container {
    position: sticky;
    top: 40px;
    z-index: 1;
}
@media (max-width: 768px) {
	.slider-container {
		flex-direction: column;
		max-width: 400px;
	}

	.thumbnail-sidebar {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}

	.thumbnail-list {
		flex-direction: row;
		max-height: none;
		overflow-x: auto;
		overflow-y: hidden;
		padding-bottom: 5px;
	}

	.thumbnail {
		width: 60px;
		height: 60px;
		flex-shrink: 0;
	}

	.main-display {
		min-height: 300px;
	}

	.slide-content h2 {
		font-size: 1.8rem;
	}

	.slide-content {
		padding: 20px;
	}
}