.site-header {
  border-bottom: 1px solid #e5e7eb;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
}


.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header-logo {
  max-width: 180px;
}

.header-logo img {
  height: 48px;
  width: auto;
  max-width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav {
  display: flex;
  gap: 3.5rem;
}

.main-nav a,
.header-phone a {
  font-size: 1.125rem;
  font-weight: 500;
  color: #6c7280;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.main-nav a:hover,
.header-phone a:hover {
  color: #1f2937;
}

.nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 999;
}

.mobile-nav {
  display: none;
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    opacity: 0;
    z-index: 999;
    cursor: pointer;
    display: block;
  }

  .hamburger {
    display: block;
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    z-index: 998;
  }

  .mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
    z-index: 997;
  }

.mobile-nav nav a {
  display: block;
  padding: 0.75rem 0;
  color: #6c7280;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
}


  /* ✅ THIS MAKES THE TOGGLE WORK */
  #navToggle:checked ~ .mobile-nav {
    display: block;
  }
}
