/* ==========================================================================
   JFA Mega Menu Styles - Two-Layer Specialist Vehicles Menu
   ========================================================================== */

/* Mega Menu Trigger */
.jfa-mega-menu-trigger {
    position: relative;
}

.jfa-mega-menu-trigger > a {
    display: flex !important;
    align-items: center;
    gap: 4px;
}

/* Arrow indicator removed per request */

/* Mega Menu Container */
.jfa-mega-menu {
    position: absolute;
    left: 0;
    top: 100%;
    padding-top: 8px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.jfa-mega-menu-trigger:hover .jfa-mega-menu,
.jfa-mega-menu-trigger.menu-open .jfa-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.jfa-mega-menu-inner {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: width 0.3s ease-in-out;
}

.jfa-mega-menu-inner.has-models {
    /* Models panel is visible */
}

/* Brands Section */
.jfa-mega-menu-brands {
    flex: 1 1 auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* Brand Grid */
.jfa-mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    flex: 1;
    align-content: start;
    overflow-x: hidden;
}

/* Brand Link Item */
.jfa-brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: background-color 0.15s ease, transform 0.15s ease;
    background: transparent;
    height: auto !important;
    overflow: visible !important;
    filter: none !important; /* Remove any inherited grayscale filter */
    box-shadow: none !important; /* Remove any inherited box-shadow */
}

.jfa-brand-link:hover {
    background-color: rgba(0, 198, 255, 0.08);
    transform: translateX(2px);
}

.jfa-brand-link.active {
    background-color: rgba(0, 198, 255, 0.12);
}

/* Brand Logo */
.jfa-brand-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
    filter: none !important; /* Remove any grayscale filter */
}

.jfa-brand-logo-placeholder {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    flex-shrink: 0;
}

/* Brand Name */
.jfa-brand-name {
    font-size: 13px;
    font-weight: 500;
    color: #333 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.15s ease;
    text-transform: none;
    font-family: "Open Sans", "Helvetica", "Arial", sans-serif;
}

.jfa-brand-link:hover .jfa-brand-name {
    color: #00c6ff !important;
}

/* Footer - View All Link */
.jfa-mega-menu-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.jfa-mega-menu-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #00c6ff !important;
    text-decoration: none !important;
    transition: color 0.15s ease;
    height: auto !important;
}

.jfa-mega-menu-view-all:hover {
    color: #0099cc !important;
}

.jfa-mega-menu-view-all .arrow {
    opacity: 0.6;
    transition: transform 0.2s ease, opacity 0.15s ease;
}

.jfa-mega-menu-view-all:hover .arrow {
    transform: translateX(4px);
    opacity: 1;
}

/* Models Panel (Right Side) */
.jfa-mega-menu-models-panel {
    width: 0;
    min-width: 0;
    overflow: hidden;
    background: #f8f9fa;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    transition: width 0.3s ease-in-out, min-width 0.3s ease-in-out, padding 0.3s ease-in-out;
    flex-shrink: 0;
}

.jfa-mega-menu-models-panel.visible {
    width: 260px;
    min-width: 260px;
    padding: 24px;
}

/* Models Panel Header */
.jfa-models-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.jfa-models-header-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: none !important; /* Remove any grayscale filter */
}

.jfa-models-header-placeholder {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    border-radius: 8px;
}

.jfa-models-header-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Models List */
.jfa-models-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 450px;
    overflow-y: auto;
}

.jfa-model-link {
    display: block;
    padding: 10px 12px;
    font-size: 14px;
    color: #666 !important;
    text-decoration: none !important;
    border-radius: 6px;
    transition: background-color 0.15s ease, color 0.15s ease;
    height: auto !important;
    font-family: "Open Sans", "Helvetica", "Arial", sans-serif;
}

.jfa-model-link:hover {
    background-color: #fff;
    color: #333 !important;
}

/* Hide the hidden models containers */
.jfa-mega-menu-models {
    display: none;
}

/* Mobile - Hide desktop mega menu on mobile */
@media (max-width: 999px) {
    .jfa-mega-menu {
        display: none !important;
    }
}

/* ==========================================================================
   Mobile Full-Screen Overlay Menu - Grid Style
   ========================================================================== */

.jfa-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 999999 !important;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex !important;
    flex-direction: column;
    overflow: hidden;
    visibility: visible !important;
}

.jfa-mobile-overlay.active {
    transform: translateX(0);
}

/* Mobile Overlay Header */
.jfa-mobile-overlay-header {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    min-height: 60px;
    flex-shrink: 0;
}

.jfa-mobile-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: none !important;
    border: none;
    border-radius: 0;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    margin-right: 16px;
    padding: 0;
}

.jfa-mobile-back-btn:hover,
.jfa-mobile-back-btn:active {
    background: none !important;
    opacity: 0.7;
}

.jfa-mobile-back-btn.hidden {
    display: none;
}

.jfa-mobile-back-btn svg,
.jfa-mobile-close-btn svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    opacity: 0.9;
}

.jfa-mobile-back-btn:hover svg,
.jfa-mobile-close-btn:hover svg {
    opacity: 1;
}

.jfa-mobile-overlay-title {
    font-size: 18px;
    font-weight: 600;
    font-family: "Oswald", "Helvetica", "Arial", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    flex: 1;
    color: #fff;
}

.jfa-mobile-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: none !important;
    border: none;
    border-radius: 0;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
}

.jfa-mobile-close-btn:hover,
.jfa-mobile-close-btn:active {
    background: none !important;
    opacity: 0.7;
}

/* Mobile Overlay Content */
.jfa-mobile-overlay-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f5f7fa;
}

/* Mobile Grid */
.jfa-mobile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* Mobile Item Link */
.jfa-mobile-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 12px;
    background: #fff;
    border-radius: 16px;
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
    min-height: 120px;
    position: relative;
}

.jfa-mobile-item:active {
    transform: scale(0.98);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.jfa-mobile-item.has-children::after {
    content: '\f054';
    font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", "Font Awesome 6 Free", sans-serif;
    font-weight: 900;
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 10px;
    color: #aaa;
}

/* Mobile Item Icon */
.jfa-mobile-item-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8eef4;
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
}

.jfa-mobile-item-icon i {
    font-size: 24px;
    color: #5a7a9a;
}

.jfa-mobile-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    background: #fff;
    border-radius: 12px;
}

/* Mobile Item Name */
.jfa-mobile-item-name {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.3;
    font-family: "Oswald", "Helvetica", "Arial", sans-serif;
}

/* Mobile Sub-items List (for depth 2) */
.jfa-mobile-subitems {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

.jfa-mobile-subitem {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: #fff;
    border-radius: 12px;
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

.jfa-mobile-subitem:active {
    background: #f0f4f8;
}

.jfa-mobile-subitem-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8eef4;
    border-radius: 10px;
    margin-right: 14px;
    flex-shrink: 0;
}

.jfa-mobile-subitem-icon i {
    font-size: 18px;
    color: #5a7a9a;
}

.jfa-mobile-subitem-name {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    font-family: "Open Sans", "Helvetica", "Arial", sans-serif;
    flex: 1;
}

.jfa-mobile-subitem-arrow {
    margin-left: auto;
    color: #aaa;
    font-size: 14px;
}

/* Prevent body scroll when overlay is open */
body.jfa-mobile-overlay-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Mobile Scrollbar Styling */
.jfa-mobile-overlay-content::-webkit-scrollbar {
    width: 8px;
}

.jfa-mobile-overlay-content::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.jfa-mobile-overlay-content::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 4px;
}

.jfa-mobile-overlay-content::-webkit-scrollbar-thumb:hover {
    background: #777;
}

/* Hide old menu on mobile - always use new mobile menu */
@media (max-width: 999px) {
    /* Hide old menu list items and submenus - but keep burger button visible */
    .menu-list > li:not(.open-menu) > .sub-menu,
    body.show-menu .menu-list > li:not(.open-menu) > .sub-menu,
    body.jfa-mobile-overlay-open .menu-list > li:not(.open-menu) > .sub-menu,
    body.show-menu .menu-list > li:not(.open-menu),
    body.jfa-mobile-overlay-open .menu-list > li:not(.open-menu) {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* If jfa-mobile-menu-disabled class is added, still show hamburger */
    .menu-list.jfa-mobile-menu-disabled {
        display: flex !important;
    }
    
    .menu-list.jfa-mobile-menu-disabled > li:not(.open-menu) {
        display: none !important;
    }
    
    /* Hide submenus specifically */
    .menu-list > li > .sub-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Hide ALL open-menu buttons first - everywhere, no exceptions */
    li.open-menu,
    .open-menu,
    ul > li.open-menu,
    .menu-list li.open-menu,
    .menu-list > li.open-menu,
    .menu-list li.open-menu.d-1000-up-none,
    li.open-menu.d-1000-up-none,
    .open-menu.d-1000-up-none,
    ul.menu-list > li.open-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Hide all links inside open-menu buttons */
    li.open-menu > a,
    .open-menu > a,
    .menu-list li.open-menu > a,
    .menu-list > li.open-menu > a {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Then show ONLY the FIRST hamburger button in menu-list - highest specificity */
    ul.menu-list > li.open-menu:first-of-type {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    ul.menu-list > li.open-menu:first-of-type > a {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Hide mobile-off-canvas-navigation if it exists */
    .mobile-off-canvas-navigation {
        display: none !important;
        visibility: hidden !important;
    }
    
    /* Ensure new mobile overlay can be shown */
    .jfa-mobile-overlay {
        display: flex !important;
    }
    
    /* Prevent old menu from opening */
    .menu-list > li.menu-open > .sub-menu {
        display: none !important;
    }
    
    /* Prevent body from showing old menu */
    body.show-menu {
        overflow: visible !important;
    }
    
    /* Ensure menu-list container is visible on mobile */
    .menu-list {
        display: flex !important;
        visibility: visible !important;
    }
    
    /* Reorder elements on mobile: phone first, then hamburger */
    .menu-list > li.telephone {
        order: 1 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .menu-list > li.open-menu {
        order: 2 !important;
    }
    
    /* Hide all other menu items on mobile (except phone and hamburger) */
    .menu-list > li:not(.telephone):not(.open-menu) {
        display: none !important;
    }
}

/* Only show on mobile */
@media (min-width: 1000px) {
    .jfa-mobile-overlay {
        display: none !important;
    }
}

/* Responsive adjustments */
@media (min-width: 1000px) and (max-width: 1199px) {
    .jfa-mega-menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .jfa-mega-menu-models-panel.visible {
        width: 220px;
        min-width: 220px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .jfa-mega-menu-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Scrollbar styling for models list only */
.jfa-models-list::-webkit-scrollbar {
    width: 6px;
}

.jfa-models-list::-webkit-scrollbar-track {
    background: transparent;
}

.jfa-models-list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 3px;
}

.jfa-models-list::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.25);
}

/* Animation for fade in */
@keyframes jfa-mega-menu-fade-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jfa-mega-menu-trigger:hover .jfa-mega-menu,
.jfa-mega-menu-trigger.menu-open .jfa-mega-menu {
    animation: jfa-mega-menu-fade-in 0.2s ease forwards;
}

/* Prevent horizontal scroll on page when mega menu is open */
html.jfa-mega-menu-open,
html.jfa-mega-menu-open body {
    overflow-x: hidden !important;
}

/* Ensure mega menu doesn't cause page overflow */
#masthead {
    position: relative;
}

.jfa-mega-menu-trigger {
    position: static;
}

/* Constrain mega menu to viewport */
@media (min-width: 1000px) {
    .jfa-mega-menu {
        left: 0;
        right: auto;
        transform-origin: top left;
        /* Prevent overflow by limiting the width */
        max-width: calc(100vw - 40px);
        box-sizing: border-box;
    }
    
    .jfa-mega-menu-inner {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Ensure brands grid shrinks when models panel opens */
    .jfa-mega-menu-brands {
        max-width: calc(100vw - 340px); /* account for models panel + padding */
    }
    
    .jfa-mega-menu-inner.has-models .jfa-mega-menu-brands {
        max-width: calc(100vw - 340px);
    }
}

/* ==========================================================================
   Vehicle Tuning Mega Menu Styles
   ========================================================================== */

/* Tuning menu specific adjustments */
.jfa-tuning-menu .jfa-mega-menu-inner {
    min-width: 600px;
    max-width: 800px;
}

.jfa-tuning-services {
    padding: 24px;
    width: 100%;
}

.jfa-tuning-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Tuning Service Link */
.jfa-tuning-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 12px;
    text-decoration: none !important;
    border-radius: 12px;
    transition: all 0.2s ease;
    background: #f8f9fa;
    min-height: 110px;
    text-align: center;
}

.jfa-tuning-link:hover {
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 114, 255, 0.3);
}

/* Tuning Icon */
.jfa-tuning-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8eef4;
    border-radius: 12px;
    margin-bottom: 10px;
    transition: all 0.2s ease;
}

.jfa-tuning-icon i {
    font-size: 22px;
    color: #5a7a9a;
    transition: color 0.2s ease;
}

.jfa-tuning-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
    background: #fff;
    border-radius: 10px;
}

.jfa-tuning-link:hover .jfa-tuning-icon {
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
}

.jfa-tuning-link:hover .jfa-tuning-icon i {
    color: #fff;
}

/* Tuning Name */
.jfa-tuning-name {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    font-family: "Oswald", "Helvetica", "Arial", sans-serif;
}

.jfa-tuning-link:hover .jfa-tuning-name {
    color: #fff;
}

/* Responsive for Tuning Menu */
@media (min-width: 1000px) and (max-width: 1199px) {
    .jfa-tuning-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .jfa-tuning-menu .jfa-mega-menu-inner {
        min-width: 480px;
        max-width: 600px;
    }
}

@media (max-width: 999px) {
    .jfa-tuning-menu {
        display: none !important;
    }
}

/* Tuning Panel (right side) */
.jfa-tuning-panel {
    width: 0;
    min-width: 0;
    padding: 0;
    background: #f5f7fa;
    border-left: 1px solid #e0e0e0;
    overflow: hidden;
    transition: width 0.25s ease, min-width 0.25s ease, padding 0.25s ease;
}

.jfa-tuning-panel.visible {
    width: 280px;
    min-width: 280px;
    padding: 20px;
}

/* Hide the subitems containers in the DOM */
.jfa-tuning-subitems {
    display: none;
}

/* Tuning Sub-item Link */
.jfa-tuning-subitem-link {
    display: block;
    padding: 12px 14px;
    font-size: 14px;
    color: #555 !important;
    text-decoration: none !important;
    border-radius: 8px;
    transition: background-color 0.15s ease, color 0.15s ease;
    margin-bottom: 4px;
    font-family: "Open Sans", "Helvetica", "Arial", sans-serif;
}

.jfa-tuning-subitem-link:hover {
    background-color: #fff;
    color: #0072ff !important;
}

/* Tuning Panel Header */
.jfa-tuning-panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.jfa-tuning-panel-header .jfa-tuning-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
}

.jfa-tuning-panel-header .jfa-tuning-icon i {
    font-size: 18px;
}

.jfa-tuning-panel-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0;
    font-family: "Oswald", "Helvetica", "Arial", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tuning subitems list */
.jfa-tuning-subitems-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Highlight active tuning link */
.jfa-tuning-link.active {
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    box-shadow: 0 4px 12px rgba(0, 114, 255, 0.3);
}

.jfa-tuning-link.active .jfa-tuning-icon {
    background: rgba(255, 255, 255, 0.2);
}

.jfa-tuning-link.active .jfa-tuning-icon i {
    color: #fff;
}

.jfa-tuning-link.active .jfa-tuning-name {
    color: #fff;
}

/* ==========================================================================
   Simple Mega Menus (Vehicle Servicing, Other Services, More About Us)
   ========================================================================== */

.jfa-simple-menu .jfa-mega-menu-inner {
    min-width: 500px;
    max-width: 700px;
}

.jfa-simple-services {
    padding: 20px;
    width: 100%;
}

.jfa-simple-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

/* Simple menu link - reuse tuning styles */
.jfa-simple-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 10px;
    text-decoration: none !important;
    border-radius: 10px;
    transition: all 0.2s ease;
    background: #f8f9fa;
    min-height: 90px;
    text-align: center;
}

.jfa-simple-link:hover {
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 114, 255, 0.3);
}

.jfa-simple-link .jfa-tuning-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 8px;
}

.jfa-simple-link .jfa-tuning-icon i {
    font-size: 18px;
}

.jfa-simple-link .jfa-tuning-name {
    font-size: 11px;
}

.jfa-simple-link:hover .jfa-tuning-icon {
    background: rgba(255, 255, 255, 0.2);
}

.jfa-simple-link:hover .jfa-tuning-icon i {
    color: #fff;
}

.jfa-simple-link:hover .jfa-tuning-name {
    color: #fff;
}

/* Responsive for simple menus */
@media (min-width: 1000px) and (max-width: 1199px) {
    .jfa-simple-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .jfa-simple-menu .jfa-mega-menu-inner {
        min-width: 360px;
        max-width: 480px;
    }
}

@media (max-width: 999px) {
    .jfa-simple-menu {
        display: none !important;
    }
}

