/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 01 2026 | 09:06:58 */
/* HEADER základ */
.et-l--header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: transform 0.6s ease;
  background: transparent;
}

/* schování headeru */
.header-hidden {
  transform: translateY(-100%);
}

/* header při scrollu nahoru */
.header-scrolled {
  background: #ffffff;
}

/* optional: smooth animace */
.et-l--header {
  will-change: transform;
}

/* 🔥 TOP stav → povolíme fade */
.header-top {
  background: transparent;
  box-shadow: none;
  transition: transform 0.6s ease, background 0.6s ease;
}