.custom-header-wrapper-26318 {
    width: 100%;
    font-family: sans-serif; /* Adjust to match theme font */
}

.custom-top-bar-26318 {
    background-color: #471e16;
    color: #ffffff;
    padding: 10px 0;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: center;
}

.marquee-track-26318 {
    display: inline-flex;
    animation: scroll-marquee-26318 20s linear infinite;
}

@keyframes scroll-marquee-26318 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.custom-main-header-26318 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #fcf9f8; /* Soft off-white background from screenshot */
    border-bottom: 1px solid #eaeaea;
}

.custom-nav-left-26318,
.custom-nav-right-26318 {
    display: flex;
    gap: 40px;
    flex: 1;
}

.custom-nav-left-26318 {
    justify-content: flex-end;
    padding-right: 60px;
}

.custom-nav-right-26318 {
    justify-content: flex-start;
    padding-left: 60px;
}

.custom-nav-left-26318 a,
.custom-nav-right-26318 a {
    color: #5c1616;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.custom-nav-left-26318 a:hover,
.custom-nav-right-26318 a:hover {
    color: #000000;
}

.custom-logo-container-26318 {
    flex: 0 0 auto;
    text-align: center;
}

.custom-logo-container-26318 img {
    max-height: 80px;
    width: auto;
}

@media (max-width: 992px) {
    .custom-main-header-26318 {
        flex-direction: column;
        padding: 20px;
    }
    
    .custom-nav-left-26318,
    .custom-nav-right-26318 {
        flex-direction: column;
        align-items: center;
        padding: 0;
        gap: 15px;
        margin: 15px 0;
    }
}