/* ============================================
   MELANCIA STORE — PREMIUM CSS
   Font: Syne (headers) + DM Sans (body)
   Theme: Dark Neon Green Premium
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ============ CSS VARIABLES ============ */
:root {
  --ms-dark: #000000;
  --ms-dark2: #0d0d0d;
  --ms-card: #141414;
  --ms-card2: #1a1a1a;
  --ms-border: rgba(255,255,255,0.06);
  --ms-green: #22c55e;
  --ms-lime: #a3e635;
  --ms-green-glow: rgba(34,197,94,0.3);
  --ms-muted: rgba(255,255,255,0.45);
  --ms-muted2: rgba(255,255,255,0.25);
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-2xl: 28px;
  --radius-3xl: 32px;
}

/* ============ TAILWIND CONFIG ============ */
/* (Applied via tailwind script config in HTML) */

/* ============ BASE ============ */
*, *::before, *::after { box-sizing: border-box; }

html { font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  background: var(--ms-dark);
  color: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior: none;
}

/* ============ FONT WEIGHTS ============ */
.font-display { font-family: 'Plus Jakarta Sans', sans-serif; }
.font-syne { font-family: 'Plus Jakarta Sans', sans-serif; }
.font-dm { font-family: 'Nunito', sans-serif; }
.font-300 { font-weight: 300; }
.font-400 { font-weight: 400; }
.font-500 { font-weight: 500; }
.font-600 { font-weight: 600; }
.font-700 { font-weight: 700; }
.font-800 { font-weight: 800; }

/* ============ COLOR UTILITIES ============ */
.bg-ms-dark { background-color: var(--ms-dark); }
.bg-ms-card { background-color: var(--ms-card); }
.text-ms-green { color: var(--ms-green); }
.text-ms-lime { color: var(--ms-lime); }
.text-ms-muted { color: var(--ms-muted); }
.border-ms-green { border-color: var(--ms-green); }

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 0; height: 0; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* ============ SAFE AREA ============ */
.pt-safe-top { padding-top: env(safe-area-inset-top, 0); }
.pb-safe { padding-bottom: env(safe-area-inset-bottom, 0); }

/* ============ SPLASH SCREEN ============ */
#splash-screen {
  background: radial-gradient(ellipse at center, #0f1f14 0%, #0a0a0a 70%);
}
.splash-pulse {
  animation: splashPulse 2s ease-in-out infinite;
}
@keyframes splashPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(34,197,94,0.4), 0 0 60px rgba(34,197,94,0.2); }
  50% { box-shadow: 0 0 50px rgba(34,197,94,0.6), 0 0 100px rgba(34,197,94,0.3); }
}
.splash-content { animation: splashFadeIn 0.8s ease-out forwards; }
.splash-text { animation: splashSlideUp 1s ease-out 0.3s both; }
@keyframes splashFadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes splashSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ AUTH SCREENS ============ */
.auth-bg-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: radial-gradient(ellipse at 50% -10%, rgba(34,197,94,0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* ============ INPUTS ============ */
.input-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ms-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon {
  position: absolute;
  left: 16px;
  width: 18px;
  height: 18px;
  color: var(--ms-muted);
  pointer-events: none;
}
.ms-input {
  width: 100%;
  background: var(--ms-card);
  border: 1.5px solid var(--ms-border);
  border-radius: 16px;
  padding: 14px 16px 14px 46px;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.ms-input:focus {
  border-color: var(--ms-green);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.12);
}
.ms-input::placeholder { color: var(--ms-muted2); }

/* ============ BUTTONS ============ */
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #000;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 24px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(34,197,94,0.25);
}
.btn-primary:hover, .btn-primary:active {
  background: linear-gradient(135deg, #16a34a, #15803d);
  box-shadow: 0 4px 30px rgba(34,197,94,0.4);
  transform: translateY(-1px);
}
.btn-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid var(--ms-border);
  color: var(--ms-muted);
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 24px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.15);
  color: #fff;
}
.btn-sm-green {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ms-green);
  color: #000;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 8px 16px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-sm-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.2s;
}

/* ============ SECTION TITLES ============ */
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}
.see-all {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--ms-green);
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
}

/* ============ CAROUSEL ============ */
.carousel-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.3);
  transition: all 0.3s;
}
.carousel-dot.active {
  width: 20px;
  background: var(--ms-green);
}

/* ============ CATEGORY CHIPS ============ */
.cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 50px;
  background: var(--ms-card);
  border: 1.5px solid var(--ms-border);
  color: var(--ms-muted);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.cat-chip.active, .cat-chip:hover {
  background: var(--ms-green);
  border-color: var(--ms-green);
  color: #000;
  box-shadow: 0 0 16px rgba(34,197,94,0.35);
}

/* ============ CATEGORY ICON BUTTONS ============ */
.cat-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}
.cat-icon-btn:active { transform: scale(0.93); }
.cat-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255,255,255,0.06);
  transition: all 0.2s;
}
.cat-icon-btn:hover .cat-icon-circle {
  border-color: var(--ms-green);
  box-shadow: 0 0 20px rgba(34,197,94,0.2);
}
.cat-icon-btn span {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ms-muted);
  text-align: center;
}

/* ============ PRODUCT CARDS ============ */
.product-card {
  background: var(--ms-card);
  border: 1.5px solid var(--ms-border);
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
}
.product-card:hover, .product-card:active {
  border-color: rgba(34,197,94,0.3);
  box-shadow: 0 8px 30px rgba(34,197,94,0.12);
  transform: translateY(-2px);
}
.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--ms-card2);
}
.product-card-body { padding: 12px; }
.product-card-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.product-card-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ms-green);
}
.product-card-old-price {
  font-size: 0.7rem;
  color: var(--ms-muted2);
  text-decoration: line-through;
}
.product-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.add-btn {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--ms-green);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.add-btn:hover {
  background: #16a34a;
  box-shadow: 0 0 12px rgba(34,197,94,0.4);
}
.fav-btn {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: transparent;
  color: var(--ms-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--ms-border);
  cursor: pointer;
  transition: all 0.2s;
}
.fav-btn.active, .fav-btn:hover {
  color: #f87171;
  border-color: rgba(248,113,113,0.3);
  background: rgba(248,113,113,0.1);
}
.badge-sale {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 8px;
  z-index: 5;
}
.badge-new {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, var(--ms-green), #16a34a);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 8px;
  z-index: 5;
}
.rating-badge {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fbbf24;
}

/* ============ HORIZONTAL SCROLL CARDS ============ */
.product-card-h {
  min-width: 150px;
  max-width: 150px;
  background: var(--ms-card);
  border: 1.5px solid var(--ms-border);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
}
.product-card-h:hover {
  border-color: rgba(34,197,94,0.3);
  box-shadow: 0 6px 20px rgba(34,197,94,0.1);
}
.product-card-h-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  background: var(--ms-card2);
}
.product-card-h-body {
  padding: 10px;
}

/* ============ BADGES ============ */
.badge-promo {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-cat {
  display: inline-block;
  background: rgba(34,197,94,0.15);
  color: var(--ms-green);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 8px;
  border: 1px solid rgba(34,197,94,0.2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============ BOTTOM NAV ============ */
.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 14px;
  border-radius: 20px;
  background: transparent;
  border: none;
  color: var(--ms-muted);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.6rem;
  font-weight: 600;
  position: relative;
}
.nav-item span { font-family: 'Nunito', sans-serif; }
.nav-item.active {
  background: rgba(34,197,94,0.15);
  color: var(--ms-green);
}
.nav-item.active svg {
  filter: drop-shadow(0 0 8px rgba(34,197,94,0.6));
}

/* ============ PROFILE MENU ============ */
.profile-menu-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--ms-card);
  border: 1.5px solid var(--ms-border);
  border-radius: 18px;
  padding: 14px 16px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
}
.profile-menu-item:hover {
  border-color: rgba(34,197,94,0.2);
  background: rgba(34,197,94,0.05);
}

/* ============ CHECKOUT ============ */
.delivery-option { display: block; cursor: pointer; }
.option-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ms-card);
  border: 1.5px solid var(--ms-border);
  border-radius: 16px;
  padding: 14px;
  transition: all 0.2s;
}
.delivery-option input:checked ~ .option-box {
  border-color: var(--ms-green);
  background: rgba(34,197,94,0.05);
}
.check-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--ms-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: all 0.2s;
  shrink: 0;
}
.delivery-option input:checked ~ .option-box .check-circle {
  background: var(--ms-green);
  border-color: var(--ms-green);
  color: #000;
}
.payment-select {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--ms-card);
  border: 1.5px solid var(--ms-border);
  border-radius: 14px;
  padding: 12px;
  color: var(--ms-muted);
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
}
.payment-select.active {
  border-color: var(--ms-green);
  color: var(--ms-green);
  background: rgba(34,197,94,0.08);
}

/* ============ FEATURE CHIPS ============ */
.feature-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--ms-card);
  border: 1.5px solid var(--ms-border);
  border-radius: 14px;
  padding: 12px 8px;
  font-size: 0.7rem;
  color: var(--ms-muted);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
}

/* ============ PAYMENT METHODS ============ */
.payment-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--ms-card);
  border: 1.5px solid var(--ms-border);
  border-radius: 14px;
  padding: 12px 8px;
  font-size: 0.7rem;
  color: var(--ms-muted);
  font-weight: 600;
  text-align: center;
}

/* ============ ORDERS ============ */
.order-card {
  background: var(--ms-card);
  border: 1.5px solid var(--ms-border);
  border-radius: 20px;
  padding: 16px;
}
.status-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 8px;
}
.status-badge.processing {
  background: rgba(251,191,36,0.15);
  color: #fbbf24;
  border: 1px solid rgba(251,191,36,0.2);
}
.status-badge.delivered {
  background: rgba(34,197,94,0.15);
  color: var(--ms-green);
  border: 1px solid rgba(34,197,94,0.2);
}
.status-badge.cancelled {
  background: rgba(239,68,68,0.15);
  color: #ef4444;
  border: 1px solid rgba(239,68,68,0.2);
}

/* ============ NOTIFICATIONS ============ */
.notif-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--ms-card);
  border: 1.5px solid var(--ms-border);
  border-radius: 18px;
  padding: 14px;
}
.notif-item.unread {
  border-color: rgba(34,197,94,0.15);
  background: rgba(34,197,94,0.03);
}
.notif-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  shrink: 0;
  flex-shrink: 0;
}

/* ============ ABOUT ============ */
.about-contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid;
  border-radius: 18px;
  padding: 16px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.about-contact-btn:hover { opacity: 0.8; }

/* ============ SEARCH ============ */
.search-tag {
  background: var(--ms-card);
  border: 1.5px solid var(--ms-border);
  border-radius: 50px;
  padding: 7px 16px;
  color: var(--ms-muted);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.search-tag:hover {
  border-color: var(--ms-green);
  color: var(--ms-green);
}

/* ============ CART ITEMS ============ */
.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ms-card);
  border: 1.5px solid var(--ms-border);
  border-radius: 20px;
  padding: 12px;
}
.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--ms-card2);
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ms-dark);
  border-radius: 12px;
  padding: 4px 8px;
}
.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--ms-card2);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.qty-btn:hover { background: var(--ms-green); color: #000; }

/* ============ CATEGORIES PAGE CARDS ============ */
.cat-page-card {
  background: var(--ms-card);
  border: 1.5px solid var(--ms-border);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.cat-page-card:hover {
  border-color: rgba(34,197,94,0.3);
  box-shadow: 0 6px 24px rgba(34,197,94,0.1);
}

/* ============ SHADOW GLOW ============ */
.shadow-glow-green {
  box-shadow: 0 0 40px rgba(34,197,94,0.4), 0 0 80px rgba(34,197,94,0.2);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.animate-fade-in-up {
  animation: fadeInUp 0.4s ease-out forwards;
}
.animate-fade-in {
  animation: fadeIn 0.3s ease-out forwards;
}
@keyframes pulseSubtle {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}
.animate-pulse-subtle { animation: pulseSubtle 2.5s ease-in-out infinite; }

/* Stagger children */
.stagger > * { opacity: 0; animation: fadeInUp 0.4s ease-out forwards; }
.stagger > *:nth-child(1) { animation-delay: 0ms; }
.stagger > *:nth-child(2) { animation-delay: 60ms; }
.stagger > *:nth-child(3) { animation-delay: 120ms; }
.stagger > *:nth-child(4) { animation-delay: 180ms; }
.stagger > *:nth-child(5) { animation-delay: 240ms; }
.stagger > *:nth-child(6) { animation-delay: 300ms; }
.stagger > *:nth-child(7) { animation-delay: 360ms; }
.stagger > *:nth-child(8) { animation-delay: 420ms; }

/* ============ PAGE TRANSITIONS ============ */
.page { animation: fadeIn 0.3s ease-out; }
.screen { animation: fadeIn 0.25s ease-out; }

/* ============ SKELETON LOADING ============ */
.skeleton {
  background: linear-gradient(90deg, var(--ms-card) 25%, var(--ms-card2) 50%, var(--ms-card) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 12px;
}
@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============ TOAST ============ */
#toast { pointer-events: none; }
#toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ============ RIPPLE EFFECT ============ */
.ripple {
  position: relative;
  overflow: hidden;
}
.ripple::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}
.ripple:active::after { opacity: 1; }

/* ============ PRODUCT GLOW EFFECT ============ */
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(circle at 50% 0%, rgba(34,197,94,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* ============ BOTTOM NAV GLOW ============ */
.nav-item.active::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ms-green);
  box-shadow: 0 0 8px var(--ms-green), 0 0 16px var(--ms-green);
}

/* ============ WHATSAPP FAB ============ */
#whatsapp-fab {
  box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4);
}

/* ============ SCROLLBAR FOR DESKTOP ============ */
@media (min-width: 768px) {
  #app { box-shadow: 0 0 60px rgba(34,197,94,0.08); }
}

/* ============ ADMIN SPECIFIC ============ */
.admin-sidebar {
  background: var(--ms-dark);
  border-right: 1px solid var(--ms-border);
  min-height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 100;
}
.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  color: var(--ms-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
  background: transparent;
  width: 100%;
}
.admin-nav-link:hover, .admin-nav-link.active {
  background: rgba(34,197,94,0.1);
  color: var(--ms-green);
}
.admin-card {
  background: var(--ms-card);
  border: 1.5px solid var(--ms-border);
  border-radius: 20px;
  padding: 20px;
}
.stat-card {
  background: var(--ms-card);
  border: 1.5px solid var(--ms-border);
  border-radius: 20px;
  padding: 20px;
  transition: all 0.2s;
}
.stat-card:hover {
  border-color: rgba(34,197,94,0.2);
  box-shadow: 0 4px 20px rgba(34,197,94,0.06);
}
