.nvcore-offer-modal-shell {
    border: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(17, 24, 39, 0.12);
    background: #fff;
}

.nvcore-offer-modal-hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1rem 1rem 0.85rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.nvcore-offer-modal-title {
    color: #142033;
    font-size: 1.1rem;
    line-height: 1.2;
    font-weight: 700;
}

.nvcore-offer-modal-shell .modal-body {
    padding: 0.9rem;
    padding-top: 0.8rem !important;
}

.nvcore-offer-product-pill {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid rgba(31, 41, 55, 0.08);
}

.nvcore-offer-product-pill-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #617288;
}

.nvcore-offer-form .form-label {
    font-weight: 700;
    color: #182433;
    margin-bottom: 0.3rem;
    font-size: 0.84rem;
}

.nvcore-offer-form .form-control {
    border-radius: 4px;
    min-height: 42px;
    padding: 0.65rem 0.8rem;
    font-size: 0.92rem;
    border-color: rgba(31, 41, 55, 0.12);
    box-shadow: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.nvcore-offer-form .form-select {
    border-radius: 4px;
    min-height: 42px;
    padding: 0.65rem 2.2rem 0.65rem 0.8rem;
    font-size: 0.92rem;
    border-color: rgba(31, 41, 55, 0.12);
    box-shadow: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.nvcore-offer-form .form-select:focus,
.nvcore-offer-form .form-control:focus {
    border-color: rgba(67, 97, 238, 0.4);
    box-shadow: 0 0 0 0.2rem rgba(67, 97, 238, 0.14);
}

.nvcore-offer-form textarea.form-control {
    min-height: 96px;
    resize: vertical;
}

.nvcore-offer-captcha-card {
    padding: 0.7rem;
    border: 1px solid rgba(31, 41, 55, 0.08);
    border-radius: 6px;
    background: #f8fafc;
}

.nvcore-offer-captcha-copy {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.78rem;
}

.nvcore-offer-captcha-image-frame {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding: 0.55rem;
    border-radius: 4px;
    border: 1px dashed rgba(31, 41, 55, 0.18);
    background: #fff;
}

.nvcore-offer-captcha-image-frame.is-loading {
    opacity: 0.78;
}

.nvcore-offer-captcha-image {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.nvcore-offer-captcha-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    color: #64748b;
    font-size: 0.8rem;
    text-align: center;
}

.nvcore-offer-captcha-image-frame.has-image .nvcore-offer-captcha-placeholder {
    display: none;
}

.nvcore-offer-captcha-refresh {
    border: 1px solid rgba(31, 41, 55, 0.12);
    border-radius: 4px;
    background: #fff;
    color: #334155;
    padding: 0.45rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.nvcore-offer-captcha-refresh:hover,
.nvcore-offer-captcha-refresh:focus-visible {
    background: #f8fafc;
    border-color: rgba(31, 41, 55, 0.22);
    color: #142033;
}

.nvcore-offer-captcha-refresh:disabled {
    opacity: 0.65;
    cursor: wait;
}

.nvcore-offer-feedback {
    padding: 0.65rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    line-height: 1.45;
}

.nvcore-offer-feedback.is-success {
    background: rgba(9, 163, 96, 0.12);
    color: #157347;
}

.nvcore-offer-feedback.is-error {
    background: rgba(220, 53, 69, 0.12);
    color: #b42318;
}

.nvcore-offer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: flex-end;
}

.nvcore-offer-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.62rem 0.95rem;
    border: 1px solid #142033;
    border-radius: 4px;
    background: #142033;
    color: #fff;
    font-weight: 700;
    line-height: 1;
    font-size: 0.84rem;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.nvcore-offer-submit:hover,
.nvcore-offer-submit:focus-visible {
    background: #0f172a;
    border-color: #0f172a;
    color: #fff;
}

.nvcore-offer-cancel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.62rem 0.95rem;
    border: 1px solid rgba(31, 41, 55, 0.14);
    border-radius: 4px;
    background: #fff;
    color: #334155;
    font-weight: 700;
    line-height: 1;
    font-size: 0.84rem;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.nvcore-offer-cancel:hover,
.nvcore-offer-cancel:focus-visible {
    background: #f8fafc;
    border-color: rgba(31, 41, 55, 0.24);
    color: #142033;
}

.nvcore-offer-submit:disabled {
    opacity: 0.8;
    cursor: wait;
}

@media (max-width: 767.98px) {
    .nvcore-offer-modal-shell {
        border-radius: 10px;
    }

    .nvcore-offer-modal-hero {
        padding: 0.9rem 0.9rem 0.75rem;
    }

    .nvcore-offer-form .form-control,
    .nvcore-offer-form .form-select {
        min-height: 40px;
    }

    .nvcore-offer-modal-shell .modal-body {
        padding: 0.8rem;
    }
}
