.header-cart .cart-link{
    display:inline-block;
    text-decoration:none;
}

.header-cart .cart-icon{
    position:relative;
    display:inline-block;
}

.header-cart .cart-icon img{
    width:40px;
    height:40px;
    display:block;
    object-fit:contain;
}

.header-cart .cart-count{
    position:absolute;
    top:-8px;
    right:-8px;

    min-width:22px;
    height:22px;
    padding:0 6px;

    background:#ff0000;
    color:#fff;

    border-radius:999px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:12px;
    font-weight:700;
    line-height:1;

    border:2px solid #fff;
    box-sizing:border-box;
    z-index:999;
}

.menu-new-menu-container,
.header-cart{
    display:inline-block;
    vertical-align:middle;
    
}

#site-navigation {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: nowrap;
}

#site-navigation .menu-new-menu-container {
    flex: 1;
    min-width: 0;

}

#site-navigation .header-cart {
    flex: 0 0 auto;
    margin-left: 20px;
}

#site-navigation .nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.header-cart .cart-icon{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#f58220; /* Orange border */
    padding:3px;
}

.header-cart .cart-link{
    display:inline-block;
    text-decoration:none;
}

.header-cart .cart-icon{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    width:48px;
    height:48px;
    border-radius:50%;
    background:#f58220; /* Orange outer circle */
    padding:3px;
}

.header-cart .cart-icon-inner{
    width:100%;
    height:100%;
    background:#fff; /* White inner circle */
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;
}

.header-cart .cart-icon-inner img{
    width:34px;
    height:34px;
    object-fit:contain;
}

.header-cart .cart-count{
    position:absolute;
    top:-5px;
    right:-5px;

    min-width:22px;
    height:22px;
    padding:0 6px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#ff3b30;
    color:#fff;

    font-size:12px;
    font-weight:700;
    line-height:1;

    border-radius:50%;
    border:2px solid #fff;
    z-index:10;
}

/* Default */
.header-cart .cart-icon-inner{
    background:#f58220;
}

/* Only Cart page */
body.woocommerce-cart .header-cart .cart-icon-inner{
    background:#fff;
}

/* Smooth animation */
.header-cart .cart-icon{
    transition: transform 0.3s ease;
    transform-origin: center;
}

/* Zoom on hover */
.header-cart .cart-link:hover .cart-icon{
    transform: scale(1.1);
}