/* =========================
   HEADER – Almas Web Center
========================= */

/* ---------- Topbar ---------- */
#storealmaswebcenter_nav_top {
    background: #212934;
    color: #fff;
    font-size: 14px;
}

.awc-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.awc-topbar-left,
.awc-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.awc-topbar-left a,
.awc-topbar-right a {
    color: #fff;
    text-decoration: none;
}

.awc-topbar-left i {
    margin-right: 6px;
}

/* ---------- Header Wrapper ---------- */
.awc-site-header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 1000;
}

/* ---------- Branding ---------- */
.awc-branding {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.awc-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    color: #59ab6e;
}

.awc-logo img {
    height: 40px;
    width: auto;
}

.awc-brand-name {
    font-size: 14px;
    color: #777;
}

/* ---------- Navigation (Desktop) ---------- */
/* ---------- Navigation Inner ---------- */
.awc-navigation-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.awc-navigation-menu .awc-menu {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.awc-navigation-menu .awc-menu a {
    text-decoration: none;
    color: #212934;
    font-weight: 500;
}

.awc-navigation-menu .awc-menu a:hover {
    color: #59ab6e;
}


@media (max-width: 921px) {

    .awc-header-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 16px;
        border-bottom: 1px solid #eee;
        background: #fff;
    }

    .awc-mobile-toggle {
        background: none;
        border: 0;
        padding: 0;
        cursor: pointer;
    }

    .awc-burger {
        display: block;
        width: 22px;
        height: 2px;
        background: #212934;
        margin: 4px 0;
    }

    .awc-mobile-logo img {
        height: 36px;
        width: auto;
    }

    /* Mobile Menu Panel */
    .awc-mobile-menu {
        display: none;
        background: #fff;
        border-bottom: 1px solid #eee;
    }

    .awc-mobile-menu.is-open {
        display: block;
    }

    .awc-mobile-menu-list {
        list-style: none;
        margin: 0;
        padding: 16px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .awc-mobile-menu-list a {
        text-decoration: none;
        font-size: 18px;
        color: #212934;
    }
}
