/* Wrapper to prevent theme bleeding */
.bc-hidden { display: none !important; }
#bc-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); z-index: 999999;
    display: flex; justify-content: center; align-items: center;
    backdrop-filter: blur(4px);
}
.bc-modal-box {
    background: #fff; width: 100%; max-width: 500px;
    border-radius: 12px; position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    overflow: hidden;
}
.bc-close-btn {
    position: absolute; top: 15px; right: 20px;
    background: transparent; border: none; font-size: 24px;
    cursor: pointer; color: #666; transition: 0.2s;
}
.bc-close-btn:hover { color: #000; }
.bc-modal-header { padding: 25px 25px 15px; background: #fafafa; border-bottom: 1px solid #eee; }
.bc-modal-header h2 { margin: 0; font-size: 20px; color: var(--bc-primary); }
.bc-progress-bar { width: 100%; height: 6px; background: #eee; border-radius: 3px; margin-top: 15px; overflow: hidden; }
.bc-progress-fill { height: 100%; width: 33.3%; background: var(--bc-primary); transition: width 0.3s ease; }
.bc-modal-body { padding: 25px; min-height: 300px; position: relative; }

.bc-step { display: none; animation: bcFadeIn 0.3s ease; }
.bc-step.active { display: block; }
@keyframes bcFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.bc-step h3 { margin-top: 0; margin-bottom: 20px; font-size: 16px; color: #444; }
.bc-step input, .bc-step select, .bc-step textarea {
    width: 100%; padding: 12px; margin-bottom: 15px;
    border: 1px solid #ddd; border-radius: 6px; box-sizing: border-box; font-size: 14px;
}
.bc-step textarea { height: 80px; resize: vertical; }
.bc-row { display: flex; gap: 15px; }
.bc-row input { flex: 1; }

.bc-actions { display: flex; justify-content: space-between; margin-top: 10px; }
.bc-btn {
    background: var(--bc-button); color: #fff; padding: 12px 24px;
    border: none; border-radius: 6px; font-size: 15px; cursor: pointer;
    font-weight: 600; transition: background 0.2s;
}
.bc-btn:hover { filter: brightness(1.1); }
.bc-btn-secondary { background: #eee; color: #444; }

.bc-preview-box { background: #f9f9f9; padding: 15px; border-radius: 8px; border: 1px solid #eee; }
.bc-preview-box p { margin: 8px 0; font-size: 14px; color: #555; }
.bc-total-price { font-size: 18px; font-weight: bold; color: var(--bc-primary); margin-top: 15px; padding-top: 15px; border-top: 1px solid #ddd; }

.bc-success-msg { text-align: center; padding: 20px 0; }
.bc-success-msg h3 { color: #2e7d32; font-size: 22px; }
.bc-success-msg p { color: #555; margin-bottom: 20px; }