.kidotel-nav-shell {
  width: 100%;
  margin: 0;
  border-radius: 0;
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
}

.kidotel-nav {
  width: min(1200px, calc(100% - 32px));
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: "Sora", sans-serif;
  position: relative;
}

.kidotel-logo {
  display: inline-flex;
  align-items: center;
  width: 102px;
  height: 41.429px;
  flex-shrink: 0;
}

.kidotel-logo img {
  display: block;
}

.kidotel-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.kidotel-mobile-panel {
  display: contents;
}

.kidotel-listing-link,
.kidotel-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4f4f4f;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
}

.kidotel-listing-link {
  margin-right: 24px;
}

.kidotel-heart-icon {
  width: 18px;
  height: 16.5px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(30%) sepia(0%) saturate(0%) hue-rotate(162deg) brightness(95%) contrast(85%);
}

.kidotel-btn-signin {
  display: inline-flex;
  min-height: 40px;
  padding: 8px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 0;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(43, 42, 39, 0.11);
  color: #7a7671;
  text-align: center;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  white-space: nowrap;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
}

.kidotel-btn-signin:hover {
  color: #c47f2f;
  background: #fff7ed;
  box-shadow: 0 6px 18px rgba(43, 42, 39, 0.12);
  transform: translateY(-1px);
}

.kidotel-btn-signin:focus-visible {
  color: #c47f2f;
  outline: none;
  box-shadow:
    0 0 0 3px rgba(249, 196, 127, 0.45),
    0 6px 18px rgba(43, 42, 39, 0.12);
}

.kidotel-btn-signin:active {
  transform: translateY(0);
  opacity: 0.9;
}

.kidotel-btn-login {
  display: inline-flex;
  min-height: 40px;
  padding: 8px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 0;
  background: #2b2a27;
  color: #fff;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.3;
  white-space: nowrap;
  text-align: center;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
}

.kidotel-btn-login:hover {
  background: #3a3834;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(43, 42, 39, 0.18);
}

.kidotel-btn-login:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(249, 196, 127, 0.45),
    0 6px 18px rgba(43, 42, 39, 0.12);
}

.kidotel-btn-login:active {
  transform: translateY(0);
  opacity: 0.9;
}

.kidotel-logo img {
  filter: brightness(0) saturate(100%) invert(14%) sepia(0%) saturate(4%) hue-rotate(358deg) brightness(98%) contrast(87%);
}

.kidotel-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #f7f6f5;
  color: #2b2a27;
  font-size: 24px;
  line-height: 1;
  place-items: center;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.kidotel-menu-toggle:hover {
  background: #efedea;
}

.kidotel-menu-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 171, 79, 0.42);
}

@media (max-width: 1080px) {
  .kidotel-nav {
    min-height: 80px;
  }

  .kidotel-menu-toggle {
    display: grid;
    margin-left: auto;
  }

  .kidotel-mobile-panel {
    display: none;
  }

  .kidotel-nav-actions {
    display: none;
    gap: 8px;
  }

  .kidotel-listing-link {
    margin-right: 0;
  }

  .kidotel-nav-shell.menu-open .kidotel-mobile-panel {
    display: grid;
    gap: 14px;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: fit-content;
    min-width: min(280px, calc(100vw - 32px));
    padding: 14px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    border: 1px solid rgba(228, 226, 222, 0.9);
    box-shadow: 0 24px 60px rgba(27, 26, 39, 0.16);
    z-index: 50;
    backdrop-filter: blur(12px);
  }

  .kidotel-nav-shell.menu-open .kidotel-nav-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .kidotel-nav-shell.menu-open .kidotel-nav-actions > a {
    width: fit-content;
  }
}

@media (max-width: 720px) {
  .kidotel-nav-shell {
    backdrop-filter: blur(10px);
  }

  .kidotel-nav {
    width: calc(100% - 24px);
    min-height: 68px;
  }

  .kidotel-nav-shell.menu-open .kidotel-mobile-panel {
    min-width: min(260px, calc(100vw - 24px));
  }
}
