/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: #ffffff;
  transition: right 0.3s ease;
  z-index: 1100;
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
  border-left: 1px solid #e5f0e0;
}

.side-menu.open {
  right: 0;
}

/* Header */
.side-menu-header {
  display: flex;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #d4e9c8;
  background: #f4faf0;
}

.side-menu-brand {
  font-size: 1rem;
  font-weight: 700;
  color: #1a5c0a;
}

.close-btn {
  width: 36px;
  height: 36px;
  border: 1.5px solid #b8d9a5;
  border-radius: 6px;
  cursor: pointer;
  background: transparent;
}

/* Menu Links */
.mobile-menu {
  display: flex;
  flex-direction: column;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #2a6e14;
  border-bottom: 1px solid #edf6e8;
  text-decoration: none;
}

.mobile-menu a:hover,
.mobile-menu a.active-link {
  background: #f0faeb;
  padding-left: 30px;
}

/* Overlay */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1090;
}

.menu-overlay.active {
  display: block;
}

body.menu-open {
  overflow: hidden;
}