.wholesale-popup-overlay {
	--wl-accent: #9D0052;
	--wl-accent-hover: #7A0040;
	--wl-plum: #663657;
	--wl-check-bg: #D38213;
	--wl-gold: #FFE0A3;
	--wl-gray: #7A7A7A;
	--wl-border: #E7DDE3;

	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 999999999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

.wholesale-popup-overlay.active {
	display: flex;
}

.wholesale-popup {
	display: flex;
	max-width: 900px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	background: #fff;
	border-radius: 14px;
	overflow-x: hidden;
	position: relative;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.wholesale-popup-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #fff;
	border: none;
	font-size: 20px;
	line-height: 1;
	color: var(--wl-plum);
	cursor: pointer;
	z-index: 2;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
}

.wholesale-popup__left,
.wholesale-popup__right {
	flex: 1 1 50%;
	padding: 40px;
	box-sizing: border-box;
}

.wholesale-popup__left {
	background: var(--wl-plum);
	color: #fff;
}

.wholesale-popup__headline {
	font-family: Caveat, cursive;
	font-weight: normal;
	color: #fff;
	font-size: 32px;
	line-height: 1.2;
	margin: 0 0 16px;
}

.wholesale-popup__body {
	margin: 0 0 20px;
	opacity: 0.9;
	line-height: 1.5;
}

.wholesale-popup__checklist {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
}

.wholesale-popup__checklist li {
	position: relative;
	padding-left: 34px;
	margin-bottom: 14px;
	line-height: 1.4;
}

.wholesale-popup__checklist li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	top: 0;
	width: 22px;
	height: 22px;
	background: var(--wl-check-bg);
	color: #fff;
	border-radius: 50%;
	text-align: center;
	line-height: 22px;
	font-size: 12px;
	font-weight: bold;
}

.wholesale-popup__tagline {
	font-family: Caveat, cursive;
	font-style: italic;
	color: var(--wl-gold);
	font-size: 20px;
	margin: 0;
	line-height: 1.3;
}

.wholesale-popup__right {
	background: #fff;
}

.wholesale-popup__right h3 {
	color: var(--wl-plum);
	margin: 0 0 20px;
	font-size: 26px;
}

.wholesale-popup__right .field {
	margin-bottom: 18px;
}

.wholesale-popup__right label {
	display: block;
	margin-bottom: 6px;
	color: var(--wl-plum);
	font-weight: 700;
}

.wholesale-popup__right label .req {
	color: var(--wl-accent);
}

.wholesale-popup__right label .opt {
	color: var(--wl-gray);
	font-weight: normal;
}

.wholesale-popup__right input[type="text"],
.wholesale-popup__right input[type="email"],
.wholesale-popup__right input[type="tel"],
.wholesale-popup__right select,
.wholesale-popup__right textarea {
	width: 100%;
	border: 1px solid var(--wl-border);
	border-radius: 8px;
	padding: 12px 14px;
	box-sizing: border-box;
	font-size: 15px;
}

.wholesale-popup__right textarea {
	min-height: 90px;
	resize: vertical;
}

.wholesale-popup__right .field.has-error input,
.wholesale-popup__right .field.has-error select,
.wholesale-popup__right .field.has-error textarea {
	border-color: var(--wl-accent);
}

.wl-honeypot {
	position: absolute;
	left: -9999px;
	top: -9999px;
}

.wholesale-submit-btn {
	width: 100%;
	background: var(--wl-accent);
	color: #fff;
	border: none;
	border-radius: 30px;
	padding: 16px 20px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
}

.wholesale-submit-btn:hover {
	background: var(--wl-accent-hover);
}

.wholesale-submit-btn:disabled {
	opacity: 0.7;
	cursor: default;
}

.wholesale-call-instead {
	text-align: center;
	font-size: 14px;
	color: var(--wl-gray);
	margin: 14px 0 0;
}

.wholesale-call-instead a {
	color: var(--wl-accent);
	font-weight: 700;
	text-decoration: none;
}

.wholesale-call-instead a:hover {
	text-decoration: underline;
}

.wholesale-form-message {
	margin-top: 12px;
	font-size: 14px;
	text-align: center;
}

.wholesale-form-message.success {
	color: #2e7d32;
}

.wholesale-form-message.error {
	color: var(--wl-accent);
}

@media (max-width: 782px) {
	.wholesale-popup {
		flex-direction: column;
	}
}
