.fvqo-lock {
    overflow: hidden;
}

.fvqo-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 999999;
}

.fvqo-overlay.is-open {
    display: flex;
}

.fvqo-modal {
    width: 100%;
    max-width: 520px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    padding: 24px;
    position: relative;
}

.fvqo-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: 0;
    background: transparent;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.fvqo-header h3 {
    margin: 0 0 8px;
    font-size: 24px;
}

.fvqo-header p {
    margin: 0 0 18px;
    color: #666666;
}

.fvqo-product-box {
    background: #f7f7f7;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 18px;
}

.fvqo-product-name {
    font-weight: 700;
    margin-bottom: 4px;
}

.fvqo-product-meta {
    color: #666666;
    font-size: 14px;
}

.fvqo-field {
    margin-bottom: 14px;
}

.fvqo-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.fvqo-field input,
.fvqo-field textarea {
    width: 100%;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 15px;
    box-sizing: border-box;
}

.fvqo-field textarea {
    resize: vertical;
    min-height: 90px;
}

.fvqo-message {
    display: none;
    margin: 10px 0 16px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
}

.fvqo-message.is-error,
.fvqo-message.is-success {
    display: block;
}

.fvqo-message.is-error {
    background: #fff1f1;
    color: #b42318;
}

.fvqo-message.is-success {
    background: #edfdf3;
    color: #067647;
}

.fvqo-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.fvqo-btn {
    border: 0;
    border-radius: 10px;
    padding: 12px 18px;
    font-weight: 600;
    cursor: pointer;
}

.fvqo-btn-primary {
    background: #111111;
    color: #ffffff;
}

.fvqo-btn-secondary {
    background: #efefef;
    color: #111111;
}

.fvqo-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@media (max-width: 600px) {
    .fvqo-modal {
        padding: 18px;
    }

    .fvqo-actions {
        flex-direction: column-reverse;
    }

    .fvqo-btn {
        width: 100%;
    }
}
