:root {
  --inco-red: #cc1325;
  --ink: #161616;
  --muted: #5f6368;
  --soft-gray: #f3f3f4;
  --deep-green: #163d3f;
}

.site-header {
  background: #fff;
}

.header-top {
  padding: 18px 48px 14px;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand:hover {
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 36px;
  width: auto;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-left: 10px;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 28px;
  height: 28px;
  text-decoration: none;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #222;
  border-radius: 1px;
}

.menu-toggle:hover {
  text-decoration: none;
}

.header-nav {
  padding: 0 48px;
}

.header-nav-inner {
  max-width: 960px;
  margin: 0 auto;
}

.main-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 48px;
}

.main-nav > li > a {
  display: block;
  padding: 12px 0;
  color: #171717;
  font-size: 18px;
  font-weight: normal;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0em;
  text-decoration: none;
}

.main-nav > li.uk-active > a,
.main-nav > li > a:hover {
  color: var(--inco-red);
  font-weight: 600;
}

.site-search {
  display: flex;
  align-items: center;
  width: 190px;
  height: 34px;
  background: #e5e5e5;
  border-radius: 17px;
  padding: 0 8px 0 15px;
}

.site-search input {
  min-width: 0;
  width: 100%;
  height: 30px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #444;
  font-size: 13px;
}

.site-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.search-icon {
  display: block;
  width: 16px;
  height: 16px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  transform: translateX(24px);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 2px;
  border: 1px solid #d4d4d4;
  border-radius: 7px;
  background: #fff;
}

.language-switch a {
  min-width: 44px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #222;
  font-size: 13px;
  text-decoration: none;
  border-radius: 5px;
}

.language-switch a.is-active {
  background: #d7d7d7;
}

.mobile-menu-bar {
  background: #fff;
  color: #222;
}

.mobile-menu-bar a,
.mobile-menu-bar .uk-nav-default > li > a {
  color: #222 !important;
}

.mobile-menu-bar .uk-nav-default > li.uk-active > a {
  color: var(--inco-red) !important;
}

.mobile-menu-bar .uk-offcanvas-close {
  color: #222;
}

.mobile-language-switch {
  display: flex;
  align-items: center;
  margin-top: 16px;
  padding: 2px;
  border: 1px solid #d4d4d4;
  border-radius: 7px;
  background: #fff;
}

.mobile-language-switch a {
  flex: 1;
  min-width: 0;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #222;
  font-size: 13px;
  text-decoration: none;
  border-radius: 5px;
}

.mobile-language-switch a.is-active {
  background: #d7d7d7;
}

.mobile-brand {
  margin-bottom: 28px;
}

.mobile-search {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mobile-search input {
  flex: 1;
  height: 38px;
  border: 1px solid #ddd;
  border-radius: 19px;
  padding: 0 42px 0 16px;
  outline: 0;
}

.mobile-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  margin-left: -38px;
}

.mobile-nav {
  margin-top: 24px;
}

.mobile-nav > li > a {
  color: #222;
  font-size: 16px;
  padding: 11px 0;
}

.mobile-nav > li.uk-active > a {
  color: var(--inco-red);
}

/* === Sticky Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
}

@media (max-width: 959px) {
  .site-header {
    position: static;
  }
  .sticky-nav {
    display: none !important;
  }
}

@media (min-width: 960px) {
  .sticky-nav {
    display: none;
  }

  .site-header.sticky {
    height: 90px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.3s ease;
  }

  .site-header.sticky .header-top {
    height: 100%;
    padding: 0;
  }

  .site-header.sticky .header-top-inner {
    height: 100%;
    column-gap: 48px;
  }

  .site-header.sticky .header-nav {
    display: none;
  }

  .site-header.sticky .sticky-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 36px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .site-header.sticky .sticky-nav > li > a {
    display: flex;
    align-items: center;
    color: #171717;
    font-size: 18px;
    font-weight: normal;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0em;
    text-decoration: none;
    white-space: nowrap;
    padding: 8px 0;
  }

  .site-header.sticky .sticky-nav > li.uk-active > a,
  .site-header.sticky .sticky-nav > li > a:hover {
    color: var(--inco-red);
    font-weight: 600;
  }

  .site-header.sticky .site-search {
    flex-shrink: 0;
  }
}

/* === Header Responsive === */
@media (max-width: 960px) {
  .header-top {
    padding: 14px 24px;
  }

  .header-nav {
    padding: 0 24px;
  }
}

@media (max-width: 640px) {
  .header-top {
    padding: 12px 16px;
  }

  .header-nav {
    padding: 0 16px;
  }

  .header-actions .site-search,
  .header-actions .language-switch {
    display: none;
  }
}
.site-footer {
  display: flex;
  min-height: 82px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #313131;
  color: rgba(255,255,255,.82);
  font-size: 16px;
  font-weight: normal;
  line-height: normal;
  text-align: center;
}

.site-footer p {
  margin: 3px 0;
}