/* =========================================================
   DYNAMIC WORDPRESS NAVIGATION
========================================================= */

.bozz-main-nav {

    flex: 1;

    display: flex;

    justify-content: center;

}


.bozz-nav-list {

    display: flex;

    align-items: center;

    gap: 42px;

    list-style: none;

    margin: 0;

    padding: 0;

}


.bozz-nav-list > li {

    list-style: none;

    margin: 0;

    padding: 0;

    position: relative;

}


.bozz-nav-list > li > a {

    display: block;

    color: #222;

    text-decoration: none;

    font-size: 15px;

    font-weight: 500;

    text-transform: uppercase;

    padding: 35px 0;

    transition: color .2s ease;

}

.header-search-btn {

    width: 25px;
    height: 25px;

    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    color: #777 !important;

    background: transparent !important;

    border: 0 !important;

    padding: 0 !important;

    cursor: pointer;
}


.header-search-btn svg {

    width: 22px !important;
    height: 22px !important;

    display: block !important;

    fill: none !important;

    stroke: #777 !important;

    stroke-width: 1.5 !important;

    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}


/* Hover */

.header-icon:hover,
.header-icon-button:hover,
.header-search-btn:hover {

    color: #0b55c9 !important;
}


.header-icon:hover svg,
.header-icon-button:hover svg,
.header-search-btn:hover svg {

    stroke: #0b55c9 !important;

}
.bozz-nav-list > li > a:hover {

    color: #00c91b;

}

button.header-icon.header-search-btn
 {
    background: transparent;
    box-shadow: none;
}
/* Products active */

.bozz-nav-list > li.mega-open > a {

    color: #00c91b;

}


/* Hide WP submenus from header */

.bozz-nav-list .sub-menu {

    display: none !important;

}


/* =========================================================
   HEADER
========================================================= */

.bozz-header {

   /* position: fixed;

    top: 0;
    left: 0;*/

    width: 100%;

    z-index: 100000;

    background: #f7f7f7;

}


.bozz-header-inner {

    width: 100%;

    max-width: 1850px;

    height: 90px;

    margin: 0 auto;

    padding: 0 45px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    box-sizing: border-box;

}


/* =========================================================
   LOGO
========================================================= */

.header-logo {

    flex-shrink: 0;

}


.header-logo img {

    max-width: 150px;

    height: auto;

    display: block;

}


/* =========================================================
   ACTIONS
========================================================= */

.header-actions {

    display: flex;

    align-items: center;

    gap: 15px;

    flex-shrink: 0;

}


.header-icon,
.header-icon-button {
    width: 25px;
    height: 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    margin: 0;

    border: 0;
    background: transparent;

    color: #777 !important;

    text-decoration: none;
    cursor: pointer;

    box-shadow: none;
}


.header-icon svg,
.header-icon-button svg {

    width: 22px !important;
    height: 22px !important;

    display: block !important;

    fill: none !important;

    stroke: #777 !important;
    stroke-width: 1.5 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;

    opacity: 1 !important;

    visibility: visible !important;
}

.header-icon svg circle,
.header-icon svg path,
.header-icon svg line,
.header-icon-button svg circle,
.header-icon-button svg path,
.header-icon-button svg line {

    fill: none !important;

    stroke: #777 !important;
    stroke-width: 1.5 !important;

    opacity: 1 !important;
    visibility: visible !important;
}


.header-separator {

    width: 1px;

    height: 20px;

    background: #ddd;

}


.header-social {

    color: #aaa;

    text-decoration: none;

    font-size: 16px;

    font-weight: 500;

}


.header-social:hover {

    color: #00c91b;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .bozz-nav-list {

        gap: 22px;

    }

    .bozz-nav-list > li > a {

        font-size: 13px;

    }

    .bozz-header-inner {

        padding: 0 25px;

    }

}


@media (max-width: 900px) {

    .bozz-main-nav {

        display: none;

    }

}


/* =========================================================
   MARKETS MEGA MENU
========================================================= */

.markets-mega-menu .mega-wrapper {
    padding: 35px 50px;
}

.markets-mega-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.market-mega-item {
    display: block;
    text-decoration: none;
    color: inherit;
}

.market-mega-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f2f2f2;
}

.market-mega-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.market-mega-item:hover .market-mega-image img {
    transform: scale(1.05);
}

.market-mega-title {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.market-mega-image-placeholder {
    width: 100%;
    height: 100%;
    background: #eee;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .markets-mega-content {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .markets-mega-content {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .markets-mega-content {
        grid-template-columns: 1fr;
    }

}