.navbar-actions{
    display:flex;
    align-items:center;
    gap:14px;
}
.cart-btn{
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:var(--primary);
    color:white;
    position:relative;
    transition:0.3s;
}
.cart-btn:hover{
    background:var(--secondary);
}
#cartCount{
    position:absolute;
    top:-4px;
    right:-4px;
    width:22px;
    height:22px;
    border-radius:50%;
    background:#C79A63;
    color:white;
    font-size:11px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}
.cart-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.55);
    z-index:99999;
    display:flex;
    justify-content:flex-end;
    opacity:0;
    visibility:hidden;
    transition:0.3s;
}
.cart-overlay.active{
    opacity:1;
    visibility:visible;
}
.cart-sidebar{
    width:100%;
    max-width:480px;
    height:100vh;
    background:white;
    display:flex;
    flex-direction:column;
    transform:translateX(100%);
    transition:0.4s;
}
.cart-overlay.active .cart-sidebar{
    transform:translateX(0);
}
.cart-header{
    padding:30px;
    border-bottom:1px solid rgba(0,0,0,0.08);
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.cart-header h2{
    font-family:'Playfair Display',serif;
    color:var(--primary);
    margin:0;
}
.close-cart-btn{
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#f3f3f3;
    transition:0.3s;
}
.close-cart-btn:hover{
    background:var(--primary);
    color:white;
}
.cart-body{
    flex:1;
    overflow-y:auto;
    padding:25px;
}
.cart-item{
    display:flex;
    gap:18px;
    margin-bottom:22px;
    padding-bottom:22px;
    border-bottom:1px solid rgba(0,0,0,0.08);
}
.cart-item-image{
    width:100px;
    height:100px;
    border-radius:18px;
    overflow:hidden;
    flex-shrink:0;
}
.cart-item-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.cart-item-content{
    flex:1;
}
.cart-item-content h4{
    font-size:18px;
    margin-bottom:10px;
    color:var(--dark);
}
.cart-variant{
    display:inline-block;
    margin-bottom:12px;
    color:var(--primary);
    font-weight:600;
}
.cart-colors{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:14px;
}
.cart-color{
    width:22px;
    height:22px;
    border-radius:50%;
    border:2px solid white;
    box-shadow:0 3px 8px rgba(0,0,0,0.1);
}
.cart-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.remove-cart-item{
    width:36px;
    height:36px;
    border:none;
    border-radius:12px;
    background:#fee2e2;
    color:#dc2626;
}
.cart-footer{
    padding:25px;
    border-top:1px solid rgba(0,0,0,0.08);
}
.cart-total-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:20px;
    font-size:18px;
}
.checkout-btn{
    width:100%;
    height:58px;
    border:none;
    border-radius:18px;
    background:var(--primary);
    color:white;
    font-weight:600;
    transition:0.3s;
}
.checkout-btn:hover{
    background:var(--secondary);
}
.empty-cart{
    text-align:center;
    padding:80px 20px;
}
.empty-cart i{
    font-size:55px;
    color:var(--accent);
    margin-bottom:20px;
}
.empty-cart h3{
    color:var(--primary);
    margin-bottom:10px;
}
body.cart-open{
    overflow:hidden;
}