
/* Greenlye Phase 2.7 — Clear header icons */
.nav-actions{
    display:flex!important;
    align-items:center!important;
    gap:12px!important;
    min-width:150px;
    justify-content:flex-end;
}

.nav-icon-link{
    position:relative;
    width:42px;
    height:42px;
    display:grid!important;
    place-items:center;
    border-radius:50%;
    color:#0b4d38!important;
    background:#fff;
    transition:background .2s ease,color .2s ease,transform .2s ease;
}

.nav-icon-link:hover{
    background:#eef5f1;
    color:#063b2b!important;
    transform:translateY(-1px);
}

.nav-icon-link svg{
    width:25px;
    height:25px;
    display:block;
    fill:none;
    stroke:currentColor;
    stroke-width:1.9;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.cart-icon-link{
    margin-left:2px;
}

.cart-count{
    position:absolute;
    top:-3px;
    right:-4px;
    min-width:21px;
    height:21px;
    padding:0 5px;
    display:grid;
    place-items:center;
    border-radius:999px;
    background:#0f563f;
    color:#fff;
    border:2px solid #fff;
    font-size:11px;
    font-weight:700;
    line-height:1;
}

@media(max-width:700px){
    .nav-actions{
        min-width:auto;
        gap:7px!important;
    }

    .nav-icon-link{
        width:38px;
        height:38px;
    }

    .nav-icon-link svg{
        width:23px;
        height:23px;
    }

    .nav-icon-link:first-child{
        display:none!important;
    }
}
