/** Shopify CDN: Minification failed

Line 54:0 Expected "}" to go with "{"

**/
@media (min-width: 769px) {
  #logo-overlay {
    display: flex;
    align-items: flex-start;  /* Prilepi zgoraj */
    justify-content: flex-start; /* Prilepi levo */
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: transparent;
    pointer-events: none;
  }
  #splash-logo {
  /* expandano stanje: */
  position: absolute;
  top: 0;
  left: 0;
  width: 44vw;
  min-width: 320px;
  max-width: 1000px;
  transform: scale(1.0) translate(0, 0); /* KLJUČ: transform-origin: top left; */
  transition: all 0.35s ease-out;
}
#splash-logo.shrunk {
  width: 200px;
  min-width: 64px;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  /* transform: translate(var(--logo-to-header-x), var(--logo-to-header-y)) scale(1.0); */
  transform: translate(var(--logo-to-header-x, 0), var(--logo-to-header-y, 0)) scale(1.0);
  transition: all 0.35s ease-out;


}
/* Hide header logo med splash animacijo */
body.splash-active .header__heading-logo,
body.splash-active #header-logo,
body.splash-active #header-logo-picture {
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0s;
}
body.splash-active .header__heading {
  pointer-events: none !important;
}
body:not(.splash-active) #logo-overlay {
  display: none !important;
}
