/*(c) Haxter Corporation. All rights reserved.*/
.hmr-header{
position: sticky;
top:0;
background:#fff;
border-bottom:1px solid #e5e5e5;
z-index:1000;
}
.hmr-container{
max-width:1200px;
margin:0 auto;
padding:0 20px;
}
.hmr-header-inner{
display:flex;
align-items:center;
justify-content:space-between;
height:72px;
gap:16px;
}

/* Logo */
.hmr-logo img{ height:42px; display:block; }

/* Nav + Menu */
.hmr-nav{ display:flex; align-items:center; }
.hmr-menu{
display:flex;
gap:28px;
list-style:none;
margin:0;
padding:0;
align-items:center;
}
.hmr-menu a{
text-decoration:none;
font-family:"Montserrat",sans-serif;
font-weight:500;
color:#2b2f36;
font-size:15px;
transition:color .2s ease;
white-space:nowrap;
}
.hmr-menu a:hover{ color:#e53935; }

/* CTA */
.hmr-btn-primary{
background:#e53935;
color:#fff;
padding:10px 18px;
border-radius:4px;
font-family:"Montserrat",sans-serif;
font-weight:600;
text-decoration:none;
font-size:14px;
transition:background .2s ease;
display:inline-flex;
align-items:center;
justify-content:center;
white-space:nowrap;
}
.hmr-btn-primary:hover{ background:#c62828; }

/* Mobile menu button */
.hmr-menu-toggle{
display:none;
border:1px solid #e5e5e5;
background:#fff;
height:42px;
width:42px;
border-radius:6px;
cursor:pointer;
align-items:center;
justify-content:center;
padding:0;
}
.hmr-menu-toggle span{
display:block;
width:20px;
height:2px;
background:#2b2f36;
position:relative;
}
.hmr-menu-toggle span::before,
.hmr-menu-toggle span::after{
content:"";
position:absolute;
left:0;
width:20px;
height:2px;
background:#2b2f36;
}
.hmr-menu-toggle span::before{ top:-6px; }
.hmr-menu-toggle span::after{ top:6px; }

/* Responsive */
@media (max-width: 980px){
.hmr-header-inner{ height:auto; padding:12px 0; }
.hmr-menu-toggle{ display:inline-flex; }

/* Hide desktop nav; show as dropdown when toggled */
.hmr-nav{
  position:absolute;
  left:0;
  right:0;
  top:100%;
  background:#fff;
  border-bottom:1px solid #e5e5e5;
  display:none;
}
.hmr-nav.is-open{ display:block; }

.hmr-menu{
  flex-direction:column;
  gap:0;
  align-items:stretch;
  padding:8px 20px 12px;
}
.hmr-menu li{ border-top:1px solid #f0f0f0; }
.hmr-menu li:first-child{ border-top:0; }
.hmr-menu a{
  display:block;
  padding:12px 0;
  font-size:15px;
}

/* Keep logo + button + burger aligned */
.hmr-header-inner{
  position:relative;
  justify-content:space-between;
}
.hmr-header-actions{ display:flex; align-items:center; gap:10px; }
.hmr-btn-primary{ padding:10px 14px; font-size:13px; }
}

@media (max-width: 520px){
.hmr-container{ padding:0 14px; }
.hmr-logo img{ height:44px; }
.hmr-btn-primary{ padding:10px 12px; }
}