/* WC Command Center — callback.css */

#wccc-cb-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99990;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
    transition: transform .2s, box-shadow .2s;
}
#wccc-cb-btn:hover { transform: scale(1.08); box-shadow: 0 6px 22px rgba(0,0,0,.3); }
#wccc-cb-btn svg { width: 26px; height: 26px; color: #fff; }

/* Popup */
.wccc-cb-popup {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 340px;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,.18);
    z-index: 99991;
    display: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.wccc-cb-popup.wccc-open { display: block; animation: wccc-slide-up .25s ease; }

@keyframes wccc-slide-up {
    from { opacity:0; transform: translateY(20px); }
    to   { opacity:1; transform: translateY(0); }
}

.wccc-cb-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px 12px;
    border-bottom: 1px solid #f0f0f0;
}
.wccc-cb-logo { max-height: 36px; max-width: 120px; object-fit: contain; }
.wccc-cb-company { font-weight: 700; font-size: 15px; color: #1d2327; }
.wccc-cb-close { background: none; border: none; font-size: 18px; cursor: pointer; color: #999; padding: 0; line-height: 1; }
.wccc-cb-close:hover { color: #333; }

.wccc-cb-body { padding: 18px; }
.wccc-cb-body h3 { margin: 0 0 4px; font-size: 16px; color: #1d2327; }
.wccc-cb-body > p { margin: 0 0 16px; font-size: 13px; color: #666; }

.wccc-cb-field { margin-bottom: 12px; }
.wccc-cb-field label { display: block; font-size: 12px; font-weight: 600; color: #555; margin-bottom: 4px; text-transform: uppercase; letter-spacing: .3px; }
.wccc-cb-field input,
.wccc-cb-field select,
.wccc-cb-field textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
    transition: border-color .15s;
}
.wccc-cb-field input:focus,
.wccc-cb-field select:focus,
.wccc-cb-field textarea:focus { border-color: var(--wccc-accent, #2271b1); outline: none; }
.wccc-cb-field textarea { resize: vertical; min-height: 60px; }

.wccc-cb-submit {
    width: 100%;
    padding: 12px;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 6px;
    transition: opacity .2s;
}
.wccc-cb-submit:hover { opacity: .88; }
.wccc-cb-submit:disabled { opacity: .6; cursor: not-allowed; }

/* Success state */
.wccc-cb-success-icon { font-size: 48px; text-align: center; margin-bottom: 10px; }
#wccc-cb-success { text-align: center; padding: 20px 0; }
#wccc-cb-success h3 { color: #1d2327; margin-bottom: 6px; }
#wccc-cb-success p { color: #666; font-size: 14px; }
