
/* PRODUCT LIST */
.step3-products{
    padding:10px;
    padding-bottom:10px; /* footer space */
    overflow-y:auto;
}

/* ITEM CARD (same as cart) */
.step3-item{
    display:flex;
    gap:10px;
    background:#f9f9f9;
    padding:10px;
    border-radius:10px;
    margin-bottom:10px;
}

/* IMAGE */
.step3-img{
    width:60px;
    height:60px;
    background:#eee;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
}

/* INFO */
.step3-info{
    flex:1;
}
.step3-header{
    display:none;
}

/* FOOTER */
.step3-footer{
    position: relative;
    margin-top: 20px;
    background:#187E20;
    color:#fff;
    padding:15px;
    font-weight:bold;

    display:flex;
    flex-direction:column; /* 🔥 vertical */
    gap:5px;
}

/* line styling */
.step3-footer .footer-line{
    display:flex;
    justify-content:space-between;
    font-size:16px;
}
.bill-cart-qty-box input{
    width: 35px;
    height: 28px;
    text-align: center;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0;
}
.bill-cart-qty-box{
    display:flex;
    align-items:center;
    gap:5px;
}

.bill-cart-qty-box button{
    background:red;
    color:white;
    border:none;
    width:25px;
    height:25px;
    border-radius:4px;
    cursor:pointer;
}
/* =========================
   PRODUCT NAME STYLE
========================= */
.bill-product-name{
    font-weight: 700;
    color: #000;
    font-size: 16px;
}

/* =========================
   STEP 3 PRODUCT PRICE
========================= */
.step3-products .bill-cart-item-price{
    font-weight: 700;
    color: #1e88e5;
    font-size: 15px;
}
#step3Content .bill-cart-item-name{
    font-weight: 700;
    color: #000 !important;
    font-size: 15px;
}

#step3Content .bill-cart-item-price{
    font-weight: 700;
    color: #1e88e5 !important;
    font-size: 14px;
}