header {
    padding: 1rem;
    background-color: var(--blue2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}
#headerText {
    font-size: 2rem;
    color: var(--lightest1);
    font-family: 'Hammersmith One';
    margin-right: 0.5rem;
}
#headerLinks {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
header .navLink {
    font-size: 1.25rem;
    color: var(--lightest3);
}
header img {
    width: 3rem;
    border-radius: 0.25rem;
}
header img::after {
    content: url('/icons/arrow-down.svg');
}
#profile {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
#profileInfo {
    display: flex;
    flex-direction: column;
}
#profileInfo p { margin: 0; }
#signin, #signout { font-weight: bold; }
#signin { color: var(--lightest1); }
#signout { color: var(--blue3); }
#customerCartInfo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
#cartInfo {
    color: var(--blue1);
    font-weight: bold;
}

/* Footer */
footer {
    background-color: var(--darkest4);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 3rem;
}
footer p { margin: 0; }
footer a { color: var(--blue2); }
footer #credit { opacity: 0.5; }

@media (max-width: 675px) {
    footer, header {
        flex-direction: column;
        align-items: start;
        height: 6rem;
    }
    #content { min-height: calc(100vh - 9rem); }
    #customerCartInfo {
        justify-content: space-between;
        width: 100%;
    }
}
