:root { --idafi-isc-bg: #fff; --idafi-isc-text: #222; }
a.added_to_cart { display: none !important; }
.idafi-isc-panel { position: fixed; top: 0; right: -400px; width: 380px; height: 100vh; background: var(--idafi-isc-bg); z-index: 999999; transition: right 0.3s; display: flex; flex-direction: column; box-shadow: -5px 0 15px rgba(0,0,0,0.1); color: var(--idafi-isc-text); }
.idafi-isc-panel.active { right: 0; }
.idafi-isc-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999990; display: none; }
.idafi-isc-overlay.active { display: block; }
.idafi-isc-header { padding: 20px; border-bottom: 1px solid #f0f0f0; display: flex; justify-content: space-between; align-items: center; }
.idafi-isc-header h3 { margin: 0; }
#idafi-isc-close { background: none; border: none; font-size: 24px; cursor: pointer; }
.idafi-isc-shipping-progress { padding: 15px; background: #fff; text-align: center; border-bottom: 1px dashed #eee; }
.idafi-isc-progress-bar { height: 6px; background: #f0f0f0; border-radius: 10px; overflow: hidden; margin-top: 5px; }
.idafi-isc-progress-fill { height: 100%; background: #10b981; transition: width 0.3s; }
.idafi-isc-body { flex: 1; overflow-y: auto; padding: 20px; }
.idafi-isc-items { list-style: none; padding: 0; margin: 0; }
.idafi-isc-item { display: grid; grid-template-columns: 70px 1fr 30px; gap: 10px; margin-bottom: 20px; align-items: center; }
.idafi-isc-col-img img { width: 70px; height: 70px; object-fit: cover; border-radius: 5px; }
.idafi-isc-col-details { display: flex; flex-direction: column; }
.idafi-isc-name { font-weight: bold; font-size: 14px; }
.idafi-isc-col-actions { display: flex; flex-direction: column; align-items: flex-end; }
.idafi-isc-qty-ctrl { display: flex; border: 1px solid #ddd; border-radius: 3px; }
.idafi-isc-qty-ctrl button { background: none; border: none; width: 25px; cursor: pointer; }
.idafi-isc-qty-ctrl input { width: 30px; border: none; text-align: center; padding: 0; }
.idafi-isc-remove { color: red; font-size: 12px; cursor: pointer; border: none; background: none; margin-top: 5px; }
.idafi-isc-footer { padding: 20px; border-top: 1px solid #eee; background: #f9f9f9; }
.idafi-isc-total { display: flex; justify-content: space-between; font-weight: bold; margin-bottom: 15px; }
.idafi-isc-btn-checkout { display: block; width: 100%; padding: 15px; background: #000; color: #fff; text-align: center; text-decoration: none; border-radius: 5px; }
/* DEFAULT FLOATING BUTTON (Can be overridden by Pro CSS) */
.idafi-isc-floating-btn { position: fixed; width: 60px; height: 60px; background: #000; color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 99999; border-radius: 50%; bottom: 30px; right: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.idafi-isc-floating-btn svg { width: 24px; height: 24px; }
.idafi-isc-badge { position: absolute; top: -5px; right: -5px; background: red; color: #fff; width: 20px; height: 20px; border-radius: 50%; font-size: 11px; display: flex; align-items: center; justify-content: center; }
.idafi-hidden-original { display: none !important; }