/**
 * Alboh — converted from Stitch / Tailwind HTML
 */

:root {
	--boh-bg: #f8f9fa;
	--boh-navy: #0c2340;
	--boh-green: #0f7a5c;
	--boh-white: #ffffff;
	--boh-border: #e1e3e4;
	--boh-muted: rgba(12, 35, 64, 0.7);
	--boh-margin: 20px;
	--boh-gap-section: 32px;
	--boh-gap-stack: 16px;
}

*, *::before, *::after { box-sizing: border-box; }

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

body.boh-body {
	margin: 0;
	min-height: max(884px, 100dvh);
	font-family: "IBM Plex Sans Arabic", "Segoe UI", Tahoma, sans-serif;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	color: var(--boh-navy);
	background: var(--boh-bg);
	-webkit-tap-highlight-color: transparent;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.material-symbols-outlined {
	font-family: "Material Symbols Outlined", sans-serif;
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-smoothing: antialiased;
}

.boh-shell {
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
}

.boh-main {
	flex: 1;
	padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
}

.boh-wrap {
	width: min(100% - 32px, 1200px);
	margin-inline: auto;
}

/* ── App bar (Stitch header) ─────────────────────────────── */
.boh-bar {
	position: sticky;
	top: 0;
	z-index: 40;
	height: 64px;
	background: var(--boh-bg);
}

.boh-bar__inner {
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 80rem;
	height: 100%;
	margin-inline: auto;
	padding-inline: var(--boh-margin);
}

.boh-bar__brand {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	color: var(--boh-green);
	font-size: 24px;
	line-height: 32px;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.boh-bar__brand img {
	width: 32px;
	height: 32px;
	object-fit: contain;
	border-radius: 4px;
}

/* ── Home main ───────────────────────────────────────────── */
.boh-home {
	max-width: 80rem;
	margin-inline: auto;
	padding: 8px var(--boh-margin) 48px;
	display: flex;
	flex-direction: column;
	gap: var(--boh-gap-section);
}

/* ── Location page ───────────────────────────────────────── */
.boh-loc {
	max-width: 80rem;
	margin-inline: auto;
	padding: 16px var(--boh-margin) 48px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.boh-locbar {
	position: sticky;
	top: 0;
	z-index: 40;
	background: var(--boh-white);
	border-bottom: 1px solid var(--boh-border);
}

.boh-locbar__inner {
	display: grid;
	grid-template-columns: 40px 1fr 40px;
	align-items: center;
	gap: 8px;
	max-width: 80rem;
	margin-inline: auto;
	padding: 12px var(--boh-margin);
}

.boh-locbar__back {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	color: var(--boh-navy);
	background: var(--boh-bg);
	transition: background 0.15s ease;
}

.boh-locbar__back:active {
	background: var(--boh-border);
}

.boh-locbar__title-wrap {
	text-align: center;
	min-width: 0;
}

.boh-locbar__label {
	margin: 0;
	font-size: 12px;
	line-height: 16px;
	font-weight: 500;
	color: var(--boh-muted);
}

.boh-locbar__title {
	margin: 2px 0 0;
	font-size: 18px;
	line-height: 24px;
	font-weight: 700;
	color: var(--boh-navy);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.boh-locbar__spacer {
	width: 40px;
	height: 40px;
}

.boh-loc__feed-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: var(--boh-gap-stack);
}

.boh-loc__feed-title {
	margin: 0;
	font-size: 20px;
	line-height: 28px;
	font-weight: 700;
	color: var(--boh-navy);
}

.boh-loc__count {
	flex-shrink: 0;
	font-size: 13px;
	font-weight: 600;
	color: var(--boh-green);
	background: rgba(15, 122, 92, 0.1);
	padding: 4px 10px;
	border-radius: 999px;
}

.boh-loc__empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 40px 16px;
	text-align: center;
	color: var(--boh-muted);
}

.boh-loc__empty .material-symbols-outlined {
	font-size: 40px;
	color: rgba(15, 122, 92, 0.45);
}

.boh-loc__empty p {
	margin: 0;
	font-size: 15px;
	line-height: 22px;
}

.boh-loc__empty-link {
	font-size: 14px;
	font-weight: 700;
	color: var(--boh-green);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.boh-areas__title,
.boh-feed__title {
	margin: 0 0 var(--boh-gap-stack);
	font-size: 20px;
	line-height: 28px;
	font-weight: 700;
	color: var(--boh-navy);
}

.boh-feed__filter {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 12px;
	font-size: 14px;
	color: var(--boh-muted);
}

.boh-feed__filter strong {
	color: var(--boh-green);
	font-weight: 700;
}

.boh-feed__filter-clear {
	color: var(--boh-navy);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* Areas — square cards in 2×2 grid (Stitch order) */
.boh-areas__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.boh-areas__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 10px;
	background: var(--boh-white);
	border-radius: 16px;
	border: 1px solid var(--boh-border);
	box-shadow: 0 1px 2px rgba(12, 35, 64, 0.06);
	text-align: center;
	transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}

.boh-areas__card:active {
	transform: scale(0.98);
}

.boh-areas__card.is-active {
	border-color: var(--boh-green);
	background: rgba(15, 122, 92, 0.06);
	box-shadow: 0 0 0 1px rgba(15, 122, 92, 0.15);
}

.boh-areas__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: rgba(15, 122, 92, 0.1);
	color: var(--boh-green);
	overflow: hidden;
	flex-shrink: 0;
}

.boh-areas__symbol {
	font-size: 26px;
	font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.boh-areas__name {
	font-size: 13px;
	font-weight: 700;
	color: var(--boh-navy);
	line-height: 1.35;
}

.boh-areas__grid--4 {
	grid-template-columns: repeat(2, 1fr);
	max-width: 100%;
}

.boh-areas__more {
	margin: 14px 0 0;
	text-align: center;
}

.boh-areas__more a,
.boh-areas__toggle {
	font-size: 14px;
	font-weight: 600;
	color: var(--boh-green);
}

.boh-areas__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
	font-family: inherit;
}

.boh-areas__toggle:focus-visible {
	outline: 2px solid var(--boh-green);
	outline-offset: 3px;
	border-radius: 4px;
}

.boh-areas__extra {
	grid-template-columns: repeat(2, 1fr);
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	margin-top: 0;
	pointer-events: none;
	transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.35s ease;
}

.boh-areas__extra.is-open {
	max-height: 480px;
	opacity: 1;
	margin-top: 16px;
	pointer-events: auto;
}

.boh-feed__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.boh-card {
	background: var(--boh-white);
	border-radius: 24px;
	border: 1px solid var(--boh-border);
	box-shadow: 0 1px 2px rgba(12, 35, 64, 0.06);
	overflow: hidden;
}

.boh-card__link {
	display: block;
	padding: 16px;
	color: inherit;
}

.boh-card__row {
	display: flex;
	gap: 16px;
}

.boh-card__thumb {
	position: relative;
	flex: 0 0 96px;
	width: 96px;
	height: 96px;
	border-radius: 16px;
	overflow: hidden;
	background: var(--boh-border);
}

.boh-card__locbar {
	position: absolute;
	top: 4px;
	right: 4px;
	left: auto;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 2px;
	max-width: calc(100% - 8px);
	padding: 2px 5px;
	border-radius: 999px;
	font-family: "Tajawal", "IBM Plex Sans Arabic", sans-serif;
	font-size: 10px;
	line-height: 1.1;
	font-weight: 600;
	color: var(--boh-navy);
	background: var(--boh-white);
	box-shadow: 0 1px 4px rgba(12, 35, 64, 0.16);
	transform: none;
	pointer-events: none;
	-webkit-font-smoothing: antialiased;
}

.boh-card__locbar .material-symbols-outlined {
	font-size: 11px;
	font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 20;
	flex-shrink: 0;
	color: var(--boh-green);
}

.boh-card__loc-text {
	display: block;
	max-width: 48px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.boh-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.boh-card__ph {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #eef0f1, #e1e3e4);
}

.boh-card__body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-block: 4px;
}

.boh-card__title {
	margin: 0;
	font-size: 20px;
	line-height: 28px;
	font-weight: 700;
	color: var(--boh-navy);
}

.boh-card__price {
	margin: 0;
	font-size: 22px;
	line-height: 24px;
	font-weight: 700;
	color: var(--boh-green);
}

.boh-card__unit {
	font-size: 14px;
	font-weight: 400;
}

.boh-feed__empty {
	margin: 0;
	padding: 24px 0;
	text-align: center;
	color: var(--boh-muted);
	font-size: 14px;
}

/* ── Bottom nav (Stitch) ───────────────────────────────────── */
.boh-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 8px 16px;
	padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
	background: var(--boh-white);
	border-top: 1px solid var(--boh-border);
}

.boh-nav--3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-items: end;
}

.boh-nav__group {
	display: flex;
	flex: 1;
	justify-content: space-around;
	align-items: center;
}

.boh-nav__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	color: rgba(12, 35, 64, 0.55);
}

.boh-nav__item.is-on {
	color: var(--boh-green);
}

.boh-nav__label {
	font-size: 10px;
	line-height: 1.2;
	font-weight: 500;
}

.boh-nav__post {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-inline: 16px;
	color: rgba(12, 35, 64, 0.55);
}

.boh-nav__fab {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: -32px;
	margin-bottom: 4px;
	padding: 8px;
	border-radius: 9999px;
	background: var(--boh-green);
	color: var(--boh-white);
	box-shadow: 0 10px 15px -3px rgba(15, 122, 92, 0.35), 0 4px 6px -4px rgba(15, 122, 92, 0.25);
}

.boh-nav__fab .material-symbols-outlined {
	font-size: 24px;
}

/* ── Desktop header / footer ─────────────────────────────── */
.alboh-dheader {
	display: none;
	background: var(--boh-white);
	border-bottom: 1px solid var(--boh-border);
}

.alboh-dheader__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 72px;
}

.alboh-dheader__logo {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 20px;
	font-weight: 700;
	color: var(--boh-green);
}

.alboh-dheader__logo img { border-radius: 8px; }

.alboh-dheader__nav {
	display: flex;
	gap: 24px;
	font-weight: 600;
}

.alboh-dheader__nav a:hover { color: var(--boh-green); }

.alboh-dheader__actions {
	display: flex;
	gap: 10px;
}

.alboh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 14px;
}

.alboh-btn--primary {
	background: var(--boh-green);
	color: var(--boh-white);
}

.alboh-btn--ghost {
	border: 1.5px solid var(--boh-border);
	color: var(--boh-navy);
}

.alboh-mheader {
	display: none;
}

.boh-footer {
	display: none;
	background: var(--boh-navy);
	color: rgba(255, 255, 255, 0.75);
	padding: 24px 0;
}

.boh-footer__copy {
	margin: 0;
	text-align: center;
	font-size: 13px;
}

.alboh-page {
	padding: 40px var(--boh-margin);
}

/* ── Desktop website ───────────────────────────────────────── */
@media (min-width: 992px) {
	.boh-main {
		padding-bottom: 0;
	}

	.boh-bar {
		display: none;
	}

	.alboh-dheader {
		display: block;
	}

	.boh-nav {
		display: none;
	}

	.boh-footer {
		display: block;
		margin-top: auto;
	}

	.boh-home {
		padding-top: 32px;
		padding-bottom: 64px;
	}

	.boh-areas__grid--4 {
		grid-template-columns: repeat(4, 1fr);
	}

	.boh-areas__card:hover {
		border-color: var(--boh-green);
		box-shadow: 0 4px 16px rgba(12, 35, 64, 0.08);
	}

	.boh-feed__list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.boh-card:hover {
		box-shadow: 0 4px 16px rgba(12, 35, 64, 0.08);
	}
}

@media (min-width: 1200px) {
	.boh-feed__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

/* ── Single listing (Stitch) ─────────────────────────────── */
body.boh-single-page .boh-main {
	padding-bottom: 24px;
}

.boh-single__toolbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px;
	pointer-events: none;
}

.boh-single__tool,
.boh-single__fav-wrap .rtcl-favourites,
.boh-single__fav-wrap .boh-single__fav-btn {
	pointer-events: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 9999px;
	background: rgba(248, 249, 250, 0.85);
	backdrop-filter: blur(8px);
	box-shadow: 0 1px 3px rgba(12, 35, 64, 0.08);
	color: #191c1d;
	cursor: pointer;
	font-family: inherit;
}

.boh-single__tools {
	display: flex;
	gap: 8px;
}

.boh-single__fav-wrap .rtcl-favourites {
	text-decoration: none;
}

.boh-single__fav-wrap .rtcl-favourites .favourite-label,
.boh-single__fav-wrap .rtcl-favourites .rtcl-icon {
	display: none;
}

.boh-single__fav-wrap .rtcl-favourites::before {
	font-family: "Material Symbols Outlined", sans-serif;
	content: "favorite";
	font-size: 22px;
	line-height: 1;
	color: var(--boh-green);
	font-variation-settings: "FILL" 1;
}

.boh-single__fav-wrap .rtcl-favourites:not(.rtcl-active)::before {
	font-variation-settings: "FILL" 0;
	color: #191c1d;
}

.boh-single__layout {
	width: 100%;
	max-width: 1280px;
	margin-inline: auto;
}

.boh-single__hero {
	position: relative;
	width: 100%;
	height: 40vh;
	min-height: 260px;
	overflow: hidden;
	background: #e1e3e4;
}

.boh-single__hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.boh-single__hero-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: rgba(12, 35, 64, 0.35);
}

.boh-single__hero-empty .material-symbols-outlined {
	font-size: 48px;
}

.boh-single__badge {
	position: absolute;
	bottom: 16px;
	right: 16px;
	padding: 4px 12px;
	border-radius: 9999px;
	background: #005f46;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	box-shadow: 0 4px 12px rgba(12, 35, 64, 0.12);
}

.boh-single__counter {
	position: absolute;
	bottom: 16px;
	left: 16px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px 12px;
	border: 0;
	border-radius: 9999px;
	background: rgba(248, 249, 250, 0.85);
	backdrop-filter: blur(6px);
	color: #191c1d;
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	box-shadow: 0 1px 3px rgba(12, 35, 64, 0.08);
}

.boh-single__counter .material-symbols-outlined {
	font-size: 16px;
}

.boh-single__panel {
	padding: 16px var(--boh-margin) 32px;
	display: flex;
	flex-direction: column;
	gap: 32px;
	background: var(--boh-bg);
}

.boh-single__head {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--boh-border);
}

.boh-single__title {
	margin: 0;
	font-size: 24px;
	line-height: 32px;
	font-weight: 700;
	color: #191c1d;
}

.boh-single__locbox {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-top: 4px;
	padding: 12px;
	border-radius: 12px;
	background: #f3f4f5;
}

.boh-single__locbox .material-symbols-outlined {
	flex-shrink: 0;
	color: var(--boh-green);
	font-size: 22px;
}

.boh-single__locbox p {
	margin: 0;
	font-size: 16px;
	line-height: 24px;
	color: #3e4944;
}

.boh-single__price {
	margin: 8px 0 0;
	font-size: 22px;
	line-height: 24px;
	font-weight: 700;
	color: var(--boh-green);
}

.boh-single__price-suffix {
	font-size: 16px;
	font-weight: 400;
	color: #3e4944;
}

.boh-single__contact {
	display: flex;
	gap: 16px;
}

.boh-single__cta {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 12px 16px;
	border-radius: 9999px;
	background: var(--boh-green);
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	box-shadow: 0 4px 14px rgba(15, 122, 92, 0.25);
	transition: transform 0.15s ease;
}

.boh-single__cta:active {
	transform: scale(0.97);
}

.boh-single__block {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.boh-single__block-title {
	margin: 0;
	font-size: 20px;
	line-height: 28px;
	font-weight: 600;
	color: #191c1d;
}

.boh-single__description {
	font-size: 18px;
	line-height: 28px;
	color: #3e4944;
}

.boh-single__description p {
	margin: 0 0 12px;
}

.boh-single__description p:last-child {
	margin-bottom: 0;
}

.boh-single__map {
	position: relative;
	display: block;
	width: 100%;
	height: 192px;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--boh-border);
	box-shadow: 0 1px 3px rgba(12, 35, 64, 0.06);
}

.boh-single__map img,
.boh-single__map-fallback {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.boh-single__map-fallback {
	display: block;
	background: linear-gradient(135deg, #dbeafe 0%, #e1e3e4 50%, #d1fae5 100%);
}

.boh-single__map-pin {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -100%);
	font-size: 40px;
	color: var(--boh-green);
	filter: drop-shadow(0 2px 4px rgba(12, 35, 64, 0.2));
	font-variation-settings: "FILL" 1;
}

@media (min-width: 992px) {
	body.boh-single-page .boh-footer {
		display: block;
	}

	.boh-single__layout {
		display: grid;
		grid-template-columns: repeat(12, minmax(0, 1fr));
		gap: 16px;
		padding: 32px var(--boh-margin);
	}

	.boh-single__hero {
		grid-column: span 7;
		height: 60vh;
		min-height: 420px;
		border-radius: 16px;
	}

	.boh-single__panel {
		grid-column: span 5;
		padding: 24px;
		border-radius: 16px;
		box-shadow: 0 4px 20px rgba(12, 35, 64, 0.05);
	}
}

@media (min-width: 1200px) {
	.boh-single__hero {
		grid-column: span 8;
	}

	.boh-single__panel {
		grid-column: span 4;
	}
}

/* ── Pages (account, listing form) ───────────────────────── */
.boh-page {
	padding: 16px 0 32px;
}

.boh-page__title {
	margin: 0 0 16px;
	font-size: 24px;
	font-weight: 700;
	color: var(--boh-navy);
}

.boh-page__content {
	min-width: 0;
	overflow: visible;
}

.boh-page--account,
.boh-page--listing-form {
	padding-top: 8px;
}

.boh-page--account .boh-page__inner,
.boh-page--listing-form .boh-page__inner {
	width: min(100% - 24px, 1100px);
}

.boh-rtcl-panel {
	--rtcl-primary-color: var(--boh-green);
}

/* RTCL account shell */
.boh-account-page .rtcl-MyAccount-mobile-navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0 0 16px;
	padding: 12px 14px;
	background: var(--boh-white);
	border: 1px solid var(--boh-border);
	border-radius: 14px;
	position: sticky;
	top: 8px;
	z-index: 40;
}

.boh-account-page .rtcl-MyAccount-mobile-navbar h4 {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--boh-navy);
}

.boh-account-page .rtcl-MyAccount-open-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 10px;
	background: var(--boh-bg);
	cursor: pointer;
}

.boh-account-page .rtcl-MyAccount-open-menu span,
.boh-account-page .rtcl-MyAccount-open-menu span::before,
.boh-account-page .rtcl-MyAccount-open-menu span::after {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--boh-navy);
	border-radius: 2px;
	content: "";
}

.boh-account-page .rtcl-MyAccount-open-menu span {
	position: relative;
}

.boh-account-page .rtcl-MyAccount-open-menu span::before {
	position: absolute;
	top: -6px;
	left: 0;
}

.boh-account-page .rtcl-MyAccount-open-menu span::after {
	position: absolute;
	top: 6px;
	left: 0;
}

.boh-account-page .rtcl-MyAccount-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 20px;
	max-width: 100%;
	margin: 0;
}

.boh-account-page .rtcl-MyAccount-navigation {
	flex: 0 0 260px;
	max-width: 260px;
	border-radius: 16px;
	overflow: hidden;
	background: var(--boh-navy) !important;
}

.boh-account-page .rtcl-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: block;
}

.boh-account-page .rtcl-MyAccount-navigation ul li {
	display: block;
	margin: 0;
	border: 0;
}

.boh-account-page .rtcl-MyAccount-navigation a {
	display: block;
	padding: 14px 18px;
	font-size: 15px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.88) !important;
	text-decoration: none;
}

.boh-account-page .rtcl-MyAccount-navigation .is-active a,
.boh-account-page .rtcl-MyAccount-navigation a:hover {
	background: rgba(15, 122, 92, 0.22);
	color: var(--boh-white) !important;
}

.boh-account-page .rtcl-MyAccount-content {
	flex: 1;
	min-width: 0;
	overflow: visible;
	background: var(--boh-white);
	border: 1px solid var(--boh-border);
	border-radius: 16px;
	padding: 16px;
	box-shadow: 0 4px 20px rgba(12, 35, 64, 0.05);
}

.boh-account-page .sidebar-menu-opened {
	position: fixed;
	inset: 0;
	z-index: 999998;
	background: rgba(12, 35, 64, 0.45);
}

.boh-account-page #rtcl-user-login-wrapper,
.boh-account-page #rtcl-user-registration-wrapper {
	background: var(--boh-white);
	border: 1px solid var(--boh-border);
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 4px 20px rgba(12, 35, 64, 0.05);
}

.boh-account-page #rtcl-user-login-wrapper.have-registration-form {
	display: grid;
	gap: 20px;
}

.boh-account-page .rtcl-login-form-wrap h2,
.boh-account-page .rtcl-registration-form-wrap h2 {
	margin: 0 0 16px;
	font-size: 20px;
	font-weight: 700;
	color: var(--boh-navy);
}

.boh-account-page .rtcl-form-group {
	margin-bottom: 14px;
}

.boh-account-page .rtcl-field-label {
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
	font-weight: 600;
	color: var(--boh-navy);
}

.boh-account-page .rtcl-form-control {
	width: 100%;
	max-width: 100%;
	min-height: 48px;
	padding: 10px 14px;
	border: 1px solid var(--boh-border);
	border-radius: 12px;
	font-family: inherit;
	font-size: 16px;
	background: var(--boh-white);
}

.boh-account-page .rtcl-form-control:focus {
	outline: 2px solid rgba(15, 122, 92, 0.25);
	border-color: var(--boh-green);
}

.boh-account-page .rtcl-btn,
.boh-account-page .rtcl-btn-primary,
.boh-account-page input[type="submit"].rtcl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 20px;
	border: 0;
	border-radius: 9999px;
	background: var(--boh-green);
	color: var(--boh-white);
	font-family: inherit;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
}

.boh-account-page .login-link {
	margin-top: 12px;
	font-size: 14px;
	color: var(--boh-muted);
}

.boh-account-page .login-link a {
	color: var(--boh-green);
	font-weight: 700;
}

/* My listings table */
.boh-account-page .rtcl-my-listings-search-form form {
	display: grid;
	gap: 10px;
	margin-bottom: 16px;
}

.boh-account-page .rtcl-my-listings-search-keyword {
	display: flex;
	gap: 8px;
}

.boh-account-page .rtcl-my-listings-search-keyword button {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 12px;
	background: var(--boh-green);
	cursor: pointer;
}

.boh-account-page .rtcl-MyAccount-content-inner {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.boh-account-page .rtcl-my-listing-table {
	width: 100%;
	min-width: 640px;
	border-collapse: collapse;
}

.boh-account-page .rtcl-my-listing-table th,
.boh-account-page .rtcl-my-listing-table td {
	padding: 12px 10px;
	border-bottom: 1px solid var(--boh-border);
	vertical-align: middle;
}

.boh-account-page .rtcl-my-listings-table-toggle-info {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	margin-top: 8px;
	border-radius: 8px;
	background: var(--boh-bg);
	cursor: pointer;
}

.boh-account-page .rtcl-actions-wrap {
	position: relative;
	z-index: 10;
}

.boh-account-page .rtcl-actions-wrap .actions-dot {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: var(--boh-bg);
	cursor: pointer;
}

.boh-account-page .rtcl-my-listing-table .rtcl-actions {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	z-index: 120;
	min-width: 160px;
	padding: 8px;
	border-radius: 12px;
	background: var(--boh-white);
	border: 1px solid var(--boh-border);
	box-shadow: 0 8px 24px rgba(12, 35, 64, 0.14);
}

.boh-account-page .rtcl-my-listing-table .rtcl-actions a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	border-radius: 8px;
	color: var(--boh-navy);
	font-weight: 600;
}

.boh-account-page .rtcl-my-listing-table .rtcl-actions a:hover {
	background: rgba(15, 122, 92, 0.08);
	color: var(--boh-green);
}

.boh-account-page .boh-listing-edit-link {
	font-weight: 700;
	color: var(--boh-green) !important;
}

.boh-account-page .rtcl-tooltip {
	display: inline;
	font-size: 14px;
}

/* Listing form page */
.boh-listing-form-page .rtcl-post-form,
.boh-listing-form-page .rtcl-fb-form {
	max-width: 100%;
}

.boh-listing-form-page .rtcl-form-group,
.boh-listing-form-page .rtcl-fb-field {
	margin-bottom: 16px;
}

.boh-listing-form-page .rtcl-form-control,
.boh-listing-form-page input[type="text"],
.boh-listing-form-page input[type="tel"],
.boh-listing-form-page input[type="email"],
.boh-listing-form-page input[type="number"],
.boh-listing-form-page textarea,
.boh-listing-form-page select {
	width: 100%;
	max-width: 100%;
	min-height: 48px;
	padding: 10px 14px;
	border: 1px solid var(--boh-border);
	border-radius: 12px;
	font-family: inherit;
	font-size: 16px;
}

.boh-listing-form-page .rtcl-btn,
.boh-listing-form-page button[type="submit"] {
	min-height: 48px;
	padding: 0 24px;
	border: 0;
	border-radius: 9999px;
	background: var(--boh-green);
	color: var(--boh-white);
	font-weight: 700;
	cursor: pointer;
}

@media (max-width: 991px) {
	.boh-account-page .rtcl-MyAccount-wrap {
		display: block;
	}

	.boh-account-page .rtcl-MyAccount-navigation {
		position: fixed;
		top: 0;
		right: -225px;
		left: auto !important;
		z-index: 999999;
		width: 220px;
		max-width: 220px;
		height: 100%;
		border-radius: 0;
		overflow-y: auto;
		transition: right 0.35s ease;
	}

	.boh-account-page .rtcl-MyAccount-content {
		padding: 12px;
	}

	.boh-account-page .rtcl-my-listing-table {
		min-width: 0;
	}

	.boh-account-page .rtcl-my-listing-table thead {
		display: none;
	}

	.boh-account-page .rtcl-my-listing-table tr {
		display: block;
		margin-bottom: 14px;
		padding: 12px;
		border: 1px solid var(--boh-border);
		border-radius: 14px;
		background: var(--boh-white);
	}

	.boh-account-page .rtcl-my-listing-table td {
		display: block;
		border: 0;
		padding: 6px 0;
	}

	.boh-account-page .rtcl-my-listing-table td:first-child {
		padding-bottom: 10px;
	}

	.boh-account-page .rtcl-my-listing-table .list-on-responsive {
		display: none;
	}

	.boh-account-page .rtcl-my-listing-table .list-on-responsive.show {
		display: block;
	}

	.boh-account-page .rtcl-my-listing-table .list-on-responsive.show::before {
		content: attr(data-column);
		display: block;
		margin-bottom: 4px;
		font-size: 12px;
		font-weight: 600;
		color: var(--boh-muted);
	}

	.boh-account-page .rtcl-my-listing-table .list-on-responsive.show:last-child {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		padding-top: 8px;
	}

	.boh-account-page .rtcl-my-listing-table td.list-on-responsive:last-child {
		display: flex !important;
		align-items: center;
		flex-wrap: wrap;
		gap: 8px;
		padding-top: 10px;
		margin-top: 4px;
		border-top: 1px dashed var(--boh-border);
	}

	.boh-account-page .rtcl-my-listing-table td.list-on-responsive:last-child::before {
		content: attr(data-column);
		width: 100%;
		margin-bottom: 2px;
		font-size: 12px;
		font-weight: 600;
		color: var(--boh-muted);
	}

	.boh-account-page .rtcl-actions-wrap .rtcl-actions {
		position: static;
		display: flex !important;
		flex-wrap: wrap;
		gap: 8px;
		margin-top: 8px;
		box-shadow: none;
		border: 0;
		padding: 0;
	}

	.boh-account-page .rtcl-actions-wrap .actions-dot {
		display: none;
	}

	.boh-account-page .rtcl-actions.closed {
		display: flex !important;
	}
}

@media (min-width: 768px) {
	.boh-account-page #rtcl-user-login-wrapper.have-registration-form {
		grid-template-columns: 1fr 1fr;
	}

	.boh-account-page .rtcl-my-listings-search-form form {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		align-items: center;
	}
}

@media (min-width: 992px) {
	.boh-account-page .rtcl-MyAccount-mobile-navbar {
		display: none;
	}
}
