/* Sandalia Burger Menu Plugin */
.burger-toggle {
  display: none;
  position: relative;
  top: 0;
  right: 0;
  z-index: 10000;
  background: var(--color-accent);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  transition: all 0.3s ease;
}

.burger-toggle:hover {
  background: rgba(var(--color-accent-rgb), 0.8);
  transform: scale(1.05);
}

.burger-line {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--color-text-light);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-toggle.active .burger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.burger-toggle.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-toggle.active .burger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
  .burger-toggle {
    display: flex;
  }
  
  .header-inner {
    justify-content: flex-start !important;
  }
  
  .site-logo,
  .custom-logo-link {
    margin-right: auto;
  }
  
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--color-section-black);
    padding: 80px 24px 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
  }
  
  .site-nav.active {
    transform: translateX(0);
    box-shadow: -4px 0 12px rgba(0,0,0,0.3);
  }
  
  .site-nav .menu {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  
  .site-nav a {
    font-size: 18px;
    padding: 8px 0;
    display: block;
    color: var(--color-text-light) !important;
    opacity: 1 !important;
    position: relative;
    z-index: 1;
    pointer-events: auto;
  }
  
  .site-nav a:hover {
    color: var(--color-accent) !important;
  }
  
  body.burger-active {
    overflow: hidden;
  }
}

