/* MC Bug Report */

.mcbr-trigger {
    position: fixed;
    bottom: 18px;
    right: 18px;
    z-index: 9998;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.9);
    color: #626A73;
    border: 1px solid #E5E7EB;
    border-radius: 999px;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all .2s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    line-height: 1;
}
.mcbr-trigger:hover {
    color: #E10600;
    border-color: #E10600;
    background: #fff;
}
.mcbr-trigger__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

@media (max-width: 600px) {
    .mcbr-trigger { bottom: 14px; right: 14px; padding: 6px 8px; }
    .mcbr-trigger__label { display: none; }
}

/* Modal */
.mcbr-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.mcbr-modal[hidden] { display: none !important; }
.mcbr-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 13, 0.55);
    backdrop-filter: blur(4px);
}
.mcbr-modal__panel {
    position: relative;
    background: #fff;
    border-radius: 14px;
    width: 100%;
    max-width: 520px;
    padding: 28px 28px 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}
.mcbr-modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    font-size: 24px;
    color: #626A73;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mcbr-modal__close:hover { background: #f7f8fa; color: #1d1f23; }

.mcbr-modal__header h2 {
    margin: 0 0 6px;
    font-family: var(--font-heading, 'Rajdhani', sans-serif);
    font-size: 24px;
    font-weight: 700;
    color: #080A0D;
}
.mcbr-modal__header p {
    margin: 0 0 18px;
    color: #626A73;
    font-size: 14px;
    line-height: 1.5;
}

.mcbr-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}
.mcbr-form__field > span {
    font-family: var(--font-heading, 'Rajdhani', sans-serif);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #080A0D;
}
.mcbr-form__field input,
.mcbr-form__field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-body, 'Inter', sans-serif);
    transition: border-color .15s ease;
}
.mcbr-form__field input:focus,
.mcbr-form__field textarea:focus {
    outline: none;
    border-color: #E10600;
}
.mcbr-form__field textarea {
    min-height: 100px;
    resize: vertical;
}

.mcbr-form__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}
.mcbr-btn {
    padding: 9px 18px;
    border-radius: 8px;
    font-family: var(--font-heading, 'Rajdhani', sans-serif);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all .15s ease;
}
.mcbr-btn--primary {
    background: #E10600;
    color: #fff;
    border-color: #E10600;
}
.mcbr-btn--primary:hover { background: #B51218; border-color: #B51218; }
.mcbr-btn--primary:disabled { opacity: 0.6; cursor: progress; }
.mcbr-btn--ghost {
    background: transparent;
    color: #626A73;
    border-color: #E5E7EB;
}
.mcbr-btn--ghost:hover { background: #f7f8fa; color: #1d1f23; }

.mcbr-form__status { font-size: 13px; color: #626A73; }
.mcbr-form__status.is-success { color: #1e7e34; font-weight: 600; }
.mcbr-form__status.is-error   { color: #b00020; font-weight: 600; }

.mcbr-form__hint {
    font-size: 12px;
    color: #626A73;
    margin: 14px 0 0;
    line-height: 1.4;
}
