/* Slide-Out Navigation Drawer (Full-Bleed Viewport Coverage) */
.drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary-teal);
  z-index: 350;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 24px 36px 24px;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
  box-sizing: border-box;
}

.drawer-overlay.open {
  transform: translateX(0);
  pointer-events: auto;
}

/* Drawer Header with Close Button */
.drawer-header {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 4px;
}

.drawer-close-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.drawer-close-btn:hover {
  opacity: 0.8;
}

.drawer-close-btn:active {
  opacity: 0.6;
}

.drawer-close-btn svg {
  display: block;
  width: 28px;
  height: 24px;
}

/* Drawer Menu Items List */
.drawer-menu-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 10px 0;
  margin-top: 10px;
}

.drawer-menu-item {
  width: 100%;
  background-color: #FFFFFF;
  color: var(--color-primary-teal);
  border: none;
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  outline: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.drawer-menu-item:hover {
  background-color: #F8FAFC;
}

.drawer-menu-item:active {
  transform: scale(0.98);
  background-color: #F1F5F9;
}

/* Drawer Footer Branding */
.drawer-footer {
  width: 100%;
  text-align: center;
  padding-bottom: 12px;
}

.drawer-branding-title {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
  opacity: 0.95;
}

.drawer-branding-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.2px;
}
