.angie-mega-menu-7bb2ba01-wrapper {
    position: relative;
    width: 100%;
}

.angie-mega-menu-7bb2ba01-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.angie-mega-menu-7bb2ba01-nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.angie-mega-menu-7bb2ba01-nav-item > a {
    text-decoration: none;
    padding: 15px 0;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    display: block;
    color: #333;
}

/* Add an arrow indicator for items with dropdowns */
.angie-mega-menu-7bb2ba01-nav-item.has-dropdown > a::after {
    content: '';
    display: inline-block;
    margin-right: 8px; /* For RTL */
    vertical-align: middle;
    border-top: 4px solid currentColor;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    transition: transform 0.3s ease;
}

.angie-mega-menu-7bb2ba01-nav-item.has-dropdown:hover > a::after {
    transform: rotate(180deg);
}

.angie-mega-menu-7bb2ba01-dropdown {
    position: absolute;
    top: 100%;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
    z-index: 9999;
    padding: 40px;
    box-sizing: border-box;
    border-top: 3px solid #000;
    left: 0;
    width: 100vw;
}

.angie-mega-menu-7bb2ba01-nav-item.has-dropdown:hover .angie-mega-menu-7bb2ba01-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Layout for Dropdown Content: Two Columns (Links + Image) */
.angie-mega-menu-7bb2ba01-layout {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.angie-mega-menu-7bb2ba01-sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.angie-mega-menu-7bb2ba01-sub-item {
    text-decoration: none;
    color: #333;
    display: block;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s, padding-right 0.3s;
    padding-right: 0;
}

.angie-mega-menu-7bb2ba01-sub-item:hover {
    padding-right: 10px; /* Slight indent on hover for RTL */
}

/* Image Block Placeholder */
.angie-mega-menu-7bb2ba01-layout-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}

.angie-mega-menu-7bb2ba01-layout-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.angie-mega-menu-7bb2ba01-layout-image:hover img {
    transform: scale(1.05);
}

.angie-mega-menu-7bb2ba01-placeholder-box {
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    border: 2px dashed #ddd;
    border-radius: 10px;
}