/* ========================================
   HEADER BASE
======================================== */

.siteHeader {
    position: relative;

    z-index: 15;

    margin: 0;

    background-color: rgba(252,251,249,0.94);

    background-image:
        url('/wp-content/uploads/2024/02/web-masthead.png');

    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;

    background-blend-mode: multiply;

    border-top: 5px solid #1D1814;

    border-bottom:
        1px solid rgba(218,211,196,0.725);

    box-shadow:
        0 2px 16px rgba(0,0,0,0.165);
}

/* ========================================
   TOP NAV
======================================== */

#topNav {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

#topNav .innerWrap {
    display: flex;

    justify-content: space-between;
    align-items: center;

    height: 48px;
    
    padding-top: 0;
    padding-bottom: 0;
}

#topNav .menu li {
    line-height: 1;
}


/* MENU LAYOUT */

#topnavLeft .menu,
#topnavRight .menu {
    display: flex;
    align-items: center;

    list-style: none;

    margin: 0;
    padding: 0;
}

#topnavLeft .menu > li {
    margin-right: 14px;
}


#topnavRight .menu > li {
    margin-left: 14px;
}


/* MENU LINKS */

#topNav .menu a {
	display: inline-flex;
	align-items: center;
	padding: 0;
	margin: 0;
	line-height: 1;
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
	letter-spacing: 0.063rem;
	text-transform: uppercase;
	font-size: 12px;
	color: rgba(55, 41, 37, 0.70);
	text-decoration: none;
}


/* HOVER */

#topNav .menu a:hover {
    color: #c93810;
}


/* RIGHT SIDE */

#topnavRight {
    display: flex;

    align-items: center;

    gap: 15px;
}


/* CART */

a.nqo-cart {
    font-size: 18px;

    color: #56463D;

    text-decoration: none;

    opacity: 0.8;

    transition: all 0.35s ease;
}


/* CART HOVER */

a.nqo-cart:hover {
    opacity: 1;

    color: #C74817;
}

/* ========================================
   BRANDING
======================================== */

.headerBranding {
    padding: 34px 0 30px;
}

.brandingGrid {
    display: flex;

    align-items: center;
    justify-content: space-between;
}

.brandingGrid {
    gap: 20px;
}

.brandingLeft,
.brandingRight {
    flex: 1 1 0;
}

.brandingCenter {
    flex: 0 0 auto;

    padding: 0 60px;

    text-align: center;
}


/* ========================================
   ICON MENU
======================================== */

.brandingLeft {
    display: flex;
    align-items: center;
}

.iconMenu {
    display: flex;
    align-items: center;

    margin: 0;
    padding: 0;

    list-style: none;
}


/* ICON WRAPPER */

.branding-link {
    display: flex;
    position: relative;

    width: 40px;
    height: 40px;

    padding: 2px;

    align-items: center;
    justify-content: center;

    border-radius: 50%;
    border: 1px solid rgba(86,70,61,0.50);

    transition: all 0.35s ease-in-out;
}


/* SPACING */

.iconMenu .branding-link:first-child {
    margin: 0 3px 0 0;
}

.iconMenu .branding-link:not(:first-child) {
    margin: 0 3px;
}


/* INNER ICON */

.branding-link a {
    display: flex;

    width: 34px;
    height: 34px;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: #56463D;
    color: #FAF8F7;

    text-decoration: none;

    font-size: 13px;

    transition: all 0.35s ease-in-out;
}


/* HOVER */

.branding-link:hover a {
    background-color: #C74817;
}


/* ========================================
   CENTER BRANDING
======================================== */

.brandingCenter {
    text-align: center;
}

.siteLogo {
    display: inline-block;
}

.siteLogo img {
    display: block;

    max-width: 100%;
    height: auto;
}


/* ========================================
   ABOUT BLOCK
======================================== */

.aboutBlock {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    color: #56463D;
}


/* TEXT WRAP */

.aboutTextWrap {
    display: flex;
    flex-direction: column;

    padding-top: 4px;
    margin-right: 10px;

    line-height: 1.125;

    font-size: 17px;
    font-weight: 500;

    text-align: center;
}


/* TEXT */

.aboutText {
    max-width: 170px;

    margin-bottom: 6px;
    padding-right: 25px;
}


/* ARROW */

.aboutArrow {
    text-align: right;

    font-size: 18px;
}


/* IMAGE */

.aboutImage {
    flex: 0 0 85px;

    display: flex;
    align-items: center;
}


/* AVATAR LINK */

.aboutAvatarLink {
    display: block;

    width: 85px;
    height: 85px;

    overflow: hidden;

    border-radius: 50%;
    border: 1px solid rgba(86,70,61,0.50);
}


/* IMAGE */

.aboutImage img {
    display: block;

    width: 83px;
    height: 83px;

    object-fit: cover;

    border-radius: 50%;
    border: 2px solid #FFF;
}


/* ========================================
   MAIN NAV
======================================== */

.headerMainNav {
    border-top: 0;
    padding-bottom: 6px;
}

.headerMainNav .innerWrap {
    position: relative;
}


/* MENU CONTAINER */

.mainMenu {
    display: flex;

    position: relative;

    align-items: center;
    justify-content: center;

    height: 50px;

    padding: 8px 0 0;

    margin: 0;

    list-style: none;
}


/* SPACING */

.mainMenu > li + li {
    margin-left: 34px;
}


/* EDGE BALANCING */

.mainMenu > li:first-child {
    position: absolute;
    left: 0;
}

.mainMenu > li:last-child {
    position: absolute;
    right: 0;
}

.mainMenu > li:nth-last-child(2) {
    margin-right: 40px;
}


/* LINKS */

.mainMenu > li > a {
    display: inline-flex;

    align-items: center;

    height: 50px;

    padding: 10px 0 14px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 500;

    letter-spacing: 0.047rem;
    text-transform: uppercase;

    color: #1e1e1e;
}


/* HOVER */

.mainMenu > li:hover > a {
    color: #c93810;
}

/* ========================================
   SUBMENUS
======================================== */

.mainMenu li {
    position: relative;
}


/* HIDE */

.mainMenu li ul {
    position: absolute;

    top: 100%;
    left: -15px;

    min-width: 220px;

    padding: 4px 0;
    margin: 0;

    list-style: none;

    background: #fff;

    border-top: 5px solid #C93810;
    border-radius: 0 0 8px 8px;

    box-shadow: 0 2px 16px rgba(0,0,0,0.18);

    opacity: 0;
    transform: translateY(8px);

    pointer-events: none;

    z-index: 4;

    transition:
        opacity 0.34s ease,
        transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);

    transition-delay: 0.08s;
}


/* SHOW */

.mainMenu li:hover > ul {
    opacity: 1;

    transform: translateY(0);

    pointer-events: auto;
}


/* SUBMENU LINKS */

.mainMenu li ul li a {
    display: block;

    padding: 6px 16px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 500;

    color: #1e1e1e;

    border-top: 1px solid rgba(218,211,196,1);

    transition: all 0.35s ease;
}


/* FIRST ITEM */

.mainMenu li ul li:first-child a {
    border-top: none;
}


/* HOVER */

.mainMenu li ul li a:hover {
    padding-left: 22px;

    background: rgba(0,0,0,0.03);

    color: #111;
}