.ihf-widget{
  width:100%;
  --ihf-transition:.24s ease;
}
.ihf-shell{
  width:100%;
  box-sizing:border-box;
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  border-style:solid;
  border-width:0;
  overflow:hidden;
  position:relative;
}
.ihf-brand-zone,
.ihf-nav,
.ihf-actions{
  min-width:0;
  display:flex;
  align-items:center;
}
.ihf-brand{
  display:inline-flex;
  align-items:center;
  min-width:0;
  text-decoration:none!important;
  color:inherit;
}
.ihf-logo{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}
.ihf-logo img{
  display:block;
  height:auto;
  max-width:100%;
}
.ihf-brand-text{
  display:flex;
  flex-direction:column;
  min-width:0;
  gap:4px;
}
.ihf-title{
  display:block;
  font-size:24px;
  line-height:1.1;
  font-weight:800;
  letter-spacing:.03em;
}
.ihf-tagline{
  display:block;
  font-size:14px;
  line-height:1.55;
  font-weight:500;
}
.ihf-nav{
  justify-content:center;
}
.ihf-menu{
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:28px;
  padding:0;
  margin:0;
}
.ihf-menu li{
  list-style:none;
  margin:0;
  padding:0;
}
.ihf-menu a{
  display:inline-flex;
  align-items:center;
  text-decoration:none!important;
  line-height:1.2;
  font-size:15px;
  font-weight:600;
  transition:opacity var(--ihf-transition), transform var(--ihf-transition), color var(--ihf-transition), background var(--ihf-transition);
}
.ihf-menu a:hover{
  opacity:.78;
  transform:translateY(-1px);
}
.ihf-actions{
  justify-content:flex-end;
  gap:12px;
}
.ihf-search{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
  box-sizing:border-box;
  padding:0 16px;
  min-height:44px;
  margin:0;
  overflow:hidden;
}
.ihf-search-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  line-height:1;
}
.ihf-search-icon svg,
.ihf-btn-icon svg{
  width:1em;
  height:1em;
  fill:currentColor;
}
.ihf-search-input{
  width:100%;
  min-width:0;
  border:0!important;
  outline:0!important;
  box-shadow:none!important;
  background:transparent!important;
  color:inherit;
  font:inherit;
  line-height:1.2;
}
.ihf-search-input::-webkit-search-cancel-button{
  -webkit-appearance:none;
}
.ihf-buttons{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.ihf-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:0 solid transparent;
  text-decoration:none!important;
  white-space:nowrap;
  line-height:1.2;
  font-size:15px;
  font-weight:700;
  transition:transform var(--ihf-transition), opacity var(--ihf-transition), filter var(--ihf-transition), background var(--ihf-transition), color var(--ihf-transition);
}
.ihf-btn:hover{
  transform:translateY(-1px);
  opacity:.94;
}
.ihf-btn-outline{
  background:transparent!important;
}
.ihf-btn-text{
  background:transparent!important;
  border-color:transparent!important;
  padding-left:0!important;
  padding-right:0!important;
}
.ihf-burger{
  display:none;
  width:44px;
  height:44px;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  cursor:pointer;
  color:inherit;
  padding:0;
}
.ihf-burger span{
  display:block;
  width:18px;
  height:2px;
  border-radius:99px;
  background:currentColor;
  transition:transform var(--ihf-transition), opacity var(--ihf-transition);
}
.ihf-widget.is-open .ihf-burger span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.ihf-widget.is-open .ihf-burger span:nth-child(2){opacity:0}
.ihf-widget.is-open .ihf-burger span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.ihf-drawer{
  box-sizing:border-box;
  margin-top:10px;
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.92);
  box-shadow:0 18px 45px rgba(15,23,42,.12);
}
.ihf-drawer .ihf-menu{
  flex-direction:column;
  align-items:flex-start;
  gap:14px;
}
.ihf-drawer .ihf-menu a{
  color:#0f172a;
}
.ihf-drawer-actions{
  margin-top:16px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.ihf-drawer-actions .ihf-search,
.ihf-drawer-actions .ihf-buttons,
.ihf-drawer-actions .ihf-btn{
  width:100%;
}
.ihf-drawer-actions .ihf-buttons{
  flex-direction:column;
  align-items:stretch;
}
.ihf-desktop-split .ihf-brand-zone{justify-content:flex-start;}
.ihf-desktop-split .ihf-nav{justify-content:center;}
.ihf-desktop-split .ihf-actions{justify-content:flex-end;}
.ihf-desktop-apple .ihf-shell{
  grid-template-columns:auto 1fr auto;
}
.ihf-desktop-apple .ihf-brand-text .ihf-tagline{display:none;}
.ihf-desktop-apple .ihf-nav{justify-content:center;}
.ihf-desktop-left .ihf-shell{
  grid-template-columns:auto auto minmax(0,1fr);
  justify-content:flex-start;
}
.ihf-desktop-left .ihf-nav{justify-content:flex-start;}
.ihf-desktop-center .ihf-shell,
.ihf-desktop-footer .ihf-shell{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}
.ihf-desktop-center .ihf-actions,
.ihf-desktop-footer .ihf-actions{
  justify-content:center;
}
.ihf-desktop-search .ihf-shell{
  grid-template-columns:auto minmax(0,1fr);
}
.ihf-desktop-search .ihf-nav{display:none;}
.ihf-desktop-search .ihf-actions{justify-content:flex-end;}
.ihf-desktop-search .ihf-search{width:min(520px,100%)!important;}
.ihf-mode-footer .ihf-shell{
  min-height:180px;
}
@media (max-width:1024px){
  .ihf-tablet-split .ihf-shell{display:grid;grid-template-columns:auto minmax(0,1fr) auto;}
  .ihf-tablet-apple .ihf-shell{display:grid;grid-template-columns:auto 1fr auto;}
  .ihf-tablet-center .ihf-shell,
  .ihf-tablet-footer .ihf-shell{display:flex;flex-direction:column;align-items:center;text-align:center;justify-content:center;}
  .ihf-tablet-center .ihf-actions,
  .ihf-tablet-footer .ihf-actions{justify-content:center;}
  .ihf-tablet-left .ihf-shell{display:flex;align-items:center;justify-content:flex-start;flex-wrap:wrap;}
  .ihf-tablet-search .ihf-nav{display:none;}
  .ihf-tablet-search .ihf-shell{display:grid;grid-template-columns:auto minmax(0,1fr);}
  .ihf-tablet-search .ihf-search{width:min(520px,100%)!important;}
}
@media (max-width:767px){
  .ihf-shell{
    display:flex!important;
    flex-wrap:wrap;
    align-items:center;
  }
  .ihf-mobile-center .ihf-shell,
  .ihf-mobile-footer .ihf-shell{
    flex-direction:column;
    text-align:center;
    justify-content:center;
  }
  .ihf-mobile-center .ihf-actions,
  .ihf-mobile-footer .ihf-actions{
    justify-content:center;
    width:100%;
  }
  .ihf-mobile-left .ihf-shell{
    justify-content:flex-start;
    align-items:flex-start;
  }
  .ihf-mobile-search .ihf-brand-zone{
    width:100%;
    justify-content:center;
  }
  .ihf-mobile-search .ihf-actions{
    width:100%;
    justify-content:center;
  }
  .ihf-mobile-search .ihf-search{
    width:100%!important;
  }
  .ihf-has-drawer .ihf-nav-desktop{
    display:none!important;
  }
  .ihf-has-drawer .ihf-actions>.ihf-search,
  .ihf-has-drawer .ihf-actions>.ihf-buttons{
    display:none!important;
  }
  .ihf-has-drawer .ihf-burger{
    display:inline-flex;
  }
  .ihf-has-drawer .ihf-shell{
    flex-direction:row!important;
    justify-content:space-between;
    text-align:left;
  }
  .ihf-has-drawer .ihf-brand-zone{max-width:calc(100% - 58px);}
  .ihf-title{font-size:20px;}
  .ihf-tagline{font-size:13px;}
  .ihf-logo img{max-width:90px;}
}
.ihf-search-wrap{
  position:relative;
  display:flex;
  min-width:0;
}
.ihf-live-results{
  position:absolute;
  left:0;
  right:0;
  top:calc(100% + 10px);
  z-index:9999;
  background:#fff;
  color:#0f172a;
  border-radius:18px;
  box-shadow:0 18px 48px rgba(15,23,42,.18);
  overflow:hidden;
  border:1px solid rgba(15,23,42,.08);
}
.ihf-live-results-inner{
  max-height:420px;
  overflow:auto;
  padding:8px;
}
.ihf-live-result{
  display:flex;
  gap:12px;
  padding:10px;
  border-radius:12px;
  color:#0f172a;
  text-decoration:none!important;
  transition:background .18s ease, transform .18s ease;
}
.ihf-live-result:hover{
  background:#f3f7ff;
  transform:translateY(-1px);
}
.ihf-live-thumb{
  width:48px;
  height:48px;
  border-radius:10px;
  overflow:hidden;
  flex:0 0 auto;
  background:#eef2f7;
}
.ihf-live-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.ihf-live-body{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.ihf-live-body strong{
  color:#0f172a;
  font-size:14px;
  line-height:1.35;
}
.ihf-live-body em{
  color:#64748b;
  font-style:normal;
  font-size:12px;
  line-height:1.4;
}
.ihf-live-empty{
  padding:18px;
  text-align:center;
  color:#64748b;
}
.ihf-live-empty span{
  display:block;
  margin-top:4px;
  color:#0f172a;
  font-weight:700;
}
.ihf-search-wrap.is-loading .ihf-live-results:before{
  content:'Searching...';
  display:block;
  padding:14px 16px;
  color:#64748b;
}
@media (max-width:767px){
  .ihf-search-wrap,
  .ihf-search-wrap .ihf-search{
    width:100%!important;
  }
  .ihf-live-results{
    position:static;
    margin-top:10px;
  }
}
/* v0.1.2 responsive drawer fixes */
.ihf-drawer-actions .ihf-search-wrap{
  width:100%;
}
@media (max-width:1024px){
  .ihf-tablet-drawer .ihf-nav-desktop{
    display:none!important;
  }
  .ihf-tablet-drawer .ihf-actions>.ihf-search-wrap,
  .ihf-tablet-drawer .ihf-actions>.ihf-search,
  .ihf-tablet-drawer .ihf-actions>.ihf-buttons{
    display:none!important;
  }
  .ihf-tablet-drawer .ihf-burger{
    display:inline-flex!important;
  }
  .ihf-tablet-drawer .ihf-shell{
    display:flex!important;
    flex-direction:row!important;
    align-items:center!important;
    justify-content:space-between!important;
    text-align:left!important;
  }
  .ihf-tablet-drawer .ihf-brand-zone{
    max-width:calc(100% - 60px);
  }
}
@media (max-width:767px){
  .ihf-has-drawer .ihf-actions>.ihf-search-wrap,
  .ihf-has-drawer .ihf-actions>.ihf-search,
  .ihf-has-drawer .ihf-actions>.ihf-buttons{
    display:none!important;
  }
}
/* v0.1.4 menu/search polish */
.ihf-search-submit{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:0;
  cursor:pointer;
  white-space:nowrap;
  line-height:1.2;
  font-weight:700;
  transition:background .22s ease, color .22s ease, transform .22s ease, opacity .22s ease;
}
.ihf-search-submit:hover{
  transform:translateY(-1px);
  opacity:.96;
}
.ihf-search-submit svg{
  width:1em;
  height:1em;
  fill:currentColor;
}
@media (min-width:1025px){
  .ihf-widget .ihf-drawer{
    display:none!important;
  }
  .ihf-widget .ihf-burger{
    display:none!important;
  }
}
/* v0.1.5 search styles and dropdown clipping fix */
.ihf-shell{
  overflow:visible!important;
}
.ihf-search-wrap{
  z-index:20;
}
.ihf-search-submit-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1;
}
/* Desktop search structure */
.ihf-search-desktop-input_button_text .ihf-search-icon,
.ihf-search-desktop-input_icon_button .ihf-search-icon,
.ihf-search-desktop-input_only .ihf-search-icon{
  display:none!important;
}
.ihf-search-desktop-input_only .ihf-search-submit,
.ihf-search-desktop-icon_input_only .ihf-search-submit{
  display:none!important;
}
.ihf-search-desktop-icon_input_button_icon .ihf-search-submit > span:not(.ihf-search-submit-icon),
.ihf-search-desktop-input_icon_button .ihf-search-submit > span:not(.ihf-search-submit-icon){
  display:none!important;
}
/* Tablet search structure */
@media (max-width:1024px){
  .ihf-search-tablet-input_button_text .ihf-search-icon,
  .ihf-search-tablet-input_icon_button .ihf-search-icon,
  .ihf-search-tablet-input_only .ihf-search-icon{
    display:none!important;
  }
  .ihf-search-tablet-input_only .ihf-search-submit,
  .ihf-search-tablet-icon_input_only .ihf-search-submit{
    display:none!important;
  }
  .ihf-search-tablet-icon_input_button_icon .ihf-search-submit > span:not(.ihf-search-submit-icon),
  .ihf-search-tablet-input_icon_button .ihf-search-submit > span:not(.ihf-search-submit-icon){
    display:none!important;
  }
}
/* Mobile search structure */
@media (max-width:767px){
  .ihf-search-mobile-input_button_text .ihf-search-icon,
  .ihf-search-mobile-input_icon_button .ihf-search-icon,
  .ihf-search-mobile-input_only .ihf-search-icon{
    display:none!important;
  }
  .ihf-search-mobile-input_only .ihf-search-submit,
  .ihf-search-mobile-icon_input_only .ihf-search-submit{
    display:none!important;
  }
  .ihf-search-mobile-icon_input_button_icon .ihf-search-submit > span:not(.ihf-search-submit-icon),
  .ihf-search-mobile-input_icon_button .ihf-search-submit > span:not(.ihf-search-submit-icon){
    display:none!important;
  }
}
/* v0.1.6 live result responsive positioning */
.ihf-results-align-left .ihf-live-results{
  left:0;
  right:auto;
  transform:none;
}
.ihf-results-align-center .ihf-live-results{
  left:50%;
  right:auto;
  transform:translateX(-50%);
}
.ihf-results-align-right .ihf-live-results{
  left:auto;
  right:0;
  transform:none;
}
.ihf-live-results{
  max-width:calc(100vw - 32px);
}
@media (max-width:767px){
  .ihf-search-wrap{
    flex-direction:column!important;
    align-items:stretch!important;
  }
  .ihf-results-align-left .ihf-live-results,
  .ihf-results-align-center .ihf-live-results,
  .ihf-results-align-right .ihf-live-results{
    left:auto!important;
    right:auto!important;
    transform:none!important;
    width:100%!important;
    max-width:100%!important;
  }
}
