/* পপআপ ডিজাইন */
.bdc-cart-modal {
    display: none; position: fixed; z-index: 9999; left: 0; top: 0;
    width: 100%; height: 100%; background: rgba(0,0,0,0.6);
}
.bdc-cart-modal-content {
    background: #fff; margin: 10% auto; padding: 20px; border-radius: 12px;
    width: 90%; max-width: 450px; position: relative;
}
.bdc-close-popup { position: absolute; top: 10px; right: 15px; font-size: 24px; cursor: pointer; }

/* আইটেম লিস্ট */
.bdc-popup-item {
    display: flex; align-items: center; gap: 15px; padding: 10px 0; border-bottom: 1px solid #eee;
}
.bdc-popup-item img { width: 50px; height: 50px; border-radius: 5px; object-fit: cover; }
.item-info { flex: 1; }
.item-info h4 { margin: 0; font-size: 14px; }
.item-total { font-weight: bold; color: #27ae60; }
.bdc-popup-total {
    display: flex; justify-content: space-between; font-weight: bold; font-size: 18px; padding-top: 15px;
}
.bdc-checkout-btn {
    width: 100%; background: #27ae60; color: #fff; border: none; padding: 12px;
    border-radius: 8px; margin-top: 15px; cursor: pointer; font-size: 16px;
}