/**
 * Frontend Styles for WP Dual Price
 * RTL and Persian optimized
 */

/* RTL Support */
body.rtl .wholesale-price-display,
.wholesale-price-display {
	direction: rtl;
	text-align: right;
	font-family: Tahoma, Arial, sans-serif;
	margin: 15px 0;
	padding: 15px;
	background-color: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 5px;
}

/* Regular price with strikethrough */
.wholesale-price-display del {
	color: #ff0000;
	text-decoration: line-through;
	font-size: 1.1em;
	margin-left: 10px;
	display: block;
	margin-bottom: 10px;
}

/* Wholesale price text */
.wholesale-price-display p {
	margin: 10px 0;
	line-height: 1.6;
}

.wholesale-price-display p strong {
	color: #2c5aa0;
	font-size: 1.2em;
}

/* Minimum quantity notice */
.wholesale-price-display .wholesale-min-qty {
	color: #666;
	font-size: 0.9em;
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid #e0e0e0;
}

/* Unavailable message */
.wholesale-price-display .wholesale-unavailable {
	color: #d32f2f;
	font-style: italic;
}

/* Wholesale price notice (fallback) */
.wholesale-price-notice {
	direction: rtl;
	text-align: right;
	margin: 15px 0;
	padding: 10px;
	background-color: #fff3cd;
	border: 1px solid #ffc107;
	border-radius: 4px;
}

.wholesale-price-notice p {
	margin: 5px 0;
	color: #856404;
}

/* LTR Support (for mixed content) */
body.ltr .wholesale-price-display {
	direction: ltr;
	text-align: left;
}

body.ltr .wholesale-price-display del {
	margin-left: 0;
	margin-right: 10px;
}

/* Fix 3: Disabled button styles */
button.single_add_to_cart_button.disabled,
#add-to-cart.disabled {
	opacity: 0.6;
	cursor: not-allowed !important;
	pointer-events: none;
}

.wholesaler-tooltip {
	position: absolute;
	background: #333;
	color: #fff;
	padding: 5px 10px;
	border-radius: 3px;
	font-size: 12px;
	white-space: nowrap;
	z-index: 9999;
	direction: rtl;
	text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
	.wholesale-price-display {
		padding: 10px;
		font-size: 0.9em;
	}

	.wholesale-price-display p strong {
		font-size: 1.1em;
	}
}

/* Freight notice row in checkout summary - only change text color */
.wpdp-freight-notice th,
.wpdp-freight-notice td {
	color: #b71c1c;
	/* dark red */
}