/* Habesha free directory — public UI (boleaddis-inspired density, gold accents) */
:root {
	--hfd-bg: #0b0d0f;
	--hfd-panel: #14171d;
	--hfd-panel-2: #191c23;
	--hfd-border: rgba(255,255,255,.08);
	--hfd-ink: #f3f1ea;
	--hfd-muted: #9496a0;
	--hfd-faint: #5b5d66;
	--hfd-gold: #d4af37;
	--hfd-gold-soft: #ecd98c;
	--hfd-teal: #3fa396;
	--hfd-radius: 14px;
}

body.hfd-free-directory {
	background: var(--hfd-bg);
	color: var(--hfd-ink);
}

/* Hide leftover join/login chrome if Elementor/header still injects it */
body.hfd-free-directory .aurora-gradient:is(a)[href*="login"],
body.hfd-free-directory a[href*="register"],
body.hfd-free-directory a[href*="subscribe"],
body.hfd-free-directory a[href*="payment"],
body.hfd-free-directory .mpc-join-cta,
body.hfd-free-directory .mpc-unlock-banner,
body.hfd-free-directory .mpc-paywall,
body.hfd-free-directory #mpc-booking-form { display: none !important; }

/* Strip MPC card chrome: hearts, thumb strip, View profile button */
body.hfd-free-directory .mpc-fav,
body.hfd-free-directory .mpc-card__fav,
body.hfd-free-directory .mpc-favorite,
body.hfd-free-directory button[data-model].mpc-fav,
body.hfd-free-directory article.group > button.mpc-fav,
body.hfd-free-directory article.group .mt-3.grid.grid-cols-4,
body.hfd-free-directory article.group a.mt-4.block.text-center,
body.hfd-free-directory .mpc-card__thumbs,
body.hfd-free-directory .mpc-model-card__thumbs { display: none !important; }

.hfd-browse { max-width: 1280px; margin: 0 auto; padding: 28px 18px 72px; }
.hfd-browse__intro { margin-bottom: 22px; }
.hfd-browse__intro h1 {
	font-family: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
	font-size: clamp(1.75rem, 3vw, 2.35rem);
	margin: 0 0 8px;
	color: var(--hfd-ink);
}
.hfd-browse__intro p { margin: 0; color: var(--hfd-muted); max-width: 46rem; line-height: 1.55; }

.hfd-browse__layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 22px;
	align-items: start;
}
@media (max-width: 900px) {
	.hfd-browse__layout { grid-template-columns: 1fr; }
}

.hfd-filter-panel {
	background: var(--hfd-panel);
	border: 1px solid var(--hfd-border);
	border-radius: var(--hfd-radius);
	padding: 14px 14px 18px;
	position: sticky;
	top: 80px;
}
.hfd-filter-panel__head {
	display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
}
.hfd-filter-panel__head strong { font-size: 14px; letter-spacing: .02em; }
.hfd-filter-badge {
	min-width: 20px; height: 20px; padding: 0 6px; border-radius: 999px;
	background: var(--hfd-gold); color: #1a1206; font-size: 11px; font-weight: 700;
	display: inline-flex; align-items: center; justify-content: center;
}
.hfd-filter-toggle {
	margin-left: auto; display: none; background: transparent; border: 1px solid var(--hfd-border);
	color: var(--hfd-ink); border-radius: 9px; padding: 6px 10px; font-size: 12px; cursor: pointer;
}
@media (max-width: 900px) {
	.hfd-filter-toggle { display: inline-flex; }
	.hfd-filter-form { display: none; }
	.hfd-filter-panel.is-open .hfd-filter-form { display: block; }
	.hfd-filter-panel { position: static; }
}

.hfd-filter-search input,
.hfd-select {
	width: 100%; box-sizing: border-box;
	background: var(--hfd-panel-2); border: 1px solid var(--hfd-border);
	color: var(--hfd-ink); border-radius: 10px; padding: 10px 12px; font-size: 13.5px;
}
.hfd-filter-search { margin-bottom: 10px; }

.hfd-acc { border-top: 1px solid var(--hfd-border); }
.hfd-acc__btn {
	width: 100%; display: flex; align-items: center; justify-content: space-between;
	background: none; border: 0; color: var(--hfd-ink); padding: 12px 2px; cursor: pointer; font-weight: 600; font-size: 13px;
}
.hfd-acc__chev::before { content: "▸"; color: var(--hfd-faint); display: inline-block; transition: transform .15s; }
.hfd-acc.is-open .hfd-acc__chev::before { transform: rotate(90deg); }
.hfd-acc__panel { display: none; padding: 0 0 12px; }
.hfd-acc.is-open .hfd-acc__panel { display: block; }

.hfd-check { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--hfd-muted); cursor: pointer; }
.hfd-filter-actions { display: grid; gap: 8px; margin-top: 12px; }
.hfd-filter-hint {
	margin: 10px 2px 0;
	font-size: 11.5px;
	line-height: 1.4;
	color: var(--hfd-faint);
}

.hfd-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 6px;
	padding: 10px 14px; border-radius: 10px; font-size: 13px; font-weight: 700;
	border: 1px solid transparent; text-decoration: none; cursor: pointer;
}
.hfd-btn--primary {
	background: linear-gradient(135deg, var(--hfd-gold-soft), var(--hfd-gold));
	color: #1a1206;
}
.hfd-btn--ghost {
	background: transparent; border-color: var(--hfd-border); color: var(--hfd-ink);
}

.hfd-browse__toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 8px 16px;
	margin-bottom: 14px;
}
.hfd-browse__count { color: var(--hfd-muted); font-size: 13px; }

/* Quick filter chips */
.hfd-chips {
	display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
	margin: 0 0 18px; padding: 12px 0;
}
.hfd-chips__label {
	font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
	color: var(--hfd-faint); margin-right: 2px;
}
.hfd-chip {
	display: inline-flex; align-items: center;
	padding: 7px 12px; border-radius: 999px;
	font-size: 12.5px; color: var(--hfd-muted); text-decoration: none;
	border: 1px solid var(--hfd-border); background: rgba(255,255,255,.03);
	transition: border-color .15s, color .15s, background .15s;
}
.hfd-chip:hover { color: var(--hfd-ink); border-color: rgba(212,175,55,.4); }
.hfd-chip.is-active {
	color: #1a1206; background: linear-gradient(135deg, var(--hfd-gold-soft), var(--hfd-gold));
	border-color: transparent; font-weight: 700;
}

.hfd-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}
@media (max-width: 1100px) { .hfd-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 720px)  { .hfd-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; } }

/* Horizontal featured rails (Netflix-style strip + self-moving marquee) */
.hfd-rail {
	position: relative;
	margin: 0 -4px;
}
/* CSS marquee — featured auto-scroll left (always on when --marquee) */
.hfd-rail--marquee {
	overflow: hidden;
	margin: 0;
	padding: 4px 0 12px;
}
.hfd-rail--marquee .hfd-rail__viewport {
	overflow: hidden;
	width: 100%;
	mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}
.hfd-rail--marquee .hfd-rail__marquee {
	display: flex;
	width: max-content;
	gap: 14px;
	/* Motion driven by directory.js infinite loop (seamless wrap). */
	animation: none;
	will-change: transform;
	transform: translate3d(0,0,0);
}
.hfd-rail--marquee:hover .hfd-rail__marquee,
.hfd-rail--marquee:focus-within .hfd-rail__marquee,
.hfd-rail--js-loop .hfd-rail__marquee {
	animation: none;
}
.hfd-rail--marquee .hfd-rail__marquee-set {
	display: flex;
	gap: 14px;
	padding: 6px 0;
	flex-shrink: 0;
}
.hfd-rail--marquee .hfd-rail__item {
	flex: 0 0 min(220px, 42vw);
	scroll-snap-align: unset;
	min-width: 0;
}
@media (min-width: 1100px) {
	.hfd-rail--marquee .hfd-rail__item { flex-basis: 210px; }
}
@keyframes hfd-marquee-left {
	from { transform: translate3d(0, 0, 0); }
	to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
	.hfd-rail--marquee .hfd-rail__marquee {
		animation: none;
		overflow-x: auto;
		width: 100%;
		max-width: 100%;
	}
}
.hfd-rail--auto .hfd-rail__track {
	scroll-snap-type: none;
	scroll-behavior: auto;
}
.hfd-rail__track {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	padding: 6px 8px 16px;
	cursor: grab;
	scrollbar-width: thin;
	scrollbar-color: rgba(212,175,55,.45) transparent;
}
.hfd-rail__track.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.hfd-rail__track::-webkit-scrollbar { height: 6px; }
.hfd-rail__track::-webkit-scrollbar-thumb {
	background: rgba(212,175,55,.4); border-radius: 999px;
}
.hfd-rail__item {
	flex: 0 0 min(220px, 42vw);
	scroll-snap-align: start;
	min-width: 0;
}
@media (min-width: 1100px) {
	.hfd-rail__item { flex-basis: 210px; }
}
.hfd-rail__item .hfd-card { height: 100%; }
.hfd-rail__btn {
	position: absolute; top: 42%; transform: translateY(-50%);
	z-index: 3; width: 40px; height: 40px; border-radius: 50%;
	border: 1px solid rgba(255,255,255,.14);
	background: rgba(14,16,20,.88); color: #fff;
	font-size: 22px; line-height: 1; cursor: pointer;
	display: grid; place-items: center;
	box-shadow: 0 8px 24px rgba(0,0,0,.35);
	transition: background .15s, border-color .15s, opacity .15s;
}
.hfd-rail__btn:hover { background: rgba(212,175,55,.2); border-color: rgba(212,175,55,.5); }
.hfd-rail__btn--prev { left: -6px; }
.hfd-rail__btn--next { right: -6px; }
@media (max-width: 720px) {
	.hfd-rail__btn { width: 34px; height: 34px; font-size: 18px; }
	.hfd-rail__btn--prev { left: 2px; }
	.hfd-rail__btn--next { right: 2px; }
}

.hfd-card {
	display: block; text-decoration: none; color: inherit;
	background: var(--hfd-panel); border: 1px solid var(--hfd-border);
	border-radius: 16px; overflow: hidden; transition: transform .15s ease, border-color .15s;
}
.hfd-card:hover { transform: translateY(-2px); border-color: rgba(212,175,55,.35); }
.hfd-card__photo { position: relative; aspect-ratio: 3/4; background: #0f1115; overflow: hidden; }
.hfd-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hfd-card__ph { width: 100%; height: 100%; background: linear-gradient(160deg,#1a1d24,#0f1115); }
.hfd-card__dot {
	position: absolute; top: 10px; left: 10px; width: 10px; height: 10px; border-radius: 50%;
	background: #34c293; box-shadow: 0 0 0 3px rgba(52,194,147,.25);
}
.hfd-card__tier {
	position: absolute; bottom: 10px; left: 10px;
	font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
	padding: 5px 10px; border-radius: 999px;
	background: rgba(212, 175, 55, 0.92);
	color: #1a1206;
	border: 1px solid rgba(255, 236, 170, 0.65);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
	opacity: 1;
}
.hfd-card__body { padding: 11px 12px 13px; }
.hfd-card__name { display: block; font-size: 14.5px; margin-bottom: 3px; }
.hfd-card__age { font-weight: 500; color: var(--hfd-muted); }
.hfd-card__meta { display: block; font-size: 12px; color: var(--hfd-muted); }
/* Rates & Popular badges removed from cards (kept CSS no-op for safety). */
.hfd-card__rates,
.hfd-card__badges { display: none !important; }

.hfd-svc-badge {
	display: inline-flex; align-items: center;
	font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
	padding: 4px 8px; border-radius: 7px;
	background: rgba(212, 175, 55, 0.88);
	color: #1a1206;
	border: 1px solid rgba(255, 236, 170, 0.55);
	opacity: 1;
}
.hfd-svc-badge--lg { margin-bottom: 10px; font-size: 11px; padding: 5px 10px; }
.hfd-svc-badge--inline {
	margin-left: 6px; vertical-align: middle; font-size: 9px; padding: 2px 5px;
}

.hfd-landing__points {
	margin: 14px 0 0; padding: 0; list-style: none;
	display: flex; flex-wrap: wrap; gap: 8px;
}
.hfd-landing__points li {
	font-size: 12.5px; color: var(--hfd-muted);
	padding: 6px 12px; border-radius: 999px;
	background: rgba(255,255,255,.04); border: 1px solid var(--hfd-border);
}
.hfd-landing__body {
	margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--hfd-border);
	color: var(--hfd-muted); font-size: 14.5px; line-height: 1.7; max-width: 48rem;
}
.hfd-landing__body p { margin: 0 0 1em; }

.hfd-empty { text-align: center; padding: 60px 16px; color: var(--hfd-muted); }
.hfd-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 28px; flex-wrap: wrap; }

/* Profile */
.hfd-profile { max-width: 1180px; margin: 0 auto; padding: 24px 18px 80px; }
.hfd-profile__back { color: var(--hfd-muted); text-decoration: none; font-size: 14px; }
.hfd-profile__back:hover { color: var(--hfd-ink); }
.hfd-profile__grid {
	display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; margin-top: 16px;
}
@media (max-width: 900px) { .hfd-profile__grid { grid-template-columns: 1fr; } }

/* Accessible photo viewer */
.hfd-viewer { display: grid; gap: 12px; }
.hfd-viewer__stage {
	position: relative;
	border-radius: 18px; overflow: hidden;
	border: 1px solid var(--hfd-border); background: #0a0c10;
	aspect-ratio: 3/4; max-height: min(78vh, 820px);
}
.hfd-viewer__img {
	width: 100%; height: 100%; object-fit: cover; display: block;
	user-select: none; -webkit-user-drag: none;
}
.hfd-viewer__nav {
	position: absolute; top: 50%; transform: translateY(-50%);
	width: 44px; height: 44px; border-radius: 50%;
	border: 1px solid rgba(255,255,255,.2);
	background: rgba(10,12,16,.55); color: #fff;
	font-size: 28px; line-height: 1; cursor: pointer;
	display: inline-flex; align-items: center; justify-content: center;
	backdrop-filter: blur(6px);
}
.hfd-viewer__nav:hover, .hfd-viewer__nav:focus-visible {
	background: rgba(212,175,55,.35); outline: 2px solid var(--hfd-gold); outline-offset: 2px;
}
.hfd-viewer__nav--prev { left: 10px; }
.hfd-viewer__nav--next { right: 10px; }
.hfd-viewer__counter {
	position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
	font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 999px;
	background: rgba(0,0,0,.55); color: #fff; letter-spacing: .02em;
}
.hfd-viewer__zoom {
	position: absolute; top: 12px; right: 12px;
	width: 40px; height: 40px; border-radius: 10px;
	border: 1px solid rgba(255,255,255,.2);
	background: rgba(10,12,16,.55); color: #fff; cursor: pointer; font-size: 16px;
}
.hfd-viewer__zoom:focus-visible { outline: 2px solid var(--hfd-gold); outline-offset: 2px; }
.hfd-viewer__thumbs {
	display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px;
	scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.hfd-viewer__thumb {
	flex: 0 0 auto; width: 72px; height: 96px; padding: 0;
	border: 2px solid transparent; border-radius: 10px; overflow: hidden;
	background: var(--hfd-panel); cursor: pointer; scroll-snap-align: start;
	opacity: .72; transition: opacity .15s, border-color .15s;
}
.hfd-viewer__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hfd-viewer__thumb.is-active, .hfd-viewer__thumb:focus-visible {
	opacity: 1; border-color: var(--hfd-gold); outline: none;
}
.hfd-viewer__hint {
	margin: 0; font-size: 12px; color: var(--hfd-faint);
}

/* Lightbox */
.hfd-lb[hidden] { display: none !important; }
.hfd-lb {
	position: fixed; inset: 0; z-index: 100000;
	background: rgba(0,0,0,.92);
	display: flex; align-items: center; justify-content: center;
}
.hfd-lb img {
	max-width: min(96vw, 1100px); max-height: 92vh;
	object-fit: contain; border-radius: 4px;
}
.hfd-lb__close, .hfd-lb__nav {
	position: absolute; background: rgba(255,255,255,.08); color: #fff;
	border: 1px solid rgba(255,255,255,.2); cursor: pointer;
}
.hfd-lb__close {
	top: 16px; right: 16px; width: 48px; height: 48px; border-radius: 12px; font-size: 28px;
}
.hfd-lb__nav {
	top: 50%; transform: translateY(-50%);
	width: 48px; height: 48px; border-radius: 50%; font-size: 28px;
}
.hfd-lb__nav--prev { left: 16px; }
.hfd-lb__nav--next { right: 16px; }
.hfd-lb__close:focus-visible, .hfd-lb__nav:focus-visible {
	outline: 2px solid var(--hfd-gold); outline-offset: 2px;
}

.hfd-profile__side {
	background: var(--hfd-panel); border: 1px solid var(--hfd-border);
	border-radius: 18px; padding: 22px; position: sticky; top: 80px;
}
@media (max-width: 900px) { .hfd-profile__side { position: static; } }
.hfd-profile__name {
	font-family: Georgia, "Iowan Old Style", Palatino, serif;
	font-size: clamp(1.6rem, 2.5vw, 2rem); margin: 6px 0 4px;
}
.hfd-profile__sub { color: var(--hfd-muted); margin: 0 0 12px; }
.hfd-online {
	display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700;
	color: #6fe0ce; margin-bottom: 12px;
}
.hfd-online__dot { width: 8px; height: 8px; border-radius: 50%; background: #34c293; }
.hfd-chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0; }
.hfd-chip {
	font-size: 11.5px; padding: 5px 10px; border-radius: 999px;
	background: rgba(255,255,255,.06); color: var(--hfd-ink);
}
.hfd-chip--soft { background: rgba(63,163,150,.15); color: #9ee8dc; }
a.hfd-chip--link { text-decoration: none; display: inline-flex; align-items: center; }
a.hfd-chip--link:hover { border-color: rgba(212,175,55,.4); }
.hfd-specs {
	display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 16px 0 0;
}
.hfd-specs div {
	background: var(--hfd-panel-2); border-radius: 12px; padding: 10px 12px; border: 1px solid var(--hfd-border);
}
.hfd-specs dt { font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: var(--hfd-faint); margin: 0 0 3px; }
.hfd-specs dd { margin: 0; font-weight: 600; }
.hfd-block { margin-top: 18px; }
.hfd-block h3 {
	font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: var(--hfd-faint);
	margin: 0 0 8px; font-weight: 700;
}
.hfd-about { color: var(--hfd-muted); font-size: 14px; line-height: 1.6; margin: 0; }
.hfd-duo__card {
	display: flex; gap: 12px; align-items: center;
	text-decoration: none; color: inherit;
	padding: 10px; border-radius: 12px;
	border: 1px solid var(--hfd-border); background: var(--hfd-panel-2);
}
.hfd-duo__card img {
	width: 56px; height: 72px; object-fit: cover; border-radius: 8px;
}
.hfd-duo__card strong { display: block; font-size: 14px; }
.hfd-duo__card small { color: var(--hfd-muted); font-size: 12px; }
.hfd-duo__card:hover { border-color: rgba(212,175,55,.4); }
.hfd-contact .mpc-socials,
.hfd-contact .mpc-contact { margin-top: 6px; }
.hfd-notice { max-width: 520px; margin: 40px auto; padding: 20px; background: var(--hfd-panel); border-radius: 14px; border: 1px solid var(--hfd-border); text-align: center; }
.hfd-notice a { color: var(--hfd-gold-soft); }

/* ——— Primary nav (professional directory mega) ——— */
body.hfd-free-directory .hfd-nav-wrap,
body.hfd-free-directory .hfd-nav {
	position: relative;
}
body.hfd-free-directory ul.hfd-nav {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}
body.hfd-free-directory ul.hfd-nav > li {
	position: relative;
	list-style: none;
	margin: 0;
}
body.hfd-free-directory ul.hfd-nav > li > a {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 13.5px;
	font-weight: 600;
	letter-spacing: .01em;
	color: #c8cbd4;
	text-decoration: none;
	padding: 8px 2px;
	transition: color .15s;
}
body.hfd-free-directory ul.hfd-nav > li > a:hover,
body.hfd-free-directory ul.hfd-nav > li.current-menu-item > a,
body.hfd-free-directory ul.hfd-nav > li.current-menu-ancestor > a {
	color: #fff;
}
body.hfd-free-directory ul.hfd-nav > li.hfd-has-mega > a::after {
	content: "";
	width: 0; height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	opacity: .55;
	margin-top: 1px;
}
body.hfd-free-directory ul.hfd-nav .sub-menu {
	display: none;
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	min-width: 220px;
	margin: 0;
	padding: 10px;
	list-style: none;
	background: linear-gradient(180deg, #171a21 0%, #12151b 100%);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 14px;
	box-shadow: 0 18px 48px rgba(0,0,0,.45);
	z-index: 80;
}
body.hfd-free-directory ul.hfd-nav li.hfd-has-mega .sub-menu {
	min-width: min(560px, 72vw);
	display: none;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2px 8px;
	padding: 14px;
}
body.hfd-free-directory ul.hfd-nav > li:hover > .sub-menu,
body.hfd-free-directory ul.hfd-nav > li:focus-within > .sub-menu,
body.hfd-free-directory ul.hfd-nav > li.is-open > .sub-menu {
	display: grid;
}
body.hfd-free-directory ul.hfd-nav > li:not(.hfd-has-mega):hover > .sub-menu,
body.hfd-free-directory ul.hfd-nav > li:not(.hfd-has-mega):focus-within > .sub-menu {
	display: block;
}
body.hfd-free-directory ul.hfd-nav .sub-menu a {
	display: block;
	padding: 8px 10px;
	border-radius: 8px;
	font-size: 13px;
	color: #b8bcc8;
	text-decoration: none;
}
body.hfd-free-directory ul.hfd-nav .sub-menu a:hover {
	color: #1a1206;
	background: linear-gradient(135deg, #ecd98c, #d4af37);
}
/* Mobile drawer: vertical stacks */
#aurora-mobile-menu {
	background: #0b0d11 !important;
	max-height: min(80dvh, calc(100dvh - 72px));
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
#aurora-mobile-menu ul.hfd-nav {
	flex-direction: column;
	align-items: stretch;
	gap: 0;
}
#aurora-mobile-menu ul.hfd-nav > li > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 4px;
	font-size: 15px;
	color: #e8e6df !important;
}
#aurora-mobile-menu ul.hfd-nav > li.hfd-has-mega > a::after,
#aurora-mobile-menu ul.hfd-nav > li.menu-item-has-children > a::after {
	content: "";
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid currentColor;
	opacity: .7;
	margin: 0;
	transition: transform .15s ease;
}
#aurora-mobile-menu ul.hfd-nav > li.is-open > a::after {
	transform: rotate(180deg);
}
#aurora-mobile-menu ul.hfd-nav .sub-menu {
	position: static !important;
	display: none !important;
	min-width: 0;
	grid-template-columns: 1fr !important;
	box-shadow: none;
	border: 0;
	background: rgba(255,255,255,.03);
	border-radius: 10px;
	padding: 4px 8px 8px 12px;
	margin: 0 0 8px;
}
#aurora-mobile-menu ul.hfd-nav > li.is-open > .sub-menu {
	display: grid !important;
}
#aurora-mobile-menu ul.hfd-nav .sub-menu a {
	padding: 10px 4px;
	border-radius: 0;
	border-bottom: 1px solid rgba(255,255,255,.05);
	color: #c8cbd4 !important;
}
#aurora-mobile-menu ul.hfd-nav .sub-menu a:hover {
	background: transparent;
	color: #ecd98c !important;
}

/* About / contact / blog content shells */
body.hfd-free-directory .hfd-contact__form {
	display: grid; gap: 12px; max-width: 480px; margin-top: 12px;
}
body.hfd-free-directory .hfd-contact__field {
	display: grid; gap: 6px; font-size: 13px; color: var(--hfd-muted);
}
body.hfd-free-directory .hfd-contact__field input,
body.hfd-free-directory .hfd-contact__field textarea {
	width: 100%; box-sizing: border-box;
	background: var(--hfd-panel-2); border: 1px solid var(--hfd-border);
	color: var(--hfd-ink); border-radius: 10px; padding: 11px 12px; font: inherit;
}
body.hfd-free-directory .hfd-contact__hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
body.hfd-free-directory .hfd-contact__ok { color: #34c293; }
body.hfd-free-directory .hfd-contact__err { color: #e07a7a; }
body.hfd-free-directory.page .entry-content,
body.hfd-free-directory.single-post .entry-content,
body.hfd-free-directory.blog .site-main,
body.hfd-free-directory.archive .site-main {
	max-width: 760px;
	margin: 0 auto;
	padding: 32px 18px 72px;
	line-height: 1.65;
	color: var(--hfd-muted);
}
body.hfd-free-directory.page .entry-content h1,
body.hfd-free-directory.page .entry-content h2,
body.hfd-free-directory.single-post .entry-title {
	color: var(--hfd-ink);
	font-family: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
}

@media (prefers-reduced-motion: reduce) {
	.hfd-card, .hfd-viewer__thumb, .hfd-rail__track { transition: none; scroll-behavior: auto; }
}
