/* B2B Manager Styles - Origin UI Style with Woodmart Colors */

/* Armenian Font Support */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Armenian:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
	--b2b-primary: #233E2A;
	--b2b-primary-hover: #1a2e1f;
	--b2b-primary-light: rgba(35, 62, 42, 0.1);
	--b2b-background: #ffffff;
	--b2b-border: #e5e7eb;
	--b2b-text: #111827;
	--b2b-text-muted: #6b7280;
	--b2b-shadow: rgba(0, 0, 0, 0.1);
	--b2b-shadow-lg: rgba(0, 0, 0, 0.15);
}

/* Popup Overlay */
.b2b-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	font-family: "Noto Sans Armenian", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* Popup Container */
.b2b-popup-container {
	background: var(--b2b-background);
	border-radius: 16px;
	max-width: 400px;
	width: 100%;
	max-height: calc(100vh - 4rem);
	box-shadow: 0 20px 25px -5px var(--b2b-shadow-lg), 0 10px 10px -5px var(--b2b-shadow);
	position: relative;
	overflow: visible !important;
	transform: scale(0.95) translateY(20px);
	opacity: 0;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.b2b-popup-container.b2b-popup-show {
	transform: scale(1) translateY(0);
	opacity: 1;
}

.b2b-popup-container.b2b-popup-hide {
	transform: scale(0.95) translateY(20px);
	opacity: 0;
}

/* Close Button - VERY VISIBLE in Top RIGHT Corner */
.b2b-popup-close {
	position: absolute !important;
	top: 20px !important;
	right: 20px !important;
	left: auto !important;
	width: 44px !important;
	height: 44px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: var(--b2b-primary) !important;
	border: 3px solid white !important;
	border-radius: 50% !important;
	color: white !important;
	cursor: pointer !important;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 10000 !important;
	padding: 0 !important;
	margin: 0 !important;
	line-height: 1;
	opacity: 1 !important;
	visibility: visible !important;
}

.unf-speed-card {
	background: white !important;
}

.unf-time-card.unf-time-selected {
	background: white !important;
}


.b2b-popup-close:hover {
	background: var(--b2b-primary-hover) !important;
	border-color: white !important;
	color: white !important;
	transform: rotate(90deg) scale(1.2);
	box-shadow: 0 6px 24px rgba(35, 62, 42, 0.7), 0 0 0 6px rgba(255, 255, 255, 0.4) !important;
}

.b2b-popup-close:active {
	transform: rotate(90deg) scale(1.1);
}

.b2b-popup-close svg {
	width: 22px !important;
	height: 22px !important;
	stroke-width: 3.5 !important;
	stroke: white !important;
	fill: none !important;
	transition: all 0.3s ease;
	display: block !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.b2b-popup-close:hover svg {
	stroke-width: 4;
}

/* Popup Content */
.b2b-popup-content {
	padding: 32px 24px 24px;
	overflow-y: auto;
	max-height: calc(100vh - 4rem);
	position: relative;
}

/* Icon */
.b2b-popup-icon {
	width: 44px;
	height: 44px;
	margin: 0 auto 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid var(--b2b-border);
	background: var(--b2b-background);
	color: var(--b2b-text);
	animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.05);
	}
}

.b2b-popup-icon svg {
	width: 20px;
	height: 20px;
}

/* Tabs - Modern Design with Border Radius */
.b2b-popup-tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 32px;
	border-bottom: none;
	padding-bottom: 0;
	background: #f3f4f6;
	border-radius: 12px;
	padding: 4px;
	align-items: center;
}

.b2b-tab-btn {
	flex: 1;
	padding: 12px 20px;
	background: transparent;
	border: none;
	color: #6b7280;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	font-family: "Noto Sans Armenian", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	text-align: center;
	white-space: nowrap;
	line-height: 1.5;
	min-height: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	margin: 0;
	border-radius: 8px;
}

.b2b-tab-btn:hover {
	color: var(--b2b-primary);
	background: rgba(255, 255, 255, 0.8);
}

.b2b-tab-btn.active {
	color: white !important;
	font-weight: 600;
	background: var(--b2b-primary) !important;
	margin: 0;
	height: 44px;
	min-height: 44px;
	padding: 12px 20px;
	box-sizing: border-box;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(35, 62, 42, 0.2);
}

.b2b-tab-btn.active::after {
	display: none;
}

.b2b-tab-btn.active::before {
	display: none;
}

@keyframes tabSlide {
	from {
		transform: scaleX(0);
	}

	to {
		transform: scaleX(1);
	}
}

/* Tab Content */
.b2b-tab-content {
	display: none;
	animation: fadeInContent 0.3s ease;
}

.b2b-tab-content.active {
	display: block;
}

.b2b-tab-content.fade-in {
	animation: fadeInContent 0.3s ease;
}

.b2b-tab-content.fade-out {
	animation: fadeOutContent 0.15s ease;
}

@keyframes fadeInContent {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeOutContent {
	from {
		opacity: 1;
		transform: translateY(0);
	}

	to {
		opacity: 0;
		transform: translateY(-10px);
	}
}

/* Header */
.b2b-popup-header {
	text-align: center;
	margin-bottom: 24px;
}

.b2b-popup-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--b2b-text);
	margin: 0 0 8px;
	line-height: 1.4;
}

.b2b-popup-description {
	font-size: 14px;
	color: var(--b2b-text-muted);
	margin: 0;
	line-height: 1.5;
}

/* Form */
.b2b-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.b2b-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.b2b-form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.b2b-form-group label {
	font-size: 14px;
	font-weight: 500;
	color: var(--b2b-text);
	line-height: 1.4;
}

.b2b-form-group input[type="text"],
.b2b-form-group input[type="email"],
.b2b-form-group input[type="password"],
.b2b-form-group input[type="tel"],
.b2b-form-group select {
	height: 36px;
	padding: 8px 12px;
	border: 2px solid var(--b2b-border);
	border-radius: 8px;
	font-size: 14px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	font-family: "Noto Sans Armenian", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	background: var(--b2b-background);
	color: var(--b2b-text);
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.b2b-form-group input::placeholder {
	color: var(--b2b-text-muted);
	opacity: 0.7;
}

.b2b-form-group input:focus,
.b2b-form-group select:focus {
	outline: none;
	border-color: var(--b2b-primary) !important;
	box-shadow: 0 0 0 4px rgba(35, 62, 42, 0.1), 0 2px 8px rgba(35, 62, 42, 0.15) !important;
	transform: translateY(-2px);
	background: #fff;
}

.b2b-form-group input:focus::placeholder {
	opacity: 0.5;
}

/* Password Wrapper with Actions - Perfect Inside Input */
.b2b-password-wrapper {
	position: relative;
	display: block;
	width: 100%;
}

.b2b-password-wrapper input[type="password"],
.b2b-password-wrapper input[type="text"] {
	padding-right: 56px !important;
	width: 100%;
	box-sizing: border-box;
}

.b2b-password-actions {
	position: absolute;
	right: 4px;
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0;
	z-index: 5;
	pointer-events: none;
	width: 48px;
	padding: 0;
	margin: 0;
}

.b2b-toggle-password,
.b2b-copy-password {
	background: none !important;
	border: none !important;
	padding: 0;
	margin: 0;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--b2b-text-muted);
	transition: color 0.2s ease;
	border-radius: 0;
	width: 22px;
	height: 22px;
	min-width: 22px;
	min-height: 22px;
	max-width: 22px;
	max-height: 22px;
	position: relative;
	pointer-events: auto;
	flex-shrink: 0;
	vertical-align: middle;
	box-sizing: border-box;
	opacity: 0.7;
}

.b2b-toggle-password:hover,
.b2b-copy-password:hover {
	color: var(--b2b-text) !important;
	background: none !important;
	opacity: 1;
}

.b2b-toggle-password:active,
.b2b-copy-password:active {
	background: none !important;
	opacity: 0.9;
}

.b2b-toggle-password:focus,
.b2b-copy-password:focus {
	outline: none !important;
	opacity: 1;
}

.b2b-eye-icon {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	stroke-width: 1.5;
	fill: none;
	pointer-events: none;
	transition: all 0.2s ease;
	flex-shrink: 0;
	display: block;
	margin: 0;
}

.b2b-toggle-password:hover .b2b-eye-icon {
	stroke: currentColor;
	opacity: 1;
}

.b2b-copy-password svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	stroke-width: 1.5;
	fill: none;
	pointer-events: none;
	transition: all 0.2s ease;
	flex-shrink: 0;
	display: block;
	margin: 0;
}

.b2b-copy-password:hover svg {
	stroke: currentColor;
	opacity: 1;
}

/* Password Strength Meter */
.b2b-password-strength {
	margin-top: 8px;
}

.b2b-strength-bar {
	width: 100%;
	height: 4px;
	background: #e5e7eb;
	border-radius: 2px;
	overflow: hidden;
	margin-bottom: 6px;
}

.b2b-strength-fill {
	height: 100%;
	transition: all 0.3s ease;
	border-radius: 2px;
}

.b2b-strength-text {
	font-size: 12px;
	color: var(--b2b-text-muted);
	margin: 0;
}

/* Password Checklist */
.b2b-password-checklist {
	list-style: none;
	padding: 0;
	margin: 8px 0 0 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.b2b-checklist-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	transition: color 0.2s ease;
}

.b2b-checklist-icon {
	font-size: 14px;
	font-weight: bold;
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.b2b-checklist-text {
	transition: color 0.2s ease;
}

/* Generate Password Button */
.b2b-generate-password {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	margin-top: 8px;
	background: transparent;
	border: 1px solid var(--b2b-border);
	border-radius: 6px;
	color: var(--b2b-text);
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: "Noto Sans Armenian", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.b2b-generate-password:hover {
	background: rgba(35, 62, 42, 0.08);
	border-color: var(--b2b-primary);
	color: var(--b2b-primary);
}

.b2b-generate-password:active {
	transform: scale(0.98);
}

.b2b-generate-password svg {
	width: 14px;
	height: 14px;
	stroke: currentColor;
	fill: none;
	flex-shrink: 0;
}

/* Password match message */
.b2b-password-match-message {
	font-size: 12px;
	margin-top: 4px;
	padding: 4px 8px;
	border-radius: 4px;
	font-weight: 500;
}

.b2b-password-success {
	color: #4CAF50;
	background: rgba(76, 175, 80, 0.1);
}

.b2b-password-error {
	color: #233E2A;
	background: rgba(35, 62, 42, 0.1);
}

.b2b-input-success {
	border-color: #4CAF50 !important;
}

.b2b-input-error {
	border-color: #233E2A !important;
}

.b2b-form-group select {
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 36px;
}

/* Phone input - simple field */
#reg-phone {
	width: 100% !important;
}

.iti__dropdown {
	border-radius: 8px !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
	border: 1px solid var(--b2b-border) !important;
	margin-top: 4px !important;
	max-height: 200px;
	overflow-y: auto;
	z-index: 1000;
}

.iti__country {
	padding: 10px 12px !important;
	transition: background 0.2s ease !important;
	display: flex !important;
	align-items: center !important;
}

.iti__country:hover {
	background: rgba(35, 62, 42, 0.05) !important;
}

.iti__country.iti__highlight {
	background: rgba(35, 62, 42, 0.1) !important;
}

.iti__country-name {
	margin-left: 8px;
}

/* Form Options - Beautiful Design */
.b2b-form-options {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	margin-top: 4px;
}

.b2b-checkbox-label {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	color: var(--b2b-text);
	font-weight: 500;
	transition: color 0.2s ease;
}

.b2b-checkbox-label:hover {
	color: var(--b2b-primary);
}

.b2b-checkbox-label input[type="checkbox"] {
	width: 18px;
	height: 18px;
	cursor: pointer;
	accent-color: var(--b2b-primary);
	border-radius: 4px;
	border: 2px solid var(--b2b-border);
	transition: all 0.2s ease;
}

.b2b-checkbox-label input[type="checkbox"]:checked {
	background: var(--b2b-primary);
	border-color: var(--b2b-primary);
	box-shadow: 0 0 0 3px var(--b2b-primary-light);
}

.b2b-checkbox-label input[type="checkbox"]:hover {
	border-color: var(--b2b-primary);
	transform: scale(1.1);
}

.b2b-link {
	color: var(--b2b-primary);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.2s ease;
	position: relative;
}

.b2b-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--b2b-primary);
	transition: width 0.3s ease;
}

.b2b-link:hover {
	color: var(--b2b-primary-hover);
	text-decoration: none;
}

.b2b-link:hover::after {
	width: 100%;
}

/* Buttons - Modern Design with Border Radius */
.b2b-btn-primary {
	width: 100%;
	height: 50px;
	padding: 0 24px;
	background: var(--b2b-primary) !important;
	color: white !important;
	border: none !important;
	border-radius: 10px;
	font-size: 16px !important;
	font-weight: 600 !important;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	font-family: "Noto Sans Armenian", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	position: relative;
	box-shadow: 0 2px 8px rgba(35, 62, 42, 0.25);
	margin-top: 16px;
	text-transform: none;
	letter-spacing: 0;
	line-height: 1.5;
	overflow: hidden;
}

.b2b-btn-primary .b2b-btn-text {
	color: white !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	font-family: "Noto Sans Armenian", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	position: relative;
	z-index: 1;
}

.b2b-btn-primary:hover {
	background: var(--b2b-primary-hover) !important;
	color: white !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(35, 62, 42, 0.35);
}

.b2b-btn-primary:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(35, 62, 42, 0.3);
}

.b2b-btn-primary:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
	background: #9ca3af !important;
}

.b2b-btn-primary:disabled .b2b-btn-text {
	color: white !important;
}

.b2b-btn-loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.b2b-spinner {
	width: 20px;
	height: 20px;
	animation: spin 0.6s linear infinite;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

/* Message */
.b2b-message {
	padding: 12px 16px;
	border-radius: 8px;
	margin-top: 16px;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	opacity: 0;
	transform: translateY(-10px);
	transition: all 0.3s ease;
}

.b2b-message.b2b-message-show {
	opacity: 1;
	transform: translateY(0);
}

.b2b-message-success {
	background: #d1fae5;
	color: #065f46;
	border: 1px solid #a7f3d0;
}

.b2b-message-error {
	background: #fee2e2;
	color: #991b1b;
	border: 1px solid #fecaca;
}

/* Responsive Design */
@media (max-width: 640px) {
	.b2b-popup-container {
		max-width: 100%;
		margin: 0;
		border-radius: 16px 16px 0 0;
		max-height: 90vh;
	}

	.b2b-popup-content {
		padding: 20px;
	}

	.b2b-popup-close {
		top: 12px;
		right: 12px;
		width: 32px;
		height: 32px;
	}

	.b2b-popup-close svg {
		width: 16px;
		height: 16px;
	}

	.b2b-popup-tabs {
		flex-wrap: wrap;
		gap: 4px;
		padding: 3px;
	}

	.b2b-tab-btn {
		font-size: 13px;
		padding: 10px 12px;
	}

	.b2b-form-row {
		grid-template-columns: 1fr;
	}

	.b2b-popup-title {
		font-size: 18px;
	}

	.b2b-popup-description {
		font-size: 13px;
	}

	.b2b-btn-primary {
		height: 42px;
		font-size: 14px;
	}
}

/* Old phones support (320px+) */
@media (max-width: 360px) {
	.b2b-popup-content {
		padding: 16px;
	}

	.b2b-popup-close {
		top: 10px;
		right: 10px;
		width: 28px;
		height: 28px;
	}

	.b2b-popup-close svg {
		width: 14px;
		height: 14px;
	}

	.b2b-popup-icon {
		width: 36px;
		height: 36px;
		margin-bottom: 12px;
	}

	.b2b-popup-title {
		font-size: 16px;
	}

	.b2b-popup-description {
		font-size: 12px;
	}

	.b2b-tab-btn {
		font-size: 12px;
		padding: 8px 10px;
	}

	.b2b-form-group input,
	.b2b-form-group select {
		height: 36px;
		font-size: 13px;
		padding: 6px 10px;
	}

	.b2b-btn-primary {
		height: 40px;
		font-size: 14px;
		padding: 0 20px;
	}

	.b2b-form-group label {
		font-size: 13px;
	}
}

/* Tablet support */
@media (min-width: 641px) and (max-width: 1024px) {
	.b2b-popup-container {
		max-width: 450px;
	}
}

/* Cross-browser fixes */
@supports (-webkit-appearance: none) {
	.b2b-form-group select {
		appearance: none;
		-moz-appearance: none;
		-webkit-appearance: none;
	}
}

/* IE11 fallback (if needed) */
@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
	.b2b-popup-container {
		transform: none;
	}

	.b2b-popup-container.b2b-popup-show {
		transform: none;
	}
}

/* Accessibility */
.b2b-popup-close:focus,
.b2b-tab-btn:focus,
.b2b-btn-primary:focus,
.b2b-form-group input:focus,
.b2b-form-group select:focus {
	outline: 2px solid var(--b2b-primary);
	outline-offset: 2px;
}

/* Smooth scrolling */
.b2b-popup-content {
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: var(--b2b-border) transparent;
}

.b2b-popup-content::-webkit-scrollbar {
	width: 6px;
}

.b2b-popup-content::-webkit-scrollbar-track {
	background: transparent;
}

.b2b-popup-content::-webkit-scrollbar-thumb {
	background: var(--b2b-border);
	border-radius: 3px;
}

.b2b-popup-content::-webkit-scrollbar-thumb:hover {
	background: var(--b2b-text-muted);
}

/* Thank You Popup */
.b2b-thank-you-container {
	max-width: 450px;
	text-align: center;
}

.b2b-thank-you-content {
	padding: 40px 32px;
}

.b2b-thank-you-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 24px;
	animation: thankYouPulse 1s ease;
}

@keyframes thankYouPulse {
	0% {
		transform: scale(0);
		opacity: 0;
	}

	50% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.b2b-thank-you-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--b2b-text);
	margin: 0 0 16px;
	font-family: "Noto Sans Armenian", sans-serif;
}

.b2b-thank-you-message {
	font-size: 16px;
	color: var(--b2b-text-muted);
	line-height: 1.6;
	margin: 0 0 24px;
	font-family: "Noto Sans Armenian", sans-serif;
}

.b2b-thank-you-close {
	width: auto;
	margin: 0 auto;
	padding: 0 32px;
}

/* Approval Notification */
.b2b-approval-notification {
	position: fixed;
	top: 20px;
	right: 20px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	z-index: 999999;
	max-width: 400px;
	opacity: 0;
	transform: translateX(400px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.b2b-approval-notification.b2b-approval-show {
	opacity: 1;
	transform: translateX(0);
}

.b2b-approval-content {
	display: flex;
	align-items: flex-start;
	padding: 20px;
	gap: 16px;
	position: relative;
}

.b2b-approval-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	animation: approvalBounce 0.6s ease;
}

@keyframes approvalBounce {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.2);
	}
}

.b2b-approval-text {
	flex: 1;
	text-align: left;
}

.b2b-approval-text strong {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: var(--b2b-text);
	margin-bottom: 4px;
	font-family: "Noto Sans Armenian", sans-serif;
}

.b2b-approval-text p {
	font-size: 14px;
	color: var(--b2b-text-muted);
	margin: 0;
	line-height: 1.5;
	font-family: "Noto Sans Armenian", sans-serif;
}

.b2b-approval-close {
	position: absolute !important;
	top: 12px !important;
	right: 12px !important;
	width: 32px !important;
	height: 32px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: rgba(0, 0, 0, 0.05) !important;
	border: 2px solid var(--b2b-border) !important;
	border-radius: 6px !important;
	color: var(--b2b-text) !important;
	cursor: pointer !important;
	transition: all 0.2s ease !important;
	padding: 0 !important;
	z-index: 10 !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.b2b-approval-close:hover {
	background: var(--b2b-primary) !important;
	border-color: var(--b2b-primary) !important;
	color: white !important;
	transform: scale(1.1);
}

.b2b-approval-close svg {
	width: 16px !important;
	height: 16px !important;
	stroke-width: 2.5 !important;
	display: block !important;
}

/* Account Type Selector */
.b2b-account-type-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--b2b-text);
	margin-bottom: 12px;
	font-family: "Noto Sans Armenian", sans-serif;
}

.b2b-account-type-selector {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 20px;
}

.b2b-account-type-option {
	position: relative;
	cursor: pointer;
}

.b2b-account-type-option input[type="radio"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.b2b-account-type-card {
	background: white;
	border: 2px solid var(--b2b-border);
	border-radius: 12px;
	padding: 16px;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
	height: 100%;
}

.b2b-account-type-option input[type="radio"]:checked+.b2b-account-type-card {
	border-color: var(--b2b-primary);
	box-shadow: 0 4px 12px rgba(35, 62, 42, 0.15);
	transform: translateY(-2px);
}

.b2b-account-type-option:hover .b2b-account-type-card {
	border-color: var(--b2b-primary);
	transform: translateY(-1px);
}

.b2b-account-type-icon {
	font-size: 32px;
	line-height: 1;
	margin-bottom: 4px;
}

.b2b-account-type-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.b2b-account-type-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--b2b-text);
	font-family: "Noto Sans Armenian", sans-serif;
}

.b2b-account-type-desc {
	font-size: 12px;
	color: var(--b2b-text-muted);
	font-family: "Noto Sans Armenian", sans-serif;
	line-height: 1.4;
}

.b2b-account-type-benefit {
	font-size: 11px;
	color: var(--b2b-primary);
	font-weight: 600;
	margin-top: 4px;
	font-family: "Noto Sans Armenian", sans-serif;
}

.b2b-account-type-option input[type="radio"]:checked+.b2b-account-type-card .b2b-account-type-title {
	color: var(--b2b-primary);
}

/* Mobile responsive for account type selector */
@media (max-width: 640px) {
	.b2b-account-type-selector {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.b2b-account-type-card {
		padding: 14px;
	}

	.b2b-account-type-icon {
		font-size: 28px;
	}

	.b2b-account-type-title {
		font-size: 15px;
	}

	.b2b-account-type-desc {
		font-size: 11px;
	}

	.b2b-account-type-benefit {
		font-size: 10px;
	}
}

/* Numeric-only hint tooltip */
.numeric-hint-tooltip {
	position: absolute;
	background: #233E2A;
	color: white;
	padding: 8px 12px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 500;
	font-family: "Noto Sans Armenian", sans-serif;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	z-index: 10000;
	opacity: 0;
	transform: translateY(-5px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
	white-space: nowrap;
}

.numeric-hint-tooltip::before {
	content: '';
	position: absolute;
	bottom: 100%;
	left: 12px;
	border: 6px solid transparent;
	border-bottom-color: #233E2A;
}

.numeric-hint-tooltip.show {
	opacity: 1;
	transform: translateY(0);
}

/* Mobile responsive for notifications */
@media (max-width: 640px) {
	.b2b-approval-notification {
		top: 10px;
		right: 10px;
		left: 10px;
		max-width: none;
	}

	.b2b-thank-you-container {
		max-width: 100%;
	}

	.b2b-thank-you-content {
		padding: 32px 24px;
	}

	.b2b-thank-you-title {
		font-size: 24px;
	}

	.b2b-thank-you-message {
		font-size: 14px;
	}

	.numeric-hint-tooltip {
		font-size: 12px;
		padding: 6px 10px;
		max-width: 200px;
		white-space: normal;
	}
}

/* B2B Locked Price */
.b2b-locked-price {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background-color: #fff1f2;
	color: #e11d48;
	padding: 6px 10px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	margin-top: 8px;
	font-family: "Noto Sans Armenian", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.b2b-locked-icon {
	width: 14px;
	height: 14px;
	stroke-width: 2.5;
}

.b2b-locked-text {
	line-height: 1;
}
