   /* ============================================
           🔥 ULTRA PREMIUM BOTTOM NAVIGATION BAR
           The most stunning bottom bar ever created!
           ============================================ */
.bottom-nav-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: rgba(255, 255, 255, 0.95);
 
   
    border-top: 1px solid #e5e5e5; /* Simple clean border */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05); /* Subtle shadow only */
}
        .bottom-nav {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 5px 12px;
            position: relative;
        }

        /* ============================================
           💎 PREMIUM NAV ITEM
           ============================================ */
        .bottom-nav-item {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            cursor: pointer;
            text-decoration: none;
            padding: 4px 8px;
            border-radius: 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        /* Ripple effect on click */
        .bottom-nav-item::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle, rgba(255, 107, 107, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            transform: scale(0);
            opacity: 0;
            transition: all 0.5s ease;
        }

        .bottom-nav-item.ripple::before {
            animation: ripple 0.6s ease-out;
        }

        /* Icon container with gradient background */
        .nav-icon-wrapper {
            position: relative;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        /* Shimmer effect inside icon */
        .nav-icon-wrapper::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
            transform: rotate(45deg);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .bottom-nav-item:hover .nav-icon-wrapper::before {
            opacity: 1;
            animation: shine 1.5s ease infinite;
        }

        .nav-icon-wrapper svg {
            width: 18px;
            height: 18px;
            color: #666;
            transition: all 0.3s ease;
            z-index: 1;
        }

        /* Label */
        .nav-label {
            font-size: 11px;
            font-weight: 600;
            color: #666;
            letter-spacing: 0.3px;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        /* Active indicator dot */
        .nav-indicator {
            position: absolute;
            top: 6px;
            right: 8px;
            width: 6px;
            height: 6px;
            background: linear-gradient(135deg, #ff6b6b, #ffa500);
            border-radius: 50%;
            opacity: 0;
            transform: scale(0);
            transition: all 0.3s ease;
            box-shadow: 0 0 10px rgba(255, 107, 107, 0.6);
        }

        /* ============================================
           ✨ ACTIVE STATE - The Magic!
           ============================================ */
        .bottom-nav-item.active {
            transform: translateY(0px);
        }

        .bottom-nav-item.active .nav-icon-wrapper {
            background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
            transform: scale(1.1);
        }

        .bottom-nav-item.active .nav-icon-wrapper svg {
            color: white;
            transform: scale(1.15);
        }

        .bottom-nav-item.active .nav-label {
            color: #ff6b6b;
            font-weight: 700;
            transform: scale(1.05);
        }

        .bottom-nav-item.active .nav-indicator {
            opacity: 1;
            transform: scale(1);
            animation: float 2s ease-in-out infinite;
        }

        /* ============================================
           🎯 HOVER STATE - Smooth Interactions
           ============================================ */
        .bottom-nav-item:hover:not(.active) {
            transform: translateY(-4px);
        }

        .bottom-nav-item:hover:not(.active) .nav-icon-wrapper {
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
        }

        .bottom-nav-item:hover:not(.active) .nav-icon-wrapper svg {
            color: #ff6b6b;
            transform: scale(1.1);
        }

        .bottom-nav-item:hover:not(.active) .nav-label {
            color: #ff6b6b;
        }
/* Categories Modal - Premium Dark Mode */
.categories-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.categories-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.categories-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  min-height: 65vh;
  max-height: 95vh;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 24px 24px 0 0;
  z-index: 99999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
}

/* Dark mode */
.dark-mode .categories-modal {
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.5);
}

.categories-modal.active {
  transform: translateY(0);
}

.modal-handle {
  width: 40px;
  height: 4px;
  background: #d1d5db;
  border-radius: 2px;
  margin: 12px auto 0;
}

.dark-mode .modal-handle {
  background: #4b5563;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
}

.dark-mode .modal-header {
  border-bottom-color: #374151;
}

.modal-header h2 {
  font-size: 1.375rem;
  font-weight: 600;
  margin: 0;
  color: #111827;
  letter-spacing: -0.01em;
}

.dark-mode .modal-header h2 {
  color: #f9fafb;
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: #6b7280;
}

.dark-mode .modal-close-btn {
  background: #374151;
  color: #9ca3af;
}

.modal-close-btn:hover {
  background: #e5e7eb;
  transform: rotate(90deg);
}

.dark-mode .modal-close-btn:hover {
  background: #4b5563;
}

.modal-content {
  padding: 24px;
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.categories-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.category-modal-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
  padding: 12px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.dark-mode .category-modal-item {
  background: #1f2937;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.category-modal-item:active {
  transform: scale(0.95);
}

.category-modal-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #f9fafb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.dark-mode .category-modal-image {
  background: #111827;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.category-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-modal-name {
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  color: #374151;
}

.dark-mode .category-modal-name {
  color: #e5e7eb;
}

@media (min-width: 640px) {
  .categories-modal-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
        /* ============================================
           🌙 DARK MODE - Premium Edition
           ============================================ */
        body.dark-mode .bottom-nav-container {
            background: rgba(26, 26, 26, 0.95);
            border-top: 1px solid rgba(255, 107, 107, 0.3);
            box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.4);
        }

        body.dark-mode .nav-icon-wrapper {
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.15) 0%, rgba(255, 165, 0, 0.15) 100%);
        }

        body.dark-mode .nav-icon-wrapper svg {
            color: #b0b0b0;
        }

        body.dark-mode .nav-label {
            color: #b0b0b0;
        }

        body.dark-mode .bottom-nav-item:hover:not(.active) .nav-icon-wrapper {
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.25) 0%, rgba(255, 165, 0, 0.25) 100%);
        }

        body.dark-mode .bottom-nav-item:hover:not(.active) .nav-icon-wrapper svg {
            color: #ffa500;
        }

        body.dark-mode .bottom-nav-item:hover:not(.active) .nav-label {
            color: #ffa500;
        }

        body.dark-mode .bottom-nav-item.active .nav-label {
            color: #ffa500;
        }

        /* ============================================
           📱 RESPONSIVE - Mobile Optimization
           ============================================ */
      @media (max-width: 480px) {
    .bottom-nav {
        padding: 4px 7px;
    }

    .bottom-nav-item {
        padding: 4px 6px;
    }

    .nav-icon-wrapper {
        width: 34px;
        height: 34px;
    }

    .nav-icon-wrapper svg {
        width: 20px;
        height: 20px;
    }


            .nav-label {
                font-size: 10px;
            }

            .bottom-nav-item.active {
                transform: translateY(0px);
            }
        }

        @media (max-width: 360px) {
            .nav-icon-wrapper {
                width: 34px;
                height: 34px;
            }

            .nav-icon-wrapper svg {
                width: 20px;
                height: 20px;
            }

            .nav-label {
                font-size: 9px;
            }
        }

        
         /* ============================================
   🖥️ HIDE BOTTOM NAV ON DESKTOP (Above 930px)
   ============================================ */
@media (min-width: 931px) {
    .bottom-nav-container {
        display: none !important;
    }
    
    /* Remove bottom padding from body on desktop */
    body {
        padding-bottom: 0 !important;
    }
}

/* Show only on mobile/tablet (below 930px) */
@media (max-width: 930px) {
    .bottom-nav-container {
        display: block;
    }
    
  
}
.categories-modal .modal-header {
  background: #ffffff !important;
  border-bottom: 1px solid #f0f0f0 !important;
}

body.dark-mode .categories-modal .modal-header {
  background: #1f1f1f !important;
  border-bottom-color: #3a3a3a !important;
}
.categories-modal .modal-close-btn {
  background: #f3f4f6 !important;
  color: #6b7280 !important;
  border: 1px solid #e5e7eb !important;
}

.categories-modal .modal-close-btn svg {
  stroke: #6b7280 !important;
  color: #6b7280 !important;
}

.categories-modal .modal-close-btn:hover {
  background: #e5e7eb !important;
  color: #374151 !important;
}

.categories-modal .modal-close-btn:hover svg {
  stroke: #374151 !important;
}

body.dark-mode .categories-modal .modal-close-btn {
  background: #374151 !important;
  color: #9ca3af !important;
  border-color: #4b5563 !important;
}

body.dark-mode .categories-modal .modal-close-btn svg {
  stroke: #9ca3af !important;
}

body.dark-mode .categories-modal .modal-close-btn:hover {
  background: #4b5563 !important;
  color: #f9fafb !important;
}
/* ============================================================
   BOTTOM NAV — Navy × Yellow palette patch
   ============================================================ */

/* === Nav container — subtle navy top border === */
.bottom-nav-container {
    background: rgba(255,255,255,0.97) !important;
    border-top: 1px solid #e8e8e8 !important;
    box-shadow: 0 -2px 12px rgba(20,30,48,0.06) !important;
}

body.dark-mode .bottom-nav-container {
    background: rgba(20,20,20,0.97) !important;
    border-top: 1px solid rgba(248,216,0,0.15) !important;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.4) !important;
}

/* === Icon wrapper default — navy tint === */
.nav-icon-wrapper {
    background: rgba(20,30,48,0.06) !important;
}

body.dark-mode .nav-icon-wrapper {
    background: rgba(248,216,0,0.08) !important;
}

.nav-icon-wrapper svg {
    color: #666 !important;
}

body.dark-mode .nav-icon-wrapper svg {
    color: #888 !important;
}

/* === Labels === */
.nav-label {
    color: #666 !important;
    font-family: 'DM Sans', system-ui, sans-serif !important;
}

body.dark-mode .nav-label {
    color: #888 !important;
}

/* === Ripple — navy instead of red === */
.bottom-nav-item::before {
    background: radial-gradient(circle, rgba(20,30,48,0.2) 0%, transparent 70%) !important;
}

/* === Active state — navy icon, gold label === */
.bottom-nav-item.active .nav-icon-wrapper {
    background: linear-gradient(135deg, #141E30, #243B55) !important;
    box-shadow: 0 6px 18px rgba(20,30,48,0.28) !important;
}

.bottom-nav-item.active .nav-icon-wrapper svg {
    color: #F8D800 !important;
}

.bottom-nav-item.active .nav-label {
    color: #141E30 !important;
    font-weight: 700 !important;
}

body.dark-mode .bottom-nav-item.active .nav-icon-wrapper {
    background: linear-gradient(135deg, #F8D800, #FFB300) !important;
    box-shadow: 0 6px 18px rgba(248,216,0,0.25) !important;
}

body.dark-mode .bottom-nav-item.active .nav-icon-wrapper svg {
    color: #141E30 !important;
}

body.dark-mode .bottom-nav-item.active .nav-label {
    color: #F8D800 !important;
}

/* === Active indicator dot — gold === */
.nav-indicator {
    background: linear-gradient(135deg, #141E30, #F8D800) !important;
    box-shadow: 0 0 8px rgba(20,30,48,0.4) !important;
}

body.dark-mode .nav-indicator {
    background: linear-gradient(135deg, #F8D800, #FFB300) !important;
    box-shadow: 0 0 8px rgba(248,216,0,0.4) !important;
}

/* === Hover state — navy instead of red === */
.bottom-nav-item:hover:not(.active) .nav-icon-wrapper {
    background: rgba(20,30,48,0.10) !important;
    box-shadow: 0 4px 12px rgba(20,30,48,0.10) !important;
}

.bottom-nav-item:hover:not(.active) .nav-icon-wrapper svg {
    color: #141E30 !important;
}

.bottom-nav-item:hover:not(.active) .nav-label {
    color: #141E30 !important;
}

body.dark-mode .bottom-nav-item:hover:not(.active) .nav-icon-wrapper {
    background: rgba(248,216,0,0.12) !important;
    box-shadow: 0 4px 12px rgba(248,216,0,0.10) !important;
}

body.dark-mode .bottom-nav-item:hover:not(.active) .nav-icon-wrapper svg {
    color: #F8D800 !important;
}

body.dark-mode .bottom-nav-item:hover:not(.active) .nav-label {
    color: #F8D800 !important;
}
/* ============================================
   BOTTOM NAV — follows product card tokens
   ============================================ */

/* ── Container ── */
.bottom-nav-container {
  background: var(--card) !important;
  border-top: 1px solid var(--line-md) !important;
  box-shadow: 0 -2px 12px var(--s-card) !important;
}

body.dark-mode .bottom-nav-container {
  background: var(--card) !important;
  border-top-color: var(--gold-glow) !important;
}

/* ── Icon wrapper default ── */
.nav-icon-wrapper {
  background: var(--surface) !important;
}

body.dark-mode .nav-icon-wrapper {
  background: var(--surface) !important;
}

.nav-icon-wrapper svg {
  color: var(--text-2) !important;
}

/* ── Labels ── */
.nav-label {
  color: var(--text-2) !important;
  font-family: var(--font-ui) !important;
}

/* ── Ripple ── */
.bottom-nav-item::before {
  background: radial-gradient(
    circle, var(--gold-pale) 0%, transparent 70%) !important;
}

/* ── Active state ── */
.bottom-nav-item.active .nav-icon-wrapper {
  background: linear-gradient(
    135deg, var(--gold), var(--gold-2)) !important;
  box-shadow: 0 6px 18px var(--gold-glow) !important;
}

.bottom-nav-item.active .nav-icon-wrapper svg {
  color: #fff !important;
}

.bottom-nav-item.active .nav-label {
  color: var(--gold-deep) !important;
  font-weight: 700 !important;
}

body.dark-mode .bottom-nav-item.active .nav-icon-wrapper {
  background: linear-gradient(
    135deg, var(--gold), var(--gold-2)) !important;
  box-shadow: 0 6px 18px var(--gold-glow) !important;
}

body.dark-mode .bottom-nav-item.active .nav-icon-wrapper svg {
  color: var(--bg) !important;
}

body.dark-mode .bottom-nav-item.active .nav-label {
  color: var(--gold-2) !important;
}

/* ── Active indicator dot ── */
.nav-indicator {
  background: linear-gradient(
    135deg, var(--gold), var(--gold-2)) !important;
  box-shadow: 0 0 8px var(--gold-glow) !important;
}

/* ── Hover state ── */
.bottom-nav-item:hover:not(.active) .nav-icon-wrapper {
  background: var(--gold-pale) !important;
  box-shadow: 0 4px 12px var(--gold-glow) !important;
}

.bottom-nav-item:hover:not(.active) .nav-icon-wrapper svg {
  color: var(--gold-deep) !important;
}

.bottom-nav-item:hover:not(.active) .nav-label {
  color: var(--gold-deep) !important;
}

body.dark-mode .bottom-nav-item:hover:not(.active) .nav-icon-wrapper {
  background: var(--gold-pale) !important;
}

body.dark-mode .bottom-nav-item:hover:not(.active) .nav-icon-wrapper svg {
  color: var(--gold-2) !important;
}

body.dark-mode .bottom-nav-item:hover:not(.active) .nav-label {
  color: var(--gold-2) !important;
}

/* ── Categories modal ── */
.categories-modal {
  background: var(--card) !important;
  box-shadow: 0 -4px 32px var(--s-card) !important;
}

body.dark-mode .categories-modal {
  background: var(--card) !important;
}

.categories-modal .modal-header {
  background: var(--card) !important;
  border-bottom: 1px solid var(--line-md) !important;
}

body.dark-mode .categories-modal .modal-header {
  background: var(--card) !important;
  border-bottom-color: var(--line-md) !important;
}

.categories-modal .modal-header h2 {
  font-family: var(--font-display) !important;
  font-style: italic !important;
  color: var(--text) !important;
}

.categories-modal .modal-close-btn {
  background: var(--surface) !important;
  border: 1px solid var(--line-md) !important;
  color: var(--text-2) !important;
}

.categories-modal .modal-close-btn:hover {
  background: var(--gold-pale) !important;
  border-color: var(--gold) !important;
  color: var(--gold-deep) !important;
}

.categories-modal .modal-close-btn svg {
  stroke: currentColor !important;
}

/* ── Modal handle ── */
.modal-handle {
  background: var(--line-str) !important;
}

/* ── Category modal items ── */
.category-modal-item {
  background: var(--surface) !important;
  box-shadow: none !important;
  border: 1px solid var(--line) !important;
  transition: border-color var(--ease), 
              transform var(--ease) !important;
}

.category-modal-item:hover {
  border-color: var(--gold-glow) !important;
}

.category-modal-item:active {
  transform: scale(0.96) !important;
}

.category-modal-name {
  font-family: var(--font-ui) !important;
  color: var(--text-2) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
}

.category-modal-image {
  background: var(--surface-2) !important;
  border-radius: 10px !important;
}

/* ── Modal scrollbar ── */
.categories-modal .modal-content::-webkit-scrollbar-thumb {
  background: var(--gold-pale) !important;
}


 /* ============================================
   🔝 BACK TO TOP BUTTON - WITH MODAL HIDE
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
}

/* Position above bottom nav on mobile */
@media (max-width: 930px) {
    .back-to-top {
        bottom: 80px !important; /* Above 75px bottom bar + some gap */
        z-index: 998 !important; /* Below bottom nav (9999) */
    }
}

/* ============================================
   🚫 HIDE WHEN MOBILE MODALS ARE ACTIVE
   ============================================ */

/* Hide when modal overlay is active */
.modal-overlay.active ~ .back-to-top,
body.modal-open .back-to-top {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Alternative: Hide when ANY modal is open */
.bottom-modal.active ~ .back-to-top {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* If back-to-top is inside body, use this approach */
body.modal-open .back-to-top {
    display: none !important;
}

/* ── Back to top button ── */
.back-to-top {
  background: linear-gradient(135deg, var(--gold), var(--gold-2)) !important;
  box-shadow: 0 8px 20px var(--gold-glow) !important;
}

.back-to-top:hover {
  box-shadow: 0 12px 28px var(--gold-glow) !important;
}

/* ── WhatsApp Float Button ── */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 14px rgba(37,211,102,0.35);
    will-change: transform;
    -webkit-tap-highlight-color: transparent;
    contain: layout style;
}

.whatsapp-float svg {
    width: 26px;
    height: 26px;
    fill: #fff;
    flex-shrink: 0;
    display: block;
    pointer-events: none;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 22px rgba(37,211,102,0.45);
}

.whatsapp-float:active {
    transform: scale(0.94);
    box-shadow: 0 3px 10px rgba(37,211,102,0.3);
}

/* Match back-to-top show logic */
@media (max-width: 930px) {
    .whatsapp-float {
        bottom: 80px;
        z-index: 998;
    }
}

body.dark-mode .nav-icon-wrapper svg {
    color: var(--text) !important;
}

body.dark-mode .nav-label {
    color: var(--text) !important;
}
#bottomDarkToggle {
    background: none !important;
    border: none !important;
    outline: none !important;
    -webkit-appearance: none !important;
    cursor: pointer !important;
    font-family: inherit !important;
    opacity: 1 !important;
    transform: none !important;
    box-shadow: none !important;
    transition: none !important;
}

#bottomDarkToggle::before,
#bottomDarkToggle::after {
    display: none !important;
}

#bottomDarkToggle .nav-icon-wrapper {
    background: var(--surface) !important;
    box-shadow: none !important;
    transform: none !important;
}

#bottomDarkToggle .nav-icon-wrapper svg {
    color: var(--text-2) !important;
}

#bottomDarkToggle .nav-label {
    color: var(--text-2) !important;
    font-weight: 600 !important;
}

body.dark-mode #bottomDarkToggle .nav-icon-wrapper {
    background: var(--surface) !important;
}

body.dark-mode #bottomDarkToggle .nav-icon-wrapper svg {
    color: var(--text) !important;
}

body.dark-mode #bottomDarkToggle .nav-label {
    color: var(--text) !important;
}
