#kf-site-header {
  --kfsh-height: 80px;
  position: fixed;
  inset: 0 0 auto;
  z-index: 3990;
  height: var(--kfsh-height);
  color: #f5f2ed;
  font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
  transition: background-color .4s ease, border-color .4s ease, backdrop-filter .4s ease;
}

#kf-site-header, #kf-site-header * { box-sizing: border-box; }
#kf-site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg,rgba(5,5,5,.7),rgba(5,5,5,.34) 65%,rgba(5,5,5,0));
  transition: inherit;
}
#kf-site-header.kfsh-scrolled::before,
#kf-site-header.kfsh-open::before {
  border-bottom-color: rgba(255,255,255,.12);
  background: rgba(7,7,7,.9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

#kf-site-header .kfsh-inner {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(190px,1fr) auto minmax(330px,1fr);
  align-items: center;
  gap: 30px;
  padding: 0 clamp(28px,4vw,76px);
}
#kf-site-header a { color: inherit; text-decoration: none; }
#kf-site-header .kfsh-logo { display:block; width:clamp(164px,12.8vw,228px); line-height:0; }
#kf-site-header .kfsh-logo img { display:block; width:100%; height:auto; filter:invert(1); }
#kf-site-header .kfsh-nav { display:flex; align-items:center; justify-content:center; gap:clamp(26px,2.8vw,54px); }
#kf-site-header .kfsh-link,
#kf-site-header .kfsh-login,
#kf-site-header .kfsh-lang {
  position:relative;
  padding:8px 0;
  border:0;
  background:none;
  color:inherit;
  font:650 clamp(10px,.7vw,13px)/1 Montserrat,"Helvetica Neue",Arial,sans-serif;
  letter-spacing:.08em;
  text-transform:uppercase;
  white-space:nowrap;
  opacity:.86;
  transition:opacity .25s ease;
}
#kf-site-header .kfsh-link::after,
#kf-site-header .kfsh-login::after,
#kf-site-header .kfsh-lang::after {
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:2px;
  height:1px;
  background:currentColor;
  transform:scaleX(0);
  transform-origin:right;
  transition:transform .3s cubic-bezier(.16,1,.3,1);
}
#kf-site-header .kfsh-link:hover,
#kf-site-header .kfsh-login:hover,
#kf-site-header .kfsh-lang:hover { opacity:1; }
#kf-site-header .kfsh-link:hover::after,
#kf-site-header .kfsh-login:hover::after,
#kf-site-header .kfsh-lang:hover::after { transform:scaleX(1); transform-origin:left; }
#kf-site-header .kfsh-actions { display:flex; align-items:center; justify-content:flex-end; gap:clamp(15px,1.45vw,28px); }
#kf-site-header .kfsh-blog {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:92px;
  height:40px;
  padding:0 22px;
  border:1px solid rgba(255,255,255,.5);
  border-radius:999px;
  color:inherit;
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  transition:background-color .3s ease,color .3s ease,border-color .3s ease;
}
#kf-site-header .kfsh-blog:hover { border-color:#f5f2ed; background:#f5f2ed; color:#090909; }
#kf-site-header .kfsh-languages { display:flex; align-items:center; gap:10px; }
#kf-site-header .kfsh-lang { font-size:10px; }
#kf-site-header .kfsh-lang[aria-current="page"] { opacity:1; }
#kf-site-header .kfsh-lang[aria-current="page"]::after { transform:scaleX(1); }

#kf-site-header .kfsh-cart,
#kf-site-header .kfsh-menu {
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  padding:0;
  border:1px solid rgba(255,255,255,.34);
  border-radius:50%;
  color:inherit;
  background:rgba(255,255,255,.04);
  cursor:pointer;
  transition:border-color .25s ease,background-color .25s ease;
}
#kf-site-header .kfsh-cart:hover,
#kf-site-header .kfsh-menu:hover { border-color:rgba(255,255,255,.9); background:rgba(255,255,255,.1); }
#kf-site-header .kfsh-cart svg { width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:1.6; }
#kf-site-header .kfsh-cart-count {
  position:absolute;
  top:-5px;
  right:-5px;
  display:none;
  min-width:18px;
  height:18px;
  padding:0 4px;
  align-items:center;
  justify-content:center;
  border-radius:20px;
  background:#f5f2ed;
  color:#080808;
  font-size:9px;
  font-weight:800;
  line-height:18px;
}
#kf-site-header .kfsh-cart-count.kfsh-has-items { display:flex; }
#kf-site-header .kfsh-menu { display:none; flex-direction:column; gap:5px; }
#kf-site-header .kfsh-menu i { display:block; width:17px; height:1px; background:currentColor; transition:transform .3s ease,opacity .3s ease; }
#kf-site-header.kfsh-open .kfsh-menu i:first-child { transform:translateY(3px) rotate(45deg); }
#kf-site-header.kfsh-open .kfsh-menu i:last-child { transform:translateY(-3px) rotate(-45deg); }
#kf-site-header .kfsh-panel { display:none; }

body .t706__carticon { display:none !important; }
.kf-site-header-record { height:0 !important; min-height:0 !important; overflow:visible !important; }

@media(max-width:1180px){
  #kf-site-header .kfsh-inner { grid-template-columns:auto 1fr auto; }
  #kf-site-header .kfsh-nav { gap:24px; }
  #kf-site-header .kfsh-login { display:none; }
}

@media(max-width:920px){
  #kf-site-header { --kfsh-height:68px; }
  #kf-site-header .kfsh-inner { display:flex; justify-content:space-between; gap:16px; padding:0 22px; }
  #kf-site-header .kfsh-logo { width:164px; }
  #kf-site-header .kfsh-nav,
  #kf-site-header .kfsh-blog,
  #kf-site-header .kfsh-languages { display:none; }
  #kf-site-header .kfsh-actions { margin-left:auto; gap:10px; }
  #kf-site-header .kfsh-menu { display:inline-flex; }
  #kf-site-header .kfsh-panel {
    position:fixed;
    inset:var(--kfsh-height) 0 auto;
    display:flex;
    flex-direction:column;
    padding:26px 22px 34px;
    border-top:1px solid rgba(255,255,255,.1);
    background:rgba(7,7,7,.96);
    opacity:0;
    visibility:hidden;
    transform:translateY(-14px);
    transition:opacity .3s ease,visibility .3s ease,transform .4s cubic-bezier(.16,1,.3,1);
  }
  #kf-site-header.kfsh-open .kfsh-panel { opacity:1; visibility:visible; transform:translateY(0); }
  #kf-site-header .kfsh-panel-link {
    padding:13px 0;
    border-bottom:1px solid rgba(255,255,255,.12);
    font-size:clamp(24px,7vw,40px);
    font-weight:750;
    line-height:1;
    letter-spacing:-.035em;
    text-transform:uppercase;
  }
  #kf-site-header .kfsh-panel-meta { display:flex; align-items:center; justify-content:space-between; gap:18px; margin-top:26px; }
  #kf-site-header .kfsh-panel-meta div { display:flex; gap:18px; }
  #kf-site-header .kfsh-panel-small { font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; }
}

@media(prefers-reduced-motion:reduce){
  #kf-site-header, #kf-site-header *, #kf-site-header *::before, #kf-site-header *::after { transition-duration:.01ms !important; }
}
