/* ========================================================
   Header Styles - Premium Fix
   ======================================================== */

/* Top Bar */
.header-top-bar {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 8px 0;
    font-size: 13px;
    position: relative;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Language & Currency Switchers */
.language-switcher,
.currency-switcher {
    position: relative;
}

.language-toggle,
.currency-toggle {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #666;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s;
}

.language-toggle:hover,
.currency-toggle:hover {
    background: #f5f5f5;
}

.language-toggle img,
.currency-toggle img {
    width: 16px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
}

.language-toggle span,
.currency-toggle span {
    font-weight: 500;
}

.language-toggle i,
.currency-toggle i {
    font-size: 12px;
    color: #999;
    transition: transform 0.2s;
}

.language-dropdown.active .language-toggle i,
.currency-dropdown.active .currency-toggle i {
    transform: rotate(180deg);
}

.language-dropdown-menu,
.currency-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    min-width: 160px;
    display: none;
    z-index: 1000;
    list-style: none;
    padding: 8px 0;
    margin: 5px 0 0;
}

.language-dropdown.active .language-dropdown-menu,
.currency-dropdown.active .currency-dropdown-menu {
    display: block;
}

.language-dropdown-menu li a,
.currency-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.2s;
}

.language-dropdown-menu li a:hover,
.currency-dropdown-menu li a:hover {
    background: #f8f9fa;
    color: var(--primary-color, #0073aa);
}

.language-dropdown-menu img {
    width: 16px;
    height: 12px;
    border-radius: 2px;
}

/* Contact Info */
.contact-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-info i {
    color: var(--primary-color, #0073aa);
    font-size: 14px;
}

.contact-info a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info a:hover {
    color: var(--primary-color, #0073aa);
}

/* Top Bar Right */
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Social Icons */
.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon {
    color: #666;
    font-size: 16px;
    transition: color 0.2s;
}

.social-icon:hover {
    color: var(--primary-color, #0073aa);
}

/* Auth Links */
.auth-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-links a {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.auth-links a:hover {
    color: var(--primary-color, #0073aa);
}

.auth-links .separator {
    color: #ddd;
}

/* User Dropdown */
.user-dropdown {
    position: relative;
}

.user-dropdown-toggle {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #666;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s;
}

.user-dropdown-toggle:hover {
    background: #f5f5f5;
}

.user-dropdown-toggle i:first-child {
    color: var(--primary-color, #0073aa);
    font-size: 18px;
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    min-width: 200px;
    display: none;
    z-index: 1000;
    list-style: none;
    padding: 8px 0;
    margin: 5px 0 0;
}

.user-dropdown:hover .user-dropdown-menu {
    display: block;
}

.user-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.user-dropdown-menu li a:hover {
    background: #f8f9fa;
    color: var(--primary-color, #0073aa);
}

.user-dropdown-menu .divider {
    height: 1px;
    background: #e5e5e5;
    margin: 8px 0;
}

/* Main Header (Dark Blue) */
.header-main {
    background: #003366;
    color: #ffffff;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-main.sticky-header {
    position: sticky;
    top: 0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.header-main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

/* Logo */
.logo-area {
    flex-shrink: 0;
}

.custom-logo img {
    max-height: 50px;
    width: auto;
}

.site-title {
    margin: 0;
}

.site-title a {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff !important;
    text-decoration: none;
}

.site-description {
    margin: 5px 0 0;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}

/* Navigation */
.nav-area {
    flex: 1;
    margin: 0 30px;
}

.main-navigation .primary-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.main-navigation .primary-menu > li {
    position: relative;
}

.main-navigation .primary-menu > li > a {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    padding: 30px 0;
    display: block;
    position: relative;
    transition: color 0.2s;
}

.main-navigation .primary-menu > li > a:hover {
    color: #ff9900;
}

.main-navigation .primary-menu > li > a:after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff9900;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.main-navigation .primary-menu > li:hover > a:after,
.main-navigation .primary-menu > li.current-menu-item > a:after {
    transform: scaleX(1);
}

/* Submenus */
.main-navigation .primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    min-width: 220px;
    display: none;
    z-index: 1000;
    list-style: none;
    padding: 10px 0;
}

.main-navigation .primary-menu > li:hover > .sub-menu {
    display: block;
}

.main-navigation .primary-menu .sub-menu li {
    position: relative;
}

.main-navigation .primary-menu .sub-menu a {
    padding: 10px 20px;
    color: #666;
    text-decoration: none;
    display: block;
    transition: all 0.2s;
}

.main-navigation .primary-menu .sub-menu a:hover {
    background: #f8f9fa;
    color: #003366;
    padding-left: 25px;
}

.main-navigation .primary-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-toggle,
.live-chat-toggle,
.wishlist-icon {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.2s;
    position: relative;
}

.search-toggle:hover,
.live-chat-toggle:hover,
.wishlist-icon:hover {
    background: rgba(255,255,255,0.1);
}

.wishlist-icon {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.chat-badge,
.wishlist-count,
.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff9900;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

/* CTA Button */
.header-cta .cta-button {
    background: #ff9900;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: background 0.2s;
}

.header-cta .cta-button:hover {
    background: #e68a00;
}

/* Cart */
.header-cart {
    position: relative;
}

.header-cart .cart-icon {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    display: block;
    padding: 8px;
}

.header-cart .cart-count {
    top: 0;
    right: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 5px 0;
    transition: all 0.3s;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.search-overlay.active {
    display: flex;
}

.search-overlay-content {
    width: 100%;
    max-width: 700px;
    padding: 20px;
}

.search-form {
    display: flex;
    position: relative;
    margin-bottom: 30px;
}

.search-field {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    background: #fff;
}

.search-submit {
    padding: 20px 30px;
    background: #003366;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 0 4px 4px 0;
    transition: background 0.2s;
}

.search-submit:hover {
    background: #002244;
}

.search-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

.search-suggestions {
    text-align: center;
}

.search-suggestions h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 400;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.suggestion-tag {
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.suggestion-tag:hover {
    background: #ff9900;
}

/* Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
    display: none;
    z-index: 9998;
    overflow: hidden;
}

.live-chat-widget.active {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.chat-header {
    background: #003366;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
    font-size: 16px;
}

.chat-close {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
}

.chat-messages {
    height: 300px;
    overflow-y: auto;
    padding: 15px;
    background: #f8f9fa;
}

.chat-message {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.chat-message.agent {
    align-items: flex-start;
}

.chat-message.user {
    align-items: flex-end;
}

.message-content {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 18px;
    background: #e5e5e5;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.chat-message.user .message-content {
    background: #003366;
    color: #fff;
}

.message-time {
    font-size: 10px;
    color: #999;
    margin-top: 4px;
}

.chat-input {
    display: flex;
    padding: 15px;
    background: #fff;
    border-top: 1px solid #e5e5e5;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.chat-input input:focus {
    border-color: #003366;
}

.send-message {
    padding: 10px 15px;
    background: #003366;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.2s;
}

.send-message:hover {
    background: #002244;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 9999;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    background: #003366;
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-close {
    cursor: pointer;
    font-size: 24px;
}

.mobile-menu-content {
    padding: 20px;
}

.mobile-primary-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.mobile-primary-menu > li {
    border-bottom: 1px solid #e5e5e5;
}

.mobile-primary-menu a {
    padding: 15px 0;
    display: block;
    color: #23282d;
    text-decoration: none;
    font-weight: 500;
}

.mobile-primary-menu .sub-menu {
    list-style: none;
    padding-left: 20px;
    display: none;
}

.mobile-primary-menu li.menu-item-has-children.open > .sub-menu {
    display: block;
}

.mobile-language-currency {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.mobile-language,
.mobile-currency {
    flex: 1;
}

.mobile-language h4,
.mobile-currency h4 {
    margin: 0 0 8px;
    font-size: 14px;
    color: #666;
}

.mobile-language-select,
.mobile-currency-select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.mobile-menu-footer {
    margin-top: 20px;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-item:hover {
    color: #003366;
}

.mobile-social-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

.mobile-social-icons a {
    color: #666;
    font-size: 20px;
}

.mobile-social-icons a:hover {
    color: #003366;
}

/* Breadcrumbs */
.breadcrumbs-wrapper {
    background: #f8f9fa;
    border-bottom: 1px solid #e5e5e5;
    padding: 12px 0;
}

.breadcrumbs {
    font-size: 13px;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #003366;
}

.breadcrumbs .separator {
    margin: 0 8px;
    color: #ccc;
}

.breadcrumbs .current {
    color: #999;
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-area {
        margin: 0 15px;
    }
    
    .main-navigation .primary-menu {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-bar-left {
        justify-content: center;
    }
    
    .top-bar-right {
        justify-content: center;
    }
    
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .header-cta span {
        display: none;
    }
    
    .header-cta .cta-button {
        padding: 10px;
        border-radius: 50%;
    }
    
    .header-cta .cta-button i {
        margin: 0;
    }
    
    .auth-links .separator {
        display: none;
    }
    
    .auth-links {
        gap: 5px;
    }
}

@media (max-width: 768px) {
    .header-main-content {
        min-height: 60px;
    }
    
    .custom-logo img {
        max-height: 40px;
    }
    
    .site-title a {
        font-size: 20px;
    }
    
    .top-bar-left {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .live-chat-widget {
        width: 90%;
        right: 5%;
        left: 5%;
    }
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

/* ========================================================
   FIXED MEGA MENU STYLES - SMALLER FONTS
   ======================================================== */

/* Mega Menu Container */
.mega-menu-container,
.vimm-mega-menu,
.mmm-mega-menu-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-top: 3px solid #ff9900;
    padding: 20px 30px;
    z-index: 9999;
    display: none;
}

.menu-item:hover .mega-menu-container,
.menu-item:hover .vimm-mega-menu,
.menu-item:hover .mmm-mega-menu-wrapper {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mega Menu Grid */
.mega-menu-row,
.vimm-mega-menu,
.mmm-mega-menu-wrapper {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 25px !important;
}

/* Mega Menu Columns */
.mega-menu-col,
.vimm-column,
.mmm-grid-column {
    padding: 0 15px;
    border-right: 1px solid #f0f0f0;
}

.mega-menu-col:last-child,
.vimm-column:last-child,
.mmm-grid-column:last-child {
    border-right: none;
}

/* Column Titles - SMALLER FONT */
.mega-menu-col h3,
.mega-menu-col .mega-menu-column-title,
.vimm-column h3,
.vimm-column-title,
.mmm-column-title {
    font-size: 14px !important; /* Reduced from 18px */
    font-weight: 600;
    color: #003366;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #ff9900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Menu Items - SMALLER FONT */
.mega-menu-sub-menu li a,
.vimm-item a,
.mmm-column-menu .menu-item a {
    font-size: 12px !important; /* Reduced from 14px */
    color: #555;
    text-decoration: none;
    padding: 4px 0;
    display: block;
    transition: all 0.2s;
    line-height: 1.4;
}

.mega-menu-sub-menu li a:hover,
.vimm-item a:hover,
.mmm-column-menu .menu-item a:hover {
    color: #ff9900;
    padding-left: 5px;
}

/* Sub-menu items (indented) */
.mega-menu-sub-menu .sub-menu,
.vimm-submenu,
.mmm-column-menu .sub-menu {
    margin-left: 10px;
    padding-left: 8px;
    border-left: 1px solid #eee;
}

/* Menu Badges - SMALLER */
.menu-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 9px !important; /* Reduced from 11px */
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 5px;
    vertical-align: middle;
}

.menu-badge.badge-new {
    background: #46b450;
    color: #fff;
}

.menu-badge.badge-hot {
    background: #ff6b6b;
    color: #fff;
}

.menu-badge.badge-sale {
    background: #f0ad4e;
    color: #fff;
}

/* Mega Menu Icons - SMALLER */
.mega-menu-sub-menu li i,
.vimm-item i,
.mmm-column-menu .menu-item i {
    font-size: 11px !important; /* Reduced from 14px */
    width: 16px;
    margin-right: 5px;
    color: #ff9900;
}

/* Featured Content in Mega Menu */
.mega-menu-featured h4 {
    font-size: 13px !important; /* Reduced from 16px */
    margin: 8px 0 3px;
}

.mega-menu-featured p {
    font-size: 11px !important; /* Reduced from 13px */
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

.mega-menu-featured .btn-sm {
    font-size: 10px !important; /* Reduced from 12px */
    padding: 3px 8px;
}

/* ========================================================
   FIX FOR DUPLICATED MEGA MENU
   ======================================================== */

/* Hide any duplicate mega menu containers */
.mega-menu-container + .mega-menu-container,
.vimm-mega-menu + .vimm-mega-menu,
.mmm-mega-menu-wrapper + .mmm-mega-menu-wrapper {
    display: none !important;
}

/* Ensure only one mega menu shows */
.menu-item .mega-menu-container:first-of-type,
.menu-item .vimm-mega-menu:first-of-type,
.menu-item .mmm-mega-menu-wrapper:first-of-type {
    display: none;
}

.menu-item:hover .mega-menu-container:first-of-type,
.menu-item:hover .vimm-mega-menu:first-of-type,
.menu-item:hover .mmm-mega-menu-wrapper:first-of-type {
    display: grid;
}

/* ========================================================
   PRIMARY MENU ITEMS - SMALLER FONT
   ======================================================== */

.main-navigation .primary-menu > li > a,
.mmi-menu > .menu-item > a {
    font-size: 13px !important; /* Reduced from 16px */
    font-weight: 500;
    padding: 0 10px;
    height: 50px; /* Reduced from 60px */
    line-height: 50px;
}

/* Dropdown indicators */
.main-navigation .menu-item-has-children > a::after,
.mmi-menu .menu-item-has-children > a::after {
    font-size: 10px;
    margin-left: 4px;
}

/* ========================================================
   MORE MENU DROPDOWN - SMALLER FONT
   ======================================================== */

.more-menu-dropdown .menu-item a {
    font-size: 12px !important;
    padding: 8px 15px;
}

.more-menu-dropdown .menu-item-has-children > a::after {
    font-size: 10px;
}

/* ========================================================
   STAFF MENU - SMALLER FONT
   ======================================================== */

.staff-menu > li > a {
    font-size: 12px !important;
    padding: 5px 10px;
}

.staff-badge {
    font-size: 10px !important;
    padding: 3px 6px;
}

/* ========================================================
   MOBILE MENU - SMALLER FONT
   ======================================================== */

.mobile-primary-menu a {
    font-size: 13px !important;
    padding: 10px 0;
}

.mobile-primary-menu .sub-menu a {
    font-size: 12px !important;
    padding: 6px 0 6px 15px;
}

/* ========================================================
   RESPONSIVE ADJUSTMENTS
   ======================================================== */

@media (max-width: 1200px) {
    .main-navigation .primary-menu > li > a,
    .mmi-menu > .menu-item > a {
        font-size: 12px !important;
        padding: 0 8px;
    }
}

@media (max-width: 992px) {
    .mega-menu-row,
    .vimm-mega-menu,
    .mmm-mega-menu-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .mega-menu-row,
    .vimm-mega-menu,
    .mmm-mega-menu-wrapper {
        grid-template-columns: 1fr !important;
        position: static;
        box-shadow: none;
        padding: 10px;
    }
    
    .mega-menu-col,
    .vimm-column,
    .mmm-grid-column {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
}