.bulk-wrapper{
direction:rtl;
}

.bulk-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:25px;
gap:20px;
}

#bulk-search{
width:350px;
padding:14px;
border-radius:12px;
border:1px solid #ddd;
}

.bulk-row{

display:grid;

grid-template-columns:
80px
1fr
120px
160px
180px;

align-items:center;

background:#fff;

padding:15px;

margin-bottom:12px;

border-radius:16px;

box-shadow:
0 5px 20px rgba(0,0,0,.05);

}

.bulk-image img{
width:60px;
height:60px;
object-fit:cover;
}

.stock.in{
color:#14a44d;
}

.stock.out{
color:#dc3545;
}

.bulk-qty{
display:flex;
gap:10px;
align-items:center;
}

.bulk-qty button{

width:35px;
height:35px;

border:none;

border-radius:8px;

cursor:pointer;

}

.qty-input{

width:60px;
text-align:center;

}

#bulk-cart-bar{

position:fixed;

bottom:20px;

left:20px;

right:20px;

background:#fff;

padding:20px;

border-radius:20px;

box-shadow:
0 10px 30px rgba(0,0,0,.12);

display:flex;

justify-content:space-between;

align-items:center;

z-index:99999;

}

.bulk-actions{

display:flex;
gap:10px;

}

#bulk-add-cart{

background:#6f42ff;

color:#fff;

border:none;

padding:12px 25px;

border-radius:10px;

cursor:pointer;

}

.checkout-btn{

background:#14a44d;

color:#fff;

padding:12px 25px;

border-radius:10px;

text-decoration:none;

}