/* Container styling */
.mlk-custom-nav-container {
    width: 280px;
    background: #ffffff;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.12);
    font-family: inherit;
}

.mlk-custom-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mlk-menu-item {
    position: relative;
}

.mlk-menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    color: #222222;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.mlk-menu-item:hover > .mlk-menu-link {
    background-color: #f7f7f7;
    color: #007185; /* Amazon style blue */
}

.mlk-arrow {
    font-size: 18px;
    color: #666666;
}

/* AMAZON STYLE RIGHT FLYOUT SUBMENU */
.mlk-dropdown-menu.level-0 {
    display: none;
    position: absolute;
    top: 0;
    left: 100%; /* Submenu Right side khulega */
    width: 260px;
    min-height: 100%;
    background: #ffffff;
    box-shadow: 4px 0 10px rgba(0,0,0,0.1);
    border-left: 1px solid #e5e5e5;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 9999;
}

/* Desktop Hover Trigger */
@media (min-width: 769px) {
    .mlk-menu-item.has-flyout:hover > .mlk-dropdown-menu.level-0 {
        display: block;
    }
}
/* ==========================================
   AMAZON STYLE SECTION HEADINGS & DIVIDERS
   ========================================== */

/* Section Titles (Jaise 'Trending', 'Shop by Category') */
.mlk-menu-item.section-title > .mlk-menu-link {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    padding: 16px 18px 6px 18px;
    background-color: transparent !important;
    border-bottom: none;
    cursor: default;
    pointer-events: none; /* Mouse click disable */
}

/* Hover disable for section headers */
.mlk-menu-item.section-title:hover > .mlk-menu-link {
    background-color: transparent !important;
    color: #111111;
}

/* Divider Line between sections */
.mlk-menu-item.menu-divider {
    border-bottom: 1px solid #e7e7e7;
    margin: 6px 0;
}
