.mega-menu {
    display: flex;
    gap: 24px;
    width: 100%;
    max-width: 1312px;
    margin: 0px auto;
    background: #F0F0F0;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
    border-radius: 0 0 16px 16px;
    overflow: hidden;
}

/* Left Menu Navigation */
.mega-menu-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    /* padding: 80px 16px 8px 16px; */
    padding: 40px 16px 8px 16px;
    align-items: flex-start;
    align-self: stretch;
}
img.menu-icon.lazyloaded {
    width: 34px;
    border-radius: 50px;
}
.mega-menu-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 999px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    transition: all 0.2s ease;
    text-align: left;
    position: relative;
    width: 100%;
    justify-content: space-between;
}
.mega-menu-menu-item:hover,
.mega-menu-menu-item.active {
    background: #FFF;
    color: #E4002B;
}
.mega-menu-content-header h2{
    color: var(--Text-Heading-Primary, #1F1D21);
    font-family: var(--theme-font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    text-transform: uppercase;
}
.mega-menu-menu-item .left{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}
.mega-menu-menu-item .menu-icon:first-child {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 5.565px 22.261px rgba(0, 0, 0, 0.08));
    border-radius: 999px;
}
.mega-menu-menu-item svg:last-child {
    width: 8px;
    height: 8px;
}



/* Right Content Area */
.mega-menu-menu-content {
    flex: 1;
    position: relative;
    background-color: #FFF;
}

.mega-menu-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    /* padding: 80px 32px 0px 32px; */
    padding: 40px 32px 0px 32px;
}

.mega-menu-content.active {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 68px;
    height: 100%;
    opacity: 1;
}

.mega-menu-content .top {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mega-menu-content .bottom {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: space-between;
    padding: 32px 0px 24px 0px;
    border-top: 1px solid #F0F0F0;
}

.mega-menu-content .bottom .left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mega-menu-content .bottom .left h6{
    /* H6 */
    color: var(--Colour-Text, #0D0D0D);

    /* Desktop/H6 */
    font-family: Ebony;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%; /* 20.8px */
    text-transform: uppercase;
}
.mega-menu-content .bottom .left p{
    color: var(--Colour-Text-Accent, #6D6D6D);
    font-family: var(--theme-font-family);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 15.6px */
    text-transform: none;

}
.mega-menu-content .bottom .right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}
.mega-menu-content .bottom .right a {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    align-self: stretch;
    border-radius: 999px;
    background: var(--e-global-color-primary);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    position: relative;
    width: 100%;
    justify-content: space-between;
    padding: 12px 24px;
    /* Typography */
    color: #FFF;
    font-family: var(--theme-font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    text-transform: none;
}
.mega-menu-content .bottom .right a:hover {
    filter: brightness(0.7);
}
.mega-menu-content-categories {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px 32px;
}

/* Category Link Styling */
.mega-menu-category-link {
    display: flex;
    padding-bottom: 12px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 0px;
    border-bottom: 1px solid #F0F0F0;
    background: var(--Colour-Background, #FFF);
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.2s ease;
    position: relative;
}

.mega-menu-category-link:hover {
    transform: translateX(4px);
    color: var(--e-global-color-primary);
}

/* Category Icon Circle */
.mega-menu-category-link .mega-menu-category-icon {
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.mega-menu-name-icon{
    display: flex;
    align-items: center;
    gap: 8px;
}
/* Left side content wrapper */
.mega-menu-category-content {
    display: flex;
    align-items: center;
    flex: 1;
}