.lps-slider {
	max-width: 340px;
	margin: 0 auto;
	font-family: inherit;
	text-align: center;
}

.lps-slides {
	position: relative;
}

.lps-slide {
	display: none;
}

.lps-slide.is-active {
	display: block;
	animation: lps-fade 0.3s ease;
}

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

.lps-card {
	background: #fff;
}

.lps-media {
	position: relative;
	background: #f5f6f5;
	border-radius: 6px;
	overflow: hidden;
	padding: 30px 20px;
}

.lps-media img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

.lps-side-icons {
	position: absolute;
	top: 50%;
	right: 14px;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.lps-icon-btn {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #fff;
	border: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 14px;
	color: #333;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.lps-icon-btn:hover {
	background: #111;
	color: #fff;
}

.lps-info {
	margin-top: 18px;
}

.lps-name {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #111;
	text-decoration: none;
	margin-bottom: 8px;
	letter-spacing: 0.01em;
}

.lps-name:hover {
	text-decoration: underline;
}

.lps-rating {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-bottom: 8px;
	font-size: 13px;
}

.lps-stars {
	color: #f5a623;
	letter-spacing: 1px;
	font-size: 13px;
}

.lps-review-count {
	color: #999;
	font-size: 12px;
}

.lps-price {
	font-size: 15px;
	font-weight: 700;
	color: #111;
}

.lps-price del {
	color: #999;
	font-weight: 400;
	margin-right: 6px;
}

.lps-price ins {
	text-decoration: none;
}

/* Dot pagination */
.lps-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 20px;
}

.lps-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ccc;
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.lps-dot:hover {
	background: #999;
}

.lps-dot.is-active {
	background: #9dff2e;
	transform: scale(1.15);
}

.lps-no-products {
	text-align: center;
	color: #999;
	padding: 20px;
}

@media (max-width: 480px) {
	.lps-slider { max-width: 280px; }
}
