.page-template-default{
  top:0 !important;
}
/* keep the header menu on one line and vertically centered */
.hfe-nav-menu {
  /* display: flex; */           /* prevent wrap to next line */
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;               /* space between items, adjust if needed */
}

/* the flags container that sits after "Reviews" */
.hfe-nav-menu .lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;        /* tiny nudge away from "Reviews" */
}

/* flag buttons */
.hfe-nav-menu .lang-flag {
  display: inline-flex;
  width: 36px;             /* compact; matches your screenshot scale */
  height: 24px;
  padding: 2px;            /* room for the 2px border */
  border: 2px solid transparent;
  border-radius: 6px;
  box-sizing: border-box;
  text-decoration: none;
  line-height: 0;
}

/* the SVG flags */
.hfe-nav-menu .lang-flag svg {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 3px;
}

/* selected + hover state */
.hfe-nav-menu .lang-flag.selected { border-color: #EC9631; }
.hfe-nav-menu .lang-flag:hover,
.hfe-nav-menu .lang-flag:focus {
  border-color: #EC9631;
  outline: none;
  transition: border-color 120ms ease-in-out;
}

/* safety on smaller screens if Elementor changes layout */
@media (max-width: 1024px) {
  .hfe-nav-menu { gap: 12px; }
  .hfe-nav-menu .lang-flag { width: 32px; height: 22px; }
}
/* Centered mobile flags row (for the "flags here" container) */
.mobile-flags {
  display: flex;
  justify-content: center;   /* <-- centers horizontally */
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 4px 0;
}

/* Reuse the same flag button look */
.mobile-flags .lang-flag {
  display: inline-flex;
  width: 36px;
  height: 24px;
  padding: 2px;               /* space for 2px border */
  border: 2px solid transparent;
  border-radius: 6px;
  line-height: 0;
  text-decoration: none;
  box-sizing: border-box;
}

.mobile-flags .lang-flag svg {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 3px;
}

.mobile-flags .lang-flag.selected { border-color: #EC9631; }
.mobile-flags .lang-flag:hover,
.mobile-flags .lang-flag:focus { border-color: #EC9631; outline: none; }
/* ===== Desktop header layout: put nav + flags inline ===== */
@media (min-width:1025px){
  /* keep Elementor’s grid, but define columns and spacing explicitly */
  .elementor-element-1b7e60b{
    display:grid !important;
    grid-template-columns: auto 1fr auto auto; /* logo | hours/phone | nav | flags */
    align-items:center;
    column-gap:16px;
  }

  /* keep the nav flush right within its grid cell */
  .elementor-element-1f677a2{
    justify-self:end;
  }

  /* your flags block that sits right after the nav */
  .language-select{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-left:10px;     /* small gap from menu */
  }
}

/* ===== Flag button look (reused on desktop + mobile) ===== */
.language-select .lang-flag,
.mobile-flags .lang-flag {
  display: inline-flex;
  width: 36px;
  height: 24px;
  padding: 2px;                 /* room for the 2px border */
  border: 2px solid transparent;
  border-radius: 6px;
  box-sizing: border-box;
  line-height: 0;
  text-decoration: none;
}
.language-select .lang-flag svg,
.mobile-flags .lang-flag svg {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 3px;
}
.language-select .lang-flag.selected,
.mobile-flags .lang-flag.selected { border-color: #EC9631; }
.language-select .lang-flag:hover,
.language-select .lang-flag:focus,
.mobile-flags .lang-flag:hover,
a.lang-flag.eng.selected { border-color: #EC9631; outline: none; }
a.lang-flag.ro.selected { border-color: #EC9631; outline: none; }