.burger-nav {
  margin-left: auto;
  z-index: 1100;
}

.burger-toggle {
  position: absolute;
  top: 5px;
  right:5px;
  opacity: 50%;
  font-size: 20px;
  z-index: 1120;
  background: linear-gradient(135deg, #ff94c2, #ff6db0);
  color: #1a1a1a;
  border: none;
  border-radius: 14px;
  padding: 10px 16px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.4);
  transition: transform 0.2s ease;

}

.burger-toggle:hover,
.burger-toggle:focus-visible {
  transform: translateY(-1px) scale(1.02);
  outline: none;
}

/*
.burger-panel {
  display: none;             
  position: fixed;
  right: 0;
  top: 0;

  width: 260px;
  height: 100vh;

  background: #fff;
  border-left: 1px solid rgba(0,0,0,0.12);
  padding: 16px;
  padding-bottom: 24px; 

  box-shadow: -8px 0 32px rgba(0,0,0,0.15);

  flex-direction: column;     
  overflow-y: auto;           
}

.burger-panel.open {
  display: flex;
}

.nav-item {
  display: block;
  font-size: 14px;
  margin: 6px 0;
  text-decoration: none;
  color: #111;
}

.nav-item:hover {
  color: #1a73e8;
}

.nav-separator {
  border-top: 1px solid #eee;
  margin: 12px 0;
}

.burger-panel .nav-spacer { 
    flex-grow: 1; 
}

.nav-legal { 
    margin-top: auto; 
    font-size: 12px; 
    color: #999;
    height: 30px;
    text-align: right;
    font-family: sans-serif;
}*/

.burger-panel {
  display: none;
  z-index: 1110;
  position: absolute;
  height: 93vh;
  right: 20px;
  top: 20px;
  width: min(240px, 80vw);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.25);
  backdrop-filter: blur(12px);
  flex-direction: column;
  gap: 6px;
}

.burger-panel.open {
  display: flex;
}

.nav-item {
  display: block;
  font-size: 14px;
  margin: 8px 0;
  font-weight: 500;
  text-decoration: none;
  color: #141414;
  letter-spacing: 0.04em;
}

.nav-item:hover {
  color: #ff5ac4;
}

.burger-panel .nav-spacer { 
    flex-grow: 1; 
}
.nav-legal {
  font-size: 12px;
  font-family: sans-serif;
  color: #c3c1c1;
  letter-spacing: 0.1em;
  text-align: right;
  margin-top: auto;
}

.nav-legal:hover {
    color: #c3c1c1;
}

.nav-separator {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 12px 0;
}
