/* ============================================================
   HEADER  (mobile-first)
============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background-color: #efece9;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 30px;
}

.header__nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 100%;
}

.header__burger {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  flex-shrink: 0;
}
.header__burger img { width: 20px; height: 20px; }

.header__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__nav-link {
  font-family: 'Lexend', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #0f1b24;
}

.header__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 211.352px;
  height: 19.085px;
}
.header__logo img { width: 100%; height: 100%; object-fit: contain; }

.header__right {
  display: flex;
  align-items: center;
  gap: 0;
}

.header__devise {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lexend', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #0f1b24;
  cursor: pointer;
}

.header__user-icon { width: 20px; height: 20px; }

/* ============================================================
   HEADER  – Desktop
============================================================ */
@media (min-width: 769px) {
  .header {
    height: 100px;
    padding: 0 100px;
  }

  .header__nav {
    max-width: 1366px;
    margin: 0 auto;
  }

  .header__burger { display: none !important; }

  .header__logo {
    width: 373px;
    height: 27px;
  }

  .header__right {
    gap: 20px;
  }
}
