/* FORCE EXPLICIT LIGHT/DARK MODE COLORS */
body:not(.dark-mode) main.catalogue-main { background-color: #ffffff !important; }
body:not(.dark-mode) .cat-text { color: #000000 !important; }
body:not(.dark-mode) .sidebar-link { color: #52525b !important; }
body:not(.dark-mode) .sidebar-link:hover, body:not(.dark-mode) .sidebar-link.active { color: #000000 !important; }
body:not(.dark-mode) .cat-price { color: #52525b !important; } 
body:not(.dark-mode) .img-bg { background-color: #f4f4f4 !important; }
body:not(.dark-mode) .border-border-color { border-color: #e5e7eb !important; }

body.dark-mode main.catalogue-main { background-color: #050505 !important; }
body.dark-mode .cat-text { color: #ffffff !important; }
body.dark-mode .sidebar-link { color: #a1a1aa !important; }
body.dark-mode .sidebar-link:hover, body.dark-mode .sidebar-link.active { color: #ffffff !important; }
body.dark-mode .cat-price { color: #a1a1aa !important; } 
body.dark-mode .img-bg { background-color: #18181b !important; } 
body.dark-mode .border-border-color { border-color: #27272a !important; }

.catalogue-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #111111;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.catalogue-mobile-panel {
    display: none;
}

.catalogue-mobile-panel.open {
    display: block;
}

@media (min-width: 1024px) {
    .catalogue-mobile-toggle {
        display: none;
    }

    .catalogue-mobile-panel {
        display: block;
    }
}

/* Pagination Styling */
ul.page-numbers { display: flex; gap: 1rem; list-style: none; padding: 0; }
ul.page-numbers li a, ul.page-numbers li span { font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; }
ul.page-numbers li span.current { text-decoration: underline; text-underline-offset: 4px; }

/* FORCE REMOVE WOOCOMMERCE BULLETS */
main.catalogue-main ul, 
main.catalogue-main li { 
    list-style-type: none !important; 
}
