@charset "UTF-8";
/**
 * Header component styles.
 * SCSS: assets/css/components/header.scss
 * CSS (compiled by IDE): assets/css/components/header.css
 *
 * Layout: .h-a6aaa19 > .c-4dbbda8 > .h-8abb60b
 * Sticky on desktop; fixed on mobile with .h-d01a16e + .h-bc5f81b menu.
 */
.logged-in .h-a6aaa19.i-7d6038b {
  top: 32px;
}

.h-d01a16e {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 90;
}

.h-d01a16e.i-5b139a3 {
  opacity: 1;
  visibility: visible;
}

body.m-e1ff30a {
  overflow: hidden;
}
body.m-e1ff30a .h-a6aaa19 {
  z-index: 100;
}

.h-a6aaa19 {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 20px var(--site-gutter, 15px);
  background: var(--header-bg, var(--block-bg, transparent));
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.h-a6aaa19 > .c-4dbbda8 {
  padding-left: 0;
  padding-right: 0;
}
.h-a6aaa19.i-7d6038b {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.h-8abb60b {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.h-ef9edf7 {
  flex-shrink: 0;
}
.h-ef9edf7 img,
.h-ef9edf7 .h-458fdd4 {
  display: block;
  max-width: 180px;
  height: auto;
}
.h-b6ddb29 {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 0;
}
.h-94164f0 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.h-113b598, .h-770ff01 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  padding: 12px 16px;
  border: 1px solid var(--header-btn-border, var(--text-color));
  border-radius: var(--button-border-radius, 10px);
  background: var(--header-btn-bg, transparent);
  color: var(--header-btn-text, var(--text-color));
  text-decoration: none;
  text-transform: uppercase;
  font-size: var(--button-font-size, 14px);
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.h-113b598.h-5325ede, .h-770ff01.h-5325ede {
  border-color: var(--header-btn-border, var(--text-color));
}
.h-113b598.h-0d4c108, .h-770ff01.h-0d4c108 {
  border-color: transparent;
}
.h-113b598.h-c3699b2, .h-770ff01.h-c3699b2 {
  background: transparent;
}
.h-113b598.h-1f6816d, .h-770ff01.h-1f6816d {
  background: var(--header-btn-bg, var(--additional-c-elements));
}
.h-113b598:hover, .h-770ff01:hover {
  opacity: 0.85;
}
.h-f976892 {
  display: inline-flex;
  align-items: center;
}
.h-f976892 img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.h-56b0eb6 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}
.h-50a9fed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid var(--header-btn-border, transparent);
  border-radius: var(--button-border-radius, 10px);
  background: var(--header-btn-bg, var(--additional-c-elements));
  color: var(--header-btn-text, var(--button-text-color, #000));
  text-decoration: none;
  text-transform: uppercase;
  font-size: var(--button-font-size, 16px);
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.h-50a9fed.h-5325ede {
  border-color: var(--header-btn-border, var(--text-color));
}
.h-50a9fed.h-0d4c108 {
  border-color: transparent;
}
.h-50a9fed.h-c3699b2 {
  background: transparent;
}
.h-50a9fed.h-1f6816d {
  background: var(--header-btn-bg, var(--additional-c-elements));
}
.h-50a9fed:hover {
  opacity: 0.85;
}
.h-631b710 {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--additional-c-elements);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}
.h-631b710 span {
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--text-color);
  transition: 0.3s ease;
}
.h-631b710.i-5b139a3 span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.h-631b710.i-5b139a3 span:nth-child(2) {
  opacity: 0;
}
.h-631b710.i-5b139a3 span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.h-bc5f81b {
  display: none;
}

@media (max-width: 990px) {
  .h-ef9edf7 img,
  .h-ef9edf7 .h-458fdd4 {
    max-width: 100px;
  }
}
@media (max-width: 768px) {
  .logged-in .h-a6aaa19,
  .logged-in .h-a6aaa19.i-7d6038b {
    top: var(--wp-admin--admin-bar--height, 46px);
  }
  /* Fixed header is out of flow — clear it on main. Section blocks keep their own spacing. */
  main,
  main.p-83f9ede,
  main.main-content {
    padding-top: var(--header-height, 84px);
  }
  .logged-in main,
  .logged-in main.p-83f9ede,
  .logged-in main.main-content {
    padding-top: calc(var(--header-height, 84px) + var(--wp-admin--admin-bar--height, 46px));
  }
  .h-a6aaa19 {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    /* Full-bleed under the bar; escapes the inner .c-4dbbda8 column. */
  }
  .h-8abb60b {
    justify-content: space-between;
  }
  .h-b6ddb29 {
    display: none;
  }
  .h-a6aaa19.h-05a325c .h-b6ddb29 {
    display: flex;
  }
  .h-a6aaa19.h-05a325c .h-50a9fed {
    flex: 0 1 auto;
  }
}
@media (max-width: 768px) and (max-width: 380px) {
  .h-a6aaa19.h-05a325c .h-50a9fed {
    padding: 10px 20px;
  }
}
@media (max-width: 768px) {
  .h-631b710 {
    display: flex;
  }
}
@media (max-width: 768px) {
  .h-bc5f81b {
    display: block;
    position: absolute;
    left: 50%;
    right: auto;
    top: 100%;
    width: 100vw;
    transform: translateX(-50%);
    background: var(--header-bg, var(--block-bg, transparent));
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 2;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.45s ease, opacity 0.3s ease, visibility 0.3s ease;
  }
}
@media (max-width: 768px) {
  .h-bc5f81b.i-e3cf112 {
    max-height: calc(100dvh - var(--header-height, 84px));
    overflow-x: hidden;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 768px) {
  .h-ec534d6 {
    width: 100%;
    max-width: var(--site-container-width, 1200px);
    margin: 0 auto;
    padding: 20px var(--site-gutter, 15px);
    box-sizing: border-box;
  }
}
@media (max-width: 768px) {
  .h-52edce5 {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .h-770ff01 {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .h-43fa805 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
  }
}
@media (max-width: 768px) {
  .h-50a9fed {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
  }
}

/*# sourceMappingURL=header.css.map */
