/* Admin styles for Wholesale Prices Reborn */
.column-wholesale_price {
	width: 120px;
}

/* Frontend price display */
.wpr-price-label {
	font-weight: 600;
	color: #333;
}
.wpr-wholesale-amount {
	font-weight: 700;
	color: #2a7d2a;
}
.wpr-savings {
	display: inline-block;
	background: #e8f5e9;
	color: #2e7d32;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 0.9em;
	font-weight: 600;
}
.wpr-min-qty-notice {
	color: #333;
	font-weight: 600;
	margin-top: 6px;
}
.wpr-min-tooltip {
	position: relative;
	cursor: help;
	color: #e67e22;
	font-size: 1.1em;
	font-weight: bold;
	display: inline-block;
}
.wpr-min-tooltip::after {
	content: attr(data-tooltip);
	position: absolute;
	bottom: calc(100% + 6px);
	left: 50%;
	transform: translateX(-50%);
	background: #333;
	color: #fff;
	padding: 6px 10px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: normal;
	line-height: 1.4;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.15s ease;
	z-index: 9999;
	pointer-events: none;
}
.wpr-min-tooltip:hover::after {
	opacity: 1;
	visibility: visible;
}
