nav {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 64px;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo img {
    height: 100px;
    width: 100px;
    object-fit: contain;
}

.nav-logo-text {
    font-family: 'Bangers', cursive;
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--black);
    line-height: 1;
}

.nav-logo-text span {
    color: var(--red);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--black);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--red);
}

.nav-links li.menu-item:last-child {
    background: var(--red) !important;
    padding: 9px 22px;
    border-radius: 2px;
    font-size: 12px !important;
}

.nav-links li.menu-item:last-child a {
    color: white !important;
}

.nav-links li.menu-item:last-child:hover {
    background: var(--red-dark) !important;
}

.nav-links li.menu-item:last-child:hover a {
    color: white !important;
}

.nav-links li.menu-item:not(:last-child) {
    padding: 0 !important;
}

ul.nav-links .menu-item-type-custom:hover {
    background: none;
}