/* Mobile login sheet — shared site-wide (auction.php uses same markup/classes) */
body.auc-sheet-open {
	overflow: hidden;
	overscroll-behavior: none;
}
body.auc-sheet-open .auc-sheet input,
body.auc-sheet-open .auc-sheet select,
body.auc-sheet-open .auc-sheet textarea {
	touch-action: auto !important;
	-webkit-touch-callout: default;
}
body.auc-sheet-open .auc-sheet button,
body.auc-sheet-open .auc-sheet a {
	touch-action: manipulation;
}
.auc-sheet {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 2147483000;
	align-items: flex-end;
	justify-content: center;
	padding: 0;
	font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	isolation: isolate;
}
.auc-sheet.auc-sheet--open {
	display: flex;
	animation: xxs-auc-sheet-root-in .18s ease-out;
}
@keyframes xxs-auc-sheet-root-in {
	from { opacity: 0; }
	to { opacity: 1; }
}
.auc-sheet__backdrop {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: rgba(15, 23, 42, 0.5);
	cursor: pointer;
}
.auc-sheet__panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 440px;
	max-height: min(92vh, 640px);
	margin: 0;
	background: #fff;
	border-radius: 16px 16px 0 0;
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow:
		0 -12px 48px rgba(15, 23, 42, 0.15),
		0 0 0 1px rgba(255, 255, 255, 0.06) inset;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	animation: xxs-auc-sheet-panel-in .22s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes xxs-auc-sheet-panel-in {
	from { opacity: 0; }
	to { opacity: 1; }
}
@media (min-width: 480px) {
	.auc-sheet {
		align-items: center;
		padding: 16px;
	}
	.auc-sheet__panel {
		border-radius: 18px;
		max-height: min(88vh, 580px);
		box-shadow:
			0 24px 64px rgba(15, 23, 42, 0.18),
			0 0 0 1px rgba(15, 23, 42, 0.06);
	}
}
.auc-sheet__close {
	position: absolute !important;
	top: 10px !important;
	right: 10px !important;
	left: auto !important;
	bottom: auto !important;
	float: none !important;
	margin: 0 !important;
	z-index: 50;
	width: 44px;
	height: 44px;
	min-width: 44px;
	min-height: 44px;
	border: none !important;
	border-radius: 50% !important;
	background: rgba(15, 23, 42, 0.08) !important;
	background-image: none !important;
	color: #374151 !important;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	display: flex !important;
	align-items: center;
	justify-content: center;
	padding: 0 !important;
	box-shadow: none !important;
	transition: background .15s ease, color .15s ease, opacity .06s ease;
	pointer-events: auto;
	-webkit-tap-highlight-color: transparent;
	transform: none !important;
}
.auc-sheet__close .fa {
	pointer-events: none;
	font-size: 18px;
	line-height: 1;
}
.auc-sheet__close:hover {
	background: rgba(15, 23, 42, 0.14) !important;
	color: #111827 !important;
}
.auc-sheet__title {
	margin: 0 0 4px;
	font-size: 1.125rem;
	font-weight: 600;
	color: #1a1a1a;
	letter-spacing: -0.02em;
	line-height: 1.25;
}
.auc-sheet__scroll {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 16px 18px;
}
.auc-sheet__foot {
	flex-shrink: 0;
	padding: 0 18px calc(16px + env(safe-area-inset-bottom, 0px));
	border-top: 0;
	box-shadow: none;
	background: #fff;
}
.auc-sheet__btn {
	display: block !important;
	width: 100% !important;
	box-sizing: border-box !important;
	padding: 14px 16px !important;
	min-height: 50px !important;
	border: none !important;
	border-radius: 10px !important;
	background: #2563eb !important;
	color: #fff !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	cursor: pointer !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
	box-shadow: none !important;
}
.auc-sheet__btn:hover {
	background: #1d4ed8 !important;
	color: #fff !important;
}
.auc-sheet__btn:disabled {
	opacity: 0.65;
	cursor: wait !important;
}

#auc_sheet_login .auc-sheet__panel {
	max-height: min(92vh, 640px);
}
.auc-login__head {
	padding: 18px 48px 6px 18px;
	border-bottom: 0;
}
.auc-login__head .auc-sheet__title {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 700;
	color: #111;
	letter-spacing: -0.02em;
}
#auc_sheet_login .auc-sheet__scroll {
	padding: 8px 18px 12px;
	overscroll-behavior: contain;
}
#auc_sheet_login .auc-sheet__input {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	font-size: 16px;
	border: 1px solid #d0d5dd;
	border-radius: 8px;
	background: #fff;
	color: #1a1a1a;
	min-height: 46px;
	margin-bottom: 12px;
}
#auc_sheet_login .auc-sheet__input:focus {
	outline: none;
	border-color: #333;
	box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.12);
}
.auc-login__pass-row {
	display: flex;
	align-items: stretch;
	margin-bottom: 8px;
	border: 1px solid #d0d5dd;
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
}
.auc-login__pass-row:focus-within {
	border-color: #333;
	box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.12);
}
.auc-login__pass-row .auc-sheet__input {
	flex: 1 1 auto;
	min-width: 0;
	width: auto;
	margin-bottom: 0;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
	padding-right: 12px;
}
.auc-login__pass-row .auc-sheet__input:focus {
	box-shadow: none !important;
}
.auc-login__eye {
	flex: 0 0 52px;
	width: 52px;
	min-height: 46px;
	position: static;
	transform: none;
	border: 0;
	border-left: 1px solid #e4e7ec;
	background: #fff;
	color: #667085;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	margin: 0;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
	user-select: none;
	-webkit-user-select: none;
}
.auc-login__eye svg {
	display: block;
	width: 22px;
	height: 22px;
	pointer-events: none;
}
.auc-login__eye-icon--hide[hidden] {
	display: none !important;
}
.auc-login__forgot {
	text-align: right;
	margin: 0 0 14px;
}
.auc-login__forgot a {
	color: #2563eb;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}
.auc-login__terms {
	background: #ecfdf3;
	border: 1px solid #abefc6;
	border-radius: 8px;
	padding: 12px 14px;
	font-size: 13px;
	line-height: 1.45;
	color: #027a48;
	margin-bottom: 4px;
}
.auc-login__terms a {
	color: #2563eb;
	font-weight: 600;
	text-decoration: underline;
}
.auc-login__err {
	background: #fef3f2;
	border: 1px solid #fecdca;
	color: #b42318;
	border-radius: 8px;
	padding: 10px 12px;
	font-size: 13px;
	line-height: 1.4;
	margin-bottom: 12px;
}
#auc_sheet_login .auc-sheet__foot {
	padding: 0 18px calc(16px + env(safe-area-inset-bottom, 0px));
	border-top: 0;
	box-shadow: none;
	background: #fff;
}
.auc-login__register {
	margin: 14px 0 0;
	text-align: center;
	font-size: 14px;
	color: #475467;
	line-height: 1.45;
}
.auc-login__register a {
	color: #2563eb;
	font-weight: 700;
	text-decoration: underline;
	letter-spacing: 0.02em;
}

/* Mobile register sheet (global — auction dedicated register uses same IDs/classes) */
#auc_sheet_register .auc-sheet__panel {
	max-height: min(96vh, 920px);
}
@media (max-width: 991.98px) {
	#auc_sheet_register .auc-sheet__panel {
		max-height: 96vh;
		border-radius: 16px 16px 0 0;
	}
}
#auc_sheet_register .auc-sheet__top {
	padding: 12px 48px 8px 16px;
}
#auc_sheet_register .auc-sheet__glyph {
	width: 36px;
	height: 36px;
	font-size: 15px;
}
#auc_sheet_register .auc-sheet__title {
	font-size: 1.1rem;
}
#auc_sheet_register .auc-sheet__sub {
	font-size: 0.8rem;
	color: #667085;
	margin: 2px 0 0;
}
#auc_sheet_register .auc-sheet__scroll {
	padding: 10px 14px 28px;
	overscroll-behavior: contain;
	position: relative;
	z-index: 2;
}
#auc_sheet_register .reg-account-type-heading,
#auc_sheet_dedicated_register .reg-account-type-heading {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 600;
	color: #344054;
	line-height: 1.35;
}
#auc_sheet_register .reg-account-type-list,
#auc_sheet_dedicated_register .reg-account-type-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 14px;
}
#auc_sheet_register .reg-account-type-option,
#auc_sheet_dedicated_register .reg-account-type-option {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	min-height: 108px;
	padding: 14px 10px 12px;
	border: 1px solid #e4e7ec;
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
	text-align: center;
	font-family: inherit;
	-webkit-appearance: none;
	appearance: none;
	box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
	transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
#auc_sheet_register .reg-account-type-option:hover,
#auc_sheet_dedicated_register .reg-account-type-option:hover {
	border-color: #c9d2de;
	background: #fafbfc;
}
#auc_sheet_register .reg-account-type-option__icon,
#auc_sheet_dedicated_register .reg-account-type-option__icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: #f2f4f7;
	color: #667085;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
}
#auc_sheet_register .reg-account-type-option__body,
#auc_sheet_dedicated_register .reg-account-type-option__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	min-width: 0;
}
#auc_sheet_register .reg-account-type-option__title,
#auc_sheet_dedicated_register .reg-account-type-option__title {
	font-size: 14px;
	font-weight: 700;
	color: #1a1f2c;
	line-height: 1.25;
}
#auc_sheet_register .reg-account-type-option__sub,
#auc_sheet_dedicated_register .reg-account-type-option__sub {
	font-size: 11px;
	color: #667085;
	line-height: 1.35;
}
#auc_sheet_register .reg-account-type-option__check,
#auc_sheet_dedicated_register .reg-account-type-option__check {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid #d0d5dd;
	color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
}
#auc_sheet_register .reg-account-type-option.is-selected,
#auc_sheet_dedicated_register .reg-account-type-option.is-selected {
	border-color: #1a1f2c;
	box-shadow: 0 2px 8px rgba(16, 24, 40, 0.08);
}
#auc_sheet_register .reg-account-type-option.is-selected .reg-account-type-option__icon,
#auc_sheet_dedicated_register .reg-account-type-option.is-selected .reg-account-type-option__icon {
	background: #1a1f2c;
	color: #f5c518;
}
#auc_sheet_register .reg-account-type-option.is-selected .reg-account-type-option__check,
#auc_sheet_dedicated_register .reg-account-type-option.is-selected .reg-account-type-option__check {
	border-color: #1a1f2c;
	background: #1a1f2c;
	color: #f5c518;
}
#auc_sheet_register .reg-business-block,
#auc_sheet_dedicated_register .reg-business-block {
	margin-bottom: 12px;
	padding: 14px;
	background: #f8fafc;
	border: 1px solid #e8ecf1;
	border-radius: 12px;
}
#auc_sheet_register .reg-business-block__title,
#auc_sheet_dedicated_register .reg-business-block__title {
	margin: 0 0 10px;
	font-size: 12px;
	font-weight: 700;
	color: #475467;
}
#auc_sheet_register .reg-business-block[hidden],
#auc_sheet_dedicated_register .reg-business-block[hidden] {
	display: none !important;
}
#auc_sheet_register .auc-login__terms {
	margin-top: 10px;
	margin-bottom: 0;
}
.auc-reg-row {
	display: grid;
	gap: 8px;
	margin-bottom: 8px;
}
.auc-reg-row-2 {
	grid-template-columns: 1fr 1fr;
}
.auc-reg-field {
	position: relative;
}
#auc_sheet_register .auc-sheet__input {
	width: 100%;
	box-sizing: border-box;
	padding: 11px 12px;
	font-size: 16px;
	border: 1px solid #d0d5dd;
	border-radius: 8px;
	background: #fff;
	color: #1a1a1a;
	min-height: 44px;
	margin-bottom: 0;
}
#auc_sheet_register .auc-sheet__input:focus {
	outline: none;
	border-color: #333;
	box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.12);
	background: #fff;
}
#auc_sheet_register .auc-sheet__input[readonly] {
	background: #f3f4f6 !important;
	color: #374151 !important;
	cursor: not-allowed;
	border-color: #e5e7eb;
}
#auc_sheet_register .auc-sheet__scroll .xxs-reg-package {
	margin-bottom: 0;
	position: relative;
	z-index: 4;
}
.xxs-reg-select__box {
	position: relative;
}
.xxs-reg-select__trigger {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 100% !important;
	box-sizing: border-box !important;
	padding: 11px 12px !important;
	min-height: 46px !important;
	font-size: 16px !important;
	line-height: 1.35 !important;
	font-weight: 400 !important;
	text-transform: none !important;
	border: 1px solid #d0d5dd !important;
	border-radius: 8px !important;
	background: #fff !important;
	color: #1a1a1a !important;
	cursor: pointer !important;
	pointer-events: auto !important;
	touch-action: manipulation !important;
	text-align: left !important;
	box-shadow: none !important;
	transform: none !important;
	float: none !important;
	margin: 0 !important;
	-webkit-tap-highlight-color: transparent;
}
.xxs-reg-select__text.is-placeholder {
	color: #cdd5e0 !important;
	font-weight: 400 !important;
}
.xxs-reg-select__text:not(.is-placeholder) {
	color: #1a1a1a !important;
	font-weight: 400 !important;
	text-transform: none !important;
}
.xxs-reg-select__trigger.is-open,
.xxs-reg-select__trigger:focus {
	outline: none;
	border-color: #333 !important;
	box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.12);
}
.xxs-reg-select__text {
	flex: 1 1 auto;
	min-width: 0;
}
.xxs-reg-select__chev {
	flex: 0 0 auto;
	font-size: 12px;
	color: #667085;
	transition: transform 0.15s ease;
}
.xxs-reg-select__trigger.is-open .xxs-reg-select__chev {
	transform: rotate(180deg);
}
.xxs-reg-select__menu {
	display: none;
	list-style: none;
	margin: 0;
	padding: 2px 0;
	position: fixed;
	z-index: 2147483050;
	background: #fff;
	border: 1px solid #d0d5dd;
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
}
.xxs-reg-select__menu.is-open {
	display: block;
}
.xxs-reg-select__option {
	display: block;
	padding: 12px 14px;
	font-size: 16px;
	line-height: 1.35;
	font-weight: 400;
	text-transform: none;
	color: #1a1a1a;
	cursor: pointer;
	border-bottom: 1px solid #f0f0f0;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}
.xxs-reg-select__option:last-child {
	border-bottom: none;
}
.xxs-reg-select__option.is-selected,
.xxs-reg-select__option:active {
	background: #eff6ff;
	color: #1d4ed8;
}
.xxs-reg-package.is-invalid .xxs-reg-select__trigger {
	border-color: #dc3545 !important;
}
#auc_sheet_register .auc-sheet__foot {
	padding: 10px 14px calc(12px + env(safe-area-inset-bottom, 0px));
	background: #fff;
	border-top: 1px solid #e5e7eb;
	box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
}
.auc-reg-hint {
	font-size: 11px;
	color: #667085;
	margin: 4px 0 0;
	line-height: 1.35;
}
#auc_sheet_register .smarty-suggestions {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 4px);
	z-index: 10;
	background: #fff;
	border: 1px solid #d0d5dd;
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	max-height: 180px;
	overflow-y: auto;
}
#auc_sheet_register .smarty-suggestions.is-open {
	display: block;
}
#auc_sheet_register .smarty-suggestion {
	display: block;
	width: 100%;
	text-align: left;
	padding: 10px 12px;
	border: none;
	background: #fff;
	cursor: pointer;
	font-size: 14px;
	color: #1a1a1a;
	border-bottom: 1px solid #f0f0f0;
}
#auc_sheet_register .smarty-suggestion small {
	display: block;
	color: #667085;
	font-size: 12px;
	margin-top: 2px;
}

/* Trial package disclaimer (mobile register sheet) */
body.xxs-reg-trial-sheet-open {
	overflow: hidden !important;
	overscroll-behavior: none;
}
.xxs-reg-trial-sheet {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 2147483100;
	align-items: flex-end;
	justify-content: center;
	padding: 0;
	margin: 0;
	font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	isolation: isolate;
	box-sizing: border-box;
}
.xxs-reg-trial-sheet *,
.xxs-reg-trial-sheet *::before,
.xxs-reg-trial-sheet *::after {
	box-sizing: border-box;
}
.xxs-reg-trial-sheet.is-open {
	display: flex !important;
}
.xxs-reg-trial-sheet__backdrop {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: rgba(15, 23, 42, 0.55);
	cursor: pointer;
}
.xxs-reg-trial-sheet__panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 440px;
	margin: 0;
	background: #fff;
	border-radius: 16px 16px 0 0;
	border: 1px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 -12px 48px rgba(15, 23, 42, 0.15);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.xxs-reg-trial-sheet__close {
	position: absolute !important;
	top: 10px !important;
	right: 10px !important;
	left: auto !important;
	float: none !important;
	margin: 0 !important;
	z-index: 5;
	width: 44px !important;
	height: 44px !important;
	min-width: 44px !important;
	border: none !important;
	border-radius: 50% !important;
	background: rgba(15, 23, 42, 0.08) !important;
	color: #374151 !important;
	font-size: 18px !important;
	cursor: pointer;
	display: flex !important;
	align-items: center;
	justify-content: center;
	padding: 0 !important;
	box-shadow: none !important;
	transform: none !important;
}
.xxs-reg-trial-sheet__body {
	padding: 28px 24px 8px;
	text-align: center;
}
.xxs-reg-trial-sheet__glyph {
	width: 56px;
	height: 56px;
	margin: 0 auto 14px;
	border-radius: 50%;
	background: rgba(108, 152, 225, 0.12);
	color: #6c98e1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
}
.xxs-reg-trial-sheet__message {
	margin: 0;
	font-size: 15px;
	line-height: 1.55;
	color: #667085;
	text-align: center;
}
.xxs-reg-trial-sheet__foot {
	padding: 12px 18px calc(14px + env(safe-area-inset-bottom, 0px));
	border-top: 1px solid rgba(0, 0, 0, 0.07);
	background: #eef1f5;
}
.xxs-reg-trial-sheet__btn {
	display: block !important;
	width: 100% !important;
	min-height: 48px;
	padding: 13px 16px !important;
	border: none !important;
	border-radius: 10px !important;
	background: #6c98e1 !important;
	color: #fff !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	cursor: pointer;
	float: none !important;
	margin: 0 !important;
	box-shadow: none !important;
}
@media (min-width: 480px) {
	.xxs-reg-trial-sheet {
		align-items: center;
		padding: 16px;
	}
	.xxs-reg-trial-sheet__panel {
		border-radius: 18px;
		box-shadow: 0 24px 64px rgba(15, 23, 42, 0.18);
	}
}

#auc_sheet_forgot .auc-sheet__panel {
	max-height: min(92vh, 640px);
}
#auc_sheet_forgot .auc-sheet__scroll {
	padding: 8px 18px 12px;
	overscroll-behavior: contain;
}
#auc_sheet_forgot .auc-sheet__input {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	font-size: 16px;
	border: 1px solid #d0d5dd;
	border-radius: 8px;
	background: #fff;
	color: #1a1a1a;
	min-height: 46px;
	margin-bottom: 12px;
}
#auc_sheet_forgot .auc-sheet__input:focus {
	outline: none;
	border-color: #333;
	box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.12);
}
#auc_sheet_forgot .auc-sheet__foot {
	padding: 0 18px calc(16px + env(safe-area-inset-bottom, 0px));
}
#auc_sheet_forgot .auc-forgot-btn--hidden,
#auc_sheet_forgot .auc-forgot-step--hidden {
	display: none !important;
}
#auc_sheet_forgot #auc_forgot_reset_btn {
	margin-top: 0;
}

#auc_sheet_forgot.auc-sheet--forgot-success .auc-sheet__panel {
	max-height: none;
}
#auc_sheet_forgot.auc-sheet--forgot-success .auc-sheet__scroll {
	padding-bottom: 4px;
}

.auc-forgot__lead {
	margin: 0 0 12px;
	font-size: 14px;
	line-height: 1.5;
	color: #667085;
}

.auc-forgot__back {
	margin-top: 10px;
}
