.dc-nav-wrap{
    width:100%;
    box-sizing:border-box;
    padding:4px 12px;
    font-family:inherit;
}

.dc-nav{
    max-width:var(--dc-max);
    margin:0 auto;
    min-height:72px;
    display:flex;
    align-items:center;
    gap:14px;
    padding:7px 10px;
    box-sizing:border-box;
    background:var(--dc-bg);
    border:1px solid var(--dc-border);
    border-radius:42px;
    box-shadow:0 4px 18px rgba(0,0,0,.06);
}

.dc-logo{
    flex:0 0 auto;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    padding:3px 9px 3px 5px;
}

.dc-logo img{
    display:block;
    max-width:155px;
    max-height:58px;
    width:auto;
    height:auto;
    object-fit:contain;
}

.dc-nav-items{
    min-width:0;
    flex:1 1 auto;
    display:flex;
    align-items:center;
    justify-content:space-around;
    gap:4px;
    overflow-x:var(--dc-scroll);
    scrollbar-width:none;
}

.dc-nav-items::-webkit-scrollbar{display:none}

.dc-nav-item{
    min-height:58px;
    flex:0 1 auto;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:4px 12px;
    border-radius:30px;
    color:var(--dc-text);
    text-decoration:none !important;
    white-space:nowrap;
    font-size:15px;
    font-weight:700;
    transition:transform .18s ease, background .18s ease, color .18s ease;
}

.dc-nav-item:hover{
    color:var(--dc-active);
    background:rgba(21,89,237,.06);
    transform:translateY(-1px);
}

.dc-nav-icon{
    width:46px;
    height:46px;
    flex:0 0 46px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.dc-nav-icon img{
    display:block;
    width:100%;
    height:100%;
    object-fit:contain;
}

.dc-nav-title{display:inline-block}

.dc-cart{
    position:relative;
    flex:0 0 48px;
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#fff;
    color:var(--dc-text);
    text-decoration:none !important;
    border:1px solid var(--dc-border);
    box-shadow:0 3px 10px rgba(0,0,0,.08);
    font-size:22px;
    transition:transform .18s ease, color .18s ease;
}

.dc-cart:hover{
    color:var(--dc-active);
    transform:scale(1.05);
}

.dc-cart-count{
    position:absolute;
    top:-3px;
    right:-3px;
    min-width:18px;
    height:18px;
    padding:0 4px;
    box-sizing:border-box;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:20px;
    background:var(--dc-active);
    color:#fff;
    font-size:11px;
    font-weight:700;
    line-height:1;
}

@media(max-width:850px){
    .dc-nav{
        border-radius:24px;
        min-height:64px;
        padding:6px 8px;
        gap:6px;
    }

    .dc-logo img{
        max-width:105px;
        max-height:48px;
    }

    .dc-nav-item{
        min-height:50px;
        padding:3px 8px;
        gap:5px;
        font-size:13px;
    }

    .dc-nav-icon{
        width:38px;
        height:38px;
        flex-basis:38px;
    }

    .dc-cart{
        flex-basis:42px;
        width:42px;
        height:42px;
    }
}

@media(max-width:560px){
    .dc-nav{
        border-radius:20px;
    }

    .dc-logo{
        padding-right:3px;
    }

    .dc-logo img{
        max-width:82px;
    }

    .dc-nav-items{
        justify-content:flex-start;
        overflow-x:auto;
    }

    .dc-nav-item{
        flex:0 0 auto;
    }

    .dc-nav-title{
        font-size:12px;
    }
}
