/* Ensure only our custom header shows, hiding the default theme header containers on ALL pages including WooCommerce and standard pages */
body #header-container:not(:has(.header-container-0eecc90b)) {
    display: none !important;
}

body header.listeo-header:not(.header-container-0eecc90b),
body #header:not(.header-container-0eecc90b),
body .listeo-header-container {
    display: none !important;
}

/* Ensure our widget and its outer containers remain visible */
.header-container-0eecc90b {
    width: 100% !important;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 99999 !important;
    position: relative !important;
    border-bottom: 1px solid #f3f4f6;
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    opacity: 1 !important;
}

/* Sticky Header Style using position:sticky. Keeps it in standard document flow so sidebars/content do not jump or shift upwards! */
.header-container-0eecc90b.is-sticky-0eecc90b {
    position: sticky !important;
    top: 0 !important;
    left: 0;
    right: 0;
}

body.admin-bar .header-container-0eecc90b.is-sticky-0eecc90b {
    top: var(--wp-admin--admin-bar--height, 32px) !important;
}
@media screen and (max-width: 782px) {
    body.admin-bar .header-container-0eecc90b.is-sticky-0eecc90b {
        top: 46px !important;
    }
}

/* Mobile Hiding without leaving any white layout gaps */
@media screen and (max-width: 767px) {
    .header-container-0eecc90b.hide-mobile-0eecc90b,
    .elementor-widget-responsive_header_0eecc90b:has(.hide-mobile-0eecc90b) {
        display: none !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
    }
}

.header-wrap-0eecc90b {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}

/* Logo is forced to remain visible on tablets and mobile screens */
.header-logo-0eecc90b {
    display: block !important;
    visibility: visible !important;
}

.custom-logo-img-0eecc90b {
    max-height: 100px;
    width: auto;
    display: block !important;
    visibility: visible !important;
}

.logo-text-0eecc90b {
    font-size: 20px;
    font-weight: 700;
}

.header-nav-desktop-0eecc90b {
    display: flex;
    align-items: center;
}

.nav-menu-0eecc90b {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item-0eecc90b {
    position: relative;
}

.menu-link-0eecc90b {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 600;
    color: #1a202c;
    position: relative;
    transition: color 0.2s ease-in-out;
}

/* Active Highlight Color and Underline */
.menu-link-0eecc90b::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #ff0000;
    border-radius: 4px;
    transition: width 0.2s ease-in-out;
}

.menu-item-0eecc90b:hover > .menu-link-0eecc90b::after,
.menu-item-0eecc90b.current-menu-item > .menu-link-0eecc90b::after {
    width: 100%;
}

.menu-item-0eecc90b.current-menu-item > .menu-link-0eecc90b {
    color: #ff0000 !important;
}

.chevron-down-0eecc90b {
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 6px;
    display: inline-block;
    transition: transform 0.2s ease;
}

.white-chevron-0eecc90b {
    border-right-color: #ffffff;
    border-bottom-color: #ffffff;
}

.menu-item-0eecc90b:hover > .menu-link-0eecc90b .chevron-down-0eecc90b {
    transform: rotate(-135deg);
}

/* Mega Menu Dropdowns aligned right from current trigger start */
.mega-menu-panel-0eecc90b {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(10px);
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    max-width: 90vw;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1000;
    box-sizing: border-box;
}

.menu-item-0eecc90b.has-mega-menu-0eecc90b:hover .mega-menu-panel-0eecc90b {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Standard Dropdown layout for menu items without multi-column children */
.standard-dropdown-panel-0eecc90b {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(10px);
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    padding: 8px 0;
    width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1000;
    box-sizing: border-box;
}

.menu-item-0eecc90b.has-standard-dropdown-0eecc90b:hover .standard-dropdown-panel-0eecc90b {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.standard-dropdown-list-0eecc90b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.standard-dropdown-list-0eecc90b li a {
    display: block;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s, color 0.2s;
}

.standard-dropdown-list-0eecc90b li a:hover {
    background-color: #f3f4f6;
}

/* Mega Menu Displays in Single Flex Row */
.mega-menu-grid-0eecc90b {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.mega-menu-col-0eecc90b {
    flex: 1;
    min-width: 120px;
    box-sizing: border-box;
}

.mega-title-0eecc90b {
    font-weight: 700;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    border-bottom: 2px solid #0d52d6;
    padding-bottom: 4px;
    transition: all 0.2s ease-in-out;
}

.mega-title-0eecc90b:hover {
    color: #0d52d6 !important;
}

.mega-sublist-0eecc90b {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-sublist-0eecc90b li {
    margin-bottom: 8px;
}

.mega-sublist-0eecc90b li a {
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    display: inline-block;
}

.mega-sublist-0eecc90b li a:hover {
    transform: translateX(4px);
    color: #0d52d6 !important;
}

.header-actions-0eecc90b {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Guest Sign-In style */
.guest-signin-wrap-0eecc90b {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.guest-avatar-icon-0eecc90b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f1f3f5;
    color: #718096;
    transition: all 0.2s ease-in-out;
}

.guest-avatar-icon-0eecc90b svg {
    width: 50%;
    height: 50%;
}

.btn-signin-0eecc90b {
    text-decoration: none;
    font-weight: 700;
    color: #1a202c;
    font-size: 15px;
}

.header-divider-0eecc90b {
    width: 1px;
    height: 24px;
    background-color: #e2e8f0;
}

/* User Account Dropdown */
.account-menu-wrapper-0eecc90b {
    position: relative;
    display: inline-block;
}

.account-menu-trigger-0eecc90b {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 30px;
    transition: background-color 0.2s;
}

.account-menu-trigger-0eecc90b:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.avatar-wrap-0eecc90b {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50% !important;
    overflow: hidden;
}

.avatar-wrap-0eecc90b img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 1.5px solid #f3f4f6;
    display: block;
}

.status-indicator-0eecc90b {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #4caf50;
    border: 2px solid #ffffff;
    z-index: 10;
}

.user-welcome-label-0eecc90b {
    font-weight: 700;
    font-size: 15px;
    color: #882222;
}

/* User dropdown options list */
.account-dropdown-panel-0eecc90b {
    position: absolute;
    top: 110%;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    z-index: 1010;
    padding: 8px 0;
}

.account-menu-wrapper-0eecc90b:hover .account-dropdown-panel-0eecc90b,
.account-menu-wrapper-0eecc90b.is-open .account-dropdown-panel-0eecc90b {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.account-dropdown-list-0eecc90b {
    list-style: none;
    margin: 0;
    padding: 0;
}

.account-dropdown-list-0eecc90b li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    color: #555555;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s, color 0.2s;
}

.account-dropdown-list-0eecc90b li a:hover {
    background-color: #f7f9fa;
    color: #111111;
}

.item-icon-0eecc90b {
    font-size: 16px;
    color: #888888;
    width: 20px;
}

.logout-item-0eecc90b {
    border-top: 1px solid #f1f3f5;
    margin-top: 5px;
    padding-top: 5px;
}

/* Sell Now Button Dropdown */
.sell-dropdown-wrapper-0eecc90b {
    position: relative;
    display: inline-block;
}

.btn-sell-0eecc90b {
    text-decoration: none;
    color: #ffffff;
    background-color: #0d52d6;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: background-color 0.2s, opacity 0.2s;
}

.btn-sell-text-0eecc90b {
    font-size: 16px;
    letter-spacing: -0.2px;
}

.btn-sell-icon-0eecc90b {
    display: inline-flex;
    font-size: 18px;
}

.btn-sell-icon-0eecc90b svg {
    fill: currentColor;
    width: 18px;
    height: 18px;
}

.sell-dropdown-panel-0eecc90b {
    position: absolute;
    top: 115%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.25s;
    z-index: 1010;
    overflow: hidden;
    box-sizing: border-box;
}

.sell-dropdown-wrapper-0eecc90b:hover .sell-dropdown-panel-0eecc90b {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sell-dropdown-list-0eecc90b {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sell-dropdown-list-0eecc90b li {
    border-bottom: 1px solid #f1f3f5;
}

.sell-dropdown-list-0eecc90b li:last-child {
    border-bottom: none;
}

.sell-dropdown-list-0eecc90b li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: background-color 0.2s;
}

.item-left-side-0eecc90b {
    display: flex;
    align-items: center;
    gap: 16px;
}

.item-label-text-0eecc90b {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.1px;
}

.item-right-arrow-0eecc90b {
    display: inline-flex;
    align-items: center;
    color: #718096;
    transition: transform 0.2s ease, color 0.2s;
}

.sell-dropdown-list-0eecc90b li a:hover .item-right-arrow-0eecc90b {
    transform: translateX(3px);
    color: #0d52d6;
}

.mobile-toggle-btn-0eecc90b {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
}

.bar-0eecc90b {
    width: 100%;
    height: 2px;
    background-color: #333333;
    transition: all 0.2s ease-in-out;
}

.mobile-drawer-0eecc90b {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #ffffff;
    z-index: 100000;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-drawer-0eecc90b.is-open {
    right: 0;
}

.drawer-header-0eecc90b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #f3f4f6;
}

.drawer-logo-text-0eecc90b {
    font-size: 18px;
    font-weight: 700;
    color: #0d52d6;
}

.drawer-close-btn-0eecc90b {
    background: transparent;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #9ca3af;
}

.drawer-body-0eecc90b {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.mobile-menu-list-0eecc90b {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.mobile-item-0eecc90b {
    border-bottom: 1px solid #f3f4f6;
}

.mobile-link-row-0eecc90b {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-link-row-0eecc90b a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
}

.mobile-sub-toggle-0eecc90b {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 32px;
    height: 32px;
    position: relative;
}

.mobile-sub-toggle-0eecc90b::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #9ca3af;
    border-bottom: 2px solid #9ca3af;
    transform: translate(-50%, -75%) rotate(45deg);
    transition: transform 0.2s ease;
}

.mobile-item-0eecc90b.is-active > .mobile-link-row-0eecc90b .mobile-sub-toggle-0eecc90b::before {
    transform: translate(-50%, -25%) rotate(-135deg);
}

.mobile-submenu-0eecc90b {
    list-style: none;
    padding-left: 16px;
    margin: 0;
    display: none;
}

.mobile-item-0eecc90b.is-active > .mobile-submenu-0eecc90b {
    display: block;
}

.mobile-submenu-0eecc90b a {
    padding: 10px 0;
    font-size: 14px;
    color: #4b5563;
}

.drawer-actions-0eecc90b {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.drawer-actions-0eecc90b .btn-signin-0eecc90b,
.drawer-actions-0eecc90b .btn-sell-0eecc90b {
    display: block;
    text-align: center;
    padding: 12px;
}

.mobile-drawer-overlay-0eecc90b {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 99999;
}

.mobile-drawer-overlay-0eecc90b.is-active {
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 991px) {
    .header-nav-desktop-0eecc90b,
    .header-actions-0eecc90b .guest-signin-wrap-0eecc90b,
    .header-actions-0eecc90b .account-menu-wrapper-0eecc90b,
    .header-actions-0eecc90b .header-divider-0eecc90b,
    .header-actions-0eecc90b .sell-dropdown-wrapper-0eecc90b {
        display: none;
    }

    .mobile-toggle-btn-0eecc90b {
        display: flex;
    }
}
