#listlove-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  background: transparent;
  min-height: 66px;
}

.ll-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.ll-logo-image {
  display: block;
  width: 40px;
  height: auto;
}

#listlove-header * {
  box-sizing: border-box;
}

.ll-header {
  width: 100%;
  margin-bottom: 50px;
}

.ll-header-inner {
  width: 100%;
  padding: 25px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.ll-logo-link {
  text-decoration: none;
  color: #000;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.ll-logo {
  margin: 0;
  color: #000;
  font-family: Inter, Arial, sans-serif;
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.ll-nav-desktop {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
  flex: 1 1 auto;
}

.ll-nav-link {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #000;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 350;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.ll-nav-link:hover {
  color: #000;
  text-decoration: none;
}

.ll-nav-dashboard-link {
  gap: 10px;
}

.ll-nav-avatar {
  display: none;
  width: 35px;
  height: 35px;
  border-radius: 999px;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.06);
  flex: 0 0 auto;
}

.ll-mobile-dashboard-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 450;
}

.ll-mobile-nav-avatar {
  width: 28px;
  height: 28px;
}

a#ll-nav-dashboard-link {
    font-weight: 500;
      text-decoration: underline;
}

.ll-nav-create-link {
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid var(--gray-50);
  background: transparent;
  color: #000;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 350;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.ll-nav-create-link:hover {
  background: #111;
  color: #fff;
  text-decoration: none;
}

#ll-nav-dashboard-link,
#ll-nav-settings-menu,
.ll-auth-only,
.ll-guest-only {
  display: none;
}

.ll-settings-menu {
  position: relative;
}

.ll-settings-toggle {
  cursor: pointer;
  width: 28px;
  height: 28px;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.ll-settings-icon {
  width: 20px;
  height: 20px;
  display: block;
  opacity: 0.8;
  transition: opacity 140ms ease;

}

.ll-settings-toggle:hover .ll-settings-icon,
.ll-settings-menu.is-open .ll-settings-icon {

  opacity: 1;

}

.ll-settings-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 220px;
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1001;
}

.ll-settings-menu.is-open .ll-settings-dropdown {
  display: block;
}

.ll-settings-dropdown a {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.2;
  color: #111;
  text-decoration: none;
  white-space: nowrap;
}

.ll-settings-dropdown a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: #111;
  text-decoration: none;
}

.ll-mobile-menu-toggle {
  display: none;
}

.ll-mobile-menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gray-50);
}

.ll-mobile-menu {
  display: none;
}

.ll-mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 20px 30px 50px 30px;
  background: transparent;
  box-shadow: 0px 60px 60px var(--gray-10);
}

.ll-mobile-link {
  display: block;
  padding: 14px 0;
  color: #000;
  font-family: Inter, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.2;
  text-decoration: none;
  font-weight:300;
}

.ll-mobile-link:hover {
  color: #000;
  text-decoration: none;
}

.ll-mobile-settings-dropdown {
  display: none;
  padding-left: 16px;
}

.ll-mobile-settings-menu.is-open .ll-mobile-settings-dropdown {
  display: block;
}

.ll-mobile-settings-dropdown .ll-mobile-link {
  font-size: 20px;
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .ll-header-inner {
    min-height: 92px;
    padding: 26px 30px;
  }

  .ll-logo {
    font-size: 34px;
  }

  .ll-logo-image {
  display: block;
  width: 30px;
  height: auto;
}


  .ll-nav-desktop {
    display: none !important;
  }

  .ll-mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
  }

  .ll-mobile-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 999;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
  }

  .ll-mobile-menu.is-open {
    display: block;
  }

  body.ll-mobile-menu-open {
    overflow: hidden;
  }
}

#listlove-header.is-custom-branded .ll-header {
  margin-bottom: 60px;
}

#listlove-header.is-custom-branded .ll-header-inner {
  justify-content: flex-start;
}

#listlove-header.is-custom-branded .ll-logo-image-custom {
  width: auto;
  max-width: 400px;
  max-height: 40px;
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  #listlove-header.is-custom-branded .ll-logo-image-custom {
    width: auto;
    max-width: 350px;
    max-height: 34px;
  }
}

.ll-nav-create-link-plain {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #000;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 350;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.ll-nav-create-link-plain:hover {
  background: transparent;
  color: #000;
  text-decoration: none;
  opacity: 0.7;
}

.ll-footer-made-with-love, .ll-footer a, .site-footer a {
  color: inherit;
  text-decoration: none !important;
  font-size: 12px;
}

.ll-footer-made-with-love:hover {
  color: inherit;
  text-decoration: none;
}
