:root{
    --z:#ac8510;
    --bg:#000;
    --txt:#fff;
}

/* ===============================
   BASE HEADER
   =============================== */
.zh{
    background:var(--bg);
    color:var(--txt);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.zh-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 22px;
}

/* LOGO */
.zh-logo img{
    height:30px;
    width:auto;
    display:block;
}

/* ===============================
   DESKTOP MENU
   =============================== */
.zh-menu{
    display:flex;
    gap:32px;
}

.zh-menu li{
    list-style:none;
}

.zh-menu a{
    color:#fff;
    font-weight:600;
    text-decoration:none;
    position:relative;
    display:inline-flex;
    align-items:center;
}

/* underline ONLY for normal items */
.zh-menu li:not(.zh-has-mega) > a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:var(--z);
    transition:.25s;
}
.zh-menu li:not(.zh-has-mega) > a:hover::after{
    width:100%;
}

/* SHOP NOW ARROW */
.zh-has-mega > a{
    gap:6px;
}
.zh-has-mega > a::after{
    content:"▾";
    font-size:12px;
    margin-left:6px;
    background:none;
}

/* ===============================
   ICONS
   =============================== */
.zh-icons{
    display:flex;
    align-items:center;
    gap:16px;
}

.zh-btn{
    width:28px;
    height:28px;
    border:0;
    background:none;
    cursor:pointer;
    position:relative;
    padding: 0px;
}

/* icon color only */
.zh-btn,
.zh-btn svg,
.zh-btn svg *,
.zh-btn path{
    color:#fff !important;
    fill:#fff !important;
    stroke:#fff !important;
}

/* ===============================
   SEARCH BAR (DESKTOP)
   =============================== */
.zh-search-box{
    display:none;
    padding:14px 22px;
    background:#fff;
    border-bottom:1px solid #e5e5e5;
}
.zh-search-box.open{
    display:block;
}

.zh-search-box input{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    background:#fff;
    color:#000;
    outline:none;
}

/* ===============================
   MEGA MENU (DESKTOP)
   =============================== */
.zh-has-mega{
    position:relative;
}

.zh-mega{
    position:absolute;
    top:100%;
    margin-top:20px;
    left:0;
    display:none;
    gap:36px;
    background:#000;
    padding:28px;
    min-width:620px;
    border:1px solid rgba(255,255,255,.15);
    border-top:2px solid var(--z);
    border-radius:6px;
    box-shadow:0 20px 40px rgba(0,0,0,.6);
    z-index:999;
}

/* REMOVE THIS ENTIRE BLOCK */
.zh-has-mega::after{
    content:'';
    position:absolute;
    left:0;
    top:100%;
    width:100%;
    height:20px;
}


.zh-has-mega:hover .zh-mega,
.zh-mega:hover{
    display:flex;
}

/* mega columns */
.zh-mega-group{
    min-width:180px;
    padding-right:24px;
    border-right:1px solid rgba(255,255,255,.1);
}
.zh-mega-group:last-child{
    border-right:0;
}

.zh-mega-group h4{
    margin-bottom:12px;
    padding-bottom:8px;
    border-bottom:1px solid rgba(255,255,255,.15);
}

.zh-mega-group h4 a{
    color:var(--z);
    font-size:15px;
    font-weight:700;
    text-decoration:none;
}

.zh-mega-group a{
    display:block;
    width:max-content;
    color:#fff;
    text-decoration:none;
    margin-bottom:8px;
    font-size:14px;
    position:relative;
}

.zh-mega-group a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-3px;
    width:0;
    height:2px;
    background:var(--z);
    transition:.2s;
}
.zh-mega-group a:hover::after{
    width:100%;
}

/* ===============================
   MOBILE
   =============================== */
.zh-mobile{
    display:none;
}

@media(max-width:768px){

    .zh-desktop{display:none}
    .zh-mobile{display:flex}

    .zh-logo img{
        height:22px;
    }

    /* disable desktop mega */
    .zh-mega{
        display:none !important;
    }
}

/* ===============================
   MOBILE SIDE PANEL (RIGHT)
   =============================== */
.zh-mobile-panel{
    position:fixed;
    top:0;
    right:-320px;
    width:300px;
    height:100%;
    background:#000;
    color:#fff;
    padding:24px;
    transition:.3s;
    z-index:9999;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
}

.zh-mobile-panel.open{
    right:0;
}

/* mobile menu */
.zh-mobile-nav ul{
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.zh-mobile-nav a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
}

/* mobile search */
.zh-mobile-search{
    width:100%;
    padding:12px 14px;
    border-radius:6px;
    border:1px solid #333;
    background:#111;
    color:#fff;
    outline:none;
    margin-bottom:20px;
}

/* divider */
.zh-divider{
    height:1px;
    background:rgba(255,255,255,.15);
    margin:12px 0;
}

/* overlay */
.zh-mask{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.6);
    z-index:9998;
}
.zh-mask.show{
    display:block;
}

/* search icon hover safe */
.zh-btn.zh-search:hover,
.zh-btn.zh-search:focus{
    background:transparent !important;
}
.zh-btn.zh-search::before,
.zh-btn.zh-search::after{
    display:none !important;
}


/* ===============================
   FINAL FIX — MOBILE HEADER ICONS
   =============================== */

/* Hide search & cart icons on mobile header (ALL pages incl. home) */
@media (max-width:768px){
    .zh-icons.zh-mobile .zh-search,
    .zh-icons.zh-mobile .zh-cart{
        display:none !important;
    }

    /* Keep menu button visible */
    .zh-icons.zh-mobile .zh-menu-btn{
        display:flex !important;
    }
}
