/* Fouz Header Styles */
.fouz-header-nav {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 150;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 4vw;
    transition: all .4s ease;
    background: transparent;
    box-sizing: border-box;
}

.fouz-header-nav.fouz-header-sticky {
    position: fixed;
}

.fouz-header-nav.fouz-scrolled {
    background: #FAF6EF;
    box-shadow: 0 1px 8px rgba(0,0,0,.06);
    padding: 1rem 4vw;
}

.fouz-nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: .18em;
    color: #1C1008;
    text-decoration: none;
    text-transform: uppercase;
}

.fouz-nav-logo img {
    display: block;
    height: auto;
}

.fouz-nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.fouz-nav-links a {
    font-family: 'Cinzel', serif;
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #1C1008;
    position: relative;
    padding-bottom: 3px;
    text-decoration: none;
    transition: color 0.3s;
}

.fouz-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #C9A96E;
    transition: width .35s ease;
}

.fouz-nav-links a:hover::after {
    width: 100%;
}

.fouz-nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 200;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.fouz-nav-hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #1C1008;
    transition: .3s;
}

/* Open states for hamburger icon */
.fouz-nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
}

.fouz-nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.fouz-nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -5px);
}

/* Responsive navigation drawer */
@media(max-width: 768px) {
    .fouz-nav-hamburger {
        display: flex;
    }
    .fouz-nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70vw;
        height: 100vh;
        background: #FAF6EF;
        flex-direction: column;
        padding: 6rem 2rem;
        gap: 2rem;
        transition: right .4s ease;
        box-shadow: -4px 0 20px rgba(0,0,0,.1);
    }
    .fouz-nav-links.open {
        right: 0;
    }
}

/* Action Icons (Account, Wishlist, Cart) Styling */
.fouz-header-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-left: auto;
    margin-right: 1.5rem;
    z-index: 160;
}

.fouz-header-action {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fouz-header-action a {
    color: #1C1008;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
    text-decoration: none;
}

.fouz-header-action a:hover {
    color: #C9A96E;
}

.fouz-header-action svg,
.fouz-header-action i {
    display: block;
    width: 18px;
    height: 18px;
    font-size: 18px;
    transition: stroke 0.3s, fill 0.3s, color 0.3s;
}

@media(min-width: 769px) {
    .fouz-nav-links {
        margin-left: auto;
    }
    .fouz-header-actions {
        margin-left: 2.5rem;
        margin-right: 0;
    }
}

