/**
 * Kidoclassic Core — Wholesale Pricing front-end styles.
 *
 * Styles the [kc_wholesale_register] application form and the wholesale
 * price badge shown to wholesale customers on product pages.
 */

.kc-wholesale-form {
	max-width: 520px;
	margin: 0 auto;
	padding: 28px;
	background: #fff;
	border: 1px solid #e2e4e7;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
	font-family: inherit;
}

.kc-wholesale-form h3 {
	margin: 0 0 20px;
	font-size: 22px;
	line-height: 1.3;
	color: #1d2327;
}

.kc-wholesale-form form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.kc-wholesale-form input,
.kc-wholesale-form textarea {
	width: 100%;
	padding: 12px 14px;
	font-size: 15px;
	color: #1d2327;
	background: #fff;
	border: 1px solid #c3c4c7;
	border-radius: 6px;
	box-sizing: border-box;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.kc-wholesale-form input:focus,
.kc-wholesale-form textarea:focus {
	outline: none;
	border-color: #2271b1;
	box-shadow: 0 0 0 1px #2271b1;
}

.kc-wholesale-form textarea {
	min-height: 110px;
	resize: vertical;
}

.kc-wholesale-form button {
	align-self: flex-start;
	padding: 12px 26px;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	background: #2271b1;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.15s ease;
}

.kc-wholesale-form button:hover,
.kc-wholesale-form button:focus {
	background: #135e96;
}

.kc-wholesale-success {
	margin: 0;
	padding: 16px 18px;
	font-size: 15px;
	color: #14532d;
	background: #ecfdf3;
	border: 1px solid #abefc6;
	border-radius: 6px;
}

.kc-wholesale-error {
	margin: 0 0 16px;
	padding: 12px 16px;
	font-size: 14px;
	color: #912018;
	background: #fef3f2;
	border: 1px solid #fecdca;
	border-radius: 6px;
}

.kc-wholesale-badge {
	display: inline-block;
	margin: 0 0 12px;
	padding: 4px 12px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
	background: #2271b1;
	border-radius: 999px;
}
