.qty-picker {
	display: flex;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	overflow: hidden;
}
.qty-btn {
	background: #fff;
	border: none;
	padding: 0 15px;
	font-size: 20px;
	color: #64748b;
}
.qty-input {
	width: 45px;
	border: none;
	text-align: center;
	font-weight: 700;
}
.productMiniDetail > div {width:50%;float:left;padding:10px 0px;border-bottom: 1px solid #ddd}
.productMiniDetail > div b {width:50%;float:left;}
.discount-badge {
	background: #333;
	color: white;
	padding: 15px 15px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 20px;
}
.old-price { text-decoration: line-through; color: #94a3b8; font-size: 16px; }
.current-price { font-size: 1.5rem;line-height: 1.2; color: #c33514}
.product-label-badge {position:absolute;top:5.71px;left:5.71px;padding:3px 8px;border-radius:5.71px;background:#333;color:#fff;z-index:2}

.product-gallery {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.product-gallery__main {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 280px;
}

.product-gallery__main img {
	width: auto;
	max-width: 100%;
	max-height: 330px;
}

.product-gallery__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 36px;
	height: 36px;
	border: 1px solid #e2e8f0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	color: #17345f;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-gallery__nav:hover {
	background: #fff;
	border-color: #17345f;
}

.product-gallery__nav--prev {
	left: 8px;
}

.product-gallery__nav--next {
	right: 8px;
}

.product-gallery__thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	width: 100%;
}

.product-gallery__thumb {
	width: 56px;
	height: 56px;
	padding: 4px;
	border: 2px solid #e2e8f0;
	border-radius: 8px;
	background: #fff;
	cursor: pointer;
	overflow: hidden;
}

.product-gallery__thumb.active {
	border-color: #17345f;
}

.product-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}