.elementor-1991 .elementor-element.elementor-element-e31e5ef{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-a04ac42 */<style>
/* استایل دکمه همبرگر */
.custom-hamburger-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-button {
    background-color: transparent;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    outline: none !important;
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background-color: #f5b901;
    border-radius: 2px;
    display: block;
}

.menu-label {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-top: 2px;
}

/* استایل کانتینر اصلی منو */
#mega-menu-overlay {
    position: fixed;
    top: 70px;  /* ارتفاع هدر */
    left: 0;
    width: 100%;
    background: transparent;  /* شفاف */
    z-index: 9999;
    transition: transform 0.3s ease;
    pointer-events: none;  /* وقتی بسته است، کلیک نمی‌خورد */
}

#mega-menu-overlay.mega-menu-open {
    pointer-events: auto;  /* وقتی باز است، قابل کلیک */
}

.mega-menu-closed {
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
}

.mega-menu-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* استایل محتوای منو */
#mega-menu-overlay .mega-menu-dynamic {
    max-width: 1200px;
    margin: 10px auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* بقیه استایل‌های منو */
.mega-menu-dynamic {
    display: flex;
    background: #fff;
    border-radius: 10px;
    direction: rtl;
}

.mega-menu-categories {
    width: 250px;
    background: #f8f9fa;
    padding: 15px 0;
    border-left: 1px solid #eee;
}

.category-item {
    padding: 12px 20px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: all 0.2s;
    position: relative;
}

.category-item:hover,
.category-item.active {
    background: #fff;
    color: #f5b901;
    font-weight: 500;
}

.category-item.active::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #f5b901;
}

.mega-menu-subcategories {
    flex: 1;
    display: flex;
    padding: 25px;
    gap: 30px;
    background: #fff;
}

.subcategory-col {
    flex: 1;
}

.subcategory-col h4 {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f5b901;
}

.subcategory-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.subcategory-col li {
    margin-bottom: 10px;
}

.subcategory-col a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
    display: block;
}

.subcategory-col a:hover {
    color: #f5b901;
    padding-right: 5px;
}
</style>/* End custom CSS */