/* ============================= */
/* 🎯 Qusaqus Header Style      */
/* ============================= */
.qu-head-header {
  background: #fff;
  font-family: sans-serif;
  font-size: 14px;
}

.qu-head-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4px 0;
  position: relative;
}

.qu-head-left {
  flex-shrink: 0;
}

.qu-head-link {
  color: #002f87;
  text-decoration: none;
  padding: 6px 0;
  display: inline-block;
}

.qu-head-link:hover {
  text-decoration: underline;
}

.qu-head-bold {
  font-weight: bold;
}

.qu-head-menu {
  display: flex;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Burger menu (hidden by default) */
.qu-head-toggle {
  display: none;
}

.qu-head-burger {
  display: none;
  font-size: 22px;
  cursor: pointer;
  user-select: none;
}

/* Responsive */
@media (max-width: 768px) {
  .qu-head-burger {
    display: block;
    position: absolute;
    top: 12px;
    right: 16px;
  }

  .qu-head-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 45px;
    right: 16px;
    background: #fff;
    border: 1px solid #ccc;
    width: auto;
    min-width: 180px;
    padding: 10px;
    z-index: 999;
  }

  .qu-head-toggle:checked + .qu-head-burger + .qu-head-right .qu-head-menu {
    display: flex;
  }
}
