:root{
	--ebhp-bg:#ffffff;
	--ebhp-soft:#f7f7f7;
	--ebhp-border:#e9e9e9;
	--ebhp-text:#1f1f1f;
	--ebhp-muted:#666;
	--ebhp-accent:#e14a43;
	--ebhp-accent-dark:#c53b35;
	--ebhp-radius:14px;
	--ebhp-radius-lg:18px;
	--ebhp-shadow:0 12px 35px rgba(0,0,0,.06);
	--ebhp-shadow-soft:0 8px 24px rgba(0,0,0,.035);
}

.ebhp-site-header{
	width:100%;
	background:var(--ebhp-bg);
	border-bottom:1px solid var(--ebhp-border);
	font-family:"Poppins",sans-serif;
	position:relative;
	z-index:999;
	opacity:0;
	transform:translateY(-8px);
	transition:transform .28s ease, box-shadow .28s ease, background .28s ease, opacity .22s ease;
}
.ebhp-header-shell{
	position:relative;
	z-index:9999;
}
.ebhp-site-header.ebhp-ready{
	opacity:1;
	transform:translateY(0);
}
.ebhp-site-header.ebhp-is-sticky{
	position:fixed;
	top:0;
	left:0;
	right:0;
	backdrop-filter:saturate(160%) blur(10px);
	background:rgba(255,255,255,.96);
}
.ebhp-site-header.ebhp-scrolled{
	box-shadow:var(--ebhp-shadow-soft);
}
.ebhp-container{
	width:min(1240px, 94%);
	margin:0 auto;
}
.ebhp-topbar{
	background:var(--ebhp-soft);
	border-bottom:1px solid var(--ebhp-border);
}
.ebhp-topbar-inner{
	min-height:38px;
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:20px;
	padding:6px 0;
}
.ebhp-topbar-left,
.ebhp-topbar-right{
	display:flex;
	align-items:center;
	gap:18px;
	flex-wrap:wrap;
}
.ebhp-top-link,
.ebhp-topbar-right a{
	display:inline-flex;
	align-items:center;
	gap:10px;
	text-decoration:none;
	color:var(--ebhp-muted);
	font-size:13px;
	font-weight:500;
	transition:.25s ease;
}
.ebhp-top-link:hover,
.ebhp-topbar-right a:hover{
	color:var(--ebhp-accent);
}

.ebhp-topbar-right a{
	padding:4px;
}
.ebhp-inline-icon,
.ebhp-topbar-right svg{
	width:18px;
	height:18px;
	display:inline-flex;
}
.ebhp-mainbar{
	background:#fff;
}
.ebhp-mainbar-inner{
	display:grid;
	grid-template-columns: 220px 1fr auto;
	align-items:center;
	gap:28px;
	min-height:96px;
}
.ebhp-logo{
	display:block;
	max-width:100%;
	height:auto;
	max-height:72px;
}
.ebhp-nav{
	display:flex;
	justify-content:center;
}
.ebhp-menu{
	display:flex;
	align-items:center;
	justify-content:center;
	list-style:none;
	margin:0;
	padding:0;
	gap:28px;
}
.ebhp-menu > li{
	position:relative;
}
.ebhp-menu a{
	position:relative;
	text-decoration:none;
	color:var(--ebhp-text);
	font-size:15px;
	font-weight:600;
	transition:color .25s ease;
}
.ebhp-menu a::after{
	content:"";
	position:absolute;
	left:0;
	bottom:-8px;
	width:100%;
	height:2px;
	background:var(--ebhp-accent);
	border-radius:999px;
	transform:scaleX(0);
	transform-origin:left center;
	transition:transform .25s ease;
}
.ebhp-menu a:hover,
.ebhp-menu .current-menu-item > a,
.ebhp-menu .current-menu-ancestor > a{
	color:var(--ebhp-accent);
}
.ebhp-menu a:hover::after,
.ebhp-menu .current-menu-item > a::after,
.ebhp-menu .current-menu-ancestor > a::after{
	transform:scaleX(1);
}
.ebhp-menu .menu-item-has-children > a{
	display:inline-flex;
	align-items:center;
	gap:8px;
}
.ebhp-menu .menu-item-has-children > a::after{
	content:"";
	width:8px;
	height:8px;
	border-right:1.8px solid currentColor;
	border-bottom:1.8px solid currentColor;
	transform:rotate(45deg) translateY(-2px);
	display:inline-block;
}
.ebhp-menu .sub-menu{
	position:absolute;
	top:calc(100% + 16px);
	left:0;
	min-width:230px;
	background:#fff;
	border:1px solid var(--ebhp-border);
	border-radius:14px;
	box-shadow:var(--ebhp-shadow);
	padding:10px 0;
	list-style:none;
	margin:0;
	opacity:0;
	visibility:hidden;
	transform:translateY(8px);
	transition:.25s ease;
	z-index:30;
}
.ebhp-menu li:hover > .sub-menu{
	opacity:1;
	visibility:visible;
	transform:translateY(0);
}
.ebhp-menu .sub-menu a{
	display:block;
	padding:11px 16px;
	font-size:14px;
	font-weight:500;
}
.ebhp-actions{
	display:flex;
	align-items:center;
	gap:12px;
}
.ebhp-action-wrap{
	position:relative;
}
.ebhp-action-link{
	position:relative;
	display:inline-flex;
	align-items:center;
	gap:8px;
	padding:10px 14px;
	border:1px solid var(--ebhp-border);
	border-radius:12px;
	background:#fff;
	text-decoration:none;
	color:var(--ebhp-text);
	font-size:14px;
	font-weight:600;
	transition:.25s ease;
}
.ebhp-action-link:hover{
	color:var(--ebhp-accent);
	border-color:#f0c9c7;
	background:#fff8f7;
}
.ebhp-action-icon{
	display:inline-flex;
	width:18px;
	height:18px;
}
.ebhp-action-icon svg{
	width:18px;
	height:18px;
}
.ebhp-count{
	position:absolute;
	top:-7px;
	right:-7px;
	min-width:20px;
	height:20px;
	padding:0 5px;
	border-radius:999px;
	background:var(--ebhp-accent);
	color:#fff;
	font-size:11px;
	font-weight:700;
	display:flex;
	align-items:center;
	justify-content:center;
	line-height:1;
	box-shadow:0 4px 12px rgba(225,74,67,.25);
}
.ebhp-preview-panel{
	position:absolute;
	top:100%;
	right:0;
	width:320px;
	background:#fff;
	border:1px solid var(--ebhp-border);
	border-radius:16px;
	box-shadow:var(--ebhp-shadow);
	padding:14px;
	opacity:0;
	visibility:hidden;
	transform:translateY(0);
	transition:.24s ease;
	z-index:50;
}
.ebhp-preview-panel::before{
	content:"";
	position:absolute;
	left:0;
	right:0;
	top:-18px;
	height:18px;
	pointer-events:auto;
	background:transparent;
}
.ebhp-action-wrap:hover .ebhp-preview-panel,
.ebhp-action-wrap:focus-within .ebhp-preview-panel{
	opacity:1;
	visibility:visible;
	transform:translateY(0);
}
.ebhp-preview-head{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:10px;
	padding-bottom:10px;
	margin-bottom:10px;
	border-bottom:1px solid var(--ebhp-border);
}
.ebhp-preview-head strong{
	font-size:15px;
	color:var(--ebhp-text);
}
.ebhp-preview-head a{
	font-size:13px;
	text-decoration:none;
	color:var(--ebhp-accent);
	font-weight:600;
}
.ebhp-preview-list{
	list-style:none;
	padding:0;
	margin:0;
	display:flex;
	flex-direction:column;
	gap:10px;
}
.ebhp-preview-item{
	padding:10px 0;
	border-bottom:1px solid #f1f1f1;
}
.ebhp-preview-item:last-child{
	border-bottom:none;
	padding-bottom:0;
}
.ebhp-preview-title{
	font-size:14px;
	font-weight:600;
	color:var(--ebhp-text);
	line-height:1.4;
}
.ebhp-preview-meta,
.ebhp-preview-foot,
.ebhp-empty{
	font-size:13px;
	color:var(--ebhp-muted);
	margin-top:4px;
	line-height:1.45;
}
.ebhp-empty{
	padding:6px 0;
}
.ebhp-mobile-toggle{
	display:none;
	width:44px;
	height:44px;
	border:1px solid var(--ebhp-border);
	border-radius:12px;
	background:#fff;
	padding:0;
	cursor:pointer;
	align-items:center;
	justify-content:center;
	flex-direction:column;
	gap:5px;
}
.ebhp-site-header .ebhp-mobile-toggle{
	display:none !important;
}
.ebhp-mobile-toggle span{
	display:block;
	width:18px;
	height:2px;
	background:var(--ebhp-text);
	border-radius:999px;
	transition:.25s ease;
}
@media (max-width: 1080px){
	.ebhp-mainbar-inner{
		grid-template-columns: 180px 1fr auto;
		gap:18px;
	}
	.ebhp-menu{gap:20px;}
}
@media (max-width: 980px){
	.ebhp-topbar-inner{
		flex-direction:column;
		justify-content:center;
		gap:8px;
		padding:8px 0;
	}
	.ebhp-mainbar-inner{
		grid-template-columns: 1fr auto;
		grid-template-areas:
			"logo actions"
			"nav nav";
		align-items:center;
		padding:14px 0;
		min-height:auto;
	}
	.ebhp-logo-wrap{grid-area:logo;}
	.ebhp-actions{grid-area:actions;}
	.ebhp-nav{
		grid-area:nav;
		display:none;
		width:100%;
		margin-top:14px;
		border-top:1px solid var(--ebhp-border);
		padding-top:14px;
	}
	.ebhp-site-header.ebhp-mobile-open .ebhp-nav{display:block;}
	.ebhp-menu{
		flex-direction:column;
		align-items:flex-start;
		gap:0;
		width:100%;
	}
	.ebhp-menu > li{
		width:100%;
		border-bottom:1px solid #f0f0f0;
		padding:0;
	}
	.ebhp-menu > li > a{
		display:flex;
		align-items:center;
		justify-content:space-between;
		width:100%;
		padding:14px 0;
	}
	.ebhp-menu > li > a::after{
		bottom:6px;
	}
	.ebhp-menu .sub-menu a::after{
		display:none;
	}
	.ebhp-menu .sub-menu{
		position:static;
		opacity:1;
		visibility:visible;
		transform:none;
		box-shadow:none;
		border:none;
		border-top:1px dashed var(--ebhp-border);
		border-radius:0;
		padding:0 0 8px 12px;
		display:none;
		min-width:100%;
	}
	.ebhp-menu .menu-item-has-children.ebhp-sub-open > .sub-menu{display:block;}
	.ebhp-mobile-toggle,
	.ebhp-site-header .ebhp-mobile-toggle{display:inline-flex !important;}
	.ebhp-action-text{display:none;}
	.ebhp-preview-panel{display:none;}
}
@media (max-width: 640px){
	.ebhp-container{width:min(94%, 94%);}
	.ebhp-topbar-left,
	.ebhp-topbar-right{
		justify-content:center;
		gap:12px;
	}
	.ebhp-top-link{font-size:12px;}
	.ebhp-logo{max-height:56px;}
	.ebhp-actions{gap:8px;}
	.ebhp-action-link{
		padding:10px 11px;
		border-radius:10px;
	}
	.ebhp-count{
		top:-5px;
		right:-5px;
		min-width:18px;
		height:18px;
		font-size:10px;
	}
}

/* v2.3 conversion and premium refinements */
.ebhp-site-header{
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
.ebhp-top-link,
.ebhp-topbar-right a{
	font-weight: 450;
	letter-spacing: .01em;
}
.ebhp-mainbar-inner{
	min-height: 84px;
	transition: min-height .28s ease, gap .28s ease, padding .28s ease;
}
.ebhp-logo{
	transition: max-height .28s ease, transform .28s ease;
}
.ebhp-menu a{
	font-weight: 520;
	letter-spacing: .01em;
}
.ebhp-action-link{
	padding: 9px 13px;
	font-weight: 560;
	transition: color .25s ease, border-color .25s ease, background .25s ease, transform .2s ease, box-shadow .25s ease;
}
.ebhp-action-link:hover{
	transform: translateY(-1px);
	box-shadow: 0 8px 18px rgba(225,74,67,.08);
}
.ebhp-site-header.ebhp-scrolled .ebhp-topbar{
	max-height: 0;
	overflow: hidden;
	border-bottom-color: transparent;
}
.ebhp-topbar{
	transition: max-height .28s ease, opacity .28s ease, border-color .28s ease, padding .28s ease;
	max-height: 60px;
}
.ebhp-site-header.ebhp-scrolled .ebhp-mainbar-inner{
	min-height: 70px;
	gap: 22px;
}
.ebhp-site-header.ebhp-scrolled .ebhp-logo{
	max-height: 60px;
}
.ebhp-preview-panel{
	padding: 16px;
	border-radius: 18px;
	box-shadow: 0 18px 40px rgba(17,17,17,.08);
}
.ebhp-preview-row{
	display:flex;
	align-items:flex-start;
	justify-content:space-between;
	gap:12px;
}
.ebhp-preview-remove{
	width:28px;
	height:28px;
	border-radius:999px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	text-decoration:none;
	font-size:18px;
	line-height:1;
	color:#8a8a8a;
	background:#f7f7f7;
	flex-shrink:0;
	transition:.2s ease;
}
.ebhp-preview-remove:hover{
	background:#fff1f0;
	color:var(--ebhp-accent);
}
.ebhp-preview-actions{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:10px;
	padding-top:12px;
	margin-top:12px;
	border-top:1px solid var(--ebhp-border);
}
.ebhp-btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-height:40px;
	padding:10px 14px;
	border-radius:12px;
	text-decoration:none;
	font-size:13px;
	font-weight:600;
	transition:.25s ease;
}
.ebhp-btn-primary{
	background:var(--ebhp-accent);
	color:#fff;
	border:1px solid var(--ebhp-accent);
}
.ebhp-btn-primary:hover{
	background:var(--ebhp-accent-dark);
	border-color:var(--ebhp-accent-dark);
	color:#fff;
}
.ebhp-btn-ghost{
	background:#fff;
	color:var(--ebhp-text);
	border:1px solid var(--ebhp-border);
}
.ebhp-btn-ghost:hover{
	border-color:#f0c9c7;
	color:var(--ebhp-accent);
	background:#fff8f7;
}
@media (max-width: 980px){
	.ebhp-mainbar-inner{
		min-height:auto;
	}
	.ebhp-site-header.ebhp-scrolled .ebhp-topbar{
		max-height:60px;
		border-bottom-color:var(--ebhp-border);
	}
}


/* v2.4 premium ecommerce menu refinement */
.ebhp-nav,
.ebhp-menu,
.ebhp-menu li,
.ebhp-menu ul {
	list-style: none !important;
}
.ebhp-menu li::before,
.ebhp-menu li::after,
.ebhp-menu ul li::before,
.ebhp-menu ul li::after {
	content: none !important;
	display: none !important;
}
.ebhp-menu > li > a {
	padding: 10px 0;
}
.ebhp-menu .menu-item-has-children > a::after{
	content:"";
	width:7px;
	height:7px;
	border-right:1.7px solid currentColor;
	border-bottom:1.7px solid currentColor;
	transform:rotate(45deg) translateY(-2px);
	display:inline-block;
	transition: transform .22s ease, border-color .22s ease;
	margin-left: 2px;
}
.ebhp-menu > li:hover > a,
.ebhp-menu > li.current-menu-item > a,
.ebhp-menu > li.current-menu-ancestor > a{
	color:var(--ebhp-accent);
}
.ebhp-menu > li:hover > a::after,
.ebhp-menu > li.current-menu-item > a::after,
.ebhp-menu > li.current-menu-ancestor > a::after{
	transform:rotate(45deg) translateY(0);
}
.ebhp-menu > li > a::before{
	content:"";
	position:absolute;
	left:0;
	right:0;
	bottom:-10px;
	height:12px;
}
.ebhp-menu > li > a::after{
	/* arrow already handled for parent items; underline handled below with box-shadow trick */
}
.ebhp-menu > li > a{
	position:relative;
}
.ebhp-menu > li > a .ebhp-menu-label{
	position:relative;
}
.ebhp-menu > li > a:not(.no-underline)::selection{
	background:transparent;
}
.ebhp-menu > li > a{
	box-shadow: inset 0 -0px 0 0 transparent;
}
.ebhp-menu > li > a:hover,
.ebhp-menu > li.current-menu-item > a,
.ebhp-menu > li.current-menu-ancestor > a{
	box-shadow: inset 0 -2px 0 0 var(--ebhp-accent);
}
.ebhp-menu .sub-menu{
	top:calc(100% + 12px);
	min-width:250px;
	padding:10px;
	border-radius:16px;
	box-shadow:0 18px 48px rgba(17,17,17,.09);
	transform:translateY(10px);
	transition:opacity .22s ease, visibility .22s ease, transform .22s ease;
}
.ebhp-menu li:hover > .sub-menu{
	transform:translateY(0);
}
.ebhp-menu .sub-menu li{
	border:0;
}
.ebhp-menu .sub-menu a{
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding:12px 14px;
	border-radius:12px;
	font-size:14px;
	font-weight:500;
	color:var(--ebhp-text);
	transition:background .2s ease, color .2s ease, transform .2s ease;
}
.ebhp-menu .sub-menu a:hover,
.ebhp-menu .sub-menu .current-menu-item > a{
	background:#fff6f5;
	color:var(--ebhp-accent);
	transform:translateX(2px);
}
.ebhp-menu .sub-menu .menu-item-has-children > a::after{
	content:"";
	width:7px;
	height:7px;
	border-right:1.6px solid currentColor;
	border-bottom:1.6px solid currentColor;
	transform:rotate(-45deg);
	margin-left:10px;
}
@media (max-width: 980px){
	.ebhp-menu > li > a{
		box-shadow:none !important;
	}
	.ebhp-menu > li > a::before{
		display:none !important;
	}
	.ebhp-menu .menu-item-has-children > a::after{
		margin-left:auto;
	}
	.ebhp-menu .sub-menu{
		box-shadow:none;
		padding:0 0 8px 12px;
		border-radius:0;
	}
	.ebhp-menu .sub-menu a{
		padding:11px 0;
		border-radius:0;
		background:transparent !important;
		transform:none !important;
	}
}


/* v2.5 minimalist nav corrections */
.ebhp-site-header{
  position: relative;
}
.ebhp-site-header.ebhp-is-sticky{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
}
body.ebhp-has-sticky-header{
  padding-top: 0;
}
.ebhp-site-header .ebhp-menu > li > a{
  box-shadow: none !important;
  padding: 6px 0 !important;
}
.ebhp-site-header .ebhp-menu > li > a::before{
  display: none !important;
  content: none !important;
}
.ebhp-site-header .ebhp-menu > li > a::after{
  display: none !important;
  content: none !important;
}
.ebhp-site-header .ebhp-menu .menu-item-has-children > a::after{
  content: "";
  display: inline-block !important;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  margin-left: 8px;
  background: transparent !important;
  position: static !important;
}
.ebhp-site-header .ebhp-menu > li:hover > a,
.ebhp-site-header .ebhp-menu > li.current-menu-item > a,
.ebhp-site-header .ebhp-menu > li.current-menu-ancestor > a{
  color: var(--ebhp-accent);
}
.ebhp-site-header .ebhp-menu > li:hover > a{
  text-decoration: none;
}
.ebhp-site-header .ebhp-menu > li.current-menu-item > a,
.ebhp-site-header .ebhp-menu > li.current-menu-ancestor > a{
  font-weight: 600;
}
.ebhp-site-header .ebhp-menu > li{
  position: relative;
}
.ebhp-site-header .ebhp-menu > li.current-menu-item::after,
.ebhp-site-header .ebhp-menu > li.current-menu-ancestor::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  margin: 0 auto;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--ebhp-accent);
}
.ebhp-site-header .ebhp-menu .sub-menu{
  top: 100%;
  margin-top: 0;
  transform: translateY(0);
}
.ebhp-site-header .ebhp-menu .sub-menu::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
  pointer-events: auto;
  background: transparent;
}
.ebhp-site-header .ebhp-menu li:hover > .sub-menu{
  transform: translateY(0);
}
@media (max-width: 980px){
  .ebhp-site-header.ebhp-is-sticky{
    position: sticky;
    left: auto;
    right: auto;
  }
  .ebhp-site-header .ebhp-menu > li.current-menu-item::after,
  .ebhp-site-header .ebhp-menu > li.current-menu-ancestor::after{
    display:none;
  }
}

.ebhp-account-panel .ebhp-empty{
	margin-bottom:12px;
}

/* v3.0 Header + Footer refinement for Hello Elementor */
.ebhp-header-shell,
.ebhp-site-header,
.ebhp-topbar,
.ebhp-mainbar,
.ebhp-site-footer{
	width:100vw;
	max-width:100vw;
	margin-left:calc(50% - 50vw);
	margin-right:calc(50% - 50vw);
}

.ebhp-header-shell{
	margin-bottom:0 !important;
	padding-bottom:0 !important;
}

.ebhp-header-shell .ebhp-site-header,
.ebhp-header-shell .ebhp-topbar,
.ebhp-header-shell .ebhp-mainbar{
	width:100%;
	max-width:100%;
	margin-left:0;
	margin-right:0;
}

.ebhp-site-header{
	font-family:"Poppins", sans-serif;
	border-bottom:1px solid #eceff3;
	transform:none;
}

.ebhp-site-header.ebhp-is-sticky{
	position:fixed;
	top:0;
	left:0;
	right:0;
	background:#fff;
	backdrop-filter:none;
}

.ebhp-container{
	width:min(1280px, calc(100% - 40px));
}

.ebhp-topbar{
	background:#f7f8fa;
}

.ebhp-topbar-inner{
	min-height:34px;
	padding:4px 0;
}

.ebhp-top-link,
.ebhp-topbar-right a{
	font-size:12px;
	font-weight:600;
	line-height:1.2;
}

.ebhp-mainbar-inner{
	min-height:96px;
	grid-template-columns:230px 1fr auto;
	gap:28px;
}

.ebhp-logo{
	max-height:74px;
	width:auto;
}

.ebhp-logo-text{
	display:inline-flex;
	align-items:center;
	color:#161616;
	font-size:22px;
	font-weight:800;
	letter-spacing:0;
	line-height:1.1;
}

.ebhp-menu{
	gap:24px;
}

.ebhp-menu a,
.ebhp-site-header .ebhp-menu > li > a{
	font-size:16px;
	font-weight:700;
	letter-spacing:0;
}

.ebhp-menu .sub-menu a{
	font-size:13px;
}

.ebhp-action-link{
	min-height:48px;
	padding:10px 15px;
	border-radius:8px;
	font-size:14px;
}

.ebhp-action-icon svg{
	width:21px;
	height:21px;
}

.ebhp-count{
	min-width:18px;
	height:18px;
	font-size:10px;
}

.ebhp-mainbar + *,
.ebhp-site-header + *,
.ebhp-header-shell + *{
	margin-top:0 !important;
}

body.theme-hello-elementor .site-main,
body.theme-hello-elementor main#content{
	margin-top:0;
}

.ebhp-site-footer{
	background:#111317;
	color:#f8fafc;
	box-shadow:0 -14px 34px rgba(0,0,0,.14);
	font-family:"Poppins", sans-serif;
}

.ebhp-footer-inner{
	width:min(1280px, calc(100% - 40px));
	margin:0 auto;
	display:grid;
	grid-template-columns:minmax(280px, 1.4fr) minmax(180px, .8fr) minmax(240px, 1fr);
	gap:48px;
	padding:54px 0 34px;
}

.ebhp-footer-brand p{
	max-width:420px;
	margin:18px 0 0;
	color:#c8cdd5;
	font-size:14px;
	line-height:1.7;
}

.ebhp-footer-logo-link{
	display:inline-flex;
	align-items:center;
	text-decoration:none;
}

.ebhp-footer-brand-text{
	color:#fff;
	font-size:28px;
	font-weight:800;
	line-height:1.1;
	letter-spacing:0;
}

.ebhp-footer-column h3{
	margin:0 0 16px;
	color:#fff;
	font-size:14px;
	font-weight:800;
	text-transform:uppercase;
	letter-spacing:.08em;
}

.ebhp-footer-menu,
.ebhp-footer-contact{
	margin:0;
	padding:0;
	list-style:none;
	display:grid;
	gap:10px;
}

.ebhp-footer-menu a,
.ebhp-footer-contact a{
	display:inline-flex;
	align-items:center;
	gap:10px;
	color:#d7dbe2;
	font-size:14px;
	font-weight:600;
	text-decoration:none;
	transition:color .2s ease;
}

.ebhp-footer-menu a:hover,
.ebhp-footer-contact a:hover{
	color:#fff;
}

.ebhp-footer-contact svg,
.ebhp-footer-social svg{
	width:18px;
	height:18px;
	flex:0 0 auto;
}

.ebhp-footer-social{
	display:flex;
	align-items:center;
	gap:10px;
	margin-top:22px;
}

.ebhp-footer-social a{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	width:38px;
	height:38px;
	border:1px solid rgba(255,255,255,.14);
	border-radius:8px;
	color:#fff;
	background:#181b21;
	text-decoration:none;
	box-shadow:0 8px 20px rgba(0,0,0,.18);
}

.ebhp-footer-bottom{
	width:min(1280px, calc(100% - 40px));
	margin:0 auto;
	display:grid;
	grid-template-columns:1fr auto 1fr;
	align-items:center;
	gap:18px;
	padding:18px 0 24px;
	border-top:1px solid rgba(255,255,255,.1);
	color:#aeb5c0;
	font-size:12px;
	font-weight:600;
}

.ebhp-footer-bottom > span:last-child{
	justify-self:end;
}

.ebhp-footer-credit{
	justify-self:center;
	display:inline-flex;
	align-items:center;
	gap:8px;
	padding:8px 12px;
	border:1px solid rgba(255,255,255,.12);
	border-radius:999px;
	background:#181b21;
	color:#fff;
	text-decoration:none;
	box-shadow:0 8px 20px rgba(0,0,0,.16);
}

.ebhp-footer-credit:hover{
	color:#fff;
	border-color:rgba(255,255,255,.24);
}

.ebhp-footer-credit-icon{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	width:20px;
	height:20px;
	border-radius:999px;
	background:var(--ebhp-accent);
	color:#fff;
	font-size:13px;
	line-height:1;
}

@media (max-width:980px){
	.ebhp-container,
	.ebhp-footer-inner,
	.ebhp-footer-bottom{
		width:min(100% - 28px, 1280px);
	}

	.ebhp-topbar-inner{
		justify-content:center;
		min-height:38px;
	}

	.ebhp-topbar-left{
		gap:10px;
	}

	.ebhp-top-link{
		width:36px;
		height:34px;
		justify-content:center;
		border:1px solid #e3e6ea;
		border-radius:8px;
		background:#fff;
	}

	.ebhp-top-link span:not(.ebhp-inline-icon){
		position:absolute;
		width:1px;
		height:1px;
		overflow:hidden;
		clip:rect(0 0 0 0);
		white-space:nowrap;
	}

.ebhp-topbar-right{
	display:none;
	}

	.ebhp-mainbar-inner{
		min-height:76px;
		grid-template-columns:minmax(130px, 1fr) auto;
		gap:14px;
	}

	.ebhp-logo{
		max-height:52px;
	}

	.ebhp-action-text{
		display:none;
	}

	.ebhp-action-link{
		width:38px;
		height:38px;
		justify-content:center;
		padding:0;
	}

	.ebhp-footer-inner{
		grid-template-columns:1fr;
		gap:28px;
		padding:42px 0 28px;
	}

	.ebhp-footer-bottom{
		display:grid;
		justify-items:start;
		grid-template-columns:1fr;
	}

	.ebhp-footer-bottom > span:last-child,
	.ebhp-footer-credit{
		justify-self:start;
	}
}

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

.ebhp-topbar-right .material-symbols-outlined,
.ebhp-footer-social .material-symbols-outlined{
	font-size:20px;
}

.ebhp-app-loader{
	position:fixed;
	inset:0;
	z-index:999999;
	display:flex;
	align-items:center;
	justify-content:center;
	background:#fff;
	color:#111827;
	opacity:1;
	visibility:visible;
	transition:opacity .42s ease, visibility .42s ease;
}

.ebhp-loader-card{
	display:grid;
	justify-items:center;
	gap:14px;
	padding:28px;
	border:1px solid #edf0f3;
	border-radius:14px;
	background:#fff;
	box-shadow:0 18px 50px rgba(0,0,0,.12);
	font-family:"Poppins", sans-serif;
	font-weight:700;
}

.ebhp-loader-icon{
	width:58px;
	height:58px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	border-radius:18px;
	background:var(--ebhp-accent);
	color:#fff;
	font-size:34px;
	animation:ebhp-loader-pulse 1.1s ease-in-out infinite;
}

.ebhp-loader-hidden{
	opacity:0;
	visibility:hidden;
	pointer-events:none;
}

@keyframes ebhp-loader-pulse{
	0%{transform:scale(.96) rotate(0deg);}
	50%{transform:scale(1.04) rotate(8deg);}
	100%{transform:scale(.96) rotate(0deg);}
}

@media (max-width:640px){
	.ebhp-mainbar-inner{
		min-height:70px;
	}

	.ebhp-logo{
		max-height:48px;
	}

	.ebhp-actions{
		gap:7px;
	}
}

/* v3.4 UX normalization */
.ebhp-site-header.ebhp-is-sticky{
	position:fixed !important;
	top:0 !important;
	left:0 !important;
	right:0 !important;
	z-index:99990 !important;
}

.ebhp-site-footer{
	margin-top:36px;
	background:var(--ebhp-footer-bg, #111317) !important;
	color:var(--ebhp-footer-text, #f8fafc) !important;
	border-top:1px solid rgba(255,255,255,.08);
}

.ebhp-site-footer *,
.ebhp-site-footer a,
.ebhp-site-footer p,
.ebhp-site-footer li,
.ebhp-site-footer span,
.ebhp-site-footer h3{
	color:inherit;
}

.ebhp-site-footer a{
	text-decoration:none;
}

.ebhp-footer-category-bar{
	width:min(1280px, calc(100% - 40px));
	margin:0 auto;
	padding:28px 0 0;
	display:flex;
	align-items:center;
	justify-content:center;
	flex-wrap:wrap;
	gap:10px;
}

.ebhp-footer-category-bar a{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-height:36px;
	padding:8px 14px;
	border:1px solid rgba(255,255,255,.12);
	border-radius:8px;
	background:#181b21;
	color:#f8fafc !important;
	font-size:13px;
	font-weight:700;
	line-height:1.2;
	box-shadow:0 8px 18px rgba(0,0,0,.18);
	transition:transform .18s ease, border-color .18s ease, background .18s ease;
}

.ebhp-footer-category-bar a:hover{
	transform:translateY(-1px);
	border-color:rgba(255,255,255,.24);
	background:#1f232b;
	color:#fff !important;
}

.ebhp-footer-inner{
	padding-top:42px;
}

.ebhp-footer-brand p,
.ebhp-footer-menu a,
.ebhp-footer-contact a,
.ebhp-footer-bottom{
	color:rgba(248,250,252,.78) !important;
}

.ebhp-footer-brand-text,
.ebhp-footer-column h3,
.ebhp-footer-social a,
.ebhp-footer-credit,
.ebhp-footer-credit *,
.ebhp-footer-menu a:hover,
.ebhp-footer-contact a:hover{
	color:#fff !important;
}

.ebhp-footer-social svg,
.ebhp-topbar-right svg{
	width:20px;
	height:20px;
	display:block;
}

.ebhp-action-icon svg{
	width:var(--ebhp-action-icon-size, 23px);
	height:var(--ebhp-action-icon-size, 23px);
}

.ebhp-footer-credit-icon.material-symbols-outlined{
	width:22px;
	height:22px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	border-radius:999px;
	background:transparent;
	color:rgba(248,250,252,.58) !important;
	font-size:15px;
	line-height:1;
	flex:0 0 auto;
}

.ebhp-footer-credit,
.ebhp-footer-credit *,
.ebhp-footer-credit:hover,
.ebhp-footer-credit:hover *{
	color:rgba(248,250,252,.62) !important;
}

.ebhp-footer-credit{
	background:rgba(255,255,255,.025);
	border-color:rgba(255,255,255,.08);
	box-shadow:none;
}

.ebhp-footer-credit:hover{
	border-color:rgba(255,255,255,.16);
	background:rgba(255,255,255,.045);
}

@media (max-width:980px){
	.ebhp-topbar-inner{
		display:grid;
		grid-template-columns:1fr auto;
		justify-content:stretch;
		align-items:center;
		min-height:42px;
	}

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

	.ebhp-topbar-right{
		display:flex;
		justify-content:flex-end;
		gap:8px;
	}

	.ebhp-topbar-right a{
		width:34px;
		height:34px;
		display:inline-flex;
		align-items:center;
		justify-content:center;
		border:1px solid #e3e6ea;
		border-radius:8px;
		background:#fff;
		color:var(--ebhp-text);
		text-decoration:none;
	}

	.ebhp-topbar-right svg{
		width:18px;
		height:18px;
	}

	.ebhp-footer-category-bar{
		width:min(100% - 28px, 1280px);
		padding-top:24px;
		justify-content:center;
	}

	.ebhp-footer-category-bar a{
		min-height:34px;
		padding:8px 12px;
		font-size:12px;
	}

	.ebhp-footer-inner,
	.ebhp-footer-bottom{
		text-align:center;
		justify-items:center;
	}

	.ebhp-footer-brand,
	.ebhp-footer-column,
	.ebhp-footer-contact,
	.ebhp-footer-menu{
		justify-items:center;
		text-align:center;
	}

	.ebhp-footer-brand p{
		margin-left:auto;
		margin-right:auto;
	}

	.ebhp-footer-social,
	.ebhp-footer-contact a,
	.ebhp-footer-menu a{
		justify-content:center;
	}

	.ebhp-footer-bottom{
		display:flex;
		flex-direction:column;
		align-items:center;
		gap:12px;
	}

	.ebhp-footer-bottom > span:first-child{
		order:1;
	}

	.ebhp-footer-bottom > span:last-child{
		order:2;
		justify-self:center;
	}

	.ebhp-footer-credit{
		order:3;
		justify-self:center;
	}
}
