/* ===== HEADER HARD RESET ===== */
.site-header{
  background:#ffffff !important;
  border-bottom:1px solid #e5e7eb;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;
}

/* Header inner layout */
.header-inner{
  max-width:1200px;
  margin:0 auto;
  padding:10px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* ===== LOGO FIX ===== */
.brand-wrap{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  position:relative;
}

.logo-img{
  height:42px;
  width:auto;
  display:block;
  object-fit:contain;
}

/* ===== NAV ===== */
.main-nav{
  display:flex;
  align-items:center;
}

.main-nav a{
  margin-left:18px;
  text-decoration:none;
  font-weight:600;
  color:#374151;
}

.main-nav a:hover{
  color:#2563eb;
}

/* ===== BODY OFFSET (for fixed header) ===== */
body{
  padding-top:70px; /* 🔴 header height compensate */
}
