/*====================================================

                NAVBAR

====================================================*/

.navbar{

    padding:15px 0;

    transition:.4s;

}

.navbar-brand img{

    height:55px;

}

.navbar-nav .nav-link{

    color:#333;

    font-weight:500;

    margin-left:18px;

    transition:.3s;

}

.navbar-nav .nav-link:hover{

    color:#198754;

}

.navbar-nav .nav-link.active{

    color:#198754;

}

.btn-success{

    padding:10px 25px;

    border-radius:50px;

}
.site-logo{

    height:105px;

    width:auto;

    transition:.3s;

}

.navbar-icons{
    display:flex;
    align-items:center;
}

.cart-link{
    position:relative;
    color:#222;
    text-decoration:none;
    font-size:28px;
}

.cart-count{

    position:absolute;
    top:-8px;
    right:-10px;

    width:20px;
    height:20px;

    background:#28a745;
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:11px;
    font-weight:bold;
}

.cart-icon{
    position:relative;
    display:inline-block;
    color:#222;
    font-size:24px;
    margin-left:20px;
}

.cart-count{

position:absolute;

top:-8px;

right:-10px;

background:#ff7a00;

color:#fff;

width:20px;

height:20px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:11px;

font-weight:700;

box-shadow:0 2px 6px rgba(0,0,0,.2);

}

.cart-summary{
    background:#fafaf7;
    border-top:1px solid #e5e5e5;
    margin-top:15px;
    padding:15px;
    font-size:13px;
}

.summary-row{
    display:flex;
    justify-content:space-between;
    margin:6px 0;
}

.summary-row.saved{
    color:#198754;
    font-weight:600;
}

.summary-row.grand{
    border-top:1px solid #ddd;
    margin-top:10px;
    padding-top:10px;
    font-size:16px;
    font-weight:bold;
}

