/* Mobile Menu Styles */

.mobile-menu-hamburger {
  position: relative;
  z-index: 50;
  transition: color 0.3s ease;
}

.mobile-menu-hamburger:hover {
  color: #16a34a;
}

/* Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0);
  opacity: 0;
  pointer-events: none;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  z-index: 40;
}

.mobile-menu-overlay-open {
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 1;
  pointer-events: auto;
}

/* Drawer */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80vw;
  max-width: 400px;
  background-color: white;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.25s ease-out;
  z-index: 45;
  overflow-y: auto;
}

.mobile-menu-drawer-open {
  transform: translateX(0);
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 0.5rem;
}

.mobile-menu-close {
  align-self: flex-end;
  padding: 0.5rem;
  color: #6b7280;
  transition: color 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
}

.mobile-menu-close:hover {
  color: #16a34a;
}

/* Navigation links */
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 1rem;
}

.mobile-menu-link {
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #374151;
  font-size: 1rem;
  border: none;
  background: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 0.375rem;
  text-align: left;
  width: 100%;
}

.mobile-menu-link:hover {
  color: #16a34a;
  background-color: #f0fdf4;
}

/* Auth section */
.mobile-menu-auth {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.mobile-menu-user-name {
  padding: 0.75rem 1rem;
  color: #16a34a;
  font-weight: 600;
  font-size: 0.875rem;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 0.5rem;
}

.mobile-menu-signin-btn {
  background-color: #16a34a;
  color: white !important;
  font-weight: 500;
}

.mobile-menu-signin-btn:hover {
  background-color: #15803d;
  color: white;
}

.mobile-menu-logout-btn {
  color: #dc2626 !important;
}

.mobile-menu-logout-btn:hover {
  background-color: #fee2e2;
}

/* Cart link */
.mobile-menu-cart-link {
  margin-top: 1rem;
  font-weight: 600;
  color: #16a34a !important;
}

.mobile-menu-cart-link:hover {
  background-color: #f0fdf4;
}

/* Mobile menu is hidden on md and up */
@media (min-width: 768px) {
  .mobile-menu-hamburger {
    display: none;
  }

  .mobile-menu-drawer,
  .mobile-menu-overlay {
    display: none;
  }
}
