/* Shared static header styles */
.site-header {
  background: #d0d0d0;
  padding: 10px 24px 12px;
  position: relative;
}

.site-header .header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
}

.site-header .header-logo img {
  height: 147px;
  width: auto;
  display: block;
}

.site-header .header-logo {
  position: absolute;
  left: 24px;
  top: -15px;
  z-index: 5;
}

.site-header .header-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  line-height: 1;
  margin-left: auto;
}

.site-header .contact-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1c1c1c;
  text-decoration: none;
}

.site-header .contact-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: #1c1c1c;
}

.site-header .contact-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 6px;
}

.site-header .contact-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header .contact-social svg,
.site-header .contact-social img {
  width: 22px;
  height: 22px;
  display: block;
}

.site-header .contact-social a svg circle {
  fill: currentColor;
}

.site-header .contact-social a[href*="facebook.com"] {
  color: #1877f2;
}

.site-header .contact-social a[href*="instagram.com"] {
  color: #e1306c;
}

.site-header .contact-social a[href*="wa.me"] img {
  width: 24px;
  height: 24px;
}

.site-header .header-nav {
  margin-top: 34px;
}

.site-header .header-nav ul {
  display: flex;
  justify-content: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.site-header .header-nav li {
  position: relative;
}

.site-header .header-nav a {
  text-decoration: none;
  color: #1c1c1c;
  padding: 6px 0;
  display: inline-block;
  border-bottom: 3px solid transparent;
}

.site-header .header-nav a.is-active {
  color: #f0632b;
  background: linear-gradient(90deg, #f0632b, #f5902b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom-color: #f0632b;
}

.site-header .header-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 3px;
  background: #f0632b;
}

.site-header .menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 4px;
  margin-left: auto;
  cursor: pointer;
}

.site-header .menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1c1c1c;
  margin: 5px 0;
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .site-header {
    padding: 10px 14px 12px;
  }

  .site-header .header-top {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px 12px;
    min-height: 0;
  }

  .site-header .header-logo {
    position: static;
  }

  .site-header .header-logo img {
    height: 88px;
  }

  .site-header .header-contact {
    margin-left: 0;
    margin-top: 4px;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }

  .site-header .header-nav {
    margin-top: 10px;
  }

  .site-header .header-nav ul {
    justify-content: flex-start;
    gap: 12px 16px;
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 4px;
  }

  .site-header .header-nav li {
    flex: 0 0 auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 6px 10px 8px;
  }

  .site-header .header-top {
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .site-header .header-logo {
    position: static;
  }

  .site-header .header-logo img {
    height: 72px;
  }

  .site-header .header-contact {
    display: none;
  }

  .site-header .menu-toggle {
    display: inline-block;
  }

  .site-header .header-nav {
    margin-top: 6px;
  }

  .js-nav-enabled .site-header .header-nav {
    display: none;
  }

  .js-nav-enabled .site-header.menu-open .header-nav {
    display: block;
  }

  .site-header .header-nav ul {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.2px;
    padding: 6px 2px 0;
  }

  .site-header .header-nav a {
    font-size: 0.92rem;
    padding: 4px 0;
    text-align: center;
  }
}
