.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;
}
.product-variation-label {
	display: flex;
	align-items: baseline;
	gap: 0.25rem;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #334155;
}
.product-variation-selected {
	font-weight: 500;
	color: #64748b;
}
.product-variation-options {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.product-variation-option {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.75rem;
	min-height: 2.5rem;
	padding: 0.4rem 0.9rem;
	border: 1.5px solid #e2e8f0;
	border-radius: 8px;
	background: #fff;
	color: #334155;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.2;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.product-variation-option:hover:not(:disabled):not(.active) {
	border-color: #94a3b8;
	background: #f8fafc;
}
.product-variation-option.active {
	background: #0f172a;
	border-color: #0f172a;
	color: #fff;
	box-shadow: 0 0 0 1px #0f172a;
}
.product-variation-option:disabled {
	opacity: 0.38;
	cursor: not-allowed;
	text-decoration: line-through;
}
.product-variation-summary {
	color: #475569;
}
.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;
}
.product-variation-group {width:50%;float:left}