/* Claim card — sidebar only, compact */

.sbs-claim-sidebar-slot {
	display: block;
}

.sbs-claim-wrap {
	direction: rtl;
	font-family: inherit;
}

.sbs-claim-text {
	margin: 0;
	color: #555;
	line-height: 1.7;
	font-size: 13px;
}

.sbs-claim-text--success {
	color: #1a7f37;
}

.sbs-claim-text--pending {
	color: #9a6700;
}

.sbs-claim-text--rejected,
.sbs-claim-text--info {
	color: #b42318;
}

.sbs-claim-btn {
	width: 100%;
	border: 0;
	border-radius: 14px;
	padding: 13px 16px;
	font-weight: 800;
	font-size: 14px;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
	position: relative;
	z-index: 1;
}

.sbs-claim-btn:hover {
	transform: translateY(-1px);
}

.sbs-claim-btn--primary {
	background: #e91e63;
	color: #fff;
	box-shadow: 0 6px 18px rgba(233, 30, 99, 0.2);
}

.sbs-claim-btn--ghost {
	background: #fff;
	color: #e91e63;
	border: 1px solid #e91e63;
}

.sbs-claim-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	transform: none;
}

.sbs-claim-feedback {
	margin: 8px 0 0;
	font-size: 12px;
	color: #555;
	min-height: 1.2em;
}

.sbs-claim-feedback.is-error {
	color: #b42318;
}

.sbs-claim-feedback.is-success {
	color: #1a7f37;
}

.sk-sidebar-card--claim {
	background: linear-gradient(180deg, #fff9fb 0%, #fff 100%);
	border-color: #f3c8d6;
}

.sk-sidebar-card--claim .sk-side-title {
	margin-bottom: 14px;
}

.sbs-mobile-business-panel {
	display: none;
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
}

.sbs-mobile-business-panel__inner {
	background: #fff;
	border: 1px solid #f2dce5;
	border-radius: 20px;
	padding: 18px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

@media (max-width: 768px) {
	.sk-sidebar-card--claim {
		display: none;
	}

	.sbs-mobile-business-panel {
		display: block;
	}
}

/* Inline OTP modal for guest claim flow */

body.sbs-auth-modal-open {
	overflow: hidden;
	position: fixed;
	width: 100%;
}

.sbs-auth-modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
}

.sbs-auth-modal.is-open {
	display: flex !important;
	visibility: visible !important;
	opacity: 1 !important;
	pointer-events: auto !important;
}

.sbs-auth-modal[hidden]:not(.is-open) {
	display: none !important;
}

.sbs-auth-modal__backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(17, 17, 17, 0.55);
	touch-action: none;
}

.sbs-auth-modal__dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 420px;
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	background: #fff;
	border-radius: 24px;
	padding: 24px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
	direction: rtl;
	-webkit-overflow-scrolling: touch;
}

.sbs-auth-modal__close {
	position: absolute;
	top: 14px;
	left: 14px;
	border: 0;
	background: transparent;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	color: #888;
}

.sbs-auth-modal__title {
	margin: 0 0 8px;
	font-size: 22px;
}

.sbs-auth-modal__lead {
	margin: 0 0 18px;
	color: #666;
	line-height: 1.8;
	font-size: 14px;
}

.sbs-auth-form .sbs-auth-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 700;
	font-size: 14px;
}

.sbs-auth-form .sbs-auth-input {
	width: 100%;
	border: 1px solid #e8d5de;
	border-radius: 14px;
	padding: 14px 16px;
	font-size: 16px;
	margin-bottom: 14px;
	box-sizing: border-box;
}

.sbs-auth-form .sbs-auth-btn {
	width: 100%;
	border: 0;
	border-radius: 14px;
	padding: 14px 18px;
	background: #e91e63;
	color: #fff;
	font-weight: 800;
	cursor: pointer;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.sbs-auth-form .sbs-auth-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.sbs-auth-form .sbs-auth-link {
	display: inline-block;
	margin-top: 12px;
	border: 0;
	background: transparent;
	color: #e91e63;
	font-weight: 700;
	cursor: pointer;
	padding: 0;
}

.sbs-auth-form .sbs-auth-feedback {
	margin: 14px 0 0;
	min-height: 1.2em;
	font-size: 13px;
	color: #1a7f37;
}

.sbs-auth-form .sbs-auth-feedback.is-error {
	color: #b42318;
}

.sbs-auth-form .sbs-auth-step[hidden] {
	display: none !important;
}

.sbs-auth-test-otp {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	margin-bottom: 14px;
	padding: 14px 16px;
	border-radius: 14px;
	background: #fff8e5;
	border: 1px dashed #e6b800;
	text-align: center;
}

.sbs-auth-test-otp__label {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	color: #9a6700;
	text-transform: uppercase;
}

.sbs-auth-test-otp__code {
	font-size: 28px;
	font-weight: 900;
	letter-spacing: 0.2em;
	color: #222;
	direction: ltr;
}
