/* eo-header.css — site-wide header redesign (2026 landing refresh).
   Markup lives in application/themes/eo/views/partials/header.php.
   Relies on the existing #header rules in styles.css for the fixed
   positioning and the .stick (black on scroll) behaviour added by custom.js. */

header#header.eo-header{
    padding: 0;
}
header#header.eo-header.stick{
    background: #000;
}

.eo-header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    position: relative;
}

.eo-logo{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    line-height: 0;
}
.eo-logo img{
    height: 40px;
    width: auto;
    display: block;
}

.eo-nav{
    display: none;
    align-items: center;
    gap: 30px;
}

.eo-navlink{
    font-family: 'Archivo', sans-serif;
    font-size: 11px;
    letter-spacing: .09em;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: 0;
    padding: 0;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
}
.eo-navlink:hover{
    color: #FF4305;
    text-decoration: none;
}
.eo-navlink strong{
    font-size: 15px;
    text-transform: lowercase;
    font-weight: 800;
}

/* Burger (mobile) */
.eo-burger{
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 6px;
}
.eo-burger span{
    width: 24px;
    height: 2px;
    background: #fff;
    display: block;
}

/* Shop now dropdown */
.eo-shop{
    position: relative;
}
.eo-shop-toggle{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    font-size: 12px;
    cursor: pointer;
}
.eo-shop-toggle i{
    font-size: 9px;
}
.eo-shop-menu{
    position: absolute;
    top: calc(100% + 16px);
    left: auto;
    right: 0;
    background: #000;
    min-width: 250px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.3s ease-in-out;
}
.eo-shop.open .eo-shop-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* keep the hover bridge between button and menu alive */
.eo-shop-menu:before{
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
}
.eo-shop-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 22px;
    color: #fff;
    text-decoration: none;
    font-family: 'Univers LT', sans-serif;
    font-size: 17px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
}
.eo-shop-item:hover{
    color: #FF4305;
    text-decoration: none;
}
.eo-shop-item strong{
    font-weight: 800;
}
.eo-shop-item.is-soon{
    opacity: .6;
}
.eo-chip{
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #2404F2;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex: none;
}
.eo-soon-pill{
    font-family: 'Archivo', sans-serif;
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #FF4305;
    border: 1px solid #FF4305;
    border-radius: 50px;
    padding: 3px 9px;
    flex: none;
}

/* Mobile slide-out panel */
.eo-mobile{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    visibility: hidden;
}
.eo-mobile.open{
    visibility: visible;
}
.eo-scrim{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,.6);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
.eo-mobile.open .eo-scrim{
    opacity: 1;
}
.eo-panel{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86vw, 380px);
    background: #0c0c0c;
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
    padding: 30px 30px 40px;
    overflow: auto;
}
.eo-mobile.open .eo-panel{
    transform: translateX(0);
}
.eo-panel-close{
    background: none;
    border: 0;
    padding: 0;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    margin-bottom: 34px;
    transition: all 0.3s ease-in-out;
}
.eo-panel-close:hover{
    color: #FF4305;
}
.eo-panel-label{
    font-family: 'Archivo', sans-serif;
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #7a7a7a;
    font-weight: 700;
    margin: 0 0 16px;
}
.eo-panel .eo-shop-item{
    padding: 12px 0;
}
.eo-panel-divider{
    height: 1px;
    background: #2a2a2a;
    margin: 24px 0;
}
.eo-panel-links{
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.eo-panel-links ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.eo-panel-links .eo-navlink,
.eo-panel-links .nav-link{
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    letter-spacing: .09em;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    padding: 0;
    display: inline-block;
}
.eo-panel-links .eo-navlink:hover,
.eo-panel-links .nav-link:hover{
    color: #FF4305;
}
.eo-panel-links .nav-link strong{
    font-size: 15px;
    text-transform: lowercase;
    font-weight: 800;
}

/* Clear-header variant (header-clear.php) — black nav on light pages,
   flipping to white once .stick turns the bar black. Mirrors the old
   .black-nav colour behaviour in styles.css. */
.eo-header.black-nav .eo-navlink{
    color: #000;
}
.eo-header.black-nav .eo-burger span{
    background: #000;
}
.eo-header.black-nav.stick .eo-navlink{
    color: #fff;
}
.eo-header.black-nav.stick .eo-burger span{
    background: #fff;
}
.eo-header.black-nav .eo-navlink:hover,
.eo-header.black-nav.stick .eo-navlink:hover{
    color: #FF4305;
}

/* Desktop (matches Bootstrap lg breakpoint used across the theme) */
@media all and (min-width: 992px){
    .eo-nav{
        display: flex;
    }
    .eo-burger{
        display: none;
    }
    .eo-mobile{
        display: none;
    }
    .eo-header-inner{
        padding: 14px 30px;
    }
    .eo-logo img{
        height: 46px;
    }
}
