.navbar-brand {
    z-index: 8;
    color: var(--my-black);
}

#header .top-bg {
    background-color: #333;
    clear: both;
    background-position: center bottom;
    height: 16px;
    border-bottom: 4px solid #ccc;
}

#logo {
    max-width: 90px;
}

#site-title {
    font-family: "Fredericka the Great", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 60px;
    position: absolute;
    left: 130px;
    top: 30px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 1px;
}

@media(max-width: 768px) {
    #logo {
        width: 50px;
        max-height: auto;
    }

    #site-title {
        font-size: 32px;
        left: 75px;
        top: 20px;
    }
}

#menu ul,
li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#menu li {
    display: inline;
    font-family: "Fredericka the Great", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
}

#menu li a {
    color: var(--my-black);
    font-family: "Fredericka the Great", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

#menu li a:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 7px;
    content: "";
    display: block;
    height: 1px;
    left: 50%;
    position: absolute;
    background: black;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

#menu li a:hover:after {
    position: relative;
    width: 100%;
    left: 0px;
    right: 0px;
    top: 0px;
}

/* //// SEARCH FILTER //// */

#searchForm {
    display: inline-block;
    height: 34px;
    background: white;
    cursor: pointer;
    border: 1px solid grey;
    border-radius: 5px;
    padding-left: 5px;
}

#searchForm input {
    outline: 0;
    border: 0;
    font-size: 18px;
}

#searchForm img:hover,
#searchForm img:focus {
    /* https://codepen.io/sosuke/pen/Pjoqqp */
    filter: invert(70%) sepia(0%) saturate(0%) hue-rotate(119deg) brightness(98%) contrast(90%);
}

.cart-badge {
    top: 0.3rem;
    left: 100%;
    background-color: var(--my-gold);
}