/* Drawer Overlay */

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle {
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--primary-dark);
}
.nova-drawer {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 1000;
  display: none;
}

.nova-drawer.active {
  display: block;
}

.drawer-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

.drawer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 36px;
  text-align: center;
}

.drawer-menu {
  width: 100%;
  max-width: 420px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.drawer-menu a {
  text-decoration: none;
  color: var(--primary-dark);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Section style */
.drawer-section {
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

.drawer-title {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 12px;
}

/* Close button */
.drawer-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
