/**
 * kaaz.me design system — tokens from app UI prototype
 */
:root {
	/* Brand: white + light blue */
	--ob-brand-yellow: #BFDBFE;
	--ob-brand-green: #2563EB;
	--ob-brand-green-dark: #1D4ED8;
	--ob-brand-green-ink: #0F172A;
	--ob-brand-slide: linear-gradient(120deg, #2563EB 0%, #3B82F6 58%, #BFDBFE 100%);

	--ob-bg: #ffffff;
	--ob-ink: #0F172A;
	--ob-accent: #2563EB;
	--ob-accent-hover: #1D4ED8;
	--ob-highlight: #BFDBFE;
	--ob-accent-soft: #EFF6FF;
	--ob-accent-soft-green: #EFF6FF;
	--ob-muted: #64748B;
	--ob-muted2: #94A3B8;
	--ob-border: #E2E8F0;
	--ob-border2: #BFDBFE;
	--ob-white: #ffffff;
	--ob-star: #3B82F6;
	--ob-success: #2563EB;
	--ob-radius: 12px;
	--ob-radius-sm: 10px;
	--ob-font: "DM Sans", system-ui, -apple-system, sans-serif;
	--ob-serif: Georgia, "Times New Roman", serif;
	/* Typography (readable on mobile) */
	--ob-text-2xs: 12px;
	--ob-text-xs: 13px;
	--ob-text-sm: 14px;
	--ob-text-md: 15px;
	--ob-text-base: 16px;
	--ob-text-lg: 18px;
	--ob-text-xl: 20px;
	--ob-text-2xl: 24px;
	--ob-text-3xl: 30px;
	/* Space for floating .the_mobile_fooeter (CTA + tabs + 12px offset) */
	--ob-footer-clearance: calc(180px + env(safe-area-inset-bottom, 0px));
}

html.ombre-app {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

html.ombre-app body {
	font-size: var(--ob-text-base);
	line-height: 1.5;
}

.ob-page {
	min-height: 100vh;
	background: var(--ob-bg);
	color: var(--ob-ink);
	font-family: var(--ob-font);
	font-size: var(--ob-text-base);
	line-height: 1.5;
}

.ob-wordmark {
	font-family: var(--ob-serif);
	font-weight: 700;
	letter-spacing: -0.04em;
	color: var(--ob-ink);
}

.ob-logo {
	display: block;
	height: 44px;
	width: auto;
	max-width: 200px;
	object-fit: contain;
}

.ob-logo--sm {
	height: 32px;
}

.ob-logo--lg {
	height: 56px;
}

.ob-eyebrow {
	font-size: var(--ob-text-2xs);
	color: var(--ob-muted2);
	letter-spacing: 3.5px;
	text-transform: uppercase;
}

.ob-muted {
	color: var(--ob-muted);
}

.ob-link {
	color: var(--ob-accent);
	font-weight: 500;
	text-decoration: none;
}

.ob-link:hover {
	text-decoration: underline;
}

/* Top bar (app screens) */
.ob-topbar {
	display: flex;
	align-items: center;
	padding: 8px 14px;
	background: var(--ob-white);
	border-bottom: 0.5px solid var(--ob-border);
	position: sticky;
	top: 0;
	z-index: 100;
}

.ob-topbar__back {
	color: var(--ob-accent);
	font-size: var(--ob-text-xl);
	line-height: 1;
	text-decoration: none;
	min-width: 24px;
}

.ob-topbar__title {
	flex: 1;
	text-align: center;
	font-size: var(--ob-text-base);
	font-weight: 500;
	color: var(--ob-ink);
	margin: 0;
}

.ob-topbar__action {
	font-size: var(--ob-text-sm);
	color: var(--ob-accent);
	font-weight: 500;
	text-decoration: none;
	min-width: 36px;
	text-align: right;
}

/* Buttons */
.ob-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 13px 16px;
	border: none;
	border-radius: var(--ob-radius);
	font-size: var(--ob-text-base);
	font-weight: 500;
	font-family: inherit;
	cursor: pointer;
	text-decoration: none;
	box-sizing: border-box;
}

.ob-btn--primary {
	background: var(--ob-accent);
	color: var(--ob-white);
	box-shadow: 0 2px 10px rgba(37, 99, 235, 0.25);
}

.ob-btn--primary:hover {
	background: var(--ob-brand-green-dark);
	filter: none;
}

.ob-btn--secondary {
	background: var(--ob-white);
	color: var(--ob-accent);
	border: 1.5px solid var(--ob-accent);
}

.ob-btn--secondary:hover {
	background: var(--ob-accent-soft);
	border-color: var(--ob-brand-green-dark);
}

/* Inputs */
.ob-label {
	display: block;
	font-size: var(--ob-text-sm);
	font-weight: 600;
	color: var(--ob-muted2);
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.ob-input,
.ob-textarea {
	width: 100%;
	box-sizing: border-box;
	background: var(--ob-white);
	border: 0.5px solid var(--ob-border2);
	border-radius: var(--ob-radius-sm);
	padding: 12px 14px;
	font-size: var(--ob-text-md);
	font-family: inherit;
	color: var(--ob-ink);
}

.ob-textarea {
	min-height: 72px;
	resize: vertical;
}

.ob-input::placeholder,
.ob-textarea::placeholder {
	color: var(--ob-muted2);
}

/* Cards */
.ob-card {
	background: var(--ob-white);
	border: 0.5px solid var(--ob-border);
	border-radius: 14px;
	padding: 14px;
}

/* Chips / pills */
.ob-chip {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 13px;
	border-radius: 20px;
	font-size: var(--ob-text-xs);
	font-weight: 500;
	background: var(--ob-accent-soft);
	color: var(--ob-accent);
}

.ob-chip--dark {
	background: var(--ob-brand-green);
	color: var(--ob-white);
}

.ob-chip--outline {
	background: var(--ob-white);
	border: 0.5px solid var(--ob-border2);
	color: var(--ob-muted);
	font-weight: 400;
}

/* Tabler Icons — must keep icon font (do not inherit DM Sans from body/buttons) */
.ti,
i.ti,
span.ti,
[class^="ti-"],
[class*=" ti-"],
i[class^="ti-"],
i[class*=" ti-"],
span[class^="ti-"],
span[class*=" ti-"],
a .ti,
button .ti,
.ob-btn .ti,
.ti:before,
span.ti:before,
[class^="ti-"]:before,
[class*=" ti-"]:before,
i[class^="ti-"]:before,
i[class*=" ti-"]:before {
	font-family: "tabler-icons" !important;
	font-style: normal !important;
	font-weight: 400 !important;
	font-variant: normal !important;
	text-transform: none !important;
	line-height: 1;
	display: inline-block;
	speak: never;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.ti:before,
[class^="ti-"]:before,
[class*=" ti-"]:before {
	display: inline-block;
}

.ob-chip .ti {
	font-size: var(--ob-text-base);
	line-height: 1;
	vertical-align: -0.15em;
}

/* Sidebar / header: Tabler replaces iconsax (no external SVG fetch) */
.sidebar-offcanvas .link-section .pages .ti.sidebar-icon {
	font-size: 22px;
	line-height: 1;
	width: 26px;
	text-align: center;
	flex-shrink: 0;
	color: rgba(var(--title-color), 1);
}

.offcanvas.sidebar-offcanvas .offcanvas-body .bottom-sidebar .pages .ti.sidebar-icon {
	font-size: 25px;
	width: 28px;
	color: rgba(var(--title-color), 1);
}

.main-header .header-panel .icon-btn.ti {
	font-size: 1.35rem;
	line-height: 1;
	color: inherit;
	vertical-align: middle;
}

/* Taxido auth forms — field + PIN visibility toggles */
.auth-form .form-group .icon.ti {
	font-size: 18px;
	color: rgba(var(--content-color), 1);
}

.auth-form .form-group .show-hide .ti.eye-icon {
	font-size: 18px;
	color: rgba(var(--content-color), 1);
}

/* Step progress (3 dots) */
.ob-steps {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-bottom: 28px;
}

.ob-steps__dot {
	width: 28px;
	height: 4px;
	border-radius: 4px;
	background: #d8dce4;
}

.ob-steps__dot.is-active {
	background: var(--ob-brand-green);
}

/* Segmented control */
.ob-segment {
	display: flex;
	background: var(--ob-white);
	border: 0.5px solid var(--ob-border);
	border-radius: var(--ob-radius);
	padding: 4px;
}

.ob-segment__item {
	flex: 1;
	text-align: center;
	padding: 9px;
	border-radius: 9px;
	font-size: var(--ob-text-sm);
	color: var(--ob-muted);
	cursor: pointer;
	border: none;
	background: transparent;
	font-family: inherit;
}

.ob-segment__item.is-active {
	background: var(--ob-brand-green);
	color: var(--ob-white);
	font-weight: 500;
}

/* Icon circle */
.ob-icon-circle {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--ob-accent-soft);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	color: var(--ob-accent);
	font-size: 26px;
}

/* Service grid (landing / home) — 3 per row */
.ob-grid-services {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.ob-svc-cell {
	background: var(--ob-white);
	border: 0.5px solid var(--ob-border);
	border-radius: 14px;
	padding: 14px 8px;
	text-align: center;
	min-height: 72px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.ob-svc-cell .ti {
	font-size: 26px;
	color: var(--ob-accent);
	line-height: 1;
}

.ob-svc-cell span {
	display: block;
	font-size: var(--ob-text-sm);
	font-weight: 500;
	color: var(--ob-ink);
	line-height: 1.25;
	margin-top: 0;
}

/* Post a job — service type picker */
.ob-post-services {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.ob-post-svc-wrap {
	position: relative;
}

.ob-post-svc {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 84px;
	padding: 14px 12px 12px;
	border: 0.5px solid var(--ob-border2);
	border-radius: 14px;
	background: var(--ob-white);
	font-family: inherit;
	font-size: var(--ob-text-md);
	font-weight: 500;
	line-height: 1.25;
	color: var(--ob-ink);
	cursor: pointer;
	transition: border-color 0.15s, background 0.15s, color 0.15s;
	-webkit-tap-highlight-color: transparent;
}

.ob-post-svc .ti {
	font-size: var(--ob-text-3xl);
	color: var(--ob-accent);
	line-height: 1;
}

.ob-post-svc span {
	text-align: center;
	max-width: 100%;
}

.ob-post-svc.is-selected {
	border-color: var(--ob-brand-green);
	border-width: 1.5px;
	background: var(--ob-accent-soft-green);
	color: var(--ob-brand-green-ink);
	font-weight: 600;
}

.ob-post-svc-info {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 28px;
	height: 28px;
	border: none;
	border-radius: 50%;
	background: var(--ob-white);
	box-shadow: 0 1px 6px rgba(26, 35, 50, 0.15);
	color: var(--ob-accent);
	font-size: var(--ob-text-lg);
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	z-index: 2;
	-webkit-tap-highlight-color: transparent;
}

.ob-post-svc-info .ti {
	font-size: var(--ob-text-xl);
}

.ob-service-pop {
	position: relative;
	background: var(--ob-brand-green);
	color: #fff;
	border-radius: 12px;
	padding: 14px 40px 14px 16px;
	margin-bottom: 14px;
	font-size: var(--ob-text-base);
	line-height: 1.55;
}

.ob-service-pop[hidden] {
	display: none !important;
}

.ob-service-pop__close {
	position: absolute;
	top: 8px;
	right: 10px;
	border: none;
	background: none;
	color: #fff;
	font-size: 22px;
	cursor: pointer;
	line-height: 1;
	padding: 2px 6px;
}

.ob-post-loc-actions .ob-btn {
	width: 100%;
}

/* Time slot picker — 2-column grid (no horizontal scroll) */
.ob-slot-picker {
	background: var(--ob-white);
	border: 0.5px solid var(--ob-border);
	border-radius: 14px;
	padding: 12px;
	max-height: min(52vh, 320px);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.ob-slot-picker__section + .ob-slot-picker__section {
	margin-top: 14px;
	padding-top: 12px;
	border-top: 0.5px solid var(--ob-border);
}

.ob-slot-picker__heading {
	font-size: var(--ob-text-2xs);
	font-weight: 600;
	color: var(--ob-muted2);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 8px;
}

.ob-slot-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.ob-slot-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	box-sizing: border-box;
	padding: 11px 10px 11px 38px;
	border-radius: 12px;
	border: 1.5px solid var(--ob-border);
	background: var(--ob-bg);
	color: var(--ob-ink);
	font-family: inherit;
	cursor: pointer;
	text-align: left;
	transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
	-webkit-tap-highlight-color: transparent;
}

.ob-slot-card__tick {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 1.5px solid var(--ob-border2);
	background: var(--ob-white);
	display: flex;
	align-items: center;
	justify-content: center;
	color: transparent;
	font-size: 14px;
	line-height: 1;
	transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.ob-slot-card__tick .ti {
	font-size: 13px;
	font-weight: 700;
}

.ob-slot-card__range {
	display: block;
	font-size: var(--ob-text-xs);
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.02em;
}

.ob-slot-card.is-selected,
.ob-slot-tab.is-selected {
	border-color: var(--ob-accent);
	background: var(--ob-accent-soft);
	color: var(--ob-ink);
	box-shadow: 0 0 0 1px var(--ob-accent);
}

.ob-slot-card.is-selected .ob-slot-card__tick,
.ob-slot-tab.is-selected .ob-slot-card__tick {
	border-color: var(--ob-accent);
	background: var(--ob-accent);
	color: var(--ob-white);
}

.ob-slot-price-bar {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	padding: 10px 12px;
	background: var(--ob-accent-soft-green);
	border-radius: 12px;
	font-size: var(--ob-text-md);
}

.ob-slot-price-bar strong {
	color: var(--ob-accent);
}

.ob-address-pick {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ob-address-pick__item {
	display: block;
	cursor: pointer;
	margin: 0;
}

.ob-address-pick__item input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.ob-address-pick__box {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 12px;
	border: 1px solid var(--ob-border);
	border-radius: 12px;
	background: var(--ob-white);
	transition: border-color 0.15s, box-shadow 0.15s;
}

.ob-address-pick__item input:checked + .ob-address-pick__box {
	border-color: var(--ob-accent);
	box-shadow: 0 0 0 1px var(--ob-accent);
}

.ob-address-pick__box .ti {
	font-size: 20px;
	color: var(--ob-accent);
	flex-shrink: 0;
	margin-top: 2px;
}

.ob-address-pick__title {
	display: block;
	font-size: var(--ob-text-md);
	font-weight: 500;
}

.ob-address-pick__sub {
	display: block;
	font-size: var(--ob-text-xs);
	color: var(--ob-muted);
	margin-top: 2px;
	line-height: 1.35;
}

#title.is-over-limit {
	border-color: #b91c1c;
}

/* Bottom app nav */
.ob-bnav {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	transform: none;
	width: 100%;
	max-width: none;
	background: var(--ob-white);
	border-top: 0.5px solid var(--ob-border);
	z-index: 99;
	padding-bottom: env(safe-area-inset-bottom, 0);
	box-shadow: 0 -4px 20px rgba(26, 35, 50, 0.06);
}

.ob-bnav__cta {
	padding: 8px 12px 4px;
}

.ob-bnav__cta-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 11px 16px;
	border: none;
	border-radius: 12px;
	background: var(--ob-accent);
	color: #fff;
	font-family: inherit;
	font-size: var(--ob-text-md);
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(44, 74, 107, 0.22);
	transition: background 0.15s ease, transform 0.1s ease;
}

.ob-bnav__cta-btn:hover,
.ob-bnav__cta-btn.is-active {
	background: var(--ob-brand-green-dark);
	filter: none;
	color: #fff;
}

.ob-bnav__cta-btn:active {
	transform: scale(0.98);
}

.ob-bnav__cta-btn .ti {
	font-size: var(--ob-text-xl);
}

.ob-bnav ul {
	list-style: none;
	margin: 0;
	padding: 8px 4px 10px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 2px;
}

.ob-bnav a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	text-decoration: none;
	font-size: var(--ob-text-2xs);
	color: var(--ob-muted);
	padding: 4px;
}

.ob-bnav li.active a,
.ob-bnav a:hover {
	color: var(--ob-brand-green);
	font-weight: 600;
}

.ob-bnav .ti {
	font-size: 20px;
}

/* Toggle switch visual */
.ob-switch {
	width: 42px;
	height: 24px;
	background: var(--ob-brand-green);
	border-radius: 12px;
	position: relative;
	flex-shrink: 0;
	cursor: pointer;
	border: none;
	padding: 0;
}

.ob-switch::after {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	background: var(--ob-white);
	border-radius: 50%;
	top: 2px;
	right: 2px;
	transition: transform 0.2s ease;
}

.ob-switch.is-off {
	background: #d8dce4;
}

.ob-switch.is-off::after {
	right: auto;
	left: 2px;
}

/* Utility — full-width app shell (desktop + mobile) */
.ob-maxw {
	max-width: none;
	width: 100%;
	margin: 0;
}

.ob-pad {
	padding: 16px;
	padding-bottom: var(--ob-footer-clearance);
}

/* Logged-in mobile footer — keep last buttons/fields above tab bar */
@media (max-width: 767.98px) {
	html.ob-has-mfooter .ob-pad,
	html.ob-has-mfooter .ob-page.ob-pad,
	html.ob-has-mfooter .ob-page.ob-maxw,
	html.ob-has-mfooter .ob-prof,
	html.ob-has-mfooter .ob-onboard {
		padding-bottom: var(--ob-footer-clearance) !important;
		box-sizing: border-box;
	}

	html.ob-has-mfooter .ob-page form .ob-btn--primary:last-child,
	html.ob-has-mfooter .ob-page form button.ob-btn--primary[type="submit"] {
		margin-bottom: 4px;
	}
}

.ob-hide-header-footer .main-header,
.ob-hide-header-footer .sidebar-offcanvas,
.ob-hide-header-footer .customer-bnav {
	display: none !important;
}

/* Searchable country dial picker (login / signup / edit) */
.ob-country-picker {
	position: relative;
	flex-shrink: 0;
	min-width: 118px;
	max-width: 46%;
	font-size: var(--ob-text-md);
}

.ob-country-picker__btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 6px;
	width: 100%;
	min-height: 44px;
	padding: 10px 10px;
	margin: 0;
	box-sizing: border-box;
	font: inherit;
	font-weight: 500;
	color: var(--ob-ink, #064d2e);
	background: var(--ob-white, #fff);
	border: 0.5px solid var(--ob-border2, #d0d5e0);
	border-radius: 10px;
	cursor: pointer;
	text-align: left;
	line-height: 1.25;
}

.ob-country-picker__btn:focus {
	outline: 2px solid var(--ob-accent, #2563EB);
	outline-offset: 1px;
}

.ob-country-picker__chev {
	flex-shrink: 0;
	font-size: var(--ob-text-2xs);
	color: var(--ob-muted, #7a8699);
}

.ob-country-picker__panel {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 4px);
	z-index: 300;
	background: var(--ob-white, #fff);
	border: 0.5px solid var(--ob-border2, #d0d5e0);
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(26, 35, 50, 0.12);
	overflow: hidden;
}

.ob-country-picker__search {
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 10px 12px;
	font: inherit;
	font-size: var(--ob-text-md);
	border: 0;
	border-bottom: 0.5px solid var(--ob-border, #ebebeb);
	border-radius: 0;
	background: var(--ob-bg, #fafafa);
}

.ob-country-picker__search:focus {
	outline: none;
	background: var(--ob-white, #fff);
}

.ob-country-picker__list {
	list-style: none;
	margin: 0;
	padding: 4px 0;
	max-height: min(52vh, 280px);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.ob-country-picker__item {
	padding: 10px 12px;
	cursor: pointer;
	font-size: var(--ob-text-sm);
	line-height: 1.35;
	color: var(--ob-ink, #064d2e);
}

.ob-country-picker__item:hover,
.ob-country-picker__item:focus {
	background: var(--ob-accent-soft, #ebf1f8);
}

.ob-country-picker__item.is-selected {
	background: var(--ob-accent-soft, #ebf1f8);
	font-weight: 600;
}

.ob-country-picker__item[hidden] {
	display: none;
}

/* Thin promo slider (home & sparse app pages) */
.ob-promo-slider {
	position: relative;
	margin-bottom: 16px;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(26, 35, 50, 0.1);
}

.ob-promo-slider__viewport {
	overflow: hidden;
	height: 76px;
}

.ob-promo-slider__track {
	display: flex;
	height: 100%;
	transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

.ob-promo-slider__slide {
	flex: 0 0 100%;
	width: 100%;
	height: 76px;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	box-sizing: border-box;
	text-decoration: none;
	color: #fff;
}

.ob-promo-slider__slide-icon {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: rgba(246, 226, 60, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 20px;
}

.ob-promo-slider__slide-text {
	flex: 1;
	min-width: 0;
}

.ob-promo-slider__slide-title {
	display: block;
	font-size: var(--ob-text-md);
	font-weight: 600;
	line-height: 1.25;
}

.ob-promo-slider__slide-sub {
	display: block;
	font-size: var(--ob-text-2xs);
	opacity: 0.88;
	margin-top: 2px;
	line-height: 1.3;
}

.ob-promo-slider__slide-chev {
	font-size: var(--ob-text-lg);
	opacity: 0.75;
	flex-shrink: 0;
}

/* Bump common inline small text in app views */
html.ombre-app .ob-page .ob-muted,
html.ombre-app .ob-page p.ob-muted {
	font-size: var(--ob-text-sm);
}

html.ombre-app .ob-page [style*="font-size:10px"],
html.ombre-app .ob-page [style*="font-size:11px"] {
	font-size: var(--ob-text-xs) !important;
}

html.ombre-app .ob-page [style*="font-size:12px"] {
	font-size: var(--ob-text-sm) !important;
}

html.ombre-app .ob-page [style*="font-size:13px"] {
	font-size: var(--ob-text-md) !important;
}

html.ombre-app .ob-auth,
html.ombre-app .ob-signup,
html.ombre-app .ob-landing {
	font-size: var(--ob-text-base);
}

html.ombre-app .ob-signup .ob-label,
html.ombre-app .ob-auth label {
	font-size: var(--ob-text-sm);
}

html.ombre-app .ob-prof,
html.ombre-app .ob-onboard {
	font-size: var(--ob-text-base);
}

html.ombre-app .ob-prof [style*="font-size:11px"],
html.ombre-app .ob-onboard [style*="font-size:11px"] {
	font-size: var(--ob-text-xs) !important;
}

.ob-promo-slider__dots {
	display: flex;
	justify-content: center;
	gap: 5px;
	padding: 8px 0 2px;
}

.ob-promo-slider__dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	border: none;
	padding: 0;
	background: #d0d5e0;
	cursor: pointer;
	transition: width 0.2s ease, background 0.2s ease;
}

.ob-promo-slider__dot.is-active {
	width: 14px;
	border-radius: 3px;
	background: var(--ob-brand-green);
}

/* Profile & edit account */
.ob-section-title {
	font-size: var(--ob-text-sm);
	font-weight: 600;
	color: var(--ob-muted2);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0 0 8px;
}

.ob-account-hero {
	background: var(--ob-brand-slide);
	color: #fff;
	border-radius: 14px;
	padding: 22px 16px 18px;
	text-align: center;
	margin-bottom: 16px;
	box-shadow: 0 4px 16px rgba(0, 191, 99, 0.2);
}

.ob-account-hero--compact {
	padding: 18px 16px;
}

.ob-account-hero__avatar-wrap {
	position: relative;
	width: 80px;
	margin: 0 auto 10px;
}

.ob-account-hero__avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--ob-brand-yellow);
	background: var(--ob-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--ob-text-2xl);
	font-weight: 700;
	color: var(--ob-brand-green);
}

.ob-account-hero__avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.ob-account-hero__edit-photo {
	position: absolute;
	right: -2px;
	bottom: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: none;
	background: var(--ob-white);
	color: var(--ob-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	padding: 0;
}

.ob-account-hero__edit-photo .ti {
	font-size: 16px;
}

.ob-account-hero__name {
	margin: 0;
	font-size: var(--ob-text-lg);
	font-weight: 600;
}

.ob-account-hero__meta {
	margin-top: 6px;
	font-size: var(--ob-text-sm);
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.45;
}

.ob-account-hero__hint {
	margin-top: 8px;
	font-size: var(--ob-text-xs);
	color: rgba(255, 255, 255, 0.6);
}

.ob-upload-progress {
	margin: 12px auto 0;
	max-width: 200px;
	height: 6px;
	background: rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	overflow: hidden;
}

.ob-upload-progress #progress_value_sc {
	height: 6px;
	width: 0;
	background: var(--ob-success);
	font-size: 0;
	line-height: 6px;
}

.ob-menu-card {
	background: var(--ob-white);
	border: 0.5px solid var(--ob-border);
	border-radius: 14px;
	overflow: hidden;
	margin-bottom: 14px;
}

.ob-menu-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 13px 14px;
	border-bottom: 0.5px solid var(--ob-border);
	text-decoration: none;
	color: inherit;
	transition: background 0.12s;
}

.ob-menu-row:last-child {
	border-bottom: none;
}

.ob-menu-row:active {
	background: var(--ob-accent-soft);
}

.ob-menu-row__icon {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--ob-accent-soft-green);
	color: var(--ob-brand-green);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.ob-menu-row__icon .ti {
	font-size: 20px;
	line-height: 1;
}

.ob-menu-row__text {
	flex: 1;
	min-width: 0;
}

.ob-menu-row__title {
	font-size: var(--ob-text-md);
	font-weight: 500;
	color: var(--ob-ink);
}

.ob-menu-row__sub {
	font-size: var(--ob-text-xs);
	color: var(--ob-muted);
	margin-top: 2px;
	line-height: 1.35;
}

.ob-menu-row__chev {
	color: var(--ob-muted2);
	font-size: 18px;
	line-height: 1;
	flex-shrink: 0;
}

.ob-field-static {
	display: flex;
	align-items: center;
	min-height: 44px;
	padding: 11px 14px;
	border-radius: var(--ob-radius-sm);
	border: 0.5px solid var(--ob-border2);
	background: var(--ob-bg);
	color: var(--ob-muted);
	font-size: var(--ob-text-md);
}

.ob-phone-row {
	display: flex;
	gap: 8px;
	align-items: stretch;
}

.ob-phone-row .ob-country-picker {
	flex-shrink: 0;
	min-width: 118px;
	max-width: 44%;
}

.ob-phone-row .ob-input {
	flex: 1;
	min-width: 0;
	margin-bottom: 0;
}

.ob-field-hint {
	font-size: var(--ob-text-xs);
	color: var(--ob-muted);
	margin-top: 4px;
	line-height: 1.4;
}

.ob-chip-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.ob-chip-grid label {
	cursor: pointer;
	margin: 0;
}

.ob-chip-grid input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.ob-chip-grid span {
	display: inline-block;
	padding: 7px 14px;
	border-radius: 20px;
	font-size: var(--ob-text-xs);
	background: var(--ob-white);
	border: 0.5px solid var(--ob-border2);
	color: var(--ob-muted);
	transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.ob-chip-grid input:checked + span {
	background: var(--ob-brand-green);
	color: #fff;
	border-color: var(--ob-brand-green);
}

.ob-verify-badge {
	display: inline-block;
	font-size: var(--ob-text-2xs);
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 20px;
	white-space: nowrap;
}

.ob-verify-badge.is-approved {
	background: var(--ob-accent-soft-green);
	color: var(--ob-brand-green-ink);
}

.ob-verify-badge.is-pending {
	background: var(--ob-accent-soft);
	color: #6b5a00;
}

.ob-verify-badge.is-rejected {
	background: #fee2e2;
	color: #991b1b;
}

.ob-verify-badge.is-none {
	background: var(--ob-accent-soft);
	color: var(--ob-muted);
}

.ob-profile-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: center;
	margin-top: 12px;
}

.ob-profile-pill {
	font-size: var(--ob-text-2xs);
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.15);
	color: rgba(255, 255, 255, 0.9);
}

.ob-file-list {
	list-style: none;
	margin: 8px 0 0;
	padding: 0;
	font-size: var(--ob-text-sm);
}

.ob-file-list li {
	margin-bottom: 4px;
}

/* Promo slides — brand green → yellow */
.ob-promo-slider__slide {
	background: var(--ob-brand-slide) !important;
	color: #fff;
}

/* App shell: replace global dark grey button gradients */
html.ombre-app {
	--nd-btn-gradient: none;
	--nd-btn-gradient-hover: none;
	--nd-btn-gradient-active: none;
}

html.ombre-app .btn-primary,
html.ombre-app .btn-success,
html.ombre-app .btn-info,
html.ombre-app .btn-dark,
html.ombre-app .btn-warning,
html.ombre-app .btn-danger,
html.ombre-app .btn-secondary {
	background-color: var(--ob-accent) !important;
	background-image: none !important;
	border-color: transparent !important;
	color: #fff !important;
	box-shadow: 0 2px 8px rgba(0, 191, 99, 0.22);
}

html.ombre-app .btn-primary:hover,
html.ombre-app .btn-success:hover,
html.ombre-app .btn-info:hover,
html.ombre-app .btn-dark:hover,
html.ombre-app .btn-warning:hover,
html.ombre-app .btn-danger:hover,
html.ombre-app .btn-secondary:hover {
	background-color: var(--ob-brand-green-dark) !important;
	background-image: none !important;
}

html.ombre-app .nd-mobile-tabbar--ombre .nd-mobile-tabbar__cta {
	background: var(--ob-brand-green) !important;
	background-image: none !important;
	box-shadow: 0 2px 10px rgba(0, 191, 99, 0.3);
}

html.ombre-app .nd-mobile-tabbar--ombre .nd-mobile-tabbar__item.is-active {
	background: var(--ob-accent-soft);
}

html.ombre-app .nd-mobile-tabbar--ombre .nd-mobile-tabbar__item.is-active .nd-mobile-tabbar__label {
	color: var(--ob-brand-green) !important;
}

html.ombre-app .nd-mobile-tabbar--ombre .nd-mobile-tabbar__item.is-active .nd-mobile-tabbar__icon {
	color: var(--ob-brand-green);
}

/* Help & support */
.ob-support-page {
	padding-bottom: 24px;
}

.ob-support-hero {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: linear-gradient(120deg, #2563EB 0%, #3B82F6 58%, #BFDBFE 100%);
	border: none;
	color: var(--ob-white);
}

.ob-support-hero .ob-muted {
	color: rgba(255, 255, 255, 0.88) !important;
}

.ob-support-hero__icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
}

.ob-support-chips {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

@media (max-width: 360px) {
	.ob-support-chips {
		grid-template-columns: 1fr;
	}
}

.ob-support-chip {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	padding: 12px 14px;
	background: var(--ob-white);
	border: 0.5px solid var(--ob-border);
	border-radius: 14px;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ob-support-chip:hover {
	border-color: var(--ob-brand-green);
	box-shadow: 0 2px 10px rgba(0, 191, 99, 0.12);
}

.ob-support-chip .ti {
	font-size: 1.25rem;
	color: var(--ob-brand-green);
}

.ob-support-chip__label {
	font-size: var(--ob-text-sm);
	font-weight: 600;
	color: var(--ob-ink);
}

.ob-support-chip__sub {
	font-size: var(--ob-text-xs);
	color: var(--ob-muted);
	word-break: break-all;
}

.ob-support-tip {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: var(--ob-text-sm);
}

.ob-support-tip .ti {
	flex-shrink: 0;
	font-size: 1.2rem;
	color: var(--ob-brand-green);
	margin-top: 2px;
}

.ob-support-page select.ob-input {
	appearance: auto;
}

html.ombre-app .ob-bnav__cta-btn {
	background: var(--ob-brand-green) !important;
	background-image: none !important;
}
