:root {
	--dahb-transition: 220ms ease;
}

.dahb-header {
	position: relative;
	z-index: 50;
	width: 100%;
	transition: background-color var(--dahb-transition), box-shadow var(--dahb-transition), transform var(--dahb-transition);
}

.dahb-header * {
	box-sizing: border-box;
}

.dahb-sticky {
	position: sticky;
	top: 0;
}

.dahb-inner {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.dahb-width-full .dahb-inner {
	max-width: none !important;
}

.dahb-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none !important;
	min-width: 0;
}

.dahb-logo img {
	display: block;
	height: auto;
	max-width: 100%;
}

.dahb-logo-text {
	display: inline-block;
	font-weight: 800;
	font-size: 24px;
	line-height: 1.1;
	white-space: nowrap;
}

.dahb-slot {
	display: flex;
	align-items: center;
	min-width: 0;
}

.dahb-brand-slot {
	flex: 0 0 auto;
}

.dahb-menu-slot {
	flex: 1 1 auto;
	justify-content: flex-start;
}

.dahb-action-slot,
.dahb-menu-right {
	flex: 0 0 auto;
	justify-content: flex-end;
	gap: 14px;
}

/* Version 1.1 default requested layout: menu left, logo right */
.dahb-logo-position-right .dahb-menu-slot {
	order: 1;
	justify-content: flex-start;
}

.dahb-logo-position-right .dahb-action-slot {
	order: 2;
}

.dahb-logo-position-right .dahb-brand-slot {
	order: 3;
	justify-content: flex-end;
}

.dahb-logo-position-left .dahb-brand-slot {
	order: 1;
}

.dahb-logo-position-left .dahb-menu-slot {
	order: 2;
}

.dahb-logo-position-left .dahb-action-slot {
	order: 3;
}

.dahb-logo-position-center .dahb-menu-slot {
	order: 1;
}

.dahb-logo-position-center .dahb-brand-slot {
	order: 2;
	justify-content: center;
}

.dahb-logo-position-center .dahb-action-slot {
	order: 3;
}


.dahb-menu,
.dahb-mobile-menu {
	display: block;
}

.dahb-menu ul,
.dahb-mobile-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.dahb-menu > ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 26px;
}

.dahb-menu li {
	position: relative;
	margin: 0;
}

.dahb-menu a,
.dahb-mobile-menu a {
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none !important;
	line-height: 1.25;
	transition: color var(--dahb-transition), background-color var(--dahb-transition), transform var(--dahb-transition), opacity var(--dahb-transition);
}

.dahb-hover-underline .dahb-menu > ul > li > a {
	position: relative;
}

.dahb-hover-underline .dahb-menu > ul > li > a::after {
	content: "";
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 4px;
	height: 2px;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform var(--dahb-transition);
	border-radius: 999px;
}

.dahb-hover-underline .dahb-menu > ul > li > a:hover::after,
.dahb-hover-underline .dahb-menu > ul > li.current-menu-item > a::after,
.dahb-hover-underline .dahb-menu > ul > li.current_page_item > a::after {
	transform: scaleX(1);
}

.dahb-hover-fadeup .dahb-menu > ul > li > a:hover {
	transform: translateY(-2px);
}

.dahb-menu .menu-item-has-children > a::before {
	content: "";
	order: 10;
	width: 7px;
	height: 7px;
	border-right: 1.7px solid currentColor;
	border-bottom: 1.7px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	opacity: .72;
}

.dahb-no-dropdown-indicator .dahb-menu .menu-item-has-children > a::before {
	display: none;
}

.dahb-menu .sub-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	display: block;
	min-width: 220px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity var(--dahb-transition), visibility var(--dahb-transition), transform var(--dahb-transition);
	border-radius: 16px;
	padding: 10px;
	z-index: 99;
}

[dir="rtl"] .dahb-menu .sub-menu {
	left: auto;
	right: 0;
}

.dahb-menu li:hover > .sub-menu,
.dahb-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dahb-menu .sub-menu .sub-menu {
	top: 0;
	left: calc(100% + 10px);
}

[dir="rtl"] .dahb-menu .sub-menu .sub-menu {
	left: auto;
	right: calc(100% + 10px);
}

.dahb-actions {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.dahb-cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none !important;
	font-weight: 700;
	line-height: 1.1;
	transition: transform var(--dahb-transition), opacity var(--dahb-transition), box-shadow var(--dahb-transition);
	white-space: nowrap;
}

.dahb-cta-button:hover {
	transform: translateY(-1px);
	opacity: .92;
}

.dahb-preset-centered .dahb-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
}

.dahb-preset-centered .dahb-brand-slot {
	grid-column: 2;
	justify-self: center;
}

.dahb-preset-centered .dahb-menu-slot {
	grid-column: 1;
	grid-row: 1;
	justify-content: flex-start;
}

.dahb-preset-centered .dahb-action-slot {
	grid-column: 3;
	justify-content: flex-end;
}

.dahb-preset-split .dahb-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
}

.dahb-preset-split .dahb-menu-left {
	justify-content: flex-end;
}

.dahb-preset-split .dahb-brand-slot {
	justify-content: center;
}

.dahb-preset-stacked .dahb-inner {
	flex-direction: column;
	gap: 10px;
	justify-content: center;
}

.dahb-top-row,
.dahb-bottom-row {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	gap: 24px;
}

.dahb-top-row {
	justify-content: space-between;
}

.dahb-preset-vertical .dahb-inner {
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	min-height: 100vh;
}

.dahb-preset-vertical .dahb-menu > ul {
	flex-direction: column;
	align-items: stretch;
}

.dahb-preset-vertical .dahb-action-slot,
.dahb-preset-vertical .dahb-menu-slot {
	justify-content: flex-start;
	width: 100%;
}

.dahb-preset-offcanvas .dahb-menu-slot,
.dahb-preset-offcanvas .dahb-actions {
	display: none;
}

.dahb-mobile-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 9px;
	border: 0;
	cursor: pointer;
	padding: 11px 13px;
	border-radius: 14px;
	line-height: 1;
}

.dahb-toggle-lines {
	display: inline-flex;
	flex-direction: column;
	gap: 4px;
	width: 22px;
}

.dahb-toggle-lines span {
	height: 2px;
	width: 100%;
	border-radius: 999px;
	display: block;
	transition: transform var(--dahb-transition), opacity var(--dahb-transition);
}

.dahb-mobile-toggle[aria-expanded="true"] .dahb-toggle-lines span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.dahb-mobile-toggle[aria-expanded="true"] .dahb-toggle-lines span:nth-child(2) {
	opacity: 0;
}

.dahb-mobile-toggle[aria-expanded="true"] .dahb-toggle-lines span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.dahb-toggle-label {
	font-size: 13px;
	font-weight: 700;
}

.dahb-mobile-panel {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	width: 100%;
	z-index: 90;
	border-radius: 0 0 18px 18px;
	box-shadow: 0 22px 60px rgba(17, 24, 39, .14);
}

.dahb-mobile-panel[hidden] {
	display: none !important;
}

.dahb-mobile-panel-inner {
	padding: 20px;
}

.dahb-mobile-close {
	display: none;
	position: absolute;
	top: 16px;
	right: 18px;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 999px;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	background: rgba(17, 24, 39, .08);
	color: inherit;
}

[dir="rtl"] .dahb-mobile-close {
	right: auto;
	left: 18px;
}

.dahb-mobile-menu > ul {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.dahb-mobile-menu a {
	padding: 13px 8px;
	border-radius: 12px;
	font-weight: 700;
}

.dahb-mobile-menu .sub-menu {
	padding-left: 18px;
	margin-top: 4px;
	display: block;
}

[dir="rtl"] .dahb-mobile-menu .sub-menu {
	padding-left: 0;
	padding-right: 18px;
}

.dahb-mobile-panel .dahb-actions {
	margin-top: 16px;
	display: flex;
}

.dahb-mobile-panel-offcanvas .dahb-mobile-panel,
.dahb-mobile-panel-fullscreen .dahb-mobile-panel {
	position: fixed;
	top: 0;
	bottom: 0;
	width: min(420px, 92vw);
	right: auto;
	left: 0;
	transform: translateX(-104%);
	transition: transform var(--dahb-transition);
	border-radius: 0 24px 24px 0;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .20);
}

[dir="rtl"].dahb-mobile-panel-offcanvas .dahb-mobile-panel,
[dir="rtl"].dahb-mobile-panel-fullscreen .dahb-mobile-panel {
	left: auto;
	right: 0;
	transform: translateX(104%);
	border-radius: 24px 0 0 24px;
}

.dahb-mobile-panel-offcanvas .dahb-mobile-panel:not([hidden]),
.dahb-mobile-panel-fullscreen .dahb-mobile-panel:not([hidden]) {
	transform: translateX(0);
}

.dahb-mobile-panel-offcanvas .dahb-mobile-panel-inner,
.dahb-mobile-panel-fullscreen .dahb-mobile-panel-inner {
	padding-top: 72px;
	min-height: 100%;
	overflow-y: auto;
}

.dahb-mobile-panel-offcanvas .dahb-mobile-close,
.dahb-mobile-panel-fullscreen .dahb-mobile-close {
	display: block;
}

.dahb-mobile-panel-fullscreen .dahb-mobile-panel {
	width: 100vw;
	right: 0;
	border-radius: 0;
}

.dahb-menu-empty {
	opacity: .75;
	font-size: 14px;
}

/* Tablet mobile mode */
@media (max-width: 1024px) {
	.dahb-mobile-tablet .dahb-menu-slot,
	.dahb-mobile-tablet .dahb-menu-left,
	.dahb-mobile-tablet .dahb-menu-right .dahb-menu,
	.dahb-mobile-tablet .dahb-bottom-row {
		display: none;
	}

	.dahb-mobile-tablet .dahb-mobile-toggle {
		display: inline-flex;
	}

	.dahb-mobile-tablet.dahb-preset-centered .dahb-inner,
	.dahb-mobile-tablet.dahb-preset-split .dahb-inner {
		display: flex;
	}

	.dahb-mobile-tablet .dahb-action-slot .dahb-actions {
		display: none;
	}

	.dahb-mobile-tablet .dahb-logo-text {
		white-space: normal;
	}
}

/* Mobile-only mode */
@media (max-width: 767px) {
	.dahb-mobile-mobile .dahb-menu-slot,
	.dahb-mobile-mobile .dahb-menu-left,
	.dahb-mobile-mobile .dahb-menu-right .dahb-menu,
	.dahb-mobile-mobile .dahb-bottom-row {
		display: none;
	}

	.dahb-mobile-mobile .dahb-mobile-toggle {
		display: inline-flex;
	}

	.dahb-mobile-mobile.dahb-preset-centered .dahb-inner,
	.dahb-mobile-mobile.dahb-preset-split .dahb-inner {
		display: flex;
	}

	.dahb-mobile-mobile .dahb-action-slot .dahb-actions {
		display: none;
	}
}

@media (max-width: 640px) {
	.dahb-inner {
		gap: 12px;
	}

	.dahb-actions {
		width: 100%;
	}

	.dahb-cta-button {
		flex: 1 1 auto;
	}
}


@media (max-width: 1024px) {
	.dahb-logo-position-right.dahb-mobile-tablet .dahb-brand-slot {
		order: 1;
		justify-content: flex-start;
	}

	.dahb-logo-position-right.dahb-mobile-tablet .dahb-action-slot {
		order: 2;
		margin-left: auto;
	}
}

@media (max-width: 767px) {
	.dahb-logo-position-right.dahb-mobile-mobile .dahb-brand-slot {
		order: 1;
		justify-content: flex-start;
	}

	.dahb-logo-position-right.dahb-mobile-mobile .dahb-action-slot {
		order: 2;
		margin-left: auto;
	}
}


/* Exact requested preset: menu left, logo right */
.dahb-preset-menu_left_logo_right .dahb-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.dahb-preset-menu_left_logo_right .dahb-menu-slot {
	flex: 1 1 auto;
	justify-content: flex-start;
	order: 1;
	min-width: 0;
}

.dahb-preset-menu_left_logo_right .dahb-menu > ul {
	justify-content: flex-start;
	width: auto;
}

.dahb-preset-menu_left_logo_right .dahb-action-slot {
	order: 2;
	flex: 0 0 auto;
}

.dahb-preset-menu_left_logo_right .dahb-action-slot:empty {
	display: none;
}

.dahb-preset-menu_left_logo_right .dahb-brand-slot {
	order: 3;
	flex: 0 0 auto;
	margin-left: auto;
	justify-content: flex-end;
}

[dir="rtl"].dahb-preset-menu_left_logo_right .dahb-brand-slot {
	margin-left: 0;
	margin-right: auto;
}

@media (max-width: 1024px) {
	.dahb-preset-menu_left_logo_right.dahb-mobile-tablet .dahb-brand-slot {
		order: 1;
		margin-left: 0;
		margin-right: 0;
		justify-content: flex-start;
	}
	.dahb-preset-menu_left_logo_right.dahb-mobile-tablet .dahb-action-slot {
		order: 2;
		margin-left: auto;
	}
}

@media (max-width: 767px) {
	.dahb-preset-menu_left_logo_right.dahb-mobile-mobile .dahb-brand-slot {
		order: 1;
		margin-left: 0;
		margin-right: 0;
		justify-content: flex-start;
	}
	.dahb-preset-menu_left_logo_right.dahb-mobile-mobile .dahb-action-slot {
		order: 2;
		margin-left: auto;
	}
}


/* v1.3 RTL layout fix:
   Keep header structure physical LTR so menu stays on the LEFT and logo stays on the RIGHT.
   Menu links can still render RTL Thaana text. */
.dahb-force-physical-layout,
.dahb-force-physical-layout .dahb-inner {
	direction: ltr !important;
}

.dahb-force-physical-layout .dahb-menu-slot {
	order: 1 !important;
	flex: 1 1 auto !important;
	justify-content: flex-start !important;
	margin-right: auto !important;
	margin-left: 0 !important;
	text-align: left !important;
}

.dahb-force-physical-layout .dahb-menu,
.dahb-force-physical-layout .dahb-menu > ul {
	direction: rtl !important;
	justify-content: flex-start !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	width: auto !important;
}

.dahb-force-physical-layout .dahb-menu > ul {
	display: flex !important;
	flex-direction: row !important;
}

.dahb-force-physical-layout .dahb-action-slot {
	order: 2 !important;
	flex: 0 0 auto !important;
}

.dahb-force-physical-layout .dahb-brand-slot {
	order: 3 !important;
	flex: 0 0 auto !important;
	margin-left: auto !important;
	margin-right: 0 !important;
	justify-content: flex-end !important;
	text-align: right !important;
}

.dahb-force-physical-layout .dahb-logo {
	direction: rtl !important;
	justify-content: flex-end !important;
}

/* Do not allow old RTL rules to push the logo back to left */
[dir="rtl"].dahb-force-physical-layout .dahb-brand-slot,
[dir="rtl"].dahb-preset-menu_left_logo_right .dahb-brand-slot {
	margin-left: auto !important;
	margin-right: 0 !important;
}

/* Editor/frontend: make the exact preset stretch properly inside Elementor containers */
.elementor-widget-dahb_advanced_header_builder,
.elementor-widget-dahb_advanced_header_builder .elementor-widget-container,
.elementor-widget-dahb_advanced_header_builder .dahb-header {
	width: 100%;
}

@media (max-width: 1024px) {
	.dahb-force-physical-layout.dahb-mobile-tablet .dahb-brand-slot {
		order: 1 !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	.dahb-force-physical-layout.dahb-mobile-tablet .dahb-action-slot {
		order: 2 !important;
		margin-left: auto !important;
	}
}

@media (max-width: 767px) {
	.dahb-force-physical-layout.dahb-mobile-mobile .dahb-brand-slot {
		order: 1 !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	.dahb-force-physical-layout.dahb-mobile-mobile .dahb-action-slot {
		order: 2 !important;
		margin-left: auto !important;
	}
}

/* v1.4 TRUE DHIVEHI RTL HEADER FIX
   Requirement:
   - Whole plugin remains RTL.
   - Logo is fixed on the visual RIGHT.
   - Menu group floats to the visual LEFT.
   - This works because RTL flex row places first DOM item on the right.
*/
.dahb-header.dahb-exact-rtl-layout {
	direction: rtl !important;
	width: 100% !important;
}

.dahb-header.dahb-exact-rtl-layout .dahb-inner {
	direction: rtl !important;
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	justify-content: flex-start !important;
	width: 100% !important;
	max-width: none;
	gap: 24px !important;
}

.dahb-header.dahb-exact-rtl-layout .dahb-fixed-logo-right {
	order: 0 !important;
	flex: 0 0 auto !important;
	margin: 0 !important;
	justify-content: flex-start !important;
	text-align: right !important;
	direction: rtl !important;
}

.dahb-header.dahb-exact-rtl-layout .dahb-fixed-mobile-toggle {
	order: 1 !important;
	flex: 0 0 auto !important;
	margin: 0 !important;
}

.dahb-header.dahb-exact-rtl-layout .dahb-fixed-menu-left {
	order: 2 !important;
	flex: 0 0 auto !important;
	margin-right: auto !important; /* In RTL this pushes the menu to the physical LEFT */
	margin-left: 0 !important;
	justify-content: flex-end !important;
	text-align: right !important;
	direction: rtl !important;
}

.dahb-header.dahb-exact-rtl-layout .dahb-menu {
	direction: rtl !important;
	text-align: right !important;
	width: auto !important;
}

.dahb-header.dahb-exact-rtl-layout .dahb-menu > ul {
	direction: rtl !important;
	display: flex !important;
	flex-direction: row !important;
	justify-content: flex-end !important;
	align-items: center !important;
	width: auto !important;
	margin: 0 !important;
	padding: 0 !important;
}

.dahb-header.dahb-exact-rtl-layout .dahb-logo {
	direction: rtl !important;
	text-align: right !important;
	justify-content: flex-start !important;
}

.dahb-header.dahb-exact-rtl-layout .dahb-action-slot .dahb-actions {
	display: none !important;
}

/* Elementor editor must allow the widget to stretch */
.elementor-widget-dahb_advanced_header_builder,
.elementor-widget-dahb_advanced_header_builder > .elementor-widget-container,
.elementor-widget-dahb_advanced_header_builder .dahb-header {
	width: 100% !important;
}

/* Mobile: logo stays right, toggle left side */
@media (max-width: 1024px) {
	.dahb-header.dahb-exact-rtl-layout.dahb-mobile-tablet .dahb-fixed-menu-left {
		display: none !important;
	}
	.dahb-header.dahb-exact-rtl-layout.dahb-mobile-tablet .dahb-fixed-mobile-toggle {
		margin-right: auto !important;
		display: inline-flex !important;
	}
}

@media (max-width: 767px) {
	.dahb-header.dahb-exact-rtl-layout.dahb-mobile-mobile .dahb-fixed-menu-left {
		display: none !important;
	}
	.dahb-header.dahb-exact-rtl-layout.dahb-mobile-mobile .dahb-fixed-mobile-toggle {
		margin-right: auto !important;
		display: inline-flex !important;
	}
}


/* v1.5 Top Header Bar */
.dahb-topbar {
	width: 100%;
	direction: ltr;
}

.dahb-topbar-inner {
	width: 100%;
	max-width: inherit;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	border-bottom: 1px solid #e5e7eb;
	min-height: 42px;
}

.dahb-topbar-left,
.dahb-topbar-right {
	display: flex;
	align-items: center;
	gap: 20px;
	min-width: 0;
}

.dahb-topbar-left {
	justify-content: flex-start;
}

.dahb-topbar-right {
	justify-content: flex-end;
	margin-left: auto;
}

.dahb-topbar-social {
	white-space: nowrap;
	letter-spacing: .02em;
}

.dahb-topbar a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	text-decoration: none !important;
	white-space: nowrap;
}

.dahb-topbar-menu ul {
	display: flex;
	align-items: center;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.dahb-topbar-menu a {
	font-size: inherit;
	line-height: 1.2;
}

.dahb-topbar-layout-centered .dahb-topbar-inner {
	justify-content: center;
}

.dahb-topbar-layout-centered .dahb-topbar-right {
	margin-left: 0;
}

.dahb-topbar-layout-contact_left_social_right .dahb-topbar-left {
	order: 2;
	margin-left: auto;
}

.dahb-topbar-layout-contact_left_social_right .dahb-topbar-right {
	order: 1;
	margin-left: 0;
}

/* v1.5 exact sample layout reinforcement */
.dahb-header.dahb-exact-rtl-layout .dahb-inner {
	display: flex !important;
	width: 100% !important;
}

.dahb-header.dahb-exact-rtl-layout .dahb-fixed-logo-right {
	order: 1 !important;
}

.dahb-header.dahb-exact-rtl-layout .dahb-fixed-mobile-toggle {
	order: 2 !important;
}

.dahb-header.dahb-exact-rtl-layout .dahb-fixed-menu-left {
	order: 3 !important;
	margin-right: auto !important;
}

/* Mobile support for top bar */
@media (max-width: 767px) {
	.dahb-topbar-mobile-hide {
		display: none !important;
	}

	.dahb-topbar-mobile-stack .dahb-topbar-inner {
		flex-direction: column;
		align-items: stretch;
		justify-content: center;
		gap: 8px;
	}

	.dahb-topbar-mobile-stack .dahb-topbar-left,
	.dahb-topbar-mobile-stack .dahb-topbar-right {
		width: 100%;
		justify-content: center;
		margin-left: 0;
		flex-wrap: wrap;
		text-align: center;
	}

	.dahb-topbar-mobile-show .dahb-topbar-inner {
		flex-wrap: wrap;
	}

	.dahb-topbar-menu ul {
		flex-wrap: wrap;
		justify-content: center;
	}

	.dahb-header.dahb-exact-rtl-layout .dahb-inner {
		min-height: 68px;
	}

	.dahb-header.dahb-exact-rtl-layout .dahb-fixed-logo-right {
		order: 1 !important;
	}

	.dahb-header.dahb-exact-rtl-layout .dahb-fixed-mobile-toggle {
		order: 2 !important;
		margin-right: auto !important;
	}

	.dahb-header.dahb-exact-rtl-layout .dahb-mobile-panel {
		direction: rtl !important;
		text-align: right;
	}
}


/* v1.6 Advanced Top Header + Social Icon Library */
.dahb-topbar {
	width: 100%;
	direction: ltr;
}

.dahb-topbar-full .dahb-topbar-inner {
	max-width: none !important;
}

.dahb-topbar-contained .dahb-topbar-inner {
	max-width: 1200px;
}

.dahb-topbar-inner {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	border-bottom: 1px solid #e5e7eb;
	min-height: 42px;
}

.dahb-topbar-zone {
	display: flex;
	align-items: center;
	gap: 18px;
	min-width: 0;
	flex-wrap: wrap;
}

.dahb-topbar-left {
	justify-content: flex-start;
	text-align: left;
}

.dahb-topbar-center {
	justify-content: center;
	text-align: center;
}

.dahb-topbar-right {
	justify-content: flex-end;
	text-align: right;
}

.dahb-topbar-item {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	white-space: nowrap;
}

.dahb-topbar a {
	text-decoration: none !important;
}

.dahb-topbar-social-icons {
	display: inline-flex;
	align-items: center;
	gap: 18px;
}

.dahb-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--dahb-social-color, currentColor);
	line-height: 1;
	transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.dahb-social-icon:hover {
	color: var(--dahb-social-hover-color, currentColor);
	transform: translateY(-1px);
}

.dahb-social-icon svg {
	display: block;
	fill: currentColor;
}

.dahb-topbar-menu ul {
	display: flex;
	align-items: center;
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}

.dahb-topbar-menu li {
	margin: 0;
}

.dahb-topbar-menu a {
	display: inline-flex;
	align-items: center;
	line-height: 1.2;
	text-decoration: none !important;
}

@media (max-width: 767px) {
	.dahb-topbar-mobile-hide {
		display: none !important;
	}

	.dahb-topbar-mobile-stack .dahb-topbar-inner {
		display: flex !important;
		flex-direction: column;
		align-items: stretch;
		justify-content: center;
		row-gap: 8px;
	}

	.dahb-topbar-mobile-stack .dahb-topbar-zone {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.dahb-topbar-mobile-show .dahb-topbar-inner {
		grid-template-columns: 1fr;
		row-gap: 8px;
	}

	.dahb-topbar-mobile-show .dahb-topbar-zone {
		justify-content: center;
		text-align: center;
	}

	.dahb-topbar-item {
		white-space: normal;
		justify-content: center;
	}
}
