/* Light-theme override for archive.php - repaints existing structure only,
   does not touch layout/grid/modal classes JS depends on */

:root {
    --primary: #d5b000; /* was #F4B545 */
}

body {
    background-color: #d8d6cf;
}

.main-area {
    background-color: #d8d6cf !important;
}

.sidebar {
    background-color: #d8d6cf;
}

.mobile-filter-text,
.sidebar h2 {
    color: #d5b000;
}

.filter-list li button {
    color: #333333;
}

.selected-tag {
    background-color: #d5b000;
}

@media only screen and (max-width:991px) {
    .filter-list li button {
        background-color: #d5b000;
        color: #333333;
    }
    .sidebar {
        background-color: #d8d6cf !important;
    }
}

::-webkit-scrollbar-thumb {
    background-color: #d5b000;
}

.btn-main {
    background-color: #d71920 !important;
}

.btn-close {
    background-color: #d5b000;
}

.back-home,
.color-primary {
    color: #d5b000 !important;
}

.send {
    background-color: #d5b000;
    border-color: #d5b000;
}

.send:hover {
    color: #d5b000 !important;
}

.modal-title h2,
.modal-title h4 {
    color: #333333;
}

/* Fix: brand-nav was being hidden behind the old fixed-position sidebar.
   Give brand-nav a fixed height and push sidebar/main-area below it. */
.brand-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: #d8d6cf;
    height: 108px;
}

@media (min-width: 992px) {
    .sidebar {
        top: 108px !important;
        height: calc(100vh - 108px) !important;
    }
    .main-area {
        margin-top: 108px !important;
        height: calc(100vh - 108px) !important;
    }
}
