/* ===============================
   HEADER GLOBAL
================================ */

.header {
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===============================
   BRAND
================================ */

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.brand-name {
    font-size: 14px;
    font-weight: 800;
    color: #111;
}

/* ===============================
   HAMBURGER (MOBILE)
================================ */

.menu-toggle {
    width: 42px;
    height: 42px;
    border: 2px solid #cfcfcf;
    border-radius: 10px;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: #333;
    border-radius: 2px;
}

/* ===============================
   MOBILE MENU (DEFAULT)
================================ */

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #eaeaea;
    display: none;
    flex-direction: column;
    padding: 16px 20px;
    gap: 14px;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.mobile-menu a.active {
    color: #0fb26a;
}

/* show menu (mobile only) */
.mobile-menu.show {
    display: flex;
}

/* ===============================
   DESKTOP MODE
================================ */

@media (min-width: 992px) {

    /* hide hamburger */
    .menu-toggle {
        display: none;
    }

    /* nav inline */
    .mobile-menu {
        position: static;
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: 32px;
        padding: 0;
        border: none;
        background: transparent;
    }

    .mobile-menu a {
        position: relative;
        padding: 6px 0;
        font-size: 14px;
        font-weight: 700;
    }

    .mobile-menu a:hover {
        color: #0fb26a;
    }

    .mobile-menu a.active::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 100%;
        height: 3px;
        background: #0fb26a;
        border-radius: 3px;
    }
    
}

.mobile-menu a {
    text-decoration: none !important;
}
