/* ===============================
   Reduce overall header height
================================ */
.header-middle,
.navigation-megamenu-wrapper {
    padding: 0 !important;
    margin: 0 !important;
}

/* ===============================
   Logo column width (desktop)
================================ */
.logo-header {
    flex: 0 0 35% !important;
    max-width: 35% !important;
    text-align: center;
}

/* ===============================
   Online Battery Wala logo (desktop)
================================ */
.navigation-megamenu-wrapper .custom-header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 110px;
    padding: 10px 0;
}

.navigation-megamenu-wrapper .custom-header-logo img {
    max-height: 100px;
    max-width: 520px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ===============================
   Tablet
================================ */
@media (max-width: 1024px) {
    .logo-header {
        flex: 0 0 32% !important;
        max-width: 32% !important;
    }

    .navigation-megamenu-wrapper .custom-header-logo {
        min-height: 95px;
    }

    .navigation-megamenu-wrapper .custom-header-logo img {
        max-height: 85px;
        max-width: 450px;
    }
}

/* ===============================
   MOBILE — FORCE SHOW + STACK LOGOS
================================ */
@media (max-width: 768px) {

    /* 🔥 Force Online Battery Wala logo to appear */
    .navigation-megamenu-wrapper,
    .custom-header-logo {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        overflow: visible !important;
    }

    /* Stack both logos vertically */
    .logo-header {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
    }

    /* Space between Lithium and Online Battery Wala */
    .logo-header .logo {
        margin-bottom: 10px;
    }

    /* Online Battery Wala logo sizing (mobile) */
    .custom-header-logo {
        padding: 0 !important;
        min-height: auto !important;
    }

    .custom-header-logo img {
        max-height: 55px !important;
        max-width: 280px !important;
        width: auto !important;
        height: auto !important;
    }
}

/* ===============================
   Remove select arrow spacing
================================ */
select::-ms-expand {
    display: none;
}
